f392c10dec751986fe11de850d97bbe863f3fc55
[gnulib.git] / ChangeLog
1 2009-12-19  Eric Blake  <ebb9@byu.net>
2
3         dirfd: fix prototype
4         * lib/dirent.in.h (dirfd): Argument is not const, per POSIX.
5         * lib/dirfd.c (dirfd): Likewise.
6
7         canonicalize: reduce memory usage
8         * lib/canonicalize.c (canonicalize_filename_mode): Trim the
9         allocation to size.
10         Reported by Solar Designer <solar@openwall.com>.
11
12 2009-12-19  Bruno Haible  <bruno@clisp.org>
13
14         New module attribute 'Applicability'.
15         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
16         * gnulib-tool: New option --extract-applicability.
17         (func_usage): Document it.
18         (sed_extract_prog): Recognize it.
19         (func_get_applicability): New function.
20         (func_import): Generalize handling of 'link-warning' module.
21         * modules/link-warning (Applicability): New section.
22         * modules/arg-nonnull (Applicability): New section.
23         Repoted by Simon Josefsson <simon@josefsson.org>.
24
25 2009-12-19  Bruno Haible  <bruno@clisp.org>
26
27         fflush: tweak
28         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
29         * lib/fseeko.c (rpl_fseeko): Likewise.
30
31 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
32
33         * lib/gl_list.h: Fix typo in comment.
34
35 2009-12-16  Eric Blake  <ebb9@byu.net>
36
37         fcntl: use to simplify other modules
38         * modules/cloexec (Depends-on): Add fcntl.
39         * modules/fchdir (Depends-on): Likewise.
40         * modules/fd-safer-flag (Depends-on): Likewise.
41         * modules/unistd-safer (Depends-on): Likewise.
42         * modules/dup3 (configure.ac): Set module indicator.
43         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
44         missing.
45         * lib/fchdir.c (_gl_register_dup): Fix comment.
46         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
47         * lib/dup-safer.c (dup_safer): Likewise.
48         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
49         * lib/dup3.c (dup3): Likewise.
50         * tests/test-fchdir.c (main): Enhance test.
51         Fixes a dup_cloexec bug reported by Ondřej Vašík.
52
53         fcntl: port portions of fcntl to mingw
54         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
55         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
56         replacement for mingw.
57         * modules/fcntl (Description): Update.
58         (Depends-on): Add dup2.
59         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
60         * modules/fcntl-h (Makefile.am): Substitute it.
61         * lib/fcntl.in.h (fcntl): Update declaration.
62         (F_DUPFD, F_GETFD): New macros, when needed.
63         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
64         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
65         * tests/test-fcntl.c (check_flags, main): Enhance test for items
66         we now guarantee.
67
68         fcntl: work around cygwin bug in F_DUPFD
69         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
70         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
71         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
72         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
73         * doc/posix-functions/fcntl.texi (fcntl): Document it.
74
75         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
76         * modules/fcntl (Files): List new files.
77         (configure.ac): Run a test.
78         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
79         * lib/fcntl.c (rpl_fcntl): Likewise.
80         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
81         (gl_FCNTL_H): Always replace fcntl.h.
82         * modules/fcntl-h (Makefile.am): Substitute witnesses.
83         * lib/fcntl.in.h (fcntl): Declare replacement.
84         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
85         needed, plus a witness.
86         * doc/posix-functions/fcntl.texi (fcntl): Document this.
87         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
88         * tests/test-fcntl.c: New file.
89         * modules/fcntl-tests: Likewise.
90
91         binary-io: avoid potential compilation warning
92         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
93         directives.
94
95         fflush: avoid compilation error on NetBSD
96         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
97         between off_t and fpos_t, since the latter is sometimes a struct.
98         * lib/fseeko.c (rpl_fseeko): Likewise.
99         Reported by Alexander Nasonov <alnsn@yandex.ru>.
100
101 2009-12-15  Eric Blake  <ebb9@byu.net>
102
103         fcntl-h, stdio, sys_ioctl: fix declarations
104         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
105         function must not take arguments.
106         * lib/sys_ioctl.in.h (ioctl): Likewise.
107         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
108         (open): Add a link warning.
109
110 2009-12-15  Jim Meyering  <meyering@redhat.com>
111
112         areadlink, areadlink-with-size: relax license to LGPLv2+
113         * modules/areadlink (License): Relax to LGPLv2+.
114         * modules/areadlink-with-size (License): Likewise.
115
116 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
117             Bruno Haible  <bruno@clisp.org>
118
119         *printf: Fix memory leak.
120         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
121         * lib/vfprintf.c (vfprintf): Likewise.
122         * lib/dprintf.c (dprintf): Likewise.
123         * lib/vdprintf.c (vdprintf): Likewise.
124
125 2009-12-14  Eric Blake  <ebb9@byu.net>
126
127         accept4: adjust module dependencies
128         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
129
130         utimens: one more try at avoiding compiler warning
131         * lib/utimens.c (lutimens): Lower scope of result.
132
133 2009-12-13  Bruno Haible  <bruno@clisp.org>
134
135         Move the malloc checking from module 'list' to new module 'xlist'.
136         * modules/xlist: New file.
137         * lib/gl_xlist.h: New file.
138         * lib/gl_xlist.c: New file.
139         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
140         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
141         gl_list_add_last, gl_list_add_before, gl_list_add_after,
142         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
143         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
144         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
145         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
146         gl_sortedlist_nx_add): New declarations.
147         (struct gl_list_implementation): Rename and change methods accordingly.
148         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
149         (gl_list_nx_create): Renamed from gl_list_create.
150         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
151         (gl_list_nx_set_at): Renamed from gl_list_set_at.
152         (gl_list_nx_add_first): Renamed from gl_list_add_first.
153         (gl_list_nx_add_last): Renamed from gl_list_add_last.
154         (gl_list_nx_add_before): Renamed from gl_list_add_before.
155         (gl_list_nx_add_after): Renamed from gl_list_add_after.
156         (gl_list_nx_add_at): Renamed from gl_list_add_at.
157         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
158         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
159         gl_list_create_empty.
160         (gl_list_nx_create): Renamed from gl_list_create.
161         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
162         (gl_list_nx_set_at): Renamed from gl_list_set_at.
163         (gl_list_nx_add_first): Renamed from gl_list_add_first.
164         (gl_list_nx_add_last): Renamed from gl_list_add_last.
165         (gl_list_nx_add_before): Renamed from gl_list_add_before.
166         (gl_list_nx_add_after): Renamed from gl_list_add_after.
167         (gl_list_nx_add_at): Renamed from gl_list_add_at.
168         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
169         * lib/gl_array_list.c: Don't include xalloc.h.
170         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
171         NULL upon out-of-memory.
172         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
173         out-of-memory.
174         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
175         Change return type to 'int'.
176         (gl_array_nx_set_at): Renamed from gl_array_set_at.
177         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
178         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
179         upon out-of-memory.
180         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
181         upon out-of-memory.
182         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
183         upon out-of-memory.
184         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
185         upon out-of-memory.
186         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
187         out-of-memory.
188         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
189         Update.
190         (gl_array_list_implementation): Update.
191         * lib/gl_carray_list.c: Don't include xalloc.h.
192         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
193         Return NULL upon out-of-memory.
194         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
195         out-of-memory.
196         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
197         Change return type to 'int'.
198         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
199         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
200         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
201         upon out-of-memory.
202         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
203         upon out-of-memory.
204         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
205         out-of-memory.
206         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
207         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
208         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
209         Update.
210         (gl_carray_list_implementation): Update.
211         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
212         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
213         gl_linked_create_empty. Return NULL upon out-of-memory.
214         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
215         out-of-memory.
216         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
217         Change return type to 'int'. Return -1 upon out-of-memory.
218         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
219         out-of-memory.
220         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
221         upon out-of-memory.
222         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
223         upon out-of-memory.
224         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
225         NULL upon out-of-memory.
226         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
227         upon out-of-memory.
228         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
229         out-of-memory.
230         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
231         Update.
232         * lib/gl_linked_list.c: Don't include xalloc.h.
233         (gl_linked_list_implementation): Update.
234         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
235         (add_to_bucket): Change return type to 'int'.
236         (gl_linkedhash_list_implementation): Update.
237         * lib/gl_anytree_list1.h (free_subtree): New function.
238         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
239         gl_tree_create_empty. Return NULL upon out-of-memory.
240         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
241         Change return type to 'int'. Return -1 upon out-of-memory.
242         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
243         out-of-memory.
244         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
245         (gl_tree_remove_node): New function, moved here from
246         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
247         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
248         Update.
249         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
250         malloc, not xmalloc. Return NULL upon out-of-memory.
251         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
252         out-of-memory.
253         (gl_tree_remove_node_from_tree): New function, extracted from
254         gl_tree_remove_node.
255         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
256         upon out-of-memory.
257         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
258         out-of-memory.
259         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
260         upon out-of-memory.
261         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
262         upon out-of-memory.
263         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
264         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
265         not xmalloc. Return NULL upon out-of-memory.
266         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
267         out-of-memory.
268         (gl_tree_remove_node_from_tree): New function, extracted from
269         gl_tree_remove_node.
270         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
271         upon out-of-memory.
272         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
273         out-of-memory.
274         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
275         upon out-of-memory.
276         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
277         upon out-of-memory.
278         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
279         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
280         gl_anytree_list1.h before gl_anyavltree_list2.h.
281         (gl_avltree_list_implementation): Update.
282         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
283         gl_anytree_list1.h before gl_anyavltree_list2.h.
284         (gl_rbtree_list_implementation): Update.
285         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
286         Change return type to 'int'. Return -1 upon out-of-memory. Use
287         __builtin_expect.
288         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
289         (gl_avltreehash_list_implementation): Update.
290         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
291         (gl_rbtreehash_list_implementation): Update.
292         * modules/array-list (Depends-on): Remove xalloc.
293         * modules/carray-list (Depends-on): Likewise.
294         * modules/linked-list (Depends-on): Likewise.
295         * modules/linkedhash-list (Depends-on): Likewise.
296         * modules/avltree-list (Depends-on): Likewise.
297         * modules/rbtree-list (Depends-on): Likewise.
298         * modules/avltreehash-list (Depends-on): Likewise.
299         * modules/rbtreehash-list (Depends-on): Likewise.
300
301         * modules/xsublist: New file.
302         * lib/gl_xsublist.h: New file.
303         * lib/gl_xsublist.c: New file.
304         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
305         (gl_sublist_nx_create): New declaration.
306         * lib/gl_sublist.c: Don't include xalloc.h.
307         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
308         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
309         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
310         Change return type to 'int'. Return -1 upon out-of-memory.
311         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
312         upon out-of-memory.
313         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
314         NULL upon out-of-memory.
315         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
316         upon out-of-memory.
317         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
318         NULL upon out-of-memory.
319         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
320         NULL upon out-of-memory.
321         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
322         upon out-of-memory.
323         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
324         (gl_sublist_list_implementation): Update.
325         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
326         upon out-of-memory.
327         * modules/sublist (Depends-on): Remove xalloc.
328
329         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
330         * tests/test-carray_list.c: Likewise.
331         * tests/test-linked_list.c: Likewise.
332         * tests/test-linkedhash_list.c: Likewise.
333         * tests/test-avltree_list.c: Likewise.
334         * tests/test-rbtree_list.c: Likewise.
335         * tests/test-avltreehash_list.c: Likewise.
336         * tests/test-rbtreehash_list.c: Likewise.
337         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
338         * modules/carray-list-tests (Makefile.am): Likewise.
339         * modules/linked-list-tests (Makefile.am): Likewise.
340         * modules/linkedhash-list-tests (Makefile.am): Likewise.
341         * modules/avltree-list-tests (Makefile.am): Likewise.
342         * modules/rbtree-list-tests (Makefile.am): Likewise.
343         * modules/avltreehash-list-tests (Makefile.am): Likewise.
344         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
345
346         * NEWS: Mention the changes.
347
348         * lib/clean-temp.c: Include gl_xlist.h.
349         * modules/clean-temp (Depends-on): Add xlist.
350
351         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
352         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
353
354         * tests/test-array_oset.c: Include gl_xlist.h.
355         * modules/array-oset-tests (Depends-on): Add xlist.
356
357         Reported by José E. Marchesi <jemarch@gnu.org>.
358
359 2009-12-13  Bruno Haible  <bruno@clisp.org>
360
361         Move the malloc checking from module 'oset' to new module 'xoset'.
362         * modules/xoset: New file.
363         * lib/gl_xoset.h: New file.
364         * lib/gl_xoset.c: New file.
365         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
366         declarations.
367         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
368         (struct gl_oset_implementation): Rename and change methods accordingly.
369         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
370         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
371         'int'. Mark as __warn_unused_result__.
372         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
373         gl_oset_create_empty.
374         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
375         'int'.
376         * lib/gl_array_oset.c: Don't include xalloc.h.
377         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
378         malloc, not xmalloc.
379         (grow): Change return type to 'int'. Don't call xalloc_die.
380         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
381         to 'int'.
382         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
383         'int'.
384         (gl_array_oset_implementation): Update.
385         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
386         gl_tree_create_empty.
387         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
388         'int'.
389         * lib/gl_avltree_oset.c: Don't include xalloc.h.
390         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
391         xmalloc.
392         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
393         not xmalloc.
394         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
395         xmalloc.
396         (gl_avltree_oset_implementation): Update.
397         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
398         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
399         xmalloc.
400         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
401         not xmalloc.
402         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
403         xmalloc.
404         (gl_rbtree_oset_implementation): Update.
405         * modules/array-oset (Depends-on): Remove xalloc.
406         * modules/avltree-oset (Depends-on): Likewise.
407         * modules/rbtree-oset (Depends-on): Likewise.
408         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
409         * tests/test-avltree_oset.c: Likewise.
410         * tests/test-rbtree_oset.c: Likewise.
411         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
412         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
413         * modules/rbtree-oset-tests (Makefile.am): Likewise.
414         * NEWS: Mention the change.
415
416 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
417
418         maint.mk: allow a project to override release-prep commands
419         * top/maint.mk (alpha, beta, stable): Move release-preparatory
420         commands into a new rule.
421         (release-prep): New rule.
422         (release-prep-hook): New overridable variable.
423
424 2009-12-13  Bruno Haible  <bruno@clisp.org>
425
426         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
427
428 2009-12-13  Jim Meyering  <meyering@redhat.com>
429
430         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
431         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
432
433 2009-12-12  Bruno Haible  <bruno@clisp.org>
434
435         duplocale: Tweak.
436         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
437
438 2009-12-12  Karl Berry  <karl@gnu.org>
439
440         * config/srclist.txt (strtoll.c): tab changes, no more sync.
441
442 2009-12-12  Bruno Haible  <bruno@clisp.org>
443
444         * m4/po.m4: Undo incorrect untabification.
445
446 2009-12-12  Bruno Haible  <bruno@clisp.org>
447
448         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
449         * modules/c-strtod (Depends-on): Add locale.
450         * modules/c-strtold (Depends-on): Likewise.
451
452 2009-12-12  Bruno Haible  <bruno@clisp.org>
453
454         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
455
456 2009-12-11  Eric Blake  <ebb9@byu.net>
457
458         setenv: relax requirement in light of POSIX ruling
459         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
460         not NULL.
461         * tests/test-setenv.c (main): Relax test.
462         * tests/test-unsetenv.c (main): Likewise.
463         * doc/posix-functions/setenv.texi (setenv): Document this.
464         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
465
466 2009-12-11  Bruno Haible  <bruno@clisp.org>
467
468         New module 'fd-safer-flag'.
469         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
470         * lib/dup-safer.c (dup_safer_flag): Remove function.
471         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
472         * lib/fd-safer.c (fd_safer_flag): Remove function.
473         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
474         * modules/cloexec (configure.ac): Drop indicator macro.
475         * modules/fd-safer-flag: New file.
476         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
477         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
478         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
479
480 2009-12-11  Bruno Haible  <bruno@clisp.org>
481
482         Tests for module 'nl_langinfo'.
483         * modules/nl_langinfo-tests: New file.
484         * tests/test-nl_langinfo.sh: New file.
485         * tests/test-nl_langinfo.c: New file.
486
487         New module 'nl_langinfo'.
488         * lib/nl_langinfo.c: New file.
489         * m4/nl_langinfo.m4: New file.
490         * modules/nl_langinfo: New file.
491         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
492
493 2009-12-11  Bruno Haible  <bruno@clisp.org>
494
495         Tests for module 'langinfo'.
496         * modules/langinfo-tests: New file.
497         * tests/test-langinfo.c: New file.
498
499         New module 'langinfo'.
500         * lib/langinfo.in.h: New file.
501         * m4/langinfo_h.m4: New file.
502         * modules/langinfo: New file.
503         * doc/posix-headers/langinfo.texi: Mention the new module.
504
505 2009-12-11  Bruno Haible  <bruno@clisp.org>
506
507         * lib/config.charset: Untabify.
508
509 2009-12-11  Bruno Haible  <bruno@clisp.org>
510
511         * modules/unistd-safer (configure.ac): Drop indicator macro.
512
513 2009-12-11  Bruno Haible  <bruno@clisp.org>
514
515         Move pipe2-safer code to its own file.
516         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
517         * lib/pipe-safer.c (pipe2_safer): Remove function.
518         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
519         (Makefile.am): Add it to lib_SOURCES.
520
521 2009-12-10  Bruno Haible  <bruno@clisp.org>
522
523         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
524
525 2009-12-10  Bruno Haible  <bruno@clisp.org>
526
527         Declare which arguments expect non-NULL values, for GCC and clang.
528         * build-aux/arg-nonnull.h: New file.
529         * modules/arg-nonnull: New file.
530         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
531         (inet_ntop, inet_pton): Use it.
532         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
533         (closedir, dirfd, opendir, scandir, alphasort): Use it.
534         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
535         (open, openat): Use it.
536         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
537         (fnmatch): Use it.
538         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
539         (getopt, getopt_long, getopt_long_only): Use it.
540         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
541         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
542         Use it.
543         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
544         (iconv_open): Use it.
545         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
546         (strtoimax, strtoumax): Use it.
547         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
548         (duplocale): Use it.
549         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
550         (frexp, frexpl): Use it.
551         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
552         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
553         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
554         (tsearch, tfind, tdelete, twalk): Use it.
555         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
556         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
557         sigpending): Use it.
558         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
559         (posix_spawn, posix_spawnp, posix_spawnattr_init,
560         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
561         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
562         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
563         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
564         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
565         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
566         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
567         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
568         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
569         Use it.
570         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
571         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
572         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
573         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
574         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
575         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
576         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
577         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
578         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
579         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
580         strtoull, unsetenv): Use it.
581         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
582         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
583         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
584         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
585         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
586         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
587         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
588         (strcasecmp, strncasecmp): Use it.
589         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
590         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
591         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
592         rpl_setsockopt): Use it.
593         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
594         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
595         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
596         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
597         (gettimeofday): Use it.
598         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
599         (times): Use it.
600         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
601         (uname): Use it.
602         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
603         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
604         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
605         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
606         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
607         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
608         unlinkat, write): Use it.
609         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
610         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
611         * lib/argv-iter.h: Include arg-nonnull.h.
612         (_ATTRIBUTE_NONNULL_): Remove macro.
613         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
614         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
615         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
616         optimization.
617         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
618         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
619         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
620         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
621         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
622         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
623         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
624         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
625         * modules/arpa_inet (Depends-on): Add arg-nonnull.
626         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
627         * modules/dirent (Depends-on): Add arg-nonnull.
628         (Makefile.am): Insert arg-nonnull.h into dirent.h.
629         * modules/fcntl-h (Depends-on): Add arg-nonnull.
630         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
631         * modules/fnmatch (Depends-on): Add arg-nonnull.
632         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
633         * modules/getopt-posix (Depends-on): Add arg-nonnull.
634         (Makefile.am): Insert arg-nonnull.h into getopt.h.
635         * modules/glob (Depends-on): Add arg-nonnull.
636         (Makefile.am): Insert arg-nonnull.h into glob.h.
637         * modules/iconv_open (Depends-on): Add arg-nonnull.
638         (Makefile.am): Insert arg-nonnull.h into iconv.h.
639         * modules/inttypes (Depends-on): Add arg-nonnull.
640         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
641         * modules/locale (Depends-on): Add arg-nonnull.
642         (Makefile.am): Insert arg-nonnull.h into locale.h.
643         * modules/math (Depends-on): Add arg-nonnull.
644         (Makefile.am): Insert arg-nonnull.h into math.h.
645         * modules/netdb (Depends-on): Add arg-nonnull.
646         (Makefile.am): Insert arg-nonnull.h into netdb.h.
647         * modules/search (Depends-on): Add arg-nonnull.
648         (Makefile.am): Insert arg-nonnull.h into search.h.
649         * modules/signal (Depends-on): Add arg-nonnull.
650         (Makefile.am): Insert arg-nonnull.h into signal.h.
651         * modules/spawn (Depends-on): Add arg-nonnull.
652         (Makefile.am): Insert arg-nonnull.h into spawn.h.
653         * modules/stdio (Depends-on): Add arg-nonnull.
654         (Makefile.am): Insert arg-nonnull.h into stdio.h.
655         * modules/stdlib (Depends-on): Add arg-nonnull.
656         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
657         * modules/string (Depends-on): Add arg-nonnull.
658         (Makefile.am): Insert arg-nonnull.h into string.h.
659         * modules/strings (Depends-on): Add arg-nonnull.
660         (Makefile.am): Insert arg-nonnull.h into strings.h.
661         * modules/sys_socket (Depends-on): Add arg-nonnull.
662         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
663         * modules/sys_stat (Depends-on): Add arg-nonnull.
664         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
665         * modules/sys_time (Depends-on): Add arg-nonnull.
666         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
667         * modules/sys_times (Depends-on): Add arg-nonnull.
668         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
669         * modules/sys_utsname (Depends-on): Add arg-nonnull.
670         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
671         * modules/time (Depends-on): Add arg-nonnull.
672         (Makefile.am): Insert arg-nonnull.h into time.h.
673         * modules/unistd (Depends-on): Add arg-nonnull.
674         (Makefile.am): Insert arg-nonnull.h into unistd.h.
675         * modules/wchar (Depends-on): Add arg-nonnull.
676         (Makefile.am): Insert arg-nonnull.h into wchar.h.
677         * modules/argv-iter (Depends-on): Add arg-nonnull.
678         * tests/test-canonicalize.c (null_ptr): New function.
679         (main): Use it.
680         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
681         (main): Use it.
682         * tests/test-memmem.c (null_ptr): New function.
683         (main): Use it.
684         Reported by Jim Meyering.
685
686 2009-12-10  Bruno Haible  <bruno@clisp.org>
687
688         Use spaces for indentation, not tabs.
689         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
690         * m4/*.m4: Untabify.
691         * build-aux/*.h: Untabify.
692         * tests/**/*.[hc]: Untabify.
693         * README: New section "Indent with spaces, not TABs", based on
694         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
695         * NEWS: Mention the change.
696
697 2009-12-10  Bruno Haible  <bruno@clisp.org>
698
699         pty test: Fix link error.
700         * modules/pty-tests (Makefile.am): Add the default LDADD value to
701         test_pty_LDADD.
702
703 2009-12-07  Simon Josefsson  <simon@josefsson.org>
704
705         * modules/pty: New file.
706         * modules/pty-tests: New file.
707         * m4/pty.m4: New file.
708         * tests/test-pty.c: New file.
709         * doc/glibc-headers/pty.texi: Modified.
710         * doc/glibc-functions/forkpty.texi: Modified.
711         * doc/glibc-functions/openpty.texi: Modified.
712
713 2009-12-10  Bruno Haible  <bruno@clisp.org>
714
715         Avoid syntax error in C++ mode.
716         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
717
718 2009-12-10  Bruno Haible  <bruno@clisp.org>
719
720         Use sed with option -e.
721         * gnulib-tool (func_version, func_emit_copyright_notice,
722         func_emit_initmacro_end, func_import, func_create_testdir): Pass
723         option -e to sed.
724         * modules/link-warning (Makefile.am): Likewise.
725
726 2009-12-10  Jim Meyering  <meyering@redhat.com>
727
728         mgetgroups: do not write bytes beyond end of malloc'd buffer
729         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
730         username, we call getgroups with a one-element-shorter buffer,
731         but still told it the length was original, max_n_groups.
732
733 2009-12-09  Eric Blake  <ebb9@byu.net>
734
735         cloexec: relax license
736         * modules/cloexec (Maintainer): Add myself.
737         (License): Use LGPL, not GPL.
738
739         link-warning: optimize generation
740         * modules/link-warning (Makefile.am): Reduce process usage.
741
742 2009-12-09  Bruno Haible  <bruno@clisp.org>
743
744         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
745         workaround was added on 2009-11-17.
746
747 2009-12-09  Jim Meyering  <meyering@redhat.com>
748             Bruno Haible  <bruno@clisp.org>
749
750         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
751         * modules/link-warning (Makefile.am): Make the comment-removing sed
752         command more robust in the face of bootstrap-prepended comment lines.
753
754 2009-12-09  Bruno Haible  <bruno@clisp.org>
755
756         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
757         most one group.
758
759 2009-12-09  Simon Josefsson <simon@josefsson.org>
760             Bruno Haible  <bruno@clisp.org>
761
762         * build-aux/link-warning.h: Add copyright notice.
763         * modules/link-warning (Makefile.am): Generate link-warning.h from
764         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
765         * NEWS: Mention change in link-warning module.
766         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
767         * modules/dirent (Makefile.am): Add dependency to dirent.h.
768         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
769         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
770         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
771         * modules/math (Makefile.am): Add dependency to math.h.
772         * modules/search (Makefile.am): Add dependency to search.h.
773         * modules/signal (Makefile.am): Add dependency to signal.h.
774         * modules/spawn (Makefile.am): Add dependency to spawn.h.
775         * modules/stdio (Makefile.am): Add dependency to stdio.h.
776         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
777         * modules/string (Makefile.am): Add dependency to string.h.
778         * modules/strings (Makefile.am): Add dependency to strings.h.
779         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
780         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
781         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
782         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
783         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
784         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
785         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
786         * modules/unistd (Makefile.am): Add dependency to unistd.h.
787         * modules/wchar (Makefile.am): Add dependency to wchar.h.
788
789 2009-12-09  Bruno Haible  <bruno@clisp.org>
790
791         fchdir: Optimize away rpl_fstat when possible.
792         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
793         REPLACE_OPEN_DIRECTORY.
794         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
795
796 2009-12-09  Bruno Haible  <bruno@clisp.org>
797
798         * lib/fchdir.c: Update comment.
799
800 2009-12-09  Bruno Haible  <bruno@clisp.org>
801
802         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
803
804 2009-12-08  Eric Blake  <ebb9@byu.net>
805
806         fchdir: avoid memory leak on re-registration.
807         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
808
809 2009-12-08  Jim Meyering  <meyering@redhat.com>
810
811         init.sh: avoid Solaris 10 /bin/sh portability problem
812         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
813         sourced script:
814           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
815           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
816           bar
817         tests/init.sh relied on that, accepting a --set-path=DIR argument,
818         and two tests used that idiom.
819         * tests/init.sh: Update suggested usage comments.
820         (path_prepend_): New function, to be used in place
821         of the --src-path=DIR option.
822         (setup_): Move PATH-prepending code into path_prepend_.
823         * tests/test-pread.sh: Adapt to new usage.
824         * tests/test-xalloc-die.sh: Likewise.
825
826 2009-12-08  Simon Josefsson  <simon@josefsson.org>
827
828         * doc/gnulib.texi (Glibc pty.h): Add.
829         * doc/glibc-functions/forkpty.texi: Add.
830         * doc/glibc-functions/openpty.texi: Add.
831         Suggested by Bruno Haible.
832
833 2009-12-08  Eric Blake  <ebb9@byu.net>
834
835         fchdir: fix logic bugs
836         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
837         * tests/test-fchdir.c (main): Enhance test.
838         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
839         is in use.
840
841         dup2: fix logic bugs
842         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
843         REPLACE_DUP2 to decide when rpl_dup2 is needed.
844         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
845         exists.
846         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
847
848 2009-12-07  Eric Blake  <ebb9@byu.net>
849
850         unlink: fix m4 detection
851         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
852
853         unistd-safer: add unit test
854         * modules/unistd-safer-tests: New file.
855         * tests/test-dup-safer.c: Likewise.
856         * tests/test-cloexec.c (setmode): Avoid compiler warning.
857         * tests/test-dup2.c (setmode): Likewise.
858         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
859
860         cloexec: preserve text vs. binary across dup_cloexec
861         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
862         mode.
863         * modules/dup2-tests (Depends-on): Add binary-io.
864         * modules/cloexec-tests (Depends-on): Likewise.
865         * tests/test-dup2.c (setmode, is_mode): New helpers.
866         (main): Add tests that translation mode is preserved.
867         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
868         Reported by Bruno Haible.
869
870         mgetgroups: reduce duplicate listings
871         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
872         resulting array.
873         * tests/test-chown.h (test_chown): Simplify client.
874         * tests/test-lchown.h (test_lchown): Likewise.
875
876 2009-12-06  Bruno Haible  <bruno@clisp.org>
877
878         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
879         value.
880
881 2009-12-06  Bruno Haible  <bruno@clisp.org>
882
883         * lib/progname.c: Include stdio.h, stdlib.h.
884         (set_program_name): Reject a NULL argument.
885
886 2009-12-05  Eric Blake  <ebb9@byu.net>
887
888         pipe2-safer: new module
889         * modules/pipe2-safer: New file.
890         * lib/unistd-safer.h (pipe2_safer): New prototype.
891         * lib/unistd--.h (pipe2): New wrapper.
892         * lib/pipe-safer.c (pipe2_safer): New function.
893         * modules/pipe (Depends-on): Add pipe2-safer.
894         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
895
896         stdlib-safer: preserve cloexec flag for mkostemp[s]
897         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
898         fd_safer_flag.
899
900         unistd-safer: allow preservation of cloexec status via flag
901         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
902         prototypes.
903         * lib/dup-safer.c (dup_safer_flag): New function.
904         * lib/fd-safer.c (fd_safer_flag): Likewise.
905         * modules/cloexec (configure.ac): Set witness.
906
907         test-dup2: enhance test
908         * modules/dup2-tests (Depends-on): Add cloexec.
909         * tests/test-dup2.c (main): Enhance test.
910
911         cloexec: add dup_cloexec
912         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
913         header and comments.
914         * lib/cloexec.c (set_cloexec_flag): Add comments.
915         (dup_cloexec): New function, with mingw implementation borrowed
916         from...
917         * lib/w32spawn.h (dup_noinherit): ...here.
918         * modules/execute (Depends-on): Add cloexec.
919         * modules/pipe (Depends-on): Likewise.
920         * modules/cloexec (Depends-on): Add dup2.
921         * modules/cloexec-tests (Files): New file.
922         * tests/test-cloexec.c: Likewise.
923
924         test-xalloc-die: fix test for mingw
925         * modules/xalloc-die-tests (Files): Add tests/init.sh.
926         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
927         directory and .exe suffix off argv[0] output.
928
929         test-fseeko: fix test for mingw
930         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
931         than undefining fseek, so test will pass on mingw.
932
933 2009-12-05  Bruno Haible  <bruno@clisp.org>
934
935         * lib/progname.h (set_program_name): Clarify specification.
936         * lib/progname.c (set_program_name): Likewise.
937         Reported by Jim Meyering.
938
939 2009-12-05  Jim Meyering  <meyering@redhat.com>
940
941         maint.mk: backslash-escape parens in default regexp
942         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
943         backslash-escape the literal parentheses.
944
945         maint.mk: news-date-check: use grep -E
946         * top/maint.mk (today): Define a Make variable, not a...
947         (news-date-check): ...shell variable.
948         (news-date-regexp): Use the Make variable.
949         Use grep's -E option.  Change the failing diagnostic to mention
950         the variable, $(news-date-regexp).
951
952 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
953
954         maintainer-makefile: allow customization of NEWS entry format
955         * top/maint.mk (news-date-regexp): New overridable variable.
956         (news-date-check): Use it.
957
958 2009-12-04  Eric Blake  <ebb9@byu.net>
959
960         mgetgroups: add xgetgroups, and avoid ENOSYS failures
961         * lib/mgetgroups.h (xgetgroups): New prototype.
962         * lib/mgetgroups.c (xgetgroups): New wrapper.
963         (mgetgroups): Handle ENOSYS.
964         * modules/mgetgroups (Depends-on): Add realloc.
965         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
966
967         mgetgroups: avoid argument promotion issues with -1
968         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
969         for invalid gid_t.
970         * tests/test-chown.h (getegid, test_chown): Likewise.
971         * tests/test-lchown.h (getegid, test_lchown): Likewise.
972
973 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
974
975         exclude: Fix header file problems.
976         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
977
978 2009-12-01  Jim Meyering  <meyering@redhat.com>
979
980         fts: fts_open: do not let an empty string cause immediate failure
981         This is required in support of GNU rm, for which the command
982         "rm A '' B" must process and remove both A and B, in spite of
983         the empty string argument.
984         * lib/fts.c (fts_open): Do not let the presence of an empty string
985         cause fts_open to fail immediately.  Most fts-using tools must be
986         able to process all arguments, in order, and can be expected to
987         diagnose such arguments themselves.
988
989 2009-11-30  Eric Blake  <ebb9@byu.net>
990
991         utimens: fix compilation error
992         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
993         Declare variable at right scope.
994
995 2009-11-29  Jim Meyering  <meyering@redhat.com>
996
997         bootstrap: handle perl-5.11's changed --version output
998         * build-aux/bootstrap (get_version): Handle perl separately,
999         since perl-5.11's --version output is different.
1000
1001 2009-11-28  Jim Meyering  <meyering@redhat.com>
1002
1003         userspec: depend on the inttostr module, too
1004         * modules/userspec (Depends-on): Add inttostr.
1005
1006         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
1007         * lib/userspec.c (parse_with_separator): Do not accept a user ID
1008         number of MAXUID when it evaluates to (uid_t) -1.
1009         Likewise for group ID.  Reported by Matt McCutchen in
1010         <http://savannah.gnu.org/bugs/?28113>
1011
1012         userspec: reformat to use spaces, not TABs
1013         * lib/userspec.c: Expand TABs to spaces.
1014         Add Emacs' "indent-tabs-mode: nil" hint.
1015
1016 2009-11-27  Eric Blake  <ebb9@byu.net>
1017
1018         getopt-gnu: flush out another BSD bug
1019         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
1020         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
1021         flush out BSD bug.
1022         * tests/test-getopt.h (test_getopt): End lists with NULL.
1023         * tests/test-getopt_long.h (test_getopt_long): Likewise.
1024         (test_getopt_long_posix): Enhance test.
1025         * modules/getopt-posix-tests (Depends-on): Add stdbool.
1026         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
1027         getopt-gnu.
1028         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
1029         Likewise.
1030
1031 2009-11-27  Simon Josefsson  <simon@josefsson.org>
1032
1033         * modules/idpriv-droptemp-tests (Notice): Fix text.
1034
1035 2009-11-27  Jim Meyering  <meyering@redhat.com>
1036
1037         test-xalloc-die: avoid spurious failure due to libtool argv difference
1038         In a libtool-enabled project, this test would fail due to a difference
1039         in the emitted program name, e.g.,
1040         -test-xalloc-die: memory exhausted
1041         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
1042         Use program to avoid that.
1043         * modules/xalloc-die-tests (Depends-on): Add progname.
1044         * tests/test-xalloc-die.c: Include progname.h".
1045         (program_name): Remove decl.
1046         (main): Call set_program_name.
1047         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
1048
1049 2009-11-26  Richard Jones  <rjones@redhat.com>
1050
1051         w32sock: leave win32 error in place.
1052         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
1053
1054 2009-11-26  Eric Blake  <ebb9@byu.net>
1055
1056         init.sh: suggest to use skip_ and fail_ functions in comments
1057         * tests/init.sh: Add a sentence.
1058
1059 2009-11-25  Bruno Haible  <bruno@clisp.org>
1060
1061         init.sh: add documentation in comments
1062         * tests/init.sh: Add some developer and user documentation.
1063
1064 2009-11-26  Jim Meyering  <meyering@redhat.com>
1065
1066         init.sh: accommodate even those who specify bogus srcdir manually
1067         * tests/init.sh: Normally, srcdir is guaranteed by automake and
1068         configure-time tests to be sanitized, so that there is no need to
1069         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
1070         (with no double quotes) suffices.  However, since tests may be
1071         invoked manually, and since you may explicitly set srcdir to the
1072         name of a directory containing spaces, do quote its uses here.
1073         * tests/test-pread.sh: Likewise.
1074         Suggested by Bruno Haible.
1075
1076         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
1077         * tests/test-pread.sh: Write no data into the pipe, because
1078         test-pread actually reads none.  This avoids a diagnostic,
1079         "bash: echo: write error: Broken pipe", that arises in the unusual
1080         event something is ignoring SIGPIPE, and might be interpreted
1081         as some sort of failure.  Reported by Bruno Haible.
1082
1083 2009-11-25  Jim Meyering  <meyering@redhat.com>
1084
1085         test-pread: cover failure with ESPIPE and EINVAL
1086         * tests/test-pread.c (main): Test for failure, too.
1087         * tests/test-pread.sh: Invoke with stdin on a pipe.
1088         Suggested by Eric Blake.
1089
1090         pread: improvement and fix
1091         * modules/pread (Depends-on): Depend on lseek, for portability to
1092         e.g., mingw.  Suggested by Eric Blake.
1093         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
1094
1095         unistd.in.h: correct declaration of pread
1096         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
1097         Reported by Richard W.M. Jones.
1098
1099         test-pread.sh: distribute the test script
1100         * modules/pread-tests (Files): Include test-pread.sh.
1101
1102         test-pread.sh: clean up
1103         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
1104         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
1105         That is unnecessary, since it's always ".".
1106         Suggestion from Eric Blake.
1107
1108         test-pread.sh: make executable
1109         * tests/test-pread.sh: Set executable bit.
1110         Reported by Eric Blake.
1111
1112         correct typo in test-pread.sh
1113         * tests/test-pread.sh: Add #! line.
1114
1115         test pread
1116         * tests/test-pread.c: New file.
1117         * tests/test-pread.sh: Likewise.
1118         * modules/pread-tests: Likewise.
1119
1120         pread: new module
1121         * modules/pread: New file.
1122         * lib/unistd.in.h (pread): Define/declare.
1123         * lib/pread.c (pread): New file.
1124         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
1125         * modules/unistd (Makefile.am): Substitute witnesses.
1126         * doc/posix-functions/pread.texi (pread): Update.
1127         * MODULES.html.sh: Add pread.
1128
1129 2009-11-25  Jim Meyering  <meyering@redhat.com>
1130
1131         tests/init.sh: new file to be used via most *.sh tests
1132         * tests/init.sh: New file.
1133
1134 2009-11-25  Eric Blake  <ebb9@byu.net>
1135
1136         utimens: work around older Linux failure with symlinks
1137         * lib/utimens.c (lutimensat_works_really): New variable.
1138         (fdutimens, lutimens): Use it to manage kernels that support
1139         nanosecond times on files, but not on symlinks.
1140         Reported by Ondřej Vašík.
1141
1142         utimes: fix configure grammar
1143         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
1144
1145 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
1146
1147         regex: Fix fastmap for multibyte character ranges.
1148         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
1149         characters when a multibyte character range is included.
1150
1151 2009-11-22  Andy Wingo  <wingo@pobox.com>
1152
1153         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
1154         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
1155
1156 2009-11-24  Bruno Haible  <bruno@clisp.org>
1157
1158         doc: Most *_l functions exist in MacOS X 10.5.
1159         * doc/posix-functions/duplocale.texi: Update platforms list.
1160         * doc/posix-functions/freelocale.texi: Likewise.
1161         * doc/posix-functions/newlocale.texi: Likewise.
1162         * doc/posix-functions/uselocale.texi: Likewise.
1163         * doc/posix-functions/isalnum_l.texi: Likewise.
1164         * doc/posix-functions/isalpha_l.texi: Likewise.
1165         * doc/posix-functions/isblank_l.texi: Likewise.
1166         * doc/posix-functions/iscntrl_l.texi: Likewise.
1167         * doc/posix-functions/isdigit_l.texi: Likewise.
1168         * doc/posix-functions/isgraph_l.texi: Likewise.
1169         * doc/posix-functions/islower_l.texi: Likewise.
1170         * doc/posix-functions/isprint_l.texi: Likewise.
1171         * doc/posix-functions/ispunct_l.texi: Likewise.
1172         * doc/posix-functions/isspace_l.texi: Likewise.
1173         * doc/posix-functions/isupper_l.texi: Likewise.
1174         * doc/posix-functions/iswalnum_l.texi: Likewise.
1175         * doc/posix-functions/iswalpha_l.texi: Likewise.
1176         * doc/posix-functions/iswblank_l.texi: Likewise.
1177         * doc/posix-functions/iswcntrl_l.texi: Likewise.
1178         * doc/posix-functions/iswctype_l.texi: Likewise.
1179         * doc/posix-functions/iswdigit_l.texi: Likewise.
1180         * doc/posix-functions/iswgraph_l.texi: Likewise.
1181         * doc/posix-functions/iswlower_l.texi: Likewise.
1182         * doc/posix-functions/iswprint_l.texi: Likewise.
1183         * doc/posix-functions/iswpunct_l.texi: Likewise.
1184         * doc/posix-functions/iswspace_l.texi: Likewise.
1185         * doc/posix-functions/iswupper_l.texi: Likewise.
1186         * doc/posix-functions/iswxdigit_l.texi: Likewise.
1187         * doc/posix-functions/isxdigit_l.texi: Likewise.
1188         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
1189         * doc/posix-functions/strcasecmp_l.texi: Likewise.
1190         * doc/posix-functions/strcoll_l.texi: Likewise.
1191         * doc/posix-functions/strfmon_l.texi: Likewise.
1192         * doc/posix-functions/strftime_l.texi: Likewise.
1193         * doc/posix-functions/strncasecmp_l.texi: Likewise.
1194         * doc/posix-functions/strxfrm_l.texi: Likewise.
1195         * doc/posix-functions/tolower_l.texi: Likewise.
1196         * doc/posix-functions/toupper_l.texi: Likewise.
1197         * doc/posix-functions/towctrans_l.texi: Likewise.
1198         * doc/posix-functions/towlower_l.texi: Likewise.
1199         * doc/posix-functions/towupper_l.texi: Likewise.
1200         * doc/posix-functions/wcscoll_l.texi: Likewise.
1201         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
1202         * doc/posix-functions/wctrans_l.texi: Likewise.
1203         * doc/posix-functions/wctype_l.texi: Likewise.
1204         * doc/glibc-functions/strptime_l.texi: Likewise.
1205         * doc/glibc-functions/strtod_l.texi: Likewise.
1206         * doc/glibc-functions/strtof_l.texi: Likewise.
1207         * doc/glibc-functions/strtol_l.texi: Likewise.
1208         * doc/glibc-functions/strtold_l.texi: Likewise.
1209         * doc/glibc-functions/strtoll_l.texi: Likewise.
1210         * doc/glibc-functions/strtoul_l.texi: Likewise.
1211         * doc/glibc-functions/strtoull_l.texi: Likewise.
1212         * doc/glibc-functions/wcsftime_l.texi: Likewise.
1213         * doc/glibc-functions/wcstod_l.texi: Likewise.
1214         * doc/glibc-functions/wcstof_l.texi: Likewise.
1215         * doc/glibc-functions/wcstol_l.texi: Likewise.
1216         * doc/glibc-functions/wcstold_l.texi: Likewise.
1217         * doc/glibc-functions/wcstoll_l.texi: Likewise.
1218         * doc/glibc-functions/wcstoul_l.texi: Likewise.
1219         * doc/glibc-functions/wcstoull_l.texi: Likewise.
1220
1221 2009-11-24  Bruno Haible  <bruno@clisp.org>
1222
1223         duplocale: Fix logic bug.
1224         * lib/duplocale.c: Don't include <langinfo.h>.
1225         (_NL_LOCALE_NAME): Remove macro.
1226         (rpl_duplocale): Use setlocale instead of nl_langinfo.
1227         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
1228
1229 2009-11-23  Jim Meyering  <meyering@redhat.com>
1230
1231         test-update-copyright: don't hard-code /usr/bin/perl
1232         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
1233         perl to print the current year.  Gilles Espinasse reported that
1234         the replaced use of perl was hard-coded as /usr/bin/perl.
1235
1236 2009-11-23  Bruno Haible  <bruno@clisp.org>
1237
1238         duplocale: Add support for glibc 2.3.x.
1239         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
1240
1241 2009-11-22  Bruno Haible  <bruno@clisp.org>
1242
1243         vasnprintf: Tiny optimization.
1244         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
1245         MacOS X.
1246
1247 2009-11-22  Bruno Haible  <bruno@clisp.org>
1248
1249         Tests for module 'duplocale'.
1250         * modules/duplocale-tests: New file.
1251         * tests/test-duplocale.c: New file.
1252
1253         New module 'duplocale'.
1254         * m4/duplocale.m4: New file.
1255         * lib/locale.in.h (duplocale): New declaration.
1256         * lib/duplocale.c: New file.
1257         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
1258         gl_LOCALE_H_DEFAULTS): New macros.
1259         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
1260         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
1261         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
1262         REPLACE_DUPLOCALE.
1263         * modules/duplocale: New file.
1264         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
1265
1266 2009-11-22  Bruno Haible  <bruno@clisp.org>
1267
1268         * modules/locale-tests (configure.ac): Test for newlocale function.
1269         * tests/test-locale.c: When the system has extended locale functions,
1270         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
1271
1272         locale: Make locale_t available when possible.
1273         * lib/locale.in.h: Include <xlocale.h> when it exists.
1274         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
1275         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
1276         * modules/locale (Depends-on): Add extensions.
1277         (Makefile.am): Also substitute HAVE_XLOCALE_H.
1278         * doc/posix-headers/locale.texi: Document the problem with locale_t.
1279
1280 2009-11-22  Bruno Haible  <bruno@clisp.org>
1281
1282         Add comments.
1283         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
1284         invocation.
1285         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
1286         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
1287         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
1288
1289 2009-11-22  Bruno Haible  <bruno@clisp.org>
1290
1291         error: account for the possibility of freopen (stdout).
1292         * lib/error.c: Include <unistd.h>.
1293         (flush_stdout): New function, extracted from error and error_at_line.
1294         Determine stdout's fd dynamically.
1295         (error, error_at_line): Invoke flush_stdout.
1296         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
1297         * modules/error (Depends-on): Add unistd.
1298
1299 2009-11-22  Bruno Haible  <bruno@clisp.org>
1300
1301         diffseq: Add comment.
1302         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
1303
1304 2009-11-22  Jim Meyering  <meyering@redhat.com>
1305
1306         c-stack: avoid defining an unused static function
1307         * lib/c-stack.c (find_stack_direction): Do not define this function
1308         when it will not be used.
1309
1310         diffseq: avoid spurious gcc warnings
1311         * lib/diffseq.h (IF_LINT2): Define.
1312         (compareseq): Use it to initialize two members of "part".
1313         This avoids two used-uninitialized warnings.
1314
1315 2009-11-21  Jim Meyering  <meyering@redhat.com>
1316
1317         c-stack: avoid "ignoring return value of `write'" warning
1318         * lib/c-stack.c: Include "ignore-value.h".
1319         (die): Explicitly ignore each write return value.
1320         * modules/c-stack (Depends-on): Add ignore-value.
1321
1322 2009-11-21  Bruno Haible  <bruno@clisp.org>
1323
1324         diffseq: reduce scope of variable 'best'.
1325         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
1326         variable, earlier used for two different purposes.
1327
1328 2009-11-21  Jim Meyering  <meyering@redhat.com>
1329
1330         diffseq: remove useless assignment to "best"
1331         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
1332         assignment.  At that point "best" is already guaranteed to be zero.
1333
1334 2009-11-20  Eric Blake  <ebb9@byu.net>
1335
1336         build: mention ftp redirector in release announcements
1337         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
1338         values that used to come from cfg.mk; mention FTP redirect URL.
1339         * build-aux/announce-gen: Mention the mirror list.
1340         Suggested by Karl Berry.
1341
1342         nanosleep: improve port to mingw
1343         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
1344         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
1345         LIB_NANOSLEEP, but only when needed.
1346         * modules/select (Link): Document LIBSOCKET.
1347         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
1348         enough.
1349
1350         nanosleep: work around cygwin bug
1351         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
1352         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
1353         bug.
1354         (getnow): Delete, not needed.
1355         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
1356         LIB_CLOCK_GETTIME.
1357         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
1358         clock-time, gettime.
1359         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
1360         bug.
1361         * modules/nanosleep-tests: New test.
1362         * tests/test-nanosleep.c: New file.
1363
1364         sleep: work around cygwin bug
1365         * lib/sleep.c (rpl_sleep): Work around the bug.
1366         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
1367         (gl_PREREQ_SLEEP): Delete unused macro.
1368         * modules/sleep (Depends-on): Add verify.
1369         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
1370         * modules/unistd (Makefile.am): Substitute witness.
1371         * lib/unistd.in.h (sleep): Update prototype.
1372         * doc/posix-functions/sleep.texi (sleep): Document the bug.
1373         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
1374         * modules/sleep-tests (Depends-on): Check for alarm.
1375
1376 2009-11-20  Jim Meyering  <meyering@redhat.com>
1377
1378         maint.mk: improve sc_prohibit_magic_number_exit
1379         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
1380         so it does not match uses like System.exit(1).
1381         Add comments showing how to correct all offenders.
1382
1383 2009-11-19  Eric Blake  <ebb9@byu.net>
1384
1385         xalloc-die-tests: add missing library
1386         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
1387
1388         test-xvasprintf: silence compiler warnings
1389         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
1390         empty string from gcc.
1391
1392 2009-11-19  Jim Meyering  <meyering@redhat.com>
1393
1394         xfreopen: new module, from coreutils
1395         * modules/xfreopen: New module.
1396         * lib/xfreopen.c: New file.
1397         * lib/xfreopen.h: New file.
1398         * MODULES.html.sh (File stream based Input/Output"): Add it.
1399
1400 2009-11-19  Eric Blake  <ebb9@byu.net>
1401
1402         manywarnings: depend on warnings
1403         * modules/manywarnings (Depends-on): Add warnings.
1404
1405         build: avoid compiler warnings
1406         * lib/select.c (rpl_select): Delete unused variable.
1407         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
1408
1409 2009-11-18  Eric Blake  <ebb9@byu.net>
1410
1411         tests: avoid false negative with --with-packager
1412         * tests/test-version-etc.sh: Discard packager information.
1413         * tests/test-argp-version-etc-1.sh: Likewise.
1414         Reported by Mike Frysinger.
1415
1416         utimens: fix regression on Solaris
1417         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
1418         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
1419         can only change fd timestamps via futimesat.  Instead, use an
1420         additional witness macro to avoid BSD bug.
1421         Reported by Jim Meyering.
1422
1423 2009-11-17  Eric Blake  <ebb9@byu.net>
1424
1425         usleep: use it to simplify tests
1426         * modules/stat-time-tests (Depends-on): Add usleep.
1427         (configure.ac): Drop usleep check.
1428         * modules/chown-tests (Depends-on, configure.ac): Likewise.
1429         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
1430         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
1431         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
1432         * modules/openat-tests (Depends-on, configure.ac): Likewise.
1433         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
1434         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
1435         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
1436         Likewise.
1437         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
1438         * tests/test-lchown.h (nap): Likewise.
1439         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
1440         * tests/test-stat-time.c (nap): Likewise.
1441         * tests/test-utimens-common.h (nap): Update comments.
1442
1443         usleep: new module
1444         * modules/usleep: New file.
1445         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
1446         * lib/usleep.c (usleep): Likewise.
1447         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
1448         * modules/unistd (Makefile.am): Substitute witnesses.
1449         * lib/unistd.in.h (usleep): Add declaration.
1450         * doc/pastposix-functions/usleep.texi (usleep): Document this.
1451         * MODULES.html.sh (Date and time): Likewise.
1452         * modules/usleep-tests (Depends-on): New test.
1453         * tests/test-usleep.c: New file.
1454
1455         chown: work around OpenBSD bug
1456         * lib/chown.c (rpl_chown): Work around the bug.
1457         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
1458         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
1459         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
1460         * modules/chown (Depends-on): Add stdbool.
1461         * modules/lchown (Depends-on): Likewise.
1462         * doc/posix-functions/chown.texi (chown): Document the bug.
1463         * doc/posix-functions/lchown.texi (lchown): Likewise.
1464         * tests/test-lchown.h (test_chown): Relax test.
1465
1466         mkstemp: avoid conflict with C++ keyword template
1467         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
1468         * lib/mkostemp.c (mkostemp): Likewise.
1469         * lib/mkostemps.c (mkostemps): Likewise.
1470         * lib/mkstemp.c (mkstemp): Likewise.
1471         * lib/mkstemps.c (mkstemps): Likewise.
1472
1473         xalloc-die-tests: optimize
1474         * tests/test-xalloc-die.sh: Reduce number of processes.
1475
1476 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1477
1478         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
1479         patch from ludo@gnu.org (Ludovic Courtès).
1480
1481 2009-11-17  Jim Meyering  <meyering@redhat.com>
1482
1483         version-etc: use proper license string
1484         * modules/version-etc (License): Use LGPL, not LGPLv3+.
1485         * modules/version-etc-fsf: Likewise.
1486
1487 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1488
1489         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
1490         printed to stdout.  Deal with EOL differences.
1491
1492 2009-11-17  Eric Blake  <ebb9@byu.net>
1493
1494         unsetenv: work around Solaris bug
1495         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
1496         * lib/unsetenv.c (rpl_unsetenv): Work around it.
1497         Reported by Jim Meyering.
1498
1499         vasnprintf: avoid compiler warnings
1500         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
1501         variables.
1502         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
1503
1504 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1505
1506         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
1507         settings since xalloc-die is no longer the self test,
1508         xalloc-die.sh is.
1509
1510 2009-11-17  Jim Meyering  <meyering@redhat.com>
1511
1512         test-xalloc-die.sh: make the code agree with the commit log
1513         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
1514         at the end, just in case you happen to have a test-xalloc-die
1515         program in some other PATH directory.
1516
1517         test-xalloc-die.sh: fix a portability bug
1518         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
1519         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
1520         Otherwise, argv[0] (as often seen in diagnostics) would be too
1521         system-dependent, sometimes with, and sometimes without the leading "./".
1522
1523         version-etc-fsf: relax license to LGPLv3+
1524         * modules/version-etc-fsf (License): Relax license.
1525
1526 2009-11-16  Eric Blake  <ebb9@byu.net>
1527
1528         xalloc-die-tests: avoid printing null pointer
1529         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
1530         shell script.
1531         * tests/test-xalloc-die.c (program_name): Declare.
1532         * tests/test-xalloc-die.sh (tmpfiles): New file.
1533
1534         setenv, unsetenv: work around various bugs
1535         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
1536         (setenv) [HAVE_SETENV]: Work around bugs.
1537         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
1538         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
1539         for bugs.
1540         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
1541         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
1542         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
1543         * modules/stdlib (Makefile.am): Update substitutions.
1544         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
1545         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
1546         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
1547         * modules/setenv-tests: New test.
1548         * modules/unsetenv-tests: Likewise.
1549         * tests/test-setenv.c: New file.
1550         * tests/test-unsetenv.c: Likewise.
1551
1552 2009-11-16  Jim Meyering  <meyering@redhat.com>
1553
1554         version-etc: relax license to LGPLv3+
1555         * modules/version-etc (License): Relax license.
1556
1557         better AC_REQUIRE expanded-before-required-warning avoidance
1558         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
1559         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
1560         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
1561         which is no longer needed.
1562
1563 2009-11-16  Eric Blake  <ebb9@byu.net>
1564
1565         test-freading: clean up temporary file
1566         * tests/test-freading.c (main): Remove file on success, and use
1567         ASSERT more liberally.
1568         Reported by Jim Meyering.
1569
1570 2009-11-16  Jim Meyering  <meyering@redhat.com>
1571
1572         avoid new AC_REQUIRE expanded-before-required warnings
1573         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
1574         merely using it.
1575         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
1576         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
1577
1578 2009-11-15  Simon Josefsson  <simon@josefsson.org>
1579
1580         * tests/test-xalloc-die.c: New file.
1581         * modules/xalloc-die-tests: New file.
1582         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
1583         XFAIL_TESTS so it can be appended by modules.
1584
1585 2009-11-15  Simon Josefsson  <simon@josefsson.org>
1586
1587         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
1588         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
1589
1590 2009-11-14  Eric Blake  <ebb9@byu.net>
1591
1592         fnmatch: avoid compiler warning
1593         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
1594         to silence compiler warning about mismatch signedness in ?:.
1595         Reported by Robert Millan.
1596
1597         intprops: add double-inclusion guard
1598         * lib/intprops.h: Allow idempotent includes.
1599         Suggested by Bruce Korb.
1600
1601         openat: detect Solaris fchownat bug
1602         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
1603         penalizing glibc chownat when only lchownat is broken.
1604         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
1605         trailing slash bugs.
1606         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
1607         * modules/openat-tests (Files): Include more files.
1608         (Depends-on): Add mgetgroups, sleep, stat-time.
1609         (configure.ac): Add additional checks.
1610         (Makefile.am): Build new test.
1611         * tests/test-fchownat.c: New file.
1612
1613         lchown: detect Solaris and FreeBSD bug
1614         * lib/lchown.c (rpl_lchown): Work around bug.
1615         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
1616         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1617         * modules/unistd (Makefile.am): Populate it.
1618         * lib/unistd.in.h (lchown): Update declaration.
1619         * doc/posix-functions/lchown.texi (lchown): Document the bug.
1620         * modules/lchown-tests: New file.
1621         * tests/test-lchown.h (test_lchown): Likewise.
1622         * tests/test-lchown.c (main): Likewise.
1623
1624         chown: detect Solaris and FreeBSD bug
1625         * lib/chown.c (rpl_chown): Work around bug.
1626         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
1627         (gl_PREREQ_CHOWN): Delete.
1628         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1629         * modules/unistd (Makefile.am): Populate it.
1630         * lib/unistd.in.h (chown): Update declaration.
1631         * lib/lchown.c (chown): Update client.
1632         * modules/lchown (Depends-on): Add lstat.
1633         * doc/posix-functions/chown.texi (chown): Document the bug.
1634         * doc/posix-functions/getgroups.texi (getgroups): Document
1635         getgroups pitfall.
1636         * modules/chown-tests: New file.
1637         * tests/test-chown.h (test_chown): Likewise.
1638         * tests/test-chown.c (main): Likewise.
1639
1640 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
1641
1642         gnulib-tool: correctly detect absence of m4 directories
1643         * gnulib-tool: Avoid extra newline on data passed to wc -l.
1644
1645 2009-11-14  Jim Meyering  <meyering@redhat.com>
1646
1647         maint.mk: Prohibit inclusion of "xalloc.h" without use.
1648         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
1649
1650 2009-11-14  John W. Eaton  <jwe@gnu.org>
1651
1652         strftime.h: wrap funtion declaration in extern "C" block
1653         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
1654
1655 2009-11-13  Eric Blake  <ebb9@byu.net>
1656
1657         getgroups: avoid compiler warning
1658         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
1659
1660         getgroups: work around FreeBSD bug
1661         * lib/getgroups.c (rpl_getgroups): Work around the bug.
1662         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
1663         * doc/posix-functions/getgroups.texi (getgroups): Document it.
1664         * tests/test-getgroups.c (main): Fix buffer overrun.
1665
1666         getgroups: avoid compilation failure
1667         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
1668         * modules/getgroups (Depends-on): Add stdint.
1669
1670 2009-11-13  Jim Meyering  <meyering@redhat.com>
1671
1672         test-getgroups: avoid compilation failure
1673         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
1674
1675 2009-11-13  Eric Blake  <ebb9@byu.net>
1676
1677         mgetgroups: new module, taken from coreutils
1678         * modules/mgetgroups: New file.
1679         * lib/mgetgroups.h: Likewise.
1680         * lib/mgetgroups.c (mgetgroups): Likewise.
1681         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
1682         * MODULES.html.sh (Users and groups): Mention it.
1683
1684         getgroups: don't expose GETGROUPS_T to user
1685         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
1686         an element at a time if GETGROUPS_T is wrong size.
1687         * lib/getugroups.h (getugroups): Change signature.
1688         * lib/unistd.in.h (getgroups): Likewise.
1689         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
1690         signature needs fixing.
1691         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
1692         AC_TYPE_GETGROUPS.
1693         * modules/group-member (Depends-on): Add getgroups.
1694         * lib/group-member.c (group_info, get_group_info): Use gid_t.
1695         (group_member): Rely on getgroups replacement.
1696         * lib/getugroups.c (getugroups): Use gid_t.
1697         * tests/test-getgroups.c (main): Likewise.
1698         * NEWS: Mention the signature change.
1699         * doc/posix-functions/getgroups.texi (getgroups): Mention the
1700         problem with signature.
1701         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
1702         GETGROUPS_T is still useful for setgroups.
1703
1704         getgroups, getugroups: provide stubs for mingw
1705         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
1706         * lib/getugroups.c (getugroups): Likewise.
1707         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
1708         function.  Modernize replacement scheme.
1709         (gl_PREREQ_GETGROUPS): Delete.
1710         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
1711         * modules/getgroups (configure.ac): Declare witness.
1712         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
1713         * modules/unistd (Depends-on): Substitute witness.
1714         * lib/unistd.in.h (getgroups): Declare replacement.
1715
1716         getgroups: avoid calling exit
1717         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
1718         drop xalloc.
1719         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
1720         dependencies.
1721         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
1722         exiting, in the rare case of malloc failure.
1723
1724         getgroups: fix logic error
1725         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
1726         has more than 20 groups.
1727         * modules/getgroups-tests: New test.
1728         * tests/test-getgroups.c: New file.
1729
1730 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1731
1732         * tests/test-base64.c: Improve.
1733
1734 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1735
1736         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
1737         Blake <ebb9@byu.net>.
1738
1739 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1740
1741         * tests/test-xvasprintf.c: Add %s%s related checks.
1742
1743 2009-11-12  Eric Blake  <ebb9@byu.net>
1744
1745         version-etc: match standards.texi style
1746         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
1747         and use <> only for URLs.
1748
1749 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
1750
1751         fts: do not fail on a submount during traversal
1752         * lib/fts.c (fts_build): Read the stat info again after opening
1753         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
1754         Original report at http://bugzilla.redhat.com/501848.
1755
1756 2009-11-12  Jim Meyering  <meyering@redhat.com>
1757
1758         bootstrap: sync from coreutils
1759         * build-aux/bootstrap (bootstrap_epilogue): New function.
1760         Use git_modules_config in one more place.  This make bootstrap's
1761         --gnulib-srcdir option more useful for testing.
1762
1763         bootstrap: generalize autoheader check
1764         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
1765         AC_CONFIG_HEADERS.
1766
1767 2009-11-11  Eric Blake  <ebb9@byu.net>
1768
1769         mkfifoat: use new modules for Solaris and BSD bugs
1770         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
1771         * lib/mkfifoat.c (mknodat): Split...
1772         * lib/mknodat.c (mknodat): ...into new file.
1773         * modules/mkfifoat (Files): Ship new file.
1774         (Depends-on): Add mkfifo, mknod.
1775         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
1776         (Depends-on): Add symlink.
1777         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
1778         redundant with test_mkfifo.h.
1779         (do_mkfifoat, do_mknodat): New helpers.
1780
1781         mknod: new module
1782         * modules/mknod: New file.
1783         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
1784         * lib/mknod.c (mknod): Likewise.
1785         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
1786         defaults.
1787         * modules/sys_stat (Makefile.am): Substitute them.
1788         * lib/sys_stat.in.h (mknod): Declare replacement.
1789         * MODULES.html.sh (Support for systems lacking POSIX:2008):
1790         Document it.
1791         * doc/posix-functions/mknod.texi (mknod): Likewise.
1792         * modules/mknod-tests: New test.
1793         * tests/test-mknod.c: Likewise.
1794
1795         mkfifo: new module
1796         * modules/mkfifo: New file.
1797         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
1798         * lib/mkfifo.c (mkfifo): Likewise.
1799         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
1800         defaults.
1801         * modules/sys_stat (Makefile.am): Substitute them.
1802         * lib/sys_stat.in.h (mkfifo): Declare replacement.
1803         * MODULES.html.sh (Support for systems lacking POSIX:2008):
1804         Document it.
1805         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
1806         * modules/mkfifo-tests: New test.
1807         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
1808         from test-mkfifoat.c.
1809         * tests/test-mkfifo.c: New file.
1810
1811         readlink: detect FreeBSD bug
1812         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
1813         slash on symlink.
1814         * doc/posix-functions/readlink.texi (readlink): Document the bug.
1815         * tests/test-readlink.h (test_readlink): Enhance test.
1816
1817         symlink: detect FreeBSD bug
1818         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
1819         slash on symlink.
1820         * doc/posix-functions/symlink.texi (symlink): Document the bug.
1821         * tests/test-symlink.h (test_symlink): Enhance test.
1822
1823 2009-11-10  Eric Blake  <ebb9@byu.net>
1824
1825         link: detect FreeBSD bug
1826         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
1827         symlink.
1828         * doc/posix-functions/link.texi (link): Document the bug.
1829         * tests/test-link.h (test_link): Enhance test.
1830         * tests/test-linkat.c (main): Update caller.
1831
1832         unlink, remove: detect FreeBSD bug
1833         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
1834         slash on symlink.
1835         * doc/posix-functions/unlink.texi (unlink): Document the bug.
1836         * doc/posix-functions/remove.texi (remove): Likewise.
1837         * tests/test-unlink.h (test_unlink): Enhance test.
1838         * tests/test-remove.c (main): Likewise.
1839
1840 2009-11-09  Eric Blake  <ebb9@byu.net>
1841
1842         rename: detect FreeBSD bug
1843         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
1844         slash on symlink.
1845         * modules/renameat-tests (Depends-on): Add filenamecat.
1846         * tests/test-rename.h (test_rename): Allow one more errno.
1847         * tests/test-renameat.c (main): Likewise.
1848         * doc/posix-functions/rename.texi (rename): Document the bug.
1849
1850         open: detect FreeBSD bug
1851         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
1852         symlink.
1853         * doc/posix-functions/open.texi (open): Document the bug.
1854         * doc/posix-functions/utimes.texi (utimes): Likewise.
1855         * tests/test-open.h (test_open): Add parameters, and test symlink
1856         handling.
1857         * tests/test-open.c (main): Adjust caller.
1858         * tests/test-fcntl-safer.c (main): Likewise.
1859         * modules/open-tests (Depends-on): Add stdbool, symlink.
1860         * modules/fcntl-safer-tests (Depends-on): Likewise.
1861         * tests/test-openat.c (main): Add test-open tests.
1862
1863         stat: detect FreeBSD bug
1864         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
1865         symlink.
1866         * doc/posix-functions/stat.texi (stat): Document the bug.
1867         * tests/test-stat.h (test_stat_func): Add argument.
1868         * tests/test-stat.c (main): Adjust caller.
1869         * tests/test-fstatat.c (main): Likewise.
1870         * modules/stat-tests (Depends-on): Add stdbool, symlink.
1871         Reported by Jim Meyering.
1872
1873 2009-11-09  James Youngman  <jay@gnu.org>
1874
1875         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
1876         * lib/strftime.c: Correct placement of #include "ignore-value.h".
1877
1878 2009-11-08  Jim Meyering  <meyering@redhat.com>
1879
1880         utimens: remove invalid futimesat call
1881         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
1882         It used the file descriptor of the target file as the DIR_FD
1883         parameter and NULL as the file name.  That caused failure with
1884         errno == EFAULT on FreeBSD-8.0-rc2
1885
1886 2009-11-07  Eric Blake  <ebb9@byu.net>
1887
1888         fflush, freadseek: use fseeko, not fseek
1889         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
1890         (clear_ungetc_buffer): Avoid potential problems on large files.
1891         * lib/freadseek.c (freadseek): Likewise.
1892         * modules/freadseek (Depends-on): Add fseeko.
1893         * modules/fseek (configure.ac): Set a witness.
1894         * tests/test-fflush.c (main): Use fseeko.
1895         * tests/test-fpurge.c (fseek): Disable link warning.
1896         * tests/test-freadable.c (fseek): Likewise.
1897         * tests/test-freading.c (fseek): Likewise.
1898         * tests/test-fseeko.c (fseek): Likewise.
1899         * tests/test-ftell.c (fseek): Likewise.
1900         * tests/test-ftello.c (fseek): Likewise.
1901         * tests/test-fwritable.c (fseek): Likewise.
1902         * tests/test-fwriting.c (fseek): Likewise.
1903
1904 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1905
1906         * modules/memchr (Depends-on): Drop getpagesize dependency.
1907
1908 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1909
1910         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
1911         Reported by Ludovic Courtès.
1912         * build-aux/pmccabe2html: Improve example usage.
1913         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
1914
1915 2009-11-06  Jim Meyering  <meyering@redhat.com>
1916
1917         do-release-commit-and-tag: New module.
1918         Automate the release-commit and tag process.
1919         * build-aux/do-release-commit-and-tag: New script, from coreutils.
1920         * modules/do-release-commit-and-tag: New file.
1921         * MODULES.html.sh (Support for maintaining and releasing): Add it.
1922
1923 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1924
1925         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
1926         because test-select.c uses inet_pton.
1927
1928 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1929
1930         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
1931         GETADDRINFO_LIB.  Bump serial number.
1932         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
1933         Suggested by Eric Blake <ebb9@byu.net>.
1934
1935 2009-11-05  Eric Blake  <ebb9@byu.net>
1936
1937         strtod: detect darwin bug
1938         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
1939         Reported by Leo Davis.
1940
1941         freopen-safer: new module
1942         * modules/freopen-safer: New module.
1943         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
1944         * lib/freopen-safer.c (freopen_safer): New file.
1945         * lib/stdio-safer.h (freopen_safer): New declaration.
1946         * lib/stdio--.h (freopen): New override.
1947         * MODULES.html.sh (File stream based Input/Output): Mention it.
1948         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
1949         freopen-safer module.
1950         * doc/posix-functions/stderr.texi (stderr): Likewise.
1951         * doc/posix-functions/stdin.texi (stdin): Likewise.
1952         * doc/posix-functions/stdout.texi (stdout): Likewise.
1953         * modules/freopen-safer-tests: New test.
1954         * tests/test-reopen-safer.c: New file.
1955
1956 2009-11-05  Jim Meyering  <meyering@redhat.com>
1957
1958         maint.mk: Prohibit inclusion of "close-stream.h" without use.
1959         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
1960
1961 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1962
1963         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
1964
1965 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1966
1967         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
1968
1969 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1970
1971         Fix link error.
1972         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
1973         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
1974
1975 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1976
1977         * tests/test-func.c: Also test value of __func__.
1978
1979 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1980
1981         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
1982         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
1983
1984 2009-11-05  Bruno Haible  <bruno@clisp.org>
1985
1986         Fix link error.
1987         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
1988         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
1989         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
1990
1991 2009-11-05  Bruno Haible  <bruno@clisp.org>
1992
1993         Tests for module 'inet_pton'.
1994         * modules/inet_pton-tests: New file.
1995         * tests/test-inet_pton.c: New file.
1996
1997 2009-11-05  Bruno Haible  <bruno@clisp.org>
1998
1999         Tests for module 'inet_ntop'.
2000         * modules/inet_ntop-tests: New file.
2001         * tests/test-inet_ntop.c: New file.
2002
2003 2009-11-04  Eric Blake  <ebb9@byu.net>
2004
2005         stdlib-safer: wrap all mkstemp variants
2006         * modules/mkostemp (configure.ac): Set witness.
2007         * modules/mkostemps (configure.ac): Likewise.
2008         * modules/mkstemps (configure.ac): Likewise.
2009         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
2010         (mkstemps_safer): Wrap more functions.
2011         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
2012         wrapping.
2013         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
2014         (mkstemps_safer): Implement the wrappers.
2015
2016         mkstemps, mkostemps: new modules
2017         * modules/mkostemps: New module.
2018         * modules/mkstemps: Likewise.
2019         * lib/mkostemps.c (mkostemps): New file.
2020         * lib/mkstemps.c (mkstemps): Likewise.
2021         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
2022         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
2023         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
2024         * modules/stdlib (Makefile.am): Substitute them.
2025         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
2026         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
2027         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
2028         * doc/gnulib.texi (Glibc stdlib.h): Include them.
2029         * MODULES.html.sh (File system functions): Mention them.
2030
2031         tempname: resync from glibc
2032         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
2033         same values for __GT_FILE as glibc.  Abort even when assertions
2034         are disabled.
2035         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
2036         match its value otherwise.  Allow idempotent inclusion.
2037         * lib/mkdtemp.c (mkdtemp): Adjust caller.
2038         * lib/mkostemp.c (mkostemp): Likewise.
2039         * lib/mkstemp.c (mkstemp): Likewise.
2040         * lib/tmpfile.c (tmpfile): Likewise.
2041         * NEWS: Document this.
2042
2043         utimens: fix use of futimens on older Linux
2044         * lib/utimens.c (fdutimens): Use updated, rather than original,
2045         timespec to avoid bug in older Linux kernel.
2046         Reported by Simon Josefsson.
2047
2048 2009-11-04  Bruno Haible  <bruno@clisp.org>
2049
2050         Make num_processors more flexible and consistent.
2051         * lib/nproc.h (enum nproc_query): New type.
2052         (num_processors): Add a 'query' argument.
2053         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
2054         (num_processors): Add a 'query' argument. Test the value of the
2055         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
2056         mingw, count the number of CPUs available for the current process.
2057         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
2058         Check for sched_getaffinity and sched_getaffinity_np.
2059         * modules/nproc (Depends-on): Add c-ctype, extensions.
2060         * NEWS: Mention the change.
2061
2062 2009-11-03  Bruno Haible  <bruno@clisp.org>
2063
2064         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
2065
2066 2009-11-03  Jim Meyering  <meyering@redhat.com>
2067
2068         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
2069         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
2070         if it is defined.
2071
2072 2009-11-02  Eric Blake  <ebb9@byu.net>
2073
2074         mktime, timegm: share common declaration
2075         * lib/mktime-internal.h: New file.
2076         * lib/mktime.c: Use it rather than open-coding a declaration.
2077         * lib/timegm.c: Likewise.
2078         * modules/mktime (Files): Ship it.
2079         * modules/timegm (Files): Likewise.
2080         Suggested by Bruno Haible.
2081
2082         test-update-copyright: update test to match script changes
2083         * tests/test-update-copyright.sh: Avoid hard-coding perl
2084         location.  Don't update *.bak created by earlier runs.
2085
2086 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
2087             Simon Josefsson  <simon@josefsson.org>
2088             Bruno Haible  <bruno@clisp.org>
2089
2090         Fix link error on Solaris 8.
2091         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
2092         also in libnsl. Define also INET_PTON_LIB.
2093         * modules/inet_pton (Link): New section.
2094
2095 2009-11-02  Simon Josefsson  <simon@josefsson.org>
2096             Bruno Haible  <bruno@clisp.org>
2097
2098         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
2099         * modules/inet_ntop (Link): New section.
2100         Reported by Boyan Kasarov <bkasarov@gmail.com>.
2101
2102 2009-11-02  Eric Blake  <ebb9@byu.net>
2103
2104         maint: avoid compiler warnings in m4 macros
2105         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
2106         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
2107
2108 2009-11-02  Simon Josefsson  <simon@josefsson.org>
2109
2110         * m4/pmccabe2html.m4: Remove file.
2111         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
2112         function.  Change maintainer.
2113         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
2114         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
2115         Courtès).
2116
2117 2009-10-31  Eric Blake  <ebb9@byu.net>
2118
2119         fseeko: fix m4 regression
2120         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
2121         regression from 2009-10-27.
2122         Reported by Ralf Wildenhues.
2123
2124 2009-10-31  Jim Meyering  <meyering@redhat.com>
2125
2126         inttostr: aesthetics and improved (compile-time) safety
2127         Define inttype_is_signed rather than inttype_is_unsigned,
2128         since the sole use is via "#if inttype_is_signed".
2129         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
2130         inttype_is_unsigned.
2131         * lib/offtostr.c (inttype_is_signed): Likewise.
2132         * lib/uinttostr.c (inttype_is_signed): Likewise.
2133         * lib/umaxtostr.c (inttype_is_signed): Likewise.
2134         * lib/inttostr.c (inttostr): Use verify to cross-check the
2135         inttype_is_signed value and the signedness of the actual type.
2136         * modules/inttostr (Depends-on): Add verify.
2137
2138 2009-10-30  Eric Blake  <ebb9@byu.net>
2139
2140         build: avoid compiler warnings
2141         * lib/fchmodat.c (lchmod): Mark unused variables.
2142         * lib/getopt.c (_getopt_initialize): Likewise.
2143         * lib/mktime.c (__mktime_internal): Provide prototype.
2144         * lib/inttostr.c (inttostr): Avoid compiler warning even with
2145         older gcc that do not understand #pragma GCC diagnostic.
2146         * lib/uinttostr.c (inttype_is_unsigned): Define.
2147         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
2148
2149 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
2150
2151         stat: fix compilation on AIX
2152         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
2153         only see struct stat64.
2154
2155 2009-10-30  Eric Blake  <ebb9@byu.net>
2156
2157         exclude: make more robust
2158         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
2159         rather than masking a coding bug.
2160         Suggested by Bruno Haible.
2161
2162 2009-10-30  Jim Meyering  <meyering@redhat.com>
2163
2164         perl scripts: remove #!/usr/bin/perl in favor of more portable...
2165         Rather than putting #!/usr/bin/perl on the first line,
2166         start with a variant of what's recommended by "man perlrun" that
2167         invokes the first "perl" program from your shell's search path.
2168         * build-aux/gitlog-to-changelog: Replace #!... as above.
2169         Add a "Local Variables" perl mode setting.
2170         Prompted by a patch from Ludovic Courtès.
2171         Improved by Eric Blake.
2172         * build-aux/useless-if-before-free: Likewise.
2173         * build-aux/announce-gen: Likewise.
2174         * build-aux/update-copyright: Likewise.
2175
2176 2009-10-29  Eric Blake  <ebb9@byu.net>
2177
2178         filenamecat-lgpl: adjust clients
2179         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
2180         filenamecat.
2181         * modules/renameat (Depends-on): Likewise.
2182
2183         filenamecat: split into filenamecat-lgpl
2184         * modules/filenamecat-lgpl: New module.
2185         * modules/filenamecat (Files): Move library-safe files into
2186         filenamecat-lgpl.
2187         (Depends-on): Add filenamecat-lgpl.
2188         (configure.ac): Declare witness.
2189         * lib/filenamecat.h (file_name_concat): Only declare when using
2190         GPL module.
2191         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
2192         Move...
2193         * lib/filenamecat-lgpl.c: ...into new file.
2194         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
2195         (gl_FILE_NAME_CONCAT): Use it.
2196         * MODULES.html.sh (File system functions): Mention new module.
2197
2198         argp: avoid memory leak
2199         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
2200         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
2201         base_name, since the latter malloc()s and can call exit().
2202         Leak introduced 2006-07-03.
2203
2204         dirname-lgpl: adjust clients that don't need full dirname
2205         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
2206         * modules/filenamecat (Depends-on): Likewise.
2207         * modules/linkat (Depends-on): Likewise.
2208         * modules/mkancesdirs (Depends-on): Likewise.
2209         * modules/mkdir (Depends-on): Likewise.
2210         * modules/openat (Depends-on): Likewise.
2211         * modules/savewd (Depends-on): Likewise.
2212         * modules/rename (Depends-on): Likewise.
2213         (License): Relax license.
2214         * modules/mkdir-tests (Depends-on): Drop progname.
2215         (Makefile.am): Delete unneeded LDADD.
2216         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
2217
2218         dirname: split into dirname-lgpl
2219         * modules/dirname-lgpl: New module.
2220         * modules/dirname (Files): Move library-safe files into
2221         dirname-lgpl.
2222         (Depends-on): Add dirname-lgpl.
2223         (configure.ac): Declare witness.
2224         * modules/double-slash-root (License): Relax license.
2225         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
2226         module.
2227         * lib/dirname.c (dir_len, mdir_name): Move...
2228         * lib/dirname-lgpl.c: ...into new file.
2229         * lib/basename.c (last_component, base_len): Move...
2230         * lib/basename-lgpl.c: ...into new file.
2231         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
2232         (gl_DIRNAME): Use it.
2233         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
2234         Mention new module.
2235         * modules/dirname-tests (Depends-on): Add progname.
2236         * tests/test-dirname.c (program_name): Delete.
2237
2238         mkdir: make safe for libraries
2239         * modules/mkdir (Depends-on): Drop xalloc.
2240         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
2241         exit.
2242
2243         tests: avoid some compiler warnings
2244         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
2245         literals.
2246         * tests/test-memchr.c (main): Avoid type mismatch.
2247         * tests/test-arpa_inet.c (main): Avoid unused parameters.
2248         * tests/test-base64.c (main): Likewise.
2249         * tests/test-getdelim.c (main): Likewise.
2250         * tests/test-gethostname.c (main): Likewise.
2251         * tests/test-getline.c (main): Likewise.
2252         * tests/test-netinet_in.c (main): Likewise.
2253         * tests/test-select.c (open_server_socket, main): Likewise.
2254         * tests/test-select-stdin.c (main): Likewise.
2255         * tests/test-sockets.c (main): Likewise.
2256         * tests/test-strsignal.c (main): Likewise.
2257         * tests/test-sys_select.c (main): Likewise.
2258         * tests/test-sys_socket.c (main): Likewise.
2259         * tests/test-u64.c (main): Likewise.
2260         * tests/test-xfprintf-posix.c (main): Likewise.
2261         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
2262
2263         sockets: avoid compiler warning
2264         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
2265
2266         maint: detect usage(1) and other suspicious exits
2267         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
2268
2269 2009-10-29  Jim Meyering  <meyering@redhat.com>
2270
2271         timespec: long-to-int truncation could make timespec_cmp malfunction
2272         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
2273         a multiple of 2^32 nanoseconds as no difference.
2274
2275 2009-10-28  Jim Meyering  <meyering@redhat.com>
2276
2277         fprintftime: wrap macro code argument in "do {...} while(0)"
2278         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
2279         cpy macro must be a statement that can be followed by a semicolon.
2280         Now that the else clause contains a comment and is hence longer
2281         than one line, I require curly braces.  That in turn requires
2282         that we wrap this code block in the standard do...while(0).
2283
2284         fprintftime: remove stray semicolon from previous change
2285         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
2286
2287         fprintftime: avoid a warning about ignored fwrite return value
2288         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
2289         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
2290         that is unsafe.
2291         * modules/fprintftime (Depends-on): Add ignore-value.
2292
2293         exclude: avoid an unwarranted warning
2294         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
2295
2296 2009-10-27  Eric Blake  <ebb9@byu.net>
2297
2298         fseek: avoid compilation failure when fflush is replaced
2299         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
2300         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
2301         module is in use.
2302         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
2303         module is not in use; since REPLACE_FSEEK worked otherwise.
2304         (GNULIB_FTELLO): Likewise for ftell.
2305         Reported by Ian Beckwith and others.
2306
2307 2009-10-27  Bruno Haible  <bruno@clisp.org>
2308
2309         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
2310         Reported by Jim Meyering.
2311
2312 2009-10-27  Jim Meyering  <jim@meyering.net>
2313             Bruno Haible  <bruno@clisp.org>
2314
2315         Avoid warning despite dropping the return value of fwrite.
2316         * lib/unicodeio.c: Include ignore-value.h.
2317         (fwrite_success_callback): Explicitly ignore fwrite's return value.
2318         * modules/unicodeio (Depends-on): Add ignore-value.
2319
2320 2009-10-26  Eric Blake  <ebb9@byu.net>
2321
2322         areadlinkat: fix fallback path
2323         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
2324         pointer and zero.
2325
2326 2009-10-22  Pádraig Brady  <P@draigBrady.com>
2327
2328         Use a better IO block size for modern systems
2329         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
2330         * lib/md2.c: Likewise.
2331         * lib/md4.c: Likewise.
2332         * lib/md5.c: Likewise.
2333         * lib/sha1.c: Likewise.
2334         * lib/sha256.c: Likewise.
2335         * lib/sha512.c: Likewise.
2336
2337 2009-10-22  Eric Blake  <ebb9@byu.net>
2338
2339         tests: avoid several compiler warnings
2340         * tests/test-getcwd.c (main): Avoid buffer underflow.
2341         * tests/test-getdate.c (main): String literals are not safe with
2342         putenv, so use setenv.  Declare unused argument.
2343         * modules/getdate-tests (Depends-on): Add setenv.
2344         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
2345         problems with string literals in char *.
2346         * tests/test-hash.c (main): Avoid shadowing declaration.
2347         (insert_new): Treat string literals as char const *.
2348         * tests/test-getopt.h (test_getopt): Likewise.
2349         (getopt_loop): Alter types to minimize casting elsewhere.
2350         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
2351         (test_getopt_long_posix): Likewise.
2352         (do_getopt_long): Add wrapper to minimize casting.
2353         * tests/test-atexit.c (clear_temp_file): Use void.
2354         * tests/test-areadlink-with-size.c (main): Declare unused
2355         arguments.
2356         * tests/test-areadlink.c (main): Likewise.
2357         * tests/test-areadlinkat-with-size.c (main): Likewise.
2358         * tests/test-areadlinkat.c (main): Likewise.
2359         * tests/test-canonicalize-lgpl.c (main): Likewise.
2360         * tests/test-canonicalize.c (main): Likewise.
2361         * tests/test-dirent-safer.c (main): Likewise.
2362         * tests/test-dirname.c (main): Likewise.
2363         * tests/test-dup2.c (main): Likewise.
2364         * tests/test-fchdir.c (main): Likewise.
2365         * tests/test-fcntl-h.c (main): Likewise.
2366         * tests/test-fcntl-safer.c (main): Likewise.
2367         * tests/test-fdopendir.c (main): Likewise.
2368         * tests/test-fdutimensat.c (main): Likewise.
2369         * tests/test-fflush.c (main): Likewise.
2370         * tests/test-filenamecat.c (main): Likewise.
2371         * tests/test-filevercmp.c (main): Likewise.
2372         * tests/test-fopen-safer.c (main): Likewise.
2373         * tests/test-fopen.c (main): Likewise.
2374         * tests/test-fpending.c (main): Likewise.
2375         * tests/test-fpurge.c (main): Likewise.
2376         * tests/test-freading.c (main): Likewise.
2377         * tests/test-fstatat.c (main): Likewise.
2378         * tests/test-fsync.c (main): Likewise.
2379         * tests/test-futimens.c (main): Likewise.
2380         * tests/test-getndelim2.c (main): Likewise.
2381         * tests/test-gettimeofday.c (main): Likewise.
2382         * tests/test-getopt.c (main): Likewise.
2383         * tests/test-i-ring.c (main): Likewise.
2384         * tests/test-inttypes.c (main): Likewise.
2385         * tests/test-link.c (main): Likewise.
2386         * tests/test-lstat.c (main): Likewise.
2387         * tests/test-math.c (main): Likewise.
2388         * tests/test-md5.c (main): Likewise.
2389         * tests/test-memchr2.c (main): Likewise.
2390         * tests/test-memrchr.c (main): Likewise.
2391         * tests/test-mkdir.c (main): Likewise.
2392         * tests/test-mkdirat.c (main): Likewise.
2393         * tests/test-mkfifoat.c (main): Likewise.
2394         * tests/test-open.c (main): Likewise.
2395         * tests/test-openat-safer.c (main): Likewise.
2396         * tests/test-openat.c (main): Likewise.
2397         * tests/test-quotearg.c (main): Likewise.
2398         * tests/test-rawmemchr.c (main): Likewise.
2399         * tests/test-readlink.c (main): Likewise.
2400         * tests/test-remove.c (main): Likewise.
2401         * tests/test-rename.c (main): Likewise.
2402         * tests/test-renameat.c (main): Likewise.
2403         * tests/test-rmdir.c (main): Likewise.
2404         * tests/test-sha1.c (main): Likewise.
2405         * tests/test-signal.c (main): Likewise.
2406         * tests/test-sigaction.c (main): Likewise.
2407         * tests/test-stat.c (main): Likewise.
2408         * tests/test-stat-time.c (main): Likewise.
2409         * tests/test-stddef.c (main): Likewise.
2410         * tests/test-stdint.c (main): Likewise.
2411         * tests/test-stdio.c (main): Likewise.
2412         * tests/test-stdlib.c (main): Likewise.
2413         * tests/test-strchrnul.c (main): Likewise.
2414         * tests/test-strerror.c (main): Likewise.
2415         * tests/test-string.c (main): Likewise.
2416         * tests/test-strtod.c (main): Likewise.
2417         * tests/test-strverscmp.c (main): Likewise.
2418         * tests/test-symlink.c (main): Likewise.
2419         * tests/test-symlinkat.c (main): Likewise.
2420         * tests/test-sys_stat.c (main): Likewise.
2421         * tests/test-sys_time.c (main): Likewise.
2422         * tests/test-time.c (main): Likewise.
2423         * tests/test-unistd.c (main): Likewise.
2424         * tests/test-unlink.c (main): Likewise.
2425         * tests/test-unlinkat.c (main): Likewise.
2426         * tests/test-utimens.c (main): Likewise.
2427         * tests/test-utimensat.c (main): Likewise.
2428         * tests/test-version-etc.c (main): Likewise.
2429         * tests/test-wchar.c (main): Likewise.
2430         * tests/test-wctype.c (main): Likewise.
2431         * tests/test-xprintf-posix.c (main): Likewise.
2432         * tests/test-posixtm.c (main): Likewise.
2433         (STREQ): Delete unused macro.
2434         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
2435         shadowed variables.
2436         * tests/test-memchr.c (main): Likewise.
2437
2438 2009-10-21  Eric Blake  <ebb9@byu.net>
2439
2440         areadlinkat: avoid failure on older glibc
2441         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
2442         rather than mis-comparing 0 against FUNC_RESULT of char*.
2443
2444 2009-10-21  Bruno Haible  <bruno@clisp.org>
2445
2446         * modules/stpncpy (License): Relicense under LGPLv2+.
2447         Reported by David Lutterkort <lutter@redhat.com>.
2448
2449 2009-10-20  Eric Blake  <ebb9@byu.net>
2450
2451         utimensat: work around Solaris 9 bug
2452         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
2453         has trailing slash bugs.
2454         * tests/test-lutimens.h (test_lutimens): Enhance test.
2455         * tests/test-utimens.h (test_utimens): Likewise.
2456         * doc/posix-functions/utime.texi (utime): Enhance documentation.
2457         * doc/posix-functions/utimes.texi (utimes): Likewise.
2458         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2459         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
2460         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
2461         * doc/posix-functions/futimens.texi (futimens): Likewise.
2462
2463         fdutimensat: new module
2464         * modules/fdutimensat: New file.
2465         * lib/fdutimensat.c (fdutimensat): Likewise.
2466         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
2467         * MODULES.html.sh (File system functions): Mention module.
2468         * modules/fdutimensat-tests: New test.
2469         * tests/test-fdutimensat.c: Likewise.
2470
2471         doc: regenerate INSTALL
2472         * doc/INSTALL: Reflect recent autoconf update.
2473         * doc/INSTALL.ISO: Likewise.
2474         * doc/INSTALL.UTF-8: Likewise.
2475
2476 2009-10-20  Pádraig Brady  <P@draigBrady.com>
2477
2478         acl: warn if ACL support is not detected
2479         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
2480
2481 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
2482
2483         * lib/nproc.h: Add extern "C" block for C++.
2484
2485 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
2486             Bruno Haible  <bruno@clisp.org>
2487
2488         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
2489         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
2490         * doc/posix-functions/isalpha.texi: Likewise.
2491         * doc/posix-functions/isblank.texi: Likewise.
2492         * doc/posix-functions/iscntrl.texi: Likewise.
2493         * doc/posix-functions/isdigit.texi: Likewise.
2494         * doc/posix-functions/isgraph.texi: Likewise.
2495         * doc/posix-functions/islower.texi: Likewise.
2496         * doc/posix-functions/isprint.texi: Likewise.
2497         * doc/posix-functions/ispunct.texi: Likewise.
2498         * doc/posix-functions/isspace.texi: Likewise.
2499         * doc/posix-functions/isupper.texi: Likewise.
2500         * doc/posix-functions/isxdigit.texi: Likewise.
2501
2502 2009-10-18  Bruno Haible  <bruno@clisp.org>
2503
2504         Tests for module 'isblank'.
2505         * modules/isblank-tests: New file.
2506         * tests/test-isblank.c: New file.
2507
2508         New module 'isblank'.
2509         * lib/isblank.c: New file.
2510         * m4/isblank.m4: New file.
2511         * modules/isblank: New file.
2512         * doc/posix-functions/isblank.texi: Mention the new module.
2513
2514 2009-10-18  Bruno Haible  <bruno@clisp.org>
2515
2516         New module 'ctype'.
2517         * lib/ctype.in.h: New file.
2518         * m4/ctype.m4: New file.
2519         * modules/ctype: New file.
2520         * doc/posix-headers/ctype.texi: Mention the new module.
2521
2522 2009-10-18  Jim Meyering  <meyering@redhat.com>
2523
2524         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
2525         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
2526         right after its initialization, rather than farther down.
2527         Keeping these in close proximity makes it easier to ensure
2528         that each such variable is initialized.  E.g.,
2529
2530             LIB_CLOCK_GETTIME=
2531             AC_SUBST([LIB_CLOCK_GETTIME])
2532
2533         This change also increments these serial numbers.
2534         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
2535         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2536         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
2537
2538 2009-10-18  Bruno Haible  <bruno@clisp.org>
2539
2540         Don't let environment variables perturb build.
2541         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
2542         (gl_PREREQ_GETHRXTIME): ... not here.
2543
2544 2009-10-18  Bruno Haible  <bruno@clisp.org>
2545
2546         Avoid symlink attack in localcharset module.
2547         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
2548         (O_NOFOLLOW): Define fallback.
2549         (get_charset_aliases): Don't open the file if it is a symbolic link.
2550         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
2551         gl_FCNTL_H.
2552         (gl_FCNTL_H): Require it.
2553         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
2554         * modules/localcharset (Files): Add m4/fcntl_h.m4.
2555         Reported by Fergal Glynn <fglynn@veracode.com>.
2556
2557 2009-10-18  Bruno Haible  <bruno@clisp.org>
2558
2559         Implement nproc for mingw.
2560         * lib/nproc.c: Include <windows.h>
2561         (num_processors): On native Windows platforms, try GetSystemInfo.
2562
2563 2009-10-18  Bruno Haible  <bruno@clisp.org>
2564
2565         Implement nproc for IRIX.
2566         * lib/nproc.c: Include <sys/sysmp.h>.
2567         (num_processors): On IRIX systems, try sysmp.
2568         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
2569
2570 2009-10-18  Bruno Haible  <bruno@clisp.org>
2571
2572         Implement nproc for HP-UX.
2573         * lib/nproc.c: Include <sys/pstat.h>
2574         (num_processors): On HP-UX systems, try pstat_getdynamic.
2575         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
2576         pstat_getdynamic.
2577
2578 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
2579             Bruno Haible  <bruno@clisp.org>
2580
2581         Implement nproc for NetBSD, OpenBSD.
2582         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
2583         (ARRAY_SIZE): New macro.
2584         (num_processors): On BSD systems, try sysctl of HW_NCPU.
2585         * m4/nproc.m4: New file.
2586         * modules/nproc (Files): Add m4/nproc.m4.
2587         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
2588         (Makefile.am): Instead, augment lib_SOURCES.
2589
2590 2009-10-18  Bruno Haible  <bruno@clisp.org>
2591
2592         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
2593         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
2594         sys/param.h.
2595
2596 2009-10-16  Eric Blake  <ebb9@byu.net>
2597
2598         utimensat: new module
2599         * modules/utimensat: New file.
2600         * lib/utimensat.c (utimensat): Likewise.
2601         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
2602         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
2603         so we can work around Linux bugs.
2604         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2605         * modules/sys_stat (Makefile.am): Substitute them.
2606         * lib/sys_stat.in.h (utimensat): Declare it.
2607         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2608         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2609         * modules/utimensat-tests: New test.
2610         * tests/test-utimensat.c: Likewise.
2611
2612         utimens: let lutimens work on non-symlinks
2613         * lib/utimens.c (lutimens): Fall back to utimens rather than
2614         failing with ENOSYS, when file is not a symlink.
2615         (utimens): Reduce redirection.
2616         * tests/test-lutimens.h (test_lutimens): Update test to cover
2617         non-symlinks.
2618         * tests/test-utimens.h (test_utimens): Update test to cover
2619         symlinks.
2620         * tests/test-utimens.c (main): Update caller.
2621
2622         utimens: cache whether utimensat syscall works
2623         * lib/utimens.c (utimensat_works_really): New cache variable.
2624         (fdutimens, lutimens): Use it to avoid failing syscall.
2625
2626         test-stat-time, test-utimens: improve portability
2627         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
2628         ext4 on alpha, and for cygwin.
2629         * tests/test-utimens-common.h: New file.
2630         (nap): Factor delays into single function.
2631         * tests/test-lutimens.h (test_lutimens): Use new header.
2632         * tests/test-futimens.h (test_futimens): Likewise.
2633         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
2634         timestamps to occur from same machine, as was done previously for
2635         test_utimens.
2636         * modules/utimens-tests (Files): Ship new file.
2637         * modules/futimens-tests (Files): Likewise.
2638         Reported in part by Jim Meyering.
2639
2640         sys_stat: sort replacement declarations
2641         * lib/sys_stat.in.h: Sort declarations.
2642         * lib/futimens.c (futimens): Fix typo.
2643
2644 2009-10-15  Jim Meyering  <meyering@redhat.com>
2645
2646         don't let environment settings perturb build
2647         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
2648         could cause a configure-time and/or build-time malfunction.
2649         Typically, a configure-time function-in-library test is performed
2650         via code like this:
2651
2652           LIB_VAR=
2653           AC_SUBST([LIB_VAR])
2654           prefix_saved_LIBS=$LIBS
2655             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
2656                        [test "$ac_cv_search_FUNC" = "none required" ||
2657                         LIB_VAR=$ac_cv_search_FUNC])
2658           LIBS=$prefix_saved_LIBS
2659
2660         However, in each of the files affected by this change, the LIB_VAR=
2661         initialization was omitted.  Thus, when set in the environment, its
2662         value would propagate into generated Makefiles when FUNC is not found
2663         in LIB_NAME.
2664         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
2665         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2666         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
2667
2668 2009-10-14  Eric Blake  <ebb9@byu.net>
2669
2670         fchdir: avoid infinite recursion in mingw
2671         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
2672         recursing.
2673
2674         test-stat-time: port to mingw
2675         * tests/test-stat-time.c (force_unlink): Return a value.
2676         (test_ctime) [W32]: Fix compilation error.
2677         (nap): Don't call usleep with too large an argument.  Use
2678         force_unlink.
2679         * doc/pastposix-functions/usleep.texi (usleep): Document the
2680         portability issue.
2681
2682 2009-10-13  Jim Meyering  <meyering@redhat.com>
2683
2684         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
2685         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
2686         * modules/pipe-filter-ii: Likewise.
2687         * modules/sys_socket-tests: Likewise.
2688         * modules/tsearch-tests: Likewise.
2689         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
2690         (check): Depend on it.
2691
2692 2009-10-12  Eric Blake  <ebb9@byu.net>
2693
2694         utimens-tests: port to NFS file systems
2695         * tests/test-utimens.h (test_utimens): Refactor utimecmp
2696         comparisons to avoid spurious failures from timestamp drift
2697         between NFS machines.
2698
2699 2009-10-12  Eric Blake  <ebb9@byu.net>
2700
2701         stat-time-tests: minor cleanups
2702         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
2703         * tests/test-stat-time.c (nap): Separate assignment from call.
2704         Suggested by Paolo Bonzini and Bruno Haible.
2705
2706         sys_stat: guarantee struct timespec
2707         * lib/sys_stat.in.h (includes): Always include <time.h>
2708         * modules/sys_stat (Depends-on): Add time.
2709         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
2710         mode_t permission values.
2711         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
2712         get at subsecond timestamps.
2713
2714 2009-10-10  Eric Blake  <ebb9@byu.net>
2715
2716         futimens: new module
2717         * modules/futimens: New file.
2718         * lib/futimens.c (futimens): Likewise.
2719         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
2720         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
2721         we can work around Linux bugs.
2722         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2723         * modules/sys_stat (Makefile.am): Substitute them.
2724         * lib/sys_stat.in.h (futimens): Declare it.
2725         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2726         * doc/posix-functions/futimens.texi (futimens): Likewise.
2727         * modules/futimens-tests: New test.
2728         * tests/test-futimens.c: Likewise.
2729
2730         utimens: introduce fdutimens
2731         * lib/utimens.h (fdutimens): New prototype.
2732         * lib/utimens.c (gl_futimens): Move guts...
2733         (fdutimens): ...to new interface.
2734         * tests/test-utimens.c (do_fdutimens): Use it.
2735
2736         utimens: add UTIME_NOW and UTIME_OMIT support
2737         * lib/utimens.c (validate_timespec, update_timespec): New helper
2738         functions.
2739         (gl_futimens, lutimens): Use them.
2740         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
2741         stdbool, sys_stat.
2742         (Link): Mention resulting library dependency.
2743         * modules/utimecmp (Link): Likewise.
2744         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
2745         (Makefile.am): Pick up library dependency.
2746         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
2747         definition.
2748         * tests/test-sys_stat.c: Test the definitions.
2749         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
2750         * NEWS: Document library dependency.
2751
2752         utimecmp: support symlink timestamps
2753         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
2754         hashing when possible.  Use pathconf when available.
2755         (SYSCALL_RESOLUTION): Recognize tighter resolution.
2756         * modules/utimecmp (Depends-on): Add lstat.
2757
2758         utimens: add lutimens interface
2759         * lib/utimens.c (lutimens): New function.
2760         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
2761         * lib/utimens.h (lutimens): Declare new interface.
2762         * tests/test-utimens.c (main): Enhance test.
2763         * tests/test-lutimens.h (test_lutimens): New file.
2764         * modules/utimens-tests (Files): Distribute it.
2765         (Depends-on): Add symlink.
2766         (configure.ac): Check for usleep.
2767
2768         utimens: validate futimens usage
2769         * lib/utimens.c (gl_futimens): Require valid fd up front, using
2770         fewer syscalls on failure later on.  Avoid compiler warning on
2771         mingw.
2772         * modules/utimens (Depends-on): Add dup2.
2773
2774         utimens: add test
2775         * modules/utimens-tests: New test.
2776         * tests/test-utimens.h: New file.
2777         * tests/test-futimens.h: Likewise.
2778         * tests/test-utimens.c: Likewise.
2779
2780         doc: mention timestamp portability issues
2781         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
2782         instead.
2783         * doc/posix-functions/utime.texi (utime): Likewise.
2784         * doc/posix-functions/utimes.texi (utimes): Likewise.
2785         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
2786         instead.
2787         * doc/posix-functions/futimens.texi (futimens): Mention utimens
2788         module.
2789         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2790         Mention weakness with symlink timestamps.
2791         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
2792         to utimensat/futimens instead.
2793         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
2794
2795         test-dup2: enhance test
2796         * tests/test-dup2.c (main): Also check AT_FDCWD.
2797
2798         test-stat-time: avoid more spurious failures
2799         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
2800         xfs; and avoid race if the two timestamps cross quantization edge.
2801
2802         relocatable: prefer 'file system' over 'filesystem'
2803         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
2804         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
2805         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
2806         * doc/relocatable.texi (Enabling Relocatability): Likewise.
2807         * lib/relocatable.c (compute_curr_prefix): Likewise.
2808
2809 2009-10-10  Jim Meyering  <meyering@redhat.com>
2810
2811         stat-time-tests: check for the usleep function
2812         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
2813
2814 2009-10-10  Bruno Haible  <bruno@clisp.org>
2815
2816         * modules/xnanosleep: Put the Link section after the Include section.
2817
2818 2009-10-09  Eric Blake  <ebb9@byu.net>
2819
2820         dup2: work around FreeBSD 6.1 bug
2821         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
2822         * doc/posix-functions/dup2.texi (dup2): Document it.
2823         Reported by Nelson H. F. Beebe and Jim Meyering.
2824
2825         test-stat-time: port to buggy NFS clients
2826         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
2827         (test_ctime): Also skip test if mtime and ctime are skewed.
2828
2829         maint: prefer 'file system' over 'filesystem'
2830         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
2831         * doc/posix-functions/lstat.texi (lstat): Likewise.
2832         * lib/file-has-acl.c (file_has_acl): Likewise.
2833         * lib/fwriteerror.c [TEST]: Likewise.
2834         * tests/test-areadlink.h (test_areadlink): Likewise.
2835         * tests/test-areadlinkat-with-size.c (main): Likewise.
2836         * tests/test-areadlinkat.c (main): Likewise.
2837         * tests/test-canonicalize-lgpl.c (main): Likewise.
2838         * tests/test-canonicalize.c (main): Likewise.
2839         * tests/test-fstatat.c (main): Likewise.
2840         * tests/test-linkat.c (main): Likewise.
2841         * tests/test-lstat.h (test_lstat_func): Likewise.
2842         * tests/test-mkdir.h (test_mkdir): Likewise.
2843         * tests/test-readlink.h (test_readlink): Likewise.
2844         * tests/test-remove.c (main): Likewise.
2845         * tests/test-rename.h (test_rename): Likewise.
2846         * tests/test-renameat.c (main): Likewise.
2847         * tests/test-rmdir.h (test_rmdir_func): Likewise.
2848         * tests/test-symlink.h (test_symlink): Likewise.
2849         * tests/test-symlinkat.c (main): Likewise.
2850         * tests/test-unlink.h (test_unlink_func): Likewise.
2851         * tests/test-unlinkat.c (main): Likewise.
2852
2853         maint: make realtime library usage explicit
2854         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
2855         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
2856         * modules/settime (Link): Likewise.
2857         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
2858
2859         test-stat-time: speed up execution
2860         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
2861         warning on mingw.
2862         (nap): New helper function.
2863         (prepare_test): Use it to reduce sleep time.
2864         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
2865         execution.
2866         * modules/stat-time-tests (configure.ac): Check for usleep.
2867
2868 2009-10-09  Jim Meyering  <meyering@redhat.com>
2869
2870         selinux-h: always use getfilecon wrappers
2871         * lib/getfilecon.c: New file.
2872         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
2873         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
2874         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
2875         (fgetfilecon): Provide a stub.
2876         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
2877         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
2878         file unconditionally.
2879         When <selinux/selinux.h> is found, arrange to use wrappers.
2880         * modules/selinux-h (Files): Add getfilecon.c.
2881         (Makefile.am): Substitute include-next-related bits
2882         into the now-always-generated selinux/selinux.h file.
2883         * doc/glibc-functions/lgetfilecon.texi: New file.
2884         * doc/glibc-functions/fgetfilecon.texi: New file.
2885         * doc/glibc-functions/getfilecon.texi: New file.
2886         * doc/glibc-functions/getfilecon-desc.texi: New file.
2887         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
2888         which to pull in the new files.
2889         * MODULES.html.sh (Misc): Add selinux-h.
2890
2891 2009-10-08  Jim Meyering  <meyering@redhat.com>
2892
2893         unistd: fix comment typo
2894         * lib/unistd.in.h (euidaccess): Fix a comment typo.
2895
2896 2009-10-08  Eric Blake  <ebb9@byu.net>
2897
2898         areadlink: use SIZE_MAX consistently
2899         * modules/areadlink (Depends-on): Add stdint.
2900         * modules/areadlink-with-size (Depends-on): Likewise.
2901         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
2902         gives NULL; drop sys/types, since unistd gives size_t; and add
2903         stdint for SIZE_MAX.
2904         (SIZE_MAX): Rely on headers.
2905         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
2906         and add stdint.
2907         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
2908         (SIZE_MAX): Likewise.
2909         (INITIAL_BUF_SIZE): Turn into enum.
2910         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
2911
2912 2009-10-08  Jim Meyering  <meyering@redhat.com>
2913
2914         areadlinkat: avoid compilation failure
2915         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
2916         Fix typo in comment.
2917
2918 2009-10-07  Eric Blake  <ebb9@byu.net>
2919
2920         areadlinkat-with-size: new module
2921         * modules/areadlinkat-with-size: New module.
2922         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
2923         * lib/areadlink.h (areadlinkat): Declare it.
2924         * MODULES.html.sh (File system functions): Mention it.
2925         * modules/areadlinkat-with-size-tests: New test.
2926         * tests/test-areadlinkat-with-size.c: New file.
2927
2928         xreadlinkat: new module
2929         * modules/xreadlinkat: New module.
2930         * lib/xreadlinkat.c (xreadlinkat): New file.
2931         * lib/xreadlink.h (xreadlinkat): Declare it.
2932         * MODULES.html.sh (File system functions): Mention it.
2933
2934         areadlinkat: new module
2935         * lib/at-func.c (FUNC_FAIL): New define.
2936         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
2937         * modules/areadlinkat: New module.
2938         * lib/linkat.c (areadlinkat): Move...
2939         * lib/areadlinkat.c (areadlinkat): ...to new file.
2940         * lib/areadlink.h (areadlinkat): Declare it.
2941         * modules/linkat (Depends-on): Add areadlinkat.
2942         * MODULES.html.sh (File system functions): Mention it.
2943         * modules/areadlinkat-tests: New test.
2944         * tests/test-areadlinkat.c: New file.
2945
2946         areadlink, areadlink-with-size: add tests
2947         * modules/areadlink-tests: New test.
2948         * modules/areadlink-with-size-tests: Likewise.
2949         * tests/test-areadlink.h: New file.
2950         * tests/test-areadlink.c: Likewise.
2951         * tests/test-areadlink-with-size.c: Likewise.
2952
2953         maint: minor cleanups
2954         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
2955         _UNUSED_PARAMETER_ instead.
2956         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
2957         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
2958         * modules/linkat-tests (Files): Distribute test-link.h.
2959
2960         openat, utimens: whitespace cleanup
2961         * lib/openat.c: Prefer space throughout, rather than mix of 8
2962         spaces vs. tabs.
2963         * lib/at-func.c: Likewise.
2964         * lib/utimens.c: Likewise.
2965
2966         openat: avoid using wrong fd
2967         * lib/openat.c (openat_permissive): Reject user's fd if saving the
2968         working directory chooses same fd.
2969         * lib/at-func.c (AT_FUNC_NAME): Likewise.
2970
2971         mkdir, mkdirat: fix cygwin 1.5.x bug
2972         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
2973         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
2974         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
2975         bug.
2976         (gl_PREREQ_MKDIR): Delete unused macro.
2977         * modules/mkdir (Files): Track file rename.
2978         (configure.ac): Update macro name.
2979         * modules/openat (Depends-on): Add mkdir.
2980         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
2981
2982         mkdir, mkdirat: add tests
2983         * modules/mkdir-tests: New test.
2984         * tests/test-mkdir.h: New file.
2985         * tests/test-mkdir.c: Likewise.
2986         * tests/test-mkdirat.c: Likewise.
2987         * modules/openat-tests (Files): Add new files.
2988         (Makefile.am): Run new test.
2989
2990 2009-10-06  Eric Blake  <ebb9@byu.net>
2991
2992         doc: tweak *at function documentation
2993         * doc/posix-functions/faccessat.texi (faccessat): Mention
2994         known issue with replacement.
2995         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
2996         * doc/posix-functions/linkat.texi (linkat): Likewise.
2997         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
2998         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
2999         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
3000         * doc/posix-functions/renameat.texi (renameat): Likewise.
3001         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
3002
3003         openat: fix GNU/Hurd bug in unlinkat
3004         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
3005         broken.
3006         * doc/posix-functions/unlink.texi (unlink): Document this.
3007         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
3008
3009         fdopendir: fix GNU/Hurd bug
3010         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
3011         allowing non-directory fds.
3012         * lib/fdopendir.c (rpl_fdopendir): Work around it.
3013         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
3014         * modules/dirent (Makefile.am): Substitute it.
3015         * lib/dirent.in.h (fdopendir): Declare replacement.
3016         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
3017         * tests/test-fdopendir.c (main): Test something other than
3018         /dev/null, since on Hurd that behaves like a directory.
3019
3020         test-symlink: port to GNU/Hurd
3021         * tests/test-symlink.h (test_symlink): Relax expected errno.
3022
3023         doc: tweak more cygwin information
3024         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
3025         now compatible with glibc.
3026         * doc/posix-functions/getopt.texi (getopt): Likewise.
3027
3028         getopt-gnu: add another test
3029         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
3030         guarantee behavior relied on by m4.
3031         * tests/test-getopt.c (main): Use it.
3032         * modules/getopt-posix-tests (Depends-on): Add setenv.
3033         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
3034
3035         getopt: fix compilation on darwin
3036         * lib/getopt.in.h (includes): Leave breadcrumbs during system
3037         include.
3038         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
3039         Reported by Ludovic Courtès.
3040
3041 2009-10-06  Bruno Haible  <bruno@clisp.org>
3042
3043         * modules/size_max (Description): Discourage its use.
3044         Reported by Simon Josefsson.
3045
3046 2009-10-06  Jim Meyering  <meyering@redhat.com>
3047
3048         linkat: avoid compilation failure
3049         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
3050
3051 2009-10-05  Eric Blake  <ebb9@byu.net>
3052
3053         linkat: support Linux 2.6.17
3054         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
3055         linkat on Linux, but allow cache variable override.
3056         * lib/linkat.c (rpl_linkat): Define override.
3057         * modules/linkat (Depends-on): Add symlinkat.
3058         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
3059         * modules/unistd (Makefile.am): Substitute it.
3060         * lib/unistd.in.h (linkat): Declare replacement.
3061         Reported by Pádraig Brady.
3062
3063         quotearg: port test to systems with C.UTF-8 locale
3064         * tests/test-quotearg.c (struct result_strings): Add another
3065         member, differentiating between C.ASCII and C.UTF-8 handling.
3066         (compare_strings): Add parameter.
3067         (main): Adjust all callers.
3068
3069         getopt: avoid clash with FreeBSD _getopt_internal
3070         * lib/getopt.in.h (_getopt_internal): Override the name.
3071         * lib/getopt_int.h (includes): Pick up any overrides.
3072         Reported by Reuben Thomas.
3073
3074         hash: allow C89 compilation
3075         * lib/hash.c (check_tuning): Move declaration before statement.
3076         Reported by Reuben Thomas.
3077
3078 2009-10-05  Karl Berry  <karl@gnu.org>
3079
3080         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
3081
3082 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
3083             Bruno Haible  <bruno@clisp.org>
3084
3085         * lib/uname.c (uname): Use a table-driven algorithm to compute
3086         Windows NT versions.
3087
3088 2009-10-04  Bruno Haible  <bruno@clisp.org>
3089
3090         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
3091         program_invocation_short_name.
3092         * modules/progname (configure.ac): Test for presence of
3093         program_invocation_short_name.
3094         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
3095
3096 2009-10-04  Bruno Haible  <bruno@clisp.org>
3097
3098         * lib/progname.c (set_program_name): Fix comment.
3099         Reported by Jim Meyering.
3100
3101 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
3102             Bruno Haible  <bruno@clisp.org>
3103
3104         * lib/uname.c: Include <string.h>.
3105         (uname): Do only one call to GetVersionEx in the common case.
3106
3107 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
3108             Bruno Haible  <bruno@clisp.org>
3109
3110         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
3111         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
3112         (uname): Add support for Windows CE and various non-x86 CPU types.
3113
3114 2009-10-03  Bruno Haible  <bruno@clisp.org>
3115
3116         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
3117         invocation to tests/configure.ac.
3118         Reported by Ian Beckwith <ianb@erislabs.net>.
3119
3120 2009-10-02  Eric Blake  <ebb9@byu.net>
3121
3122         fchdir: avoid compiler warning
3123         * lib/fchdir.c (canonicalize_file_name)
3124         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
3125
3126         test-open: support mingw errno values
3127         * tests/test-open.h (test_open): Relax test.
3128         * tests/test-fopen.h (test_fopen): Likewise.
3129         * tests/test-openat-safer.c (main): Likewise.
3130
3131         open: fix opening directory on mingw
3132         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
3133
3134         test-open: on GNU/Hurd, /dev/null is a directory
3135         * tests/test-fopen.h (main): Rename...
3136         (test_fopen): ...to this.  Use a guaranteed non-directory when
3137         confirming open behavior on trailing slash.
3138         * tests/test-openat-safer.c (main): Likewise.
3139         * tests/test-open.h (main): Likewise....
3140         (test_open): ...to this.
3141         * tests/test-fopen.c (main): Adjust caller.
3142         * tests/test-fopen-safer.c (main): Likewise.
3143         * tests/test-open.c (main): Likewise.
3144         * tests/test-fcntl-safer.c (main): Likewise.
3145         Reported by Samuel Thibault.
3146
3147         rename, fchdir: don't ignore chdir failure
3148         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
3149         * lib/rename.c (rpl_rename) [W32]: Likewise.
3150         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
3151         an empty destination directory if source cannot be renamed,
3152         although there is still possibility for failure.
3153         * doc/posix-functions/rename.texi (rename): Document the race.
3154         Reported by Jim Meyering.
3155
3156         maint: cleanup whitespace in recent commits
3157         * lib/rename.c (rpl_rename): Remove tabs.
3158         * tests/test-link.h (test_link): Likewise.
3159         * lib/fchdir.c (get_name): Likewise.
3160         Reported by Jim Meyering.
3161
3162 2009-10-02  Ben Pfaff  <blp@gnu.org>
3163
3164         relocatable-prog-wrapper: Add missing dependency on
3165         double-slash-root.
3166         * modules/relocatable-prog-wrapper: Add dependency.
3167         Reported by Ian Beckwith <ianb@erislabs.net>.
3168
3169 2009-10-02  Eric Blake  <ebb9@byu.net>
3170
3171         renameat: fix Solaris bugs
3172         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
3173         needed fixing.
3174         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
3175         * modules/stdio (Makefile.am): Substitute it.
3176         * lib/stdio.in.h (renameat): Declare replacement.
3177         * lib/renameat.c (rpl_renameat): Implement fix.
3178
3179         renameat: new module
3180         * modules/renameat: New file.
3181         * lib/renameat.c (renameat): Likewise.
3182         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
3183         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
3184         * modules/stdio (Makefile.am): Substitute them.
3185         * lib/stdio.in.h (renameat): Declare it.
3186         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3187         * doc/posix-functions/renameat.texi (renameat): Likewise.
3188         * modules/renameat-tests: New test.
3189         * tests/test-renameat.c: Likewise.
3190
3191         rename: fix mingw bugs
3192         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
3193         directory overwrite bugs.
3194
3195         rename: fix another cygwin 1.5 bug
3196         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
3197         checks.
3198         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
3199         unnecessary cygwin workarounds.  Also work around bug with moving
3200         full directory onto an empty one.
3201         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
3202
3203         rename-dest-slash: merge into rename module
3204         * modules/rename-dest-slash (Status): Mark obsolete.
3205         (Depends-on): Add rename.
3206         (Files): Let rename do it all.
3207         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
3208         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
3209         * m4/rename-dest-slash.m4: ...so this file can be deleted.
3210         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
3211         * lib/rename.c (rpl_rename): Update comments.
3212
3213         rename: fix cygwin 1.5.x bugs
3214         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
3215         * lib/rename.c (rpl_rename): Work around them.
3216         * modules/rename (Depends-on): Add same-inode.
3217
3218         rename: fix Solaris 10 bug
3219         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
3220         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
3221         was the only bug.
3222
3223         rename: fix Solaris 9 bug
3224         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
3225         on non-directory.  Avoid calling exit.
3226         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
3227         strdup.
3228         * modules/rename-tests (Depends-on): Drop lstat.
3229         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
3230         (gl_PREREQ_RENAME): Delete unused macro.
3231
3232         rename-dest-slash: fix NetBSD bug
3233         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
3234         links.
3235         * modules/rename-dest-slash (Depends-on): Add same-inode.
3236
3237         rename-tests: new test, exposes several platform bugs
3238         * modules/rename-tests: New file.
3239         * tests/test-rename.h: Likewise.
3240         * tests/test-rename.c: Likewise.
3241         * doc/posix-functions/rename.texi (rename): Improve documentation,
3242         including bugs that will eventually be fixed in gnulib.
3243
3244 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
3245
3246         * lib/uname.c: Include <stdlib.h>
3247         (uname): Assume version info is available.
3248
3249 2009-10-02  Jim Meyering  <meyering@redhat.com>
3250
3251         gnu-web-doc-update: correct --help output
3252         * build-aux/gnu-web-doc-update: Make --help output relevant.
3253
3254         gnu-web-doc-update: add standard options
3255         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
3256
3257         gnu-web-doc-update: New module.
3258         Use this script to automatically update the on-line web documentation
3259         for your GNU project at http://www.gnu.org/software/$pkg/manual/
3260         * modules/gnu-web-doc-update: New file, from coreutils.
3261         * build-aux/gnu-web-doc-update: New script.
3262
3263 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
3264
3265         link: LoadLibrary is not needed.
3266         * lib/link.c: Use GetModuleHandle.
3267
3268 2009-10-01  Eric Blake  <ebb9@byu.net>
3269
3270         getopt: bump serial number
3271         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
3272         change.
3273
3274         tests: tighten link, rmdir, and remove tests
3275         * tests/test-link.h (includes): No need to use <config.h> here.
3276         Clean up if directory hard link was created, otherwise test for
3277         trailing '.'.
3278         * tests/test-linkat.c (main): Simplify.
3279         * tests/test-remove.c (main): Enhance test for trailing '.'.
3280         * tests/test-rmdir.h (test_rmdir_func): Likewise.
3281
3282 2009-10-01  Jim Meyering  <meyering@redhat.com>
3283
3284         maint.mk: requiring "make major" was annoying, for a "minor" release.
3285         What is intended is "stable", to contrast with alpha and beta,
3286         so require "make stable", not "make major".
3287         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
3288         (get_tool_versions): Likewise.
3289         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
3290
3291 2009-09-30  Ben Pfaff  <blp@gnu.org>
3292
3293         Fix broken build of replacement for Windows tmpfile().
3294         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
3295         flags argument added along with the 'mkostemp' module.
3296
3297 2009-09-28  Bruno Haible  <bruno@clisp.org>
3298
3299         Avoid identifier clash with POSIX function 'remove' defined as a macro.
3300         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
3301         to 'remove_elt'.
3302         (gl_list_remove): Update.
3303         * lib/gl_list.c (gl_list_remove): Update.
3304         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
3305         to 'remove_elt'.
3306         (gl_oset_remove): Update.
3307         * lib/gl_list.c (gl_oset_remove): Update.
3308         Reported by Eric Blake.
3309
3310 2009-09-28  Eric Blake  <ebb9@byu.net>
3311
3312         doc: mention yet more cygwin 1.7 status
3313         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
3314         cygwin.
3315         * doc/glibc-functions/execvpe.texi (execvpe): New file.
3316         * doc/gnulib.texi (Glibc unistd.h): Mention it.
3317
3318         argp: fix test failure
3319         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
3320         that are not upper-case.  Pass correct range to tolower.
3321
3322 2009-09-27  Jim Meyering  <meyering@redhat.com>
3323
3324         test-yesno: work around sparc-dash here-document infelicity
3325         Without this change, the literal \177 byte in a here document
3326         would make dash 0.5.5.1-3 access uninitialized memory.
3327         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
3328         Instead, use a marker, "@", and filter through tr to create the desired
3329         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
3330
3331 2009-09-27  Bruno Haible  <bruno@clisp.org>
3332
3333         Disable untested support for new flavours of ACLs on AIX.
3334         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
3335         progress.
3336         * lib/set-mode-acl.c (qset_acl): Likewise.
3337
3338 2008-12-07  Bruno Haible  <bruno@clisp.org>
3339
3340         Add support for new flavours of ACLs on AIX. (Untested.)
3341         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
3342         (file_has_acl): Add support for newer AIX.
3343         * lib/set-mode-acl.c (qset_acl): Likewise.
3344         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
3345         Rainer Tammer <tammer@tammer.net>.
3346
3347 2009-09-26  Eric Blake  <ebb9@byu.net>
3348
3349         argp: fix compilation of getopt
3350         * lib/getopt.in.h (includes): Use different guard than glibc.
3351         Reported by Sergey Poznyakoff.
3352
3353         doc: mention more cygwin 1.7 status
3354         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
3355         bug.
3356         * doc/posix-functions/execl.texi (execl): Likewise.
3357         * doc/posix-functions/execle.texi (execle): Likewise.
3358         * doc/posix-functions/execlp.texi (execlp): Likewise.
3359         * doc/posix-functions/execv.texi (execv): Likewise.
3360         * doc/posix-functions/execve.texi (execve): Likewise.
3361         * doc/posix-functions/execvp.texi (execvp): Likewise.
3362         * doc/glibc-functions/canonicalize_file_name.texi
3363         (canonicalize_file_name): Cygwin 1.7 now provides this.
3364         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
3365         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
3366         on AT_SYMLINK_NOFOLLOW.
3367
3368 2009-09-24  Eric Blake  <ebb9@byu.net>
3369
3370         test-linkat: make test more robust
3371         * tests/test-linkat.c (main): Avoid collision with EEXIST.
3372
3373         getopt: fix inclusion guards for cygwin
3374         * modules/getopt-posix (Depends-on): Add include-next.
3375         (Makefile.am): Substitute more items in replacement header.
3376         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
3377         <getopt.h>.
3378         * lib/getopt.in.h (includes): Use split inclusion guard, and
3379         prefer <getopt.h> over include <unistd.h> when one is present.
3380         (option): Also override name of 'struct option'.
3381
3382         same-inode: revert prior change; it is not yet ready
3383         * NEWS: Undo mention of this change.
3384         * lib/same-inode.h (same-inode.h): Undo tri-state change.
3385         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
3386         * lib/cycle-check.c (cycle_check): Likewise.
3387         * lib/same.c (same_name): Likewise.
3388         * lib/at-func2.c (at_func2): Likewise.
3389
3390 2009-09-23  Eric Blake  <ebb9@byu.net>
3391
3392         linkat: new module
3393         * modules/linkat: New file.
3394         * lib/at-func2.c (at_func2): Likewise.
3395         * lib/linkat.c (linkat): Likewise.
3396         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
3397         * lib/openat-priv.h (at_func2): Add declaration.
3398         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3399         * modules/unistd (Makefile.am): Substitute them.
3400         * lib/unistd.in.h (linkat): Declare it.
3401         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3402         * doc/posix-functions/linkat.texi (linkat): Likewise.
3403         * doc/posix-functions/link.texi (link): Tweak wording.
3404         * tests/test-link.c (main): Move guts...
3405         * tests/test-link.h (test_link): ...into new file.
3406         * modules/linkat-tests: New test.
3407         * tests/test-linkat.c: Likewise.
3408         * modules/link-tests (Files): Ship new file.
3409         (Depends-on): Add stdbool.
3410
3411         dirname: add library-safe mdir_name
3412         * lib/dirname.h (mdir_name): New prototype.
3413         * lib/dirname.c (dir_name): Move guts...
3414         (mdir_name): ...to new function that avoids xalloc_die.
3415
3416         fchdir: another mingw fix
3417         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
3418         * lib/fchdir.c (get_name): New helper method; skips canonicalize
3419         on mingw (where it has not yet been ported), and make it optional
3420         elsewhere.
3421         (_gl_register_fd): Use it.
3422
3423         same-inode: make SAME_INODE tri-state, to port to mingw
3424         * NEWS: Mention this change.
3425         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
3426         st_ino always being 0.
3427         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
3428         * lib/cycle-check.c (cycle_check): Likewise.
3429         * lib/same.c (same_name): Likewise.
3430
3431         lstat: avoid mingw compilation error
3432         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
3433         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
3434         lstat ourselves.
3435         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
3436         was adequate.
3437         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
3438         the checks for lstat.
3439         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
3440
3441         link: fix test failure on Solaris 9
3442         * lib/link.c (rpl_link): Don't assume link will catch bogus
3443         trailing slash on source.
3444
3445         test-symlinkat: enhance test
3446         * tests/test-readlink.c (main): Move guts...
3447         * tests/test-readlink.h (test_readlink): ...into new file.
3448         * tests/test-symlink.c (main): Move guts...
3449         * tests/test-symlink.h (test_symlink): ...into new file.
3450         * tests/test-symlinkat.c (main): Use new files for further
3451         coverage.
3452         (do_symlink, do_readlink): New helper functions.
3453         * modules/symlink-tests (Files): Ship new file.
3454         (Depends-on): Add stdbool.
3455         * modules/readlink-tests (Files): Ship new file.
3456         (Depends-on): Add stdbool.
3457         * modules/symlinkat-tests (Files): Use new files.
3458
3459 2009-09-23  Eric Blake  <ebb9@byu.net>
3460
3461         readlink: document portability issue with symlink length
3462         * doc/posix-functions/lstat.texi (lstat): Mention that some file
3463         systems have bogus st_size on symlinks, and mention the
3464         areadlink-with-size module.
3465         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
3466         * doc/posix-functions/readlink.texi (readlink): Mention the
3467         areadlink module, and ERANGE failure.
3468         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
3469         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
3470
3471         readlink: fix Solaris 9 bug with trailing slash
3472         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
3473         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
3474         * doc/posix-functions/readlink.texi (readlink): Document this.
3475         * modules/readlink-tests: New test.
3476         * tests/test-readlink.c: Likewise.
3477
3478         readlink: fix cygwin 1.5.x bug with return type
3479         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
3480         * lib/unistd.in.h (readlink): Use ssize_t.
3481         * lib/readlink.c (readlink): Likewise.
3482         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3483         * modules/unistd (Makefile.am): Substitute it.
3484         * lib/unistd.in.h (readlink): Declare replacement.
3485         * doc/posix-functions/readlink.texi (readlink): Document this.
3486
3487         symlink: use throughout gnulib
3488         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
3489         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
3490         symlink is not used.
3491         * modules/symlinkat (Depends-on): Add symlink.
3492         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
3493         * modules/canonicalize-tests (Depends-on): Likewise.
3494         * modules/lstat-tests (Depends-on): Likewise.
3495         * modules/openat-tests (Depends-on): Likewise.
3496         * modules/remove-tests (Depends-on): Likewise.
3497         * modules/rmdir-tests (Depends-on): Likewise.
3498         * modules/unlink-tests (Depends-on): Likewise.
3499         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
3500         * tests/test-canonicalize.c (symlink): Likewise.
3501         * tests/test-fstatat.c (symlink): Likewise.
3502         * tests/test-lstat.c (symlink): Likewise.
3503         * tests/test-remove.c (symlink): Likewise.
3504         * tests/test-rmdir.c (symlink): Likewise.
3505         * tests/test-unlink.c (symlink): Likewise.
3506         * tests/test-unlinkat.c (symlink): Likewise.
3507
3508         symlink: new module, for Solaris 9 bug
3509         * modules/symlink: New file.
3510         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
3511         * lib/symlink.c: Likewise.
3512         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
3513         * modules/unistd (Makefile.am): Substitute them.
3514         * lib/unistd.in.h (symlink): Declare replacement.
3515         * MODULES.html.sh (File system functions): Mention it.
3516         * doc/posix-functions/symlink.texi (symlink): Likewise.
3517         * modules/symlink-tests: New test.
3518         * tests/test-symlink.c: Likewise.
3519
3520 2009-09-23  Bruno Haible  <bruno@clisp.org>
3521
3522         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
3523         when needed.
3524         Test case: gnulib-tool --import --with-tests atexit inttypes.
3525         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
3526
3527 2009-09-23  Bruno Haible  <bruno@clisp.org>
3528
3529         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
3530         subcommand, not in a subshell.
3531
3532 2009-09-22  Eric Blake  <ebb9@byu.net>
3533
3534         unistd: sort replacement declarations
3535         * lib/unistd.in.h: Sort declarations.
3536
3537         open, openat: minor optimization
3538         * lib/open.c (open): If open succeeded, len is non-zero.
3539         * lib/openat.c (rpl_openat): Likewise.
3540
3541         link-follow: ensure correct result
3542         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
3543         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
3544         distinguish between possible failures.
3545
3546 2009-09-21  Eric Blake  <ebb9@byu.net>
3547
3548         fts: avoid compiler warning
3549         * lib/fts.c (dirent_inode_sort_may_be_useful)
3550         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
3551
3552 2009-09-19  Bruno Haible  <bruno@clisp.org>
3553
3554         * lib/progreloc.c (canonicalize_file_name): New declaration.
3555
3556 2009-09-19  Eric Blake  <ebb9@byu.net>
3557
3558         link: fix quoting
3559         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
3560
3561         openat: fix openat bugs on Solaris 9
3562         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
3563         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
3564         * modules/openat (Depends-on): Add open.
3565         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
3566         * modules/fcntl-h (Makefile.am): Substitute it.
3567         * lib/fcntl.in.h (openat): Declare replacement.
3568         * doc/posix-functions/openat.texi (openat): Document this.
3569
3570         openat: move fstatat and unlinkat into correct files
3571         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
3572         compiled.
3573         * lib/openat.c (fstatat, unlinkat): Move...
3574         * lib/fstatat.c (fstatat): ...into correct files.
3575         * lib/unlinkat.c (unlinkat): Likewise.
3576
3577         openat: fix unlinkat bugs on Solaris 9
3578         * lib/unlinkat.c (unlinkat): New file.
3579         * modules/openat (Depends-on): Add unlink.
3580         (Files): Distribute it.
3581         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
3582         trailing slash behavior is broken.
3583         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3584         * modules/unistd (Makefile.am): Substitute it.
3585         * lib/unistd.in.h (unlinkat): Declare replacement.
3586         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
3587
3588         openat: fix fstatat bugs on Solaris 9
3589         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
3590         stat.
3591         * doc/posix-functions/fstatat.texi (fstatat): Document this.
3592
3593         test-unlinkat: enhance test, to expose Solaris 9 bug
3594         * tests/test-unlink.c (main): Factor guts...
3595         * tests/test-unlink.h (test_rmdir_func): ...into new file.
3596         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
3597         * tests/test-rmdir.c (main): Adjust caller.
3598         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
3599         (unlinker): New helper function.
3600         (rmdirat): Enhance check.
3601         * modules/rmdir-tests (Depends-on): Add stdbool.
3602         * modules/unlink-tests (Depends-on): Likewise.
3603         (Files): Add test-unlink.h.
3604         * modules/openat-tests (Files): Likewise.
3605         (Depends-on): Add unlinkdir.
3606
3607         test-fstatat: new test, to expose Solaris 9 bugs
3608         * tests/test-stat.c (main): Factor guts...
3609         * tests/test-stat.h (test_stat_func): ...into new file.
3610         * tests/test-lstat.c (main): Factor guts...
3611         * tests/test-lstat.h (test_lstat_func): ...into new file.
3612         * tests/test-fstatat.c: New file.
3613         * modules/stat-tests (Files): Add test-stat.h.
3614         * modules/lstat-tests (Files): Add test-lstat.h.
3615         (Depends-on): Add stdbool.
3616         * modules/openat-tests (Depends-on): Add pathmax.
3617         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
3618         (Makefile.am): Run new test.
3619
3620         remove: new module, for mingw and Solaris 9 bugs
3621         * modules/remove: New file.
3622         * lib/remove.c: Likewise.
3623         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
3624         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
3625         * modules/stdio (Makefile.am): Use them.
3626         * lib/stdio.in.h (remove): Declare replacement.
3627         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3628         * doc/posix-functions/remove.texi (remove): Likewise.
3629         * modules/remove-tests: New test.
3630         * tests/test-remove.c: Likewise.
3631
3632         unlink: new module, for Solaris 9 bug
3633         * modules/unlink: New file.
3634         * lib/unlink.c: Likewise.
3635         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
3636         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3637         * modules/unistd (Makefile.am): Use them.
3638         * lib/unistd.in.h (stat): Declare replacement.
3639         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3640         * doc/posix-functions/unlink.texi (unlink): Likewise.
3641         * modules/unlink-tests: New test.
3642         * tests/test-unlink.c: Likewise.
3643
3644         lstat: fix Solaris 9 bug
3645         * lib/lstat.c (lstat): Also check for trailing slash on
3646         non-symlink, non-directories.  Use stat module to simplify logic.
3647         * doc/posix-functions/lstat.texi (lstat): Document it.
3648         * modules/lstat-tests (Depends-on): Add errno, same-inode.
3649         (configure.ac): Check for symlink.
3650         * tests/test-lstat.c (main): Add more tests.
3651
3652         stat: add as dependency to other modules
3653         * modules/chown (Depends-on): Add stat.
3654         * modules/euidaccess (Depends-on): Likewise.
3655         * modules/fchdir (Depends-on): Likewise.
3656         * modules/isdir (Depends-on): Likewise.
3657         * modules/link (Depends-on): Likewise.
3658         * modules/lstat (Depends-on): Likewise.
3659         * modules/mkdir-p (Depends-on): Likewise.
3660         * modules/modechange (Depends-on): Likewise.
3661         * modules/open (Depends-on): Likewise.
3662         * modules/readlink (Depends-on): Likewise.
3663         * modules/same (Depends-on): Likewise.
3664
3665         stat: fix Solaris 9 bug
3666         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
3667         slash.
3668         * lib/stat.c (rpl_stat): Work around it.
3669         * doc/posix-functions/stat.texi (stat): Update documentation.
3670
3671         stat: new module, for mingw bug
3672         * modules/stat: New file.
3673         * lib/stat.c: Likewise.
3674         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
3675         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
3676         * modules/sys_stat (Makefile.am): Use them.
3677         * lib/sys_stat.in.h (stat): Declare replacement.
3678         * lib/openat.c (fstatat): Deal with lstat and stat being function
3679         macros.
3680         * modules/openat (Depends-on): Add inline.
3681         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3682         * doc/posix-functions/stat.texi (stat): Likewise.
3683         * modules/stat-tests: New test.
3684         * tests/test-stat.c: Likewise.
3685
3686 2009-09-19  Jim Meyering  <meyering@redhat.com>
3687
3688         syntax-check: detect unnecessary inclusion of canonicalize.h
3689         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
3690
3691 2009-09-19  Eric Blake  <ebb9@byu.net>
3692
3693         canonicalize-lgpl: adjust clients to use correct header
3694         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
3695         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
3696         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
3697         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
3698         * lib/progreloc.c (includes): Likewise.
3699
3700 2009-09-19  Jim Meyering  <meyering@redhat.com>
3701
3702         test-posixtm.c: correct a comment
3703         * tests/test-posixtm.c: Correct first-line comment.
3704         Spotted by Eric Blake.
3705
3706 2009-09-16  Jim Meyering  <meyering@redhat.com>
3707
3708         posixtm-tests: make T const-correct; add a test case
3709         * tests/test-posixtm.c (T): Declare const.
3710         Add a test for -(2^31+1).
3711         Remove useless can-succeed-only-in-2002 test.
3712
3713         posixtm-tests: adjust the sole failing test
3714         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
3715         expected output matches what mktime now produces.  Cross-checked via
3716         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
3717
3718         posixtm: move #ifdef'd tests into a new module
3719         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
3720         * tests/test-posixtm.c: ... this new file.
3721         * modules/posixtm-tests: New module.
3722
3723 2009-09-19  Eric Blake  <ebb9@byu.net>
3724
3725         openat: simplify use of at-func.c
3726         * lib/at-func.c (includes): Include prerequisites here, to
3727         simplify requirements on client files.
3728         * lib/openat-priv.h: Add double-inclusion guard.
3729         * lib/faccessat.c (includes): Simplify.
3730         * lib/fchmodat.c (includes): Likewise.
3731         * lib/fchownat.c (includes): Likewise.
3732         * lib/mkdirat.c (includes): Likewise.
3733         * lib/mkfifoat.c (includes): Likewise.
3734         * lib/symlinkat.c (includes): Likewise.
3735
3736         openat: allow return of fd 0
3737         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
3738         * modules/save-cwd (Depends-on): Replace fcntl-safer with
3739         unistd-safer.
3740         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
3741         <fcntl.h>; this module does not leak fds.
3742         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
3743         must be allowed to return 0, leaving openat_safer to add the
3744         safety.
3745         (openat_permissive): Avoid writing to just-opened fd 2 if
3746         restoring the current directory fails.
3747         * lib/openat-die.c (openat_restore_fail): Add comment.
3748         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
3749         (save_cwd): Guarantee safe fd, but without use of open_safer.
3750         * tests/test-openat.c: New test.
3751         * modules/openat-tests (Files, Makefile.am): Distribute and build
3752         new file.
3753
3754         relocatable-prog-wrapper: fix build
3755         * modules/relocatable-prog-wrapper (Files): Update name of
3756         canonicalize m4 file, broken on 2009-09-17.
3757         Reported by emad hajjar <aleppos@hotmail.com>.
3758
3759 2009-09-19  Bruno Haible  <bruno@clisp.org>
3760
3761         * lib/safe-alloc.h: Use the standard header with GPL copyright.
3762         * lib/safe-alloc.c: Likewise.
3763         Reported by Ian Beckwith <ianb@erislabs.net>.
3764
3765 2009-09-18  Bruno Haible  <bruno@clisp.org>
3766
3767         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
3768         Reported by <erobles@sensacd.com.mx>.
3769
3770 2009-09-17  Eric Blake  <ebb9@byu.net>
3771
3772         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
3773         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
3774         slashes when checking if last component is missing.
3775         * tests/test-canonicalize.c (main): Test this.
3776
3777         canonicalize, canonicalize-lgpl: honor // if distinct from /
3778         * modules/canonicalize (Files): Add double-slash-root.m4.
3779         * modules/canonicalize-lgpl (Files): Likewise.
3780         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
3781         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
3782         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
3783         fallback definition.
3784         (canonicalize_filename_mode): Use it to protect //.
3785         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
3786         (__realpath): Likewise.
3787         * tests/test-canonicalize.c (main): Test this.
3788         * tests/test-canonicalize-lgpl.c (main): Likewise.
3789         * modules/canonicalize-tests (Depends-on): Add same-inode.
3790         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
3791
3792         canonicalize-lgpl: fix glibc bug with trailing slash
3793         * m4/canonicalize-lgpl.m4: Move contents...
3794         * m4/canonicalize.m4: ...here.
3795         (gl_CANONICALIZE_LGPL): Factor realpath check...
3796         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
3797         glibc 2.3.5 bug, fixed 2005-04-27.
3798         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
3799         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
3800         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
3801         * modules/canonicalize-lgpl (Files): Manage file rename.
3802         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
3803         * modules/stdlib (Makefile.am): Substitute witness.
3804         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
3805         is needed.
3806         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
3807         replacement is required.
3808         * lib/canonicalize.c (canonicalize_file_name): Likewise.
3809         * doc/glibc-functions/canonicalize_file_name.texi
3810         (canonicalize_file_name): Document this.
3811         * doc/posix-functions/realpath.texi (realpath): Likewise.
3812
3813         canonicalize-lgpl: reject non-directory with trailing slash
3814         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
3815         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
3816         catches failures in glibc 2.3.5.
3817         * tests/test-canonicalize.c (main): Likewise.
3818
3819         canonicalize-lgpl: use native realpath if it works
3820         * lib/canonicalize-lgpl.c (realpath): Guard with
3821         FUNC_REALPATH_WORKS.
3822         * lib/stdlib.in.h (realpath): Make declaration optional based on
3823         HAVE_REALPATH.
3824         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
3825         native realpath works.
3826         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
3827         * modules/stdlib (Makefile.am): Substitute witness.
3828
3829         canonicalize, canonicalize-lgpl: use <stdlib.h>
3830         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
3831         (Include): Mention <stdlib.h>.
3832         (configure.ac): Mention functions we provide.
3833         * modules/canonicalize (configure.ac): Likewise.
3834         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
3835         realpath if canonicalize_file_name is missing.
3836         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
3837         * modules/stdlib (Makefile.am): Substitute witnesses.
3838         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
3839         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
3840         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
3841         * NEWS: Document this.
3842         * doc/glibc-functions/canonicalize_file_name.texi
3843         (canonicalize_file_name): Likewise.
3844         * doc/posix-functions/realpath.texi (realpath): Likewise.
3845         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
3846
3847         test-canonicalize: consolidate into single C program
3848         * tests/test-canonicalize.sh: Delete; move setup into...
3849         * tests/test-canonicalize.c (main): ...the program, making it
3850         easier to run in debugger.  Add some tests.
3851         * modules/canonicalize-tests (Files): Remove unused file.
3852         (Depends-on): Add progname.
3853         (configure.ac, Makefile.am): Simplify.
3854
3855         test-canonicalize-lgpl: consolidate into single C program
3856         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
3857         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
3858         easier to run in debugger.  Add some tests.
3859         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
3860         (configure.ac, Makefile.am): Simplify.
3861
3862         canonicalize: avoid resolvepath
3863         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
3864         unnecessary checks.
3865         * lib/canonicalize.c (includes): Simplify.
3866         (canonicalize_file_name): Drop resolvepath implementation.
3867         * modules/canonicalize (Depends-on): Drop filenamecat.
3868
3869         canonicalize: don't lose errno
3870         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
3871         over calls to free.
3872
3873         canonicalize: simplify errno handling
3874         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
3875         assignment.
3876
3877         canonicalize, canonicalize-lgpl: update module dependencies
3878         * modules/canonicalize (Depends-on): Add extensions, lstat,
3879         pathmax, stdlib.
3880         (Files): Drop pathmax.h.
3881         (configure.ac): Adjust macro name.
3882         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
3883         lstat, stdlib, sys_stat.
3884         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
3885         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
3886         extensions.
3887         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
3888         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
3889         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
3890         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
3891         declaration, if available.
3892         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
3893         we can rely on the readlink module.
3894         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
3895         (includes): Use <unistd.h> unconditionally.
3896
3897 2009-09-17  Eric Blake  <ebb9@byu.net>
3898
3899         maint: make Include sections of modules consistent
3900         * modules/alloca: Use only header name; no need to list #include.
3901         * modules/alloca-opt: Likewise.
3902         * modules/arpa_inet: Likewise.
3903         * modules/canon-host: Likewise.
3904         * modules/configmake: Likewise.
3905         * modules/dirent: Likewise.
3906         * modules/eealloc: Likewise.
3907         * modules/environ: Likewise.
3908         * modules/fchdir: Likewise.
3909         * modules/fcntl: Likewise.
3910         * modules/fcntl-h: Likewise.
3911         * modules/gethrxtime: Likewise.
3912         * modules/gettime: Likewise.
3913         * modules/ignore-value: Likewise.
3914         * modules/inet_ntop: Likewise.
3915         * modules/inet_pton: Likewise.
3916         * modules/inttypes: Likewise.
3917         * modules/isnand-nolibm: Likewise.
3918         * modules/isnanf-nolibm: Likewise.
3919         * modules/mbchar: Likewise.
3920         * modules/mbfile: Likewise.
3921         * modules/mbiter: Likewise.
3922         * modules/mbuiter: Likewise.
3923         * modules/netdb: Likewise.
3924         * modules/netinet_in: Likewise.
3925         * modules/nproc: Likewise.
3926         * modules/pagealign_alloc: Likewise.
3927         * modules/poll: Likewise.
3928         * modules/printf-frexp: Likewise.
3929         * modules/pthread: Likewise.
3930         * modules/putenv: Likewise.
3931         * modules/random_r: Likewise.
3932         * modules/relocatable-prog: Likewise.
3933         * modules/search: Likewise.
3934         * modules/select: Likewise.
3935         * modules/selinux-h: Likewise.
3936         * modules/settime: Likewise.
3937         * modules/signal: Likewise.
3938         * modules/size_max: Likewise.
3939         * modules/socklen: Likewise.
3940         * modules/ssize_t: Likewise.
3941         * modules/stdarg: Likewise.
3942         * modules/stdbool: Likewise.
3943         * modules/stddef: Likewise.
3944         * modules/stdint: Likewise.
3945         * modules/stdio: Likewise.
3946         * modules/stdlib: Likewise.
3947         * modules/string: Likewise.
3948         * modules/strings: Likewise.
3949         * modules/sys_file: Likewise.
3950         * modules/sys_ioctl: Likewise.
3951         * modules/sys_select: Likewise.
3952         * modules/sys_socket: Likewise.
3953         * modules/sys_stat: Likewise.
3954         * modules/sys_time: Likewise.
3955         * modules/sys_times: Likewise.
3956         * modules/sys_utsname: Likewise.
3957         * modules/sys_wait: Likewise.
3958         * modules/sysexits: Likewise.
3959         * modules/time: Likewise.
3960         * modules/times: Likewise.
3961         * modules/tmpfile: Likewise.
3962         * modules/trim: Likewise.
3963         * modules/unistd: Likewise.
3964         * modules/wchar: Likewise.
3965         * modules/wctype: Likewise.
3966
3967 2009-09-17  Bruno Haible  <bruno@clisp.org>
3968
3969         Make getdate.y compile on QNX and NetBSD 5 / i386.
3970         * m4/getdate.m4 (gl_GETDATE): Conditionally define
3971         TIME_T_FITS_IN_LONG_INT.
3972         * lib/getdate.y (long_time_t): New type.
3973         (relative_time): Change type of 'seconds' field to long_time_t.
3974         (get_date): Update types of local variables. Check against overflow
3975         during conversion from long_time_t to time_t.
3976         Reported by Matt Kraai <kraai@ftbfs.org>
3977         and Hasso Tepper <hasso@netbsd.org>.
3978
3979 2009-09-17  Bruno Haible  <bruno@clisp.org>
3980
3981         * modules/COPYING: Update copyright years.
3982         * modules/README: Likeiwse.
3983         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
3984         Reported by Ian Beckwith <ianb@erislabs.net>.
3985
3986 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
3987
3988         * users.txt: Update references for gnuit package.
3989
3990 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
3991
3992         * m4/getdelim.m4: Fix typo in copyright line.
3993
3994 2009-09-17  Bruno Haible  <bruno@clisp.org>
3995
3996         * lib/atoll.c: Use the standard header with GPL copyright.
3997         * lib/argz.in.h: Likewise.
3998         * lib/glob.c: Likewise.
3999         * lib/glob-libc.h: Likewise.
4000         * lib/random_r.c: Likewise.
4001         * lib/siglist.h: Likewise.
4002         * lib/strsignal.c: Likewise.
4003         Reported by Ian Beckwith <ianb@erislabs.net>.
4004
4005 2009-09-17  Eric Blake  <ebb9@byu.net>
4006
4007         rmdir: ensure correct dependency order
4008         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
4009
4010 2009-09-17  Bruno Haible  <bruno@clisp.org>
4011
4012         Disable assertion that fails on NetBSD 5 / i386.
4013         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
4014         Reported by Sam Steingold <sds@gnu.org>
4015         and Hasso Tepper <hasso@netbsd.org>.
4016
4017 2009-09-16  Eric Blake  <ebb9@byu.net>
4018
4019         unlinkdir: port to mingw
4020         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
4021         on which no one can unlink a directory.
4022
4023         stdlib: sort witness names
4024         * modules/stdlib (Makefile.am): Sort replacements.
4025         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
4026         * lib/stdlib.in.h: Likewise.
4027
4028         parse-duration-tests: avoid link failure
4029         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
4030         LIBINTL.
4031         Reported by Tom G. Christensen.
4032
4033         openat-tests: ensure unlinkat behaves like rmdir
4034         * tests/test-rmdir.c (main): Factor guts...
4035         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
4036         * modules/rmdir-tests (Files): Ship new file.
4037         * modules/openat-tests: New test.
4038         * tests/test-unlinkat.c: Likewise.
4039
4040         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
4041         * modules/rmdir-errno (Status, Notice): Now obsolete.
4042
4043         rmdir: work around cygwin 1.5.x and mingw bugs
4044         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
4045         * lib/rmdir.c (rmdir): Work around it.
4046         * modules/rmdir (Status, Notice): No longer obsolete.
4047         (Files): Add dos.m4.
4048         (Depends-on): Add unistd.
4049         (configure.ac): Set witnesses.
4050         (License): Relax to LGPLv2+.
4051         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
4052         * modules/unistd (Makefile.am): Substitute witnesses.
4053         * lib/unistd.in.h (rmdir): Declare replacement.
4054         * doc/posix-functions/rmdir.texi (rmdir): Document this.
4055         * modules/rmdir-tests: New tests.
4056         * tests/test-rmdir.c: Likewise.
4057
4058 2009-09-15  Eric Blake  <ebb9@byu.net>
4059
4060         fchdir: improve use of replacement functions
4061         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
4062         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
4063         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
4064         REPLACE_CLOSEDIR.
4065         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
4066         * modules/sys_stat (Makefile.am): Substitute correct witness.
4067         * modules/dirent (Makefile.am): Likewise.
4068         * modules/unistd (Makefile.am): Likewise.
4069         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
4070         * lib/unistd.in.h (dup): Likewise.
4071         * lib/sys_stat.in.h (fstat): Likewise.
4072
4073         maint: ignore gnulib-tool temp files
4074         * .gitignore: Ignore files created during gnulib-tool --test.
4075
4076 2009-09-13  Jim Meyering  <meyering@redhat.com>
4077
4078         posixtm: don't reject a time that specify "60" as the number of seconds
4079         * lib/posixtm.c (posixtime): The code to reject invalid dates
4080         would also reject a time specified with the .60 suffix.
4081         But POSIX allows that, in order to accommodate leap seconds.
4082         So don't reject it.
4083         (main): Adjust tests accordingly.
4084         * modules/posixtm (Depends-on): Add stpcpy.
4085
4086 2009-09-11  Jim Meyering  <meyering@redhat.com>
4087
4088         announce-gen: include [$release_type] in emitted Subject:
4089         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
4090         e.g., [stable] in the emitted Subject: line.
4091
4092 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4093
4094         Remove obsolete macros from several modules.
4095         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
4096         obsolete Autoconf macros with their modern counterparts.
4097         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
4098         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
4099         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
4100         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
4101         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
4102         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
4103         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
4104         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
4105         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
4106         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
4107         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
4108         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
4109         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
4110         * m4/sockets.m4 (gl_SOCKETS): Likewise.
4111         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
4112         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
4113         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
4114         * m4/time_r.m4 (gl_TIME_R): Likewise.
4115         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
4116         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
4117         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
4118
4119         Fix copyright header in build-aux scripts.
4120         * build-aux/git-version-gen: Fix copyright header to match GPLv3
4121         recommendation.
4122         * build-aux/ncftpput-ftp: Likewise.
4123         * build-aux/update-copyright: Likewise.
4124
4125 2009-09-09  Eric Blake  <ebb9@byu.net>
4126
4127         test-link: allow Linux choice of errno
4128         * tests/test-link.c (main): Relax test for alternate error.
4129
4130         strndup: fix improper m4 caching
4131         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
4132         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
4133         (gl_PREREQ_STRNDUP): Delete.
4134         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
4135         * modules/string (Makefile.am): Substitute it.
4136         * lib/string.in.h (strndup): Modernize prototype.
4137
4138         getcwd: port to mingw
4139         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
4140         different from the POSIX assumptions made throughout the getcwd
4141         module; fortunately, the mingw getcwd does not need replacement.
4142         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
4143         * modules/getcwd-tests: New test.
4144         * tests/test-getcwd.c: Likewise.
4145
4146         link: fix platform bugs
4147         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
4148         * lib/link.c (link): Work around them.  Fix related mingw bug.
4149         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
4150         * modules/unistd (Makefile.am): Substitute it.
4151         * lib/unistd.in.h (link): Declare replacement.
4152         * doc/posix-functions/link.texi (link): Document this.
4153         * modules/link (Depends-on): Add strdup-posix, sys_stat.
4154
4155         test-link: consolidate into single C program, test more cases
4156         * tests/test-link.sh: Delete.
4157         * tests/test-link.c: Test more error conditions.  Exposes bugs on
4158         at least Cygwin and Solaris.
4159         * modules/link-tests (Files): Remove unused file.
4160         (Depends-on): Add errno, sys_stat.
4161         (Makefile.am): Simplify.
4162
4163 2009-09-08  Bruno Haible  <bruno@clisp.org>
4164
4165         Work around towlower, towupper bug on mingw.
4166         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
4167         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
4168         * doc/posix-functions/towlower.texi: Mention the mingw bug.
4169         * doc/posix-functions/towupper.texi: Likewise.
4170         Reported by Eric Blake.
4171
4172 2009-09-08  Jim Meyering  <meyering@redhat.com>
4173
4174         build: don't try to run autoheader if we don't use it
4175         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
4176         is not used in configure.ac.
4177
4178 2009-09-08  Eric Blake  <ebb9@byu.net>
4179
4180         euidaccess: fix compilation error
4181         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
4182
4183         rawmemchr: relax license
4184         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
4185         okay.
4186         Reported by Jim Meyering.
4187
4188         mkfifoat: new module
4189         * modules/mkfifoat: New file.
4190         * lib/mkfifoat.c: Likewise.
4191         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
4192         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
4193         * modules/sys_stat (Makefile.am): Use them.
4194         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
4195         * MODULES.html.sh (File system functions): Mention module.
4196         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
4197         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
4198         * modules/mkfifoat-tests: New test.
4199         * tests/test-mkfifoat.c: Likewise.
4200
4201         strchrnul: relax license
4202         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
4203         okay.
4204         Reported by Jim Meyering.
4205
4206 2009-09-08  Eric Blake  <ebb9@byu.net>
4207
4208         fstatat: fix compilation on Solaris
4209         * lib/fstatat.c (includes): Add fcntl.h.
4210         Reported by Pádraig Brady.
4211
4212 2009-09-07  Eric Blake  <ebb9@byu.net>
4213
4214         rename: modernize replacement
4215         * modules/rename (Depends-on): Add stdio.
4216         (configure.ac): Declare witness.
4217         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
4218         stdio take care of replacement.
4219         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
4220         * modules/stdio (Makefile.am): Substitute them.
4221         * lib/stdio.in.h (rename): Declare replacement.
4222         * lib/rename.c (includes): Allow cross-compilation to non-windows
4223         machines.
4224         * doc/posix-functions/rename.texi (rename): Improve
4225         documentation.
4226
4227         stdio: sort witness names
4228         * modules/stdio (Makefile.am): Sort replacements.
4229         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
4230         * lib/stdio.in.h: Likewise.
4231
4232         getcwd: minor cleanups
4233         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
4234         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
4235
4236         openat: provide more convenience names
4237         * modules/faccessat (configure.ac): Add C witness.
4238         * lib/unistd.in.h (readlinkat): Fix typo.
4239         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
4240         convenience wrappers.
4241         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
4242         wrappers in syntax checks.
4243
4244 2009-09-06  Eric Blake  <ebb9@byu.net>
4245
4246         doc: fix comments in recent patches
4247         * lib/faccessat.c: Mention correct function.
4248         * lib/fchmodat.c: Likewise.
4249         * lib/fchownat.c: Likewise.
4250         * lib/symlinkat.c: Likewise.
4251         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
4252         constants.
4253
4254         faccessat, symlinkat: continue cleanup of previous patch
4255         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
4256         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
4257         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
4258         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
4259         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
4260         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
4261         set.
4262
4263 2009-09-06  Bruno Haible  <bruno@clisp.org>
4264
4265         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
4266         (fstatat): Declare if GNULIB_FSTATAT is set.
4267         (mkdirat): Declare if GNULIB_MKDIRAT is set.
4268         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
4269         (unlinkat): Declare if GNULIB_UNLINKAT is set.
4270         * modules/fcntl-h (Files): Remove m4/openat.m4.
4271         * modules/sys_stat (Files): Remove m4/openat.m4.
4272         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
4273         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
4274         * modules/unistd (Files): Remove m4/openat.m4.
4275         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
4276         GNULIB_OPENAT.
4277         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
4278         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
4279         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
4280         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
4281         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
4282         gl_OPENAT_DEFAULTS.
4283         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
4284         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
4285         Don't require gl_OPENAT_DEFAULTS.
4286         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
4287         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
4288         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
4289         (gl_OPENAT_DEFAULTS): Remove macro.
4290
4291 2009-09-06  Bruno Haible  <bruno@clisp.org>
4292
4293         * modules/openat (configure.ac): Remove unneeded witness.
4294
4295 2009-09-06  Bruno Haible  <bruno@clisp.org>
4296
4297         Set errno to ENOSYS when a function is entirely unsupported.
4298         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
4299         EOPNOTSUPP.
4300         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
4301         * modules/chown (Depends-on): Remove errno.
4302
4303 2009-09-06  Bruno Haible  <bruno@clisp.org>
4304
4305         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
4306
4307 2009-09-06  Bruno Haible  <bruno@clisp.org>
4308
4309         * lib/sys_stat.in.h: Fix preprocessor command indentation.
4310
4311 2009-09-06  Ben Pfaff  <blp@gnu.org>
4312             Bruno Haible  <bruno@clisp.org>
4313
4314         Work around a glibc bug in strtok_r.
4315         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
4316         Undefine if UNDEFINE_STRTOK_R is set.
4317         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
4318         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4319         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
4320         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
4321         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
4322         UNDEFINE_STRTOK_R.
4323         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
4324
4325 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
4326
4327         exclude: minor fix
4328         * lib/exclude.c: Include wctype.h
4329
4330 2009-09-06  Akim Demaille  <demaille@gostai.com>
4331
4332         bootstrap: improve error message
4333         * build-aux/bootstrap (find_tool): Upon failure, report the list
4334         of candidates.
4335         Honor the initial value of the envvar.
4336
4337 2009-09-05  Eric Blake  <ebb9@byu.net>
4338
4339         symlinkat: new module
4340         * modules/symlinkat: New file.
4341         * lib/symlinkat.c: Likewise.
4342         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
4343         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
4344         * modules/unistd (Makefile.am): Use them.
4345         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
4346         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
4347         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
4348         * MODULES.html.sh (File system functions): Mention module.
4349         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
4350         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
4351         * modules/symlinkat-tests: New test.
4352         * tests/test-symlinkat.c: Likewise.
4353
4354         test-openat-safer: add more checks
4355         * tests/test-openat-safer.c (main): Check more code paths.
4356
4357 2009-09-05  Jim Meyering  <meyering@redhat.com>
4358
4359         syntax-check: detect unnecessary inclusion of openat.h
4360         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
4361
4362 2009-09-05  Bruno Haible  <bruno@clisp.org>
4363
4364         Support towlower, towupper.
4365         * doc/posix-functions/towlower.texi: Mention module wctype.
4366         * doc/posix-functions/towupper.texi: Likewise.
4367         * lib/wctype.in.h (towlower, towupper): New functions.
4368         * tests/test-wctype.c: Include stdio.h, stdlib.h.
4369         (ASSERT): New macro.
4370         (e): New variable.
4371         (main): Test also towlower, towupper. Test WEOF argument.
4372         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
4373
4374 2009-09-05  Bruno Haible  <bruno@clisp.org>
4375
4376         Fix conversion behaviour when the input is invalid.
4377         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
4378         mark occurring in first pass of indirect conversion.
4379         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
4380         input.
4381         Found by clang's static analyzer.
4382
4383 2009-09-05  Bruno Haible  <bruno@clisp.org>
4384
4385         * tests/test-striconveh.c (main): Test indirect conversion on platforms
4386         where direct conversion is possible.
4387
4388 2009-09-04  Eric Blake  <ebb9@byu.net>
4389
4390         openat: fail with ENOENT on empty name
4391         * lib/openat-proc.c (openat_proc_name): Special-case the empty
4392         buffer.
4393
4394         link-follow: fix logic bug in prior patch
4395         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
4396         reversed sense of yes and no in prior patch.  Avoid confusing
4397         compilation failure with desired semantics.
4398
4399         link-follow: accomodate mingw and cross-compilation
4400         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
4401         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
4402         cross-compilation results to -1, to make linkat easier to
4403         implement when cross-compiling.  Trivially support mingw.
4404         * modules/link-follow (configure.ac): Call new name.
4405         * NEWS: Mention this.
4406
4407 2009-09-03  Eric Blake  <ebb9@byu.net>
4408
4409         faccessat: compile replacement
4410         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
4411         needed.
4412
4413         fts: fix compilation error
4414         * lib/fts.c (includes): Re-add "openat.h", for
4415         openat_needs_fchdir.
4416
4417         faccessat: new module
4418         * modules/faccessat: New file.
4419         * lib/faccessat.c: Likewise.
4420         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
4421         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
4422         * modules/unistd (Makefile.am): Use it.
4423         * lib/unistd.in.h (faccessat): Declare it.
4424         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
4425         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
4426         * MODULES.html.sh (File system functions): Mention it.
4427         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
4428         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
4429
4430         euidaccess: prefer POSIX over non-standard implementation
4431         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
4432         * lib/euidaccess.c (euidaccess): Use it if available.
4433
4434         openat: make template easier to use
4435         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
4436         AT_FUNC_F2 to be undefined.
4437         (VALIDATE_FLAG): New macro; use it to reject bad flags.
4438         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
4439         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
4440         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
4441         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
4442         Likewise.
4443         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
4444         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
4445         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
4446         Likewise.
4447
4448         openat: declare in POSIX headers
4449         * NEWS: Mention this.
4450         * modules/openat (configure.ac): Declare witnesses.
4451         (Depends-on): Add fcntl-h, sys_stat, unistd.
4452         (Include): Mention correct headers.
4453         * modules/fcntl-h (Depends-on): Add link-warning.
4454         (Files): Add openat.m4.
4455         (Makefile.am): Substitute witnesses.
4456         * modules/sys_stat (Files, Makefile.am): Likewise.
4457         * modules/unistd (Files, Makefile.am): Likewise.
4458         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
4459         (gl_OPENAT_DEFAULTS): New macro.
4460         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
4461         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
4462         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
4463         (SYS_STAT_H): Remove unused variable.
4464         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
4465         * lib/fcntl--.h (includes): Remove unneeded header.
4466         * lib/openat-safer.c (includes): Likewise.
4467         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
4468         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
4469         appropriate headers.
4470         (__OPENAT_PREFIX): Delete.
4471         * lib/fcntl.in.h (openat): Provide declaration.
4472         (AT_FDCWD): Fix Solaris bug.
4473         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
4474         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
4475         * lib/fchmodat.c (includes):  Adjust to find declaration.
4476         * lib/fchownat.c (includes): Likewise.
4477         * lib/mkdirat.c (includes): Likewise.
4478         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
4479         still visible.
4480
4481 2009-09-02  Eric Blake  <ebb9@byu.net>
4482
4483         errno: use consistently
4484         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
4485         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
4486         * lib/canonicalize.c (ELOOP): Likewise.
4487         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
4488         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
4489         * lib/lchown.c (EOPNOTSUPP): Likewise.
4490         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
4491         * lib/savewd.c (ESTALE): Likewise.
4492         * lib/settime.c (ENOSYS): Likewise.
4493         * lib/utimens.c (ENOSYS): Likewise.
4494         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
4495         * lib/chdir-safer.c (ELOOP): Likewise.
4496         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
4497         * modules/c-stack (Depends-on): Add errno.
4498         * modules/canonicalize (Depends-on): Likewise.
4499         * modules/chdir-safer (Depends-on): Likewise.
4500         * modules/fdopendir (Depends-on): Likewise.
4501         * modules/inet_ntop (Depends-on): Likewise.
4502         * modules/inet_pton (Depends-on): Likewise.
4503         * modules/lchown (Depends-on): Likewise.
4504         * modules/openat (Depends-on): Likewise.
4505         * modules/savewd (Depends-on): Likewise.
4506         * modules/settime (Depends-on): Likewise.
4507         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
4508
4509         fts: avoid leaking fds
4510         * modules/fts (Depends-on): Add cloexec.
4511         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
4512         flag.
4513
4514         fts: make directory fds more robust
4515         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
4516         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
4517
4518         backupfile, chdir-long, fts, savedir: make safer
4519         * lib/backupfile.c (includes): Use "dirent--.h", since
4520         numbered_backup can write to stderr during readdir.
4521         * lib/savedir.c (includes): Likewise.
4522         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
4523         emulation can write to stderr on failure.
4524         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
4525         * lib/getcwd.c: Document why opendir_safer is unused.
4526         * lib/glob.c: Likewise.
4527         * lib/scandir.c: Likewise.
4528         * lib/openat-proc.c: Likewise, for open_safer.
4529         * modules/backupfile (Depends-on): Add dirent-safer.
4530         * modules/savedir (Depends-on): Likewise.
4531         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
4532         * modules/chdir-long (Depends-on): Add openat-safer.
4533
4534         openat-safer: new module
4535         * modules/openat-safer: New file.
4536         * lib/openat-safer.c: Likewise.
4537         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
4538         * lib/fcntl-safer.h (openat_safer): Declare.
4539         * lib/fcntl--.h (openat): Override.
4540         * MODULES.html.sh (File descriptor based I/O): Mention it.
4541         * lib/openat.h: Add double-inclusion guards.
4542         * lib/openat.c (includes): Only include "fcntl-safer.h", not
4543         "fcntl--.h", so we can implement openat.
4544         * modules/openat-safer-tests: New test.
4545         * tests/test-openat-safer.c: New file.
4546
4547         dirent-safer: new module
4548         * modules/dirent-safer: New file.
4549         * lib/dirent--.h: Likewise.
4550         * lib/dirent-safer.h: Likewise.
4551         * lib/opendir-safer.c: Likewise.
4552         * m4/dirent-safer.m4: Likewise.
4553         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
4554         * modules/dirent-safer-tests: New test.
4555         * tests/test-dirent-safer.c: New file.
4556         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
4557
4558         fdopendir: optimize on mingw
4559         * lib/unistd.in.h (_gl_directory_name): New prototype.
4560         * lib/fchdir.c (_gl_directory_name): Implement it.
4561         (fchdir): Use it to simplify implementation.
4562         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
4563         fchdir, when available, to avoid calling [f]chdir().
4564
4565         fdopendir: split into its own module
4566         * lib/openat.c (fdopendir): Move...
4567         * lib/fdopendir.c: ...into new file.
4568         * modules/fdopendir: New module.
4569         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
4570         * modules/openat (Depends-on): Add fdopendir.
4571         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
4572         fdopendir here.
4573         * modules/savedir (Depends-on): Only need fdopendir, not full
4574         openat.
4575         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
4576         * lib/openat.h (fdopendir): Drop prototype.
4577         * lib/dirent.in.h (fdopendir): Provide prototype.
4578         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
4579         * modules/dirent (Makefile.am): Substitute them.
4580         * MODULES.html.sh (File system functions): Mention it.
4581         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
4582         * modules/fdopendir-tests: New file.
4583         * tests/test-fdopendir.c: Likewise.
4584
4585         fchdir: use more consistent macro convention
4586         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
4587         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
4588         REPLACE_FCHDIR, rather than relying on config.h macros.
4589         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
4590         inside a single make-time REPLACE_FCHDIR block, rather than using
4591         the config.h FCHDIR_REPLACEMENT.
4592         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
4593         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
4594         Manage fstat replacement.
4595         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
4596         REPLACE_FCHDIR.
4597         * modules/sys_stat (Files): Add m4/unistd_h.m4.
4598         (Makefile.am): Substitute REPLACE_FCHDIR.
4599         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
4600         FCHDIR_REPLACEMENT.
4601         * lib/dup-safer.c (dup_safer): Likewise.
4602         * lib/dup2.c (rpl_dup2): Likewise.
4603         * lib/dup3.c (rpl_dup3): Likewise.
4604         * lib/open.c (rpl_open): Likewise.
4605
4606         fchdir: simplify error handling, and support dup3
4607         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
4608         stdbool, malloc-posix, realloc-posix.
4609         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
4610         (ensure_dirs_slot): Return false on allocation failure.
4611         (rpl_dup2): Delete.
4612         (_gl_register_dup): New function.
4613         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
4614         (_gl_register_fd): Close fd on allocation failure.
4615         * lib/fcntl.in.h (_gl_register_fd): Update signature.
4616         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
4617         prototype.
4618         (rpl_dup2_fchdir): Delete prototype.
4619         * lib/open.c (open): Update caller.
4620         * lib/dup2.c (dup2): Track fchdir metadata.
4621         * lib/dup3.c (dup3): Likewise.
4622         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
4623         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
4624
4625 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4626
4627         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
4628         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
4629         don't pass arguments to AC_OUTPUT.
4630
4631 2009-09-02  Bruno Haible  <bruno@clisp.org>
4632
4633         * modules/mkdtemp (License): Relicense under LGPLv2+.
4634         Reported by Paolo Bonzini.
4635
4636 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4637
4638         Replace uses of obsolete autoconf macros in Jim's modules.
4639         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
4640         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
4641         can evoke a warning from autoconf when run with -Wobsolete
4642         enabled.  They were declared obsolete for good reasons (see
4643         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
4644         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
4645         should not continue using the deprecated macros.
4646         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
4647         obsolete Autoconf macros with modern counterparts.
4648         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
4649         * m4/dos.m4 (gl_AC_DOS): Likewise.
4650         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
4651         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
4652         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
4653         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
4654         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
4655         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
4656         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
4657         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
4658         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
4659         Likewise.
4660         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
4661         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
4662         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
4663         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
4664         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
4665         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
4666
4667 2009-09-01  Eric Blake  <ebb9@byu.net>
4668
4669         fchdir: fix off-by-one bug in previous patch
4670         * lib/fchdir.c (rpl_fstat): Use correct bounds.
4671         (_gl_unregister_fd): Delete useless if.
4672
4673 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
4674
4675         maint.mk: sort the list of syntax-check rules
4676         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
4677         easier to get a sense of progress when the rules are run sequentially
4678         and take a long time.
4679
4680 2009-09-01  Simon Josefsson  <simon@josefsson.org>
4681
4682         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
4683         * modules/netinet_in: Likewise.
4684         * modules/sys_file: Likewise.
4685         * modules/sys_ioctl: Likewise.
4686         * modules/sys_select: Likewise.
4687         * modules/sys_socket: Likewise.
4688         * modules/sys_stat: Likewise.
4689         * modules/sys_time: Likewise.
4690         * modules/sys_times: Likewise.
4691         * modules/sys_utsname: Likewise.
4692         * modules/sys_wait: Likewise.
4693
4694 2009-09-01  Jim Meyering  <meyering@redhat.com>
4695
4696         fts: help ensure that return values are not ignored
4697         * lib/fts_.h (__GNUC_PREREQ): Define.
4698         (__attribute_warn_unused_result__): Define.
4699         (fts_children, fts_close, fts_open, fts_read): Declare with
4700         __attribute_warn_unused_result__.
4701
4702         fts: fts_close now fails also when closing a dir file descriptor fails
4703         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
4704         and propagate to caller, along with errno.
4705
4706         announce-gen: correct formatting in --help output
4707         * build-aux/announce-gen (usage): Move the one-line description in
4708         --help output "up", to where it belongs, just after Usage:.
4709
4710 2009-08-31  Eric Blake  <ebb9@byu.net>
4711
4712         fchdir: port to mingw
4713         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
4714         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
4715         opened, then use a substitute.
4716         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
4717         replacement.
4718         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
4719         (_gl_register_fd): No need to check stat if open already filters
4720         all directories.
4721         (fchdir): Fix error condition to match POSIX.
4722         * modules/fchdir (Depends-on): Add sys_stat.
4723         * doc/posix-functions/open.texi (open): Document the limitation.
4724         * modules/fchdir-tests: New file.
4725         * tests/test-fchdir.c: Likewise.
4726
4727         canonicalize: allow cross-testing from cygwin to mingw
4728         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
4729         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
4730         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
4731         Likewise.
4732         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
4733         target does not support symlinks.
4734         * tests/test-canonicalize-lgpl.sh: Likewise.
4735
4736         chown: avoid compilation warning on mingw
4737         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
4738         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
4739         mingw.
4740         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
4741         * modules/chown (Depends-on): Add errno.
4742
4743 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
4744
4745         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
4746         command.
4747
4748 2009-08-31  Jim Meyering  <meyering@redhat.com>
4749
4750         canonicalize: remove useless initialization
4751         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
4752         initialization of local, "end".
4753
4754 2009-08-30  Bruno Haible  <bruno@clisp.org>
4755
4756         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
4757         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
4758         ENOSYS.
4759
4760 2009-08-30  Bruno Haible  <bruno@clisp.org>
4761
4762         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
4763         /usr/xpg4/bin/tr when it exists.
4764         * tests/test-pipe-filter-gi1.sh: Likewise.
4765
4766 2009-08-30  Bruno Haible  <bruno@clisp.org>
4767
4768         Work around deficient /usr/bin/id program on Solaris.
4769         * tests/test-file-has-acl.sh (ID): New variable.
4770         * tests/test-set-mode-acl.sh (ID): Likewise.
4771         * tests/test-copy-acl.sh (ID): Likewise.
4772         * tests/test-copy-file.sh (ID): Likewise.
4773
4774 2009-08-30  Bruno Haible  <bruno@clisp.org>
4775
4776         New module 'xstriconveh'.
4777         * lib/xstriconveh.h: New file.
4778         * lib/xstriconveh.c: New file.
4779         * modules/xstriconveh: New file.
4780
4781 2009-08-30  Bruno Haible  <bruno@clisp.org>
4782
4783         Make it easier to use mem_cd_iconveh.
4784         * lib/striconveh.h (iconveh_t): New type.
4785         (iconveh_open, iconveh_close): New declarations.
4786         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
4787         with a single 'const iconveh_t *' argument.
4788         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
4789         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
4790         with a single 'const iconveh_t *' argument.
4791         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
4792         * tests/test-striconveh.c (main): Update.
4793         * NEWS: Mention the change.
4794
4795 2009-08-30  Bruno Haible  <bruno@clisp.org>
4796
4797         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
4798         problem.
4799
4800 2009-08-30  Bruno Haible  <bruno@clisp.org>
4801
4802         Work around iconv_open problem on Solaris.
4803         * lib/iconv_open-solaris.gperf: New file.
4804         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
4805         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
4806         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
4807         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
4808         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
4809         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
4810
4811 2009-08-29  Jim Meyering  <meyering@redhat.com>
4812
4813         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
4814         * top/maint.mk (cvs-check): Remove target; it was just an alias
4815         to the better-named vc-diff-check.
4816         (maintainer-distcheck): Remove rule.  It was used only from
4817         the (alpha/beta/major) target, and all of its commands but one
4818         were coreutils-specific.
4819         (vc-dist): Remove rule.
4820         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
4821         Run vc-diff-check, not vc-dist.
4822         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
4823
4824 2009-08-27  Bruno Haible  <bruno@clisp.org>
4825
4826         * tests/test-bitrotate.c (main): Remove test that uses a shift count
4827         of 0.
4828
4829 2009-08-27  Bruno Haible  <bruno@clisp.org>
4830
4831         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
4832         compilers.
4833         * doc/func.texi: Document the SunPRO C bug.
4834
4835 2009-08-27  Bruno Haible  <bruno@clisp.org>
4836
4837         Fix link error on Solaris.
4838         * tests/test-parse-duration.c (xstrdup): Remove function.
4839
4840 2009-08-26  Pádraig Brady  <P@draigbrady.com>
4841
4842         ignore-value: handle pointer types, too
4843         * lib/ignore-value.h (__attribute__): Remove definition.
4844         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
4845         of a more concise and more-often effective "(void) i" statement.
4846         (ignore_ptr): New function to suppress warnings from functions that
4847         return pointers, and to make it explicit that one function doesn't
4848         handle all cases.
4849
4850 2009-08-25  Bruno Haible  <bruno@clisp.org>
4851
4852         dup2: work around a Linux bug.
4853         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
4854         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
4855         * doc/posix-functions/dup2.texi: Mention the Linux bug.
4856         Reported by Simon Josefsson.
4857
4858 2009-08-25  Jim Meyering  <meyering@redhat.com>
4859
4860         libguestfs uses gnulib
4861         * users.txt: Add libguestfs.
4862
4863 2009-08-24  Eric Blake  <ebb9@byu.net>
4864
4865         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
4866         * lib/pipe2.c (includes): Add binary-io.h.
4867         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
4868
4869 2009-08-24  Bruno Haible  <bruno@clisp.org>
4870
4871         Tolerate declared but missing accept4 syscall.
4872         * lib/accept4.c (accept4): Invoke original accept4 function first, if
4873         available.
4874         * lib/sys_socket.in.h (accept4): If the function is already present,
4875         override it.
4876         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
4877         * modules/accept4 (Makefile.am): Compile accept4.c always.
4878         Reported by Paolo Bonzini and Eric Blake.
4879
4880 2009-08-23  Bruno Haible  <bruno@clisp.org>
4881
4882         New module 'accept4'.
4883         * lib/sys_socket.in.h (accept4): New declaration.
4884         * lib/accept4.c: New file.
4885         * m4/accept4.m4: New file.
4886         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
4887         GNULIB_ACCEPT4, HAVE_ACCEPT4.
4888         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
4889         HAVE_ACCEPT4.
4890         * modules/accept4: New file.
4891         * doc/glibc-functions/accept4.texi: Mention the new module.
4892
4893 2009-08-24  Jim Meyering  <meyering@redhat.com>
4894
4895         progname: also set global program_invocation_name, when possible
4896         Before this change, a libtool-enabled program that calls glibc's
4897         error function would report the program name as
4898         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
4899         * modules/progname (configure.ac): Check for a declaration of
4900         program_invocation_name.
4901         * lib/progname.c:  Include <errno.h>.
4902         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
4903         Set program_invocation_name.
4904
4905 2009-08-23  Bruno Haible  <bruno@clisp.org>
4906
4907         * lib/dup3.c: Include <string.h>.
4908
4909 2009-08-23  Bruno Haible  <bruno@clisp.org>
4910
4911         * lib/dup3.c (dup3): Test only once whether the system actually exists.
4912         * lib/pipe2.c (pipe2): Likewise.
4913         Suggested by Eric Blake.
4914
4915 2009-08-23  Bruno Haible  <bruno@clisp.org>
4916
4917         Tolerate declared but missing dup3 syscall.
4918         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
4919         * lib/unistd.in.h (dup3): If the function is already present,
4920         override it.
4921         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
4922         * modules/dup3 (Makefile.am): Compile dup3.c always.
4923         Reported by Paolo Bonzini.
4924
4925 2009-08-23  Bruno Haible  <bruno@clisp.org>
4926
4927         Tolerate declared but missing pipe2 syscall.
4928         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
4929         available.
4930         * lib/unistd.in.h (pipe2): If the function is already present,
4931         override it.
4932         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
4933         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
4934         Reported by Paolo Bonzini.
4935
4936 2009-08-23  Bruno Haible  <bruno@clisp.org>
4937
4938         * lib/pipe2.c (pipe2): Move #ifs inside function.
4939
4940 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4941
4942         quotearg: document limitations of quote_these_too
4943         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
4944         those limitations are created.
4945         * lib/quotearg.h (set_char_quoting): Document that digits and
4946         letters that are special after backslash are not permitted.
4947         (quotearg_char): Cross-reference set_char_quoting documentation.
4948
4949 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
4950
4951         quotearg: implement custom_quoting_style
4952         * lib/quotearg.c: (struct quoting_options): Add left_quote and
4953         right_quote fields.
4954         (set_custom_quoting): New public function.
4955         (quotearg_buffer_restyled): Add left_quote and right_quote
4956         arguments, handle them very much like locale quoting, and update
4957         all uses.
4958         (quotearg_n_custom): New public function.
4959         (quotearg_n_custom_mem): New public function.
4960         (quotearg_custom): New public function.
4961         (quotearg_custom_mem): New public function.
4962         * lib/quotearg.h: Prototype and document new public functions.
4963         (enum quoting_style): For escape_quoting_style and
4964         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
4965         ignored even though they're otherwise like c_quoting_style.
4966         Add custom_quoting_style member and document with comparison to
4967         clocale_quoting_style.
4968         * tests/test-quotearg.c (custom_quotes): New array.
4969         (custom_results): New array.
4970         (main): Extend to test custom quoting.
4971
4972 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4973
4974         quotearg: fix right quote escaping when it's in quote_these_too
4975         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
4976         quote, be sure to prepend only one backslash.
4977         * tests/test-quotearg.c (use_quote_double_quotes): New function.
4978         (main): Test it.
4979
4980 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4981
4982         quotearg-tests: test escaping of embedded locale quotes
4983         * tests/test-quotearg.c (struct result_strings): Add member for
4984         new input.
4985         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
4986         (inputs): Add new input.
4987         (results_g): Add expected results.
4988         (flag_results): Likewise.
4989         (locale_results): Likewise.
4990         (compare_strings): Check those.
4991
4992 2009-08-23  Bruno Haible  <bruno@clisp.org>
4993
4994         Tests for module 'dup3'.
4995         * modules/dup3-tests: New file.
4996         * tests/test-dup3.c: New file.
4997
4998         New module 'dup3'.
4999         * lib/unistd.in.h (dup3): New declaration.
5000         * lib/dup3.c: New file.
5001         * m4/dup3.m4: New file.
5002         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
5003         HAVE_DUP3.
5004         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
5005         * modules/dup3: New file.
5006         * doc/glibc-functions/dup3.texi: Mention the new module.
5007
5008 2009-08-23  Bruno Haible  <bruno@clisp.org>
5009
5010         Tweak the dup2 test.
5011         * tests/test-dup2.c (main): Create the test file empty. Verify that an
5012         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
5013         the test file is still empty. Fix argument order of lseek.
5014
5015 2009-08-23  Bruno Haible  <bruno@clisp.org>
5016
5017         Avoid test link errors when the modules getopt-gnu, gettext are used.
5018         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
5019         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5020
5021 2009-08-23  Bruno Haible  <bruno@clisp.org>
5022
5023         Fix getdtablesize() on mingw.
5024         * lib/getdtablesize.c (getdtablesize): Implement differently.
5025         * lib/unistd.in.h (getdtablesize): Improve comment.
5026
5027 2009-08-23  Bruno Haible  <bruno@clisp.org>
5028
5029         New module 'mkostemp'.
5030         Based on Ulrich Drepper's 2007-08-10 change in glibc.
5031         * lib/stdlib.in.h (mksotemp): New declaration.
5032         * lib/mkostemp.c: New file, from glibc with modifications.
5033         * lib/tempname.h (GT_FILE): Remove outdated comment.
5034         (gen_tempname): Add flags argument.
5035         * lib/tempname.c (__GT_BIGFILE): Remove macro.
5036         (__GT_FILE): Map to 1.
5037         (small_open, large_open): Remove macros.
5038         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
5039         * lib/mkstemp.c (mkstemp): Update.
5040         * lib/mkdtemp.c (mkdtemp): Likewise.
5041         * m4/mkostemp.m4: New file.
5042         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
5043         HAVE_MKOSTEMP.
5044         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
5045         HAVE_MKOSTEMP.
5046         * modules/mkostemp: New file, based on modules/mkstemp.
5047         * doc/glibc-functions/mkostemp.texi: Mention the new module.
5048         * NEWS: Mention the change.
5049
5050 2009-08-23  Bruno Haible  <bruno@clisp.org>
5051
5052         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
5053         Reported by Eric Blake.
5054
5055 2009-08-23  Bruno Haible  <bruno@clisp.org>
5056
5057         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
5058         Reported by Eric Blake.
5059
5060 2009-08-23  Bruno Haible  <bruno@clisp.org>
5061
5062         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
5063         * modules/pipe2 (Depends-on): Likewise.
5064
5065 2009-08-23  Eric Blake  <ebb9@byu.net>
5066
5067         fcntl-h: add O_TTY_INIT support
5068         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
5069         * tests/test-fcntl-h.c (o): Test it.
5070         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
5071
5072         fcntl-h: rename from fcntl, in preparation for fcntl(2)
5073         * modules/fcntl: Move <fcntl.h> header replacement...
5074         * modules/fcntl-h: ...to new name, so as not to collide with
5075         like-named function.
5076         * tests/test-fcntl.c: Rename...
5077         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
5078         * modules/fcntl-tests: Rename...
5079         * modules/fcntl-h-tests: ...to this.  Update test file name.
5080         * modules/chdir-long (Depends-on): Update clients.
5081         * modules/chdir-safer (Depends-on): Likewise.
5082         * modules/fcntl-safer (Depends-on): Likewise.
5083         * modules/fts (Depends-on): Likewise.
5084         * modules/mkancesdirs (Depends-on): Likewise.
5085         * modules/mkdir-p (Depends-on): Likewise.
5086         * modules/open (Depends-on): Likewise.
5087         * modules/savewd (Depends-on): Likewise.
5088         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
5089         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
5090
5091 2009-08-22  Bruno Haible  <bruno@clisp.org>
5092
5093         * modules/binary-io (License): Relicense under LGPL.
5094         * modules/pipe2 (License): Likewise.
5095
5096 2009-08-22  Bruno Haible  <bruno@clisp.org>
5097
5098         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
5099         return value.
5100         * lib/pipe-filter-gi.c (filter_init): Likewise.
5101         Reported by Eric Blake.
5102
5103 2009-08-22  Bruno Haible  <bruno@clisp.org>
5104
5105         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
5106         * modules/pipe (Depends-on): Add pipe2.
5107
5108 2009-08-22  Bruno Haible  <bruno@clisp.org>
5109
5110         Tests for module 'pipe2'.
5111         * modules/pipe2-tests: New file.
5112         * tests/test-pipe2.c: New file.
5113
5114         New module 'pipe2'.
5115         * lib/unistd.in.h (pipe2): New declaration.
5116         * lib/pipe2.c: New file.
5117         * m4/pipe2.m4: New file.
5118         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
5119         HAVE_PIPE2.
5120         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
5121         * modules/pipe2: New file.
5122         * doc/glibc-functions/pipe2.texi: Mention the new module.
5123
5124 2009-08-22  Bruno Haible  <bruno@clisp.org>
5125
5126         Reference some new glibc functions.
5127         * doc/glibc-functions/accept4.texi: New file.
5128         * doc/glibc-functions/dup3.texi: New file.
5129         * doc/glibc-functions/mkostemp.texi: New file.
5130         * doc/glibc-functions/pipe2.texi: New file.
5131         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
5132         (Glibc sys/socket.h): Refer to accept4.
5133         (Glibc unistd.h): Refer to dup3, pipe2.
5134         Reported by Eric Blake.
5135
5136 2009-08-22  Jim Meyering  <meyering@redhat.com>
5137             Bruno Haible  <bruno@clisp.org>
5138
5139         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
5140         This makes it so packages using automake-1.11's silent-rules option
5141         can print e.g., a single "GEN    configmake.h" line, rather than
5142         the 30+ statements that perform the job.  If you want to see the
5143         actual commands, you can still run "make V=1".
5144         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
5145         so that make output is abbreviated when those variables are defined
5146         appropriately.
5147         * modules/argz: Likewise.
5148         * modules/arpa_inet: Likewise.
5149         * modules/byteswap: Likewise.
5150         * modules/configmake: Likewise.
5151         * modules/dirent: Likewise.
5152         * modules/errno: Likewise.
5153         * modules/fcntl: Likewise.
5154         * modules/float: Likewise.
5155         * modules/fnmatch: Likewise.
5156         * modules/getopt-posix: Likewise.
5157         * modules/glob: Likewise.
5158         * modules/iconv_open: Likewise.
5159         * modules/inttypes: Likewise.
5160         * modules/localcharset: Likewise.
5161         * modules/locale: Likewise.
5162         * modules/math: Likewise.
5163         * modules/netdb: Likewise.
5164         * modules/netinet_in: Likewise.
5165         * modules/poll: Likewise.
5166         * modules/posix_spawnp-tests: Likewise.
5167         * modules/sched: Likewise.
5168         * modules/search: Likewise.
5169         * modules/selinux-h: Likewise.
5170         * modules/signal: Likewise.
5171         * modules/spawn: Likewise.
5172         * modules/stdarg: Likewise.
5173         * modules/stdbool: Likewise.
5174         * modules/stddef: Likewise.
5175         * modules/stdint: Likewise.
5176         * modules/stdio: Likewise.
5177         * modules/stdlib: Likewise.
5178         * modules/string: Likewise.
5179         * modules/strings: Likewise.
5180         * modules/sys_file: Likewise.
5181         * modules/sys_ioctl: Likewise.
5182         * modules/sys_select: Likewise.
5183         * modules/sys_socket: Likewise.
5184         * modules/sys_stat: Likewise.
5185         * modules/sys_time: Likewise.
5186         * modules/sys_times: Likewise.
5187         * modules/sys_utsname: Likewise.
5188         * modules/sys_wait: Likewise.
5189         * modules/sysexits: Likewise.
5190         * modules/time: Likewise.
5191         * modules/unistd: Likewise.
5192         * modules/wchar: Likewise.
5193         * modules/wctype: Likewise.
5194
5195 2009-08-22  Jim Meyering  <meyering@redhat.com>
5196
5197         announce-gen: detect write failure
5198         * build-aux/announce-gen: Add Coda at end.
5199         Remove equivalent-but-more-verbose block at top.
5200
5201 2009-08-19  Akim Demaille  <demaille@gostai.com>
5202
5203         bootstrap: --help to stdout.
5204         * bootstrap (usage): Don't send --help to stderr.
5205         Use a here doc instead of a long string.
5206
5207 2009-08-21  Eric Blake  <ebb9@byu.net>
5208
5209         test-popen-safer: split from test-popen
5210         * tests/test-popen.c (main): Move...
5211         * tests/test-popen.h: ...into new file.
5212         * tests/test-popen-safer2.c: New file.
5213         * modules/popen-tests (Files): Add test-popen.h.
5214         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
5215         Suggested by Bruno Haible.
5216
5217         test-fcntl-safer: split from test-open
5218         * tests/test-open.c (main): Move...
5219         * tests/test-open.h: ...into new file.
5220         * tests/test-fcntl-safer.c: New file.
5221         * modules/open-tests (Files): Add test-open.h.
5222         * modules/fcntl-safer-tests: New file.
5223         Suggested by Bruno Haible.
5224
5225         test-fopen-safer: split from test-fopen
5226         * tests/test-fopen.c (main): Move...
5227         * tests/test-fopen.h: ...into new file.
5228         * tests/test-fopen-safer.c: New file.
5229         * modules/fopen-tests (Files): Add test-fopen.h.
5230         * modules/fopen-safer-tests: New file.
5231         Suggested by Bruno Haible.
5232
5233 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
5234
5235         popen-safer: test O_CLOEXEC at run-time.
5236         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
5237
5238 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
5239
5240         fcntl: move more flags to the header
5241         * lib/cloexec.c: Do not define FD_CLOEXEC here.
5242         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
5243         * lib/fcntl.in.h: Do both things here.
5244
5245 2009-08-21  Jim Meyering  <meyering@redhat.com>
5246
5247         consistently remove $@-t before redirecting to it
5248         * modules/argz: Remove $@-t and $@ before redirecting to the former.
5249         * modules/alloca-opt: Likewise.
5250         * modules/byteswap: Likewise.
5251         * modules/fnmatch: Likewise.
5252         * modules/getopt-posix: Likewise.
5253         * modules/glob: Likewise.
5254         * modules/poll: Likewise.
5255         * modules/posix_spawnp-tests: Likewise.
5256         * modules/sys_socket: Likewise.
5257         * modules/sysexits: Likewise.
5258
5259 2009-08-21  Eric Blake  <ebb9@byu.net>
5260
5261         popen: simplify access to original popen
5262         * lib/popen.c (rpl_popen): No need to worry about popen being a
5263         macro.
5264         Reported by Bruno Haible.
5265
5266 2009-08-20  Eric Blake  <ebb9@byu.net>
5267
5268         build: avoid some compiler warnings
5269         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
5270         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
5271         type.
5272         (new_exclude_segment, excluded_file_pattern_p)
5273         (excluded_file_name_p): Reduce scope.
5274         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
5275         old-style declaration.
5276
5277 2009-08-20  Simon Josefsson  <simon@josefsson.org>
5278
5279         * tests/test-exclude1.sh: Handle Windows EOL.
5280         * tests/test-exclude2.sh: Likewise.
5281         * tests/test-exclude3.sh: Likewise.
5282         * tests/test-exclude4.sh: Likewise.
5283         * tests/test-exclude5.sh: Likewise.
5284         * tests/test-exclude6.sh: Likewise.
5285         * tests/test-exclude7.sh: Likewise.
5286
5287 2009-08-19  Akim Demaille  <demaille@gostai.com>
5288
5289         bootstrap: find sha1sum when named gsha1sum.
5290         * bootstrap (find_tool): New.
5291         ($SHA1SUM): New.
5292         Use it.
5293
5294 2009-08-20  Jim Meyering  <meyering@redhat.com>
5295
5296         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
5297         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
5298         expression that converts "." in a file name to "\." in the resulting
5299         regexp.  Start with a dummy statement, so that prior shell variable
5300         definitions are expanded portably.  Reported by Simon Josefsson.
5301
5302 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
5303
5304         Fix polling for writeability of a screen buffer.
5305         * lib/poll.c: Distinguish input and screen buffers for the
5306         Win32 implementation.
5307         * lib/select.c: Likewise.
5308
5309 2009-08-19  Eric Blake  <ebb9@byu.net>
5310
5311         popen-safer: prevent popen from clobbering std descriptors
5312         * modules/popen-safer: New file.
5313         * lib/popen-safer.c: Likewise.
5314         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
5315         * lib/stdio--.h (popen): Provide override.
5316         * lib/stdio-safer.h (popen_safer): Provide declaration.
5317         * tests/test-popen.c (includes): Partially test this.
5318         * modules/popen-safer-tests: New file, for more tests.
5319         * tests/test-popen-safer.c: Likewise.
5320         * MODULES.html.sh (file stream based Input/Output): Mention it.
5321
5322         tests: test some of the *-safer modules
5323         * modules/fopen-safer (Depends-on): Add fopen.
5324         * modules/fcntl-safer (Depends-on): Add fcntl.
5325         * modules/stdlib-safer (Depends-on): Add stdlib.
5326         (configure.ac): Set indicator.
5327         * modules/unistd-safer (configure.ac): Likewise.
5328         * modules/tmpfile-safer (configure.ac): Likewise.
5329         (Depends-on): Add tmpfile.
5330         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
5331         active.
5332         * tests/test-fopen.c (includes): Test safer versions when they are
5333         in use.
5334         * tests/test-open.c (includes): Likewise.
5335
5336         popen: fix cygwin 1.5 bug when stdin closed
5337         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
5338         * modules/popen: New file.
5339         * modules/popen-tests: Likewise.
5340         * tests/test-popen.c: Likewise.
5341         * m4/popen.m4: Likewise.
5342         * lib/popen.c: Likewise.
5343         * lib/stdio.in.h (popen): New declaration.
5344         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
5345         * modules/stdio (Makefile.am): Likewise.
5346         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
5347
5348 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
5349
5350         maint.mk: give full control over update-copyright exclusions
5351         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
5352         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
5353         (update-copyright): Don't force inclusion of top-level
5354         ChangeLog.  Don't force exclusion of all COPYING files, but make
5355         them the default exclusion instead.
5356
5357 2009-08-16  Bruno Haible  <bruno@clisp.org>
5358
5359         Fix test failures on Solaris 10.
5360         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
5361         tests when Solaris iconv() is used.
5362         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
5363         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
5364         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
5365         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
5366         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
5367
5368 2009-08-16  Bruno Haible  <bruno@clisp.org>
5369
5370         Fix test failures on Solaris 10.
5371         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
5372         'tr' program and pass it as first argument.
5373         * tests/test-pipe-filter-gi1.sh: Likewise.
5374         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
5375         program as first argument.
5376         * tests/test-pipe-filter-gi1.c (main): Likewise.
5377
5378 2009-08-16  Eric Blake  <ebb9@byu.net>
5379
5380         fpurge: fix previous commits
5381         * modules/fpurge (Makefile.am): Make replacement conditional,
5382         partially reverting 2007-04-29 change; missed in previous
5383         attempt.
5384         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
5385         is missing.
5386
5387 2009-08-16  Bruno Haible  <bruno@clisp.org>
5388
5389         Clarify fpurge's effect on the file position.
5390         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
5391         * tests/test-fpurge.c (main): Make a second pass for checking the file
5392         position.
5393
5394 2009-08-16  Bruno Haible  <bruno@clisp.org>
5395
5396         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
5397         declaration of fpurge is missing.
5398         * tests/test-fpurge.c (main): Check that the file has not more contents
5399         than expected. Close the file before removing it.
5400
5401 2009-08-15  Eric Blake  <ebb9@byu.net>
5402
5403         fpurge: don't wrap working cygwin implementation
5404         * lib/fpurge.c (fpurge): Fix comment typo.
5405         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
5406         1.7 to avoid replacement.
5407         * tests/test-fpurge.c (main): Enhance test.
5408
5409 2009-08-15  Eric Blake  <ebb9@byu.net>
5410         and Jim Meyering  <meyering@redhat.com>
5411
5412         test-update-copyright: skip if perl is insufficient
5413         * tests/test-update-copyright.sh: Failure to run maintainer tool
5414         should not cause testsuite failure on cygwin 1.5.
5415
5416 2009-08-14  Eric Blake  <ebb9@byu.net>
5417
5418         doc: mention more functions added in cygwin 1.7.0
5419         * doc/posix-headers/limits.texi (limits.h): Update for recent
5420         cygwin additions.
5421         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
5422         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
5423         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
5424         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
5425         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
5426
5427 2009-08-14  Eric Blake  <ebb9@byu.net>
5428
5429         maint.mk: simplify update-copyright rule
5430         * top/maint.mk (update-copyright-local): Delete, and document how
5431         to do it in cfg.mk instead.
5432         (update-copyright-exclude-regexp): Delete, and document how to do
5433         it in .x-update-copyright instead.
5434         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
5435         exclude ChangeLog.
5436
5437 2009-08-14  Bruno Haible  <bruno@clisp.org>
5438
5439         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
5440
5441 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5442
5443         maint.mk: support update-copyright-env
5444         * top/maint.mk (update-copyright-env): Define place-holder.
5445         (update-copyright): Expand $(update-copyright-env) before
5446         invoking update-copyright.
5447
5448 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5449
5450         update-copyright: implement forced reformatting
5451         * build-aux/update-copyright: Implement and document
5452         UPDATE_COPYRIGHT_FORCE.
5453         * tests/test-update-copyright.sh: Test it.
5454
5455 2009-08-14  Eric Blake  <ebb9@byu.net>
5456         and Bruno Haible  <bruno@clisp.org>
5457
5458         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
5459         * tests/test-locale.c: Revert previous patch related to NULL.
5460         * tests/test-stdio.c: Likewise.
5461         * tests/test-stdlib.c: Likewise.
5462         * tests/test-string.c: Likewise.
5463         * tests/test-unistd.c: Likewise.
5464         * modules/time-tests (Depends-on): Add verify.
5465         * modules/wchar-tests (Depends-on): Likewise.
5466         * tests/test-time.c: Test for NULL compliance.
5467         * tests/test-wchar.c: Likewise.
5468         * modules/locale (Depends-on): Add stddef.
5469         * modules/stdio (Depends-on): Likewise.
5470         * modules/stdlib (Depends-on): Likewise.
5471         * modules/string (Depends-on): Likewise.
5472         * modules/time (Depends-on): Likewise.
5473         * modules/unistd (Depends-on): Likewise.
5474         * modules/wchar (Depends-on): Likewise.
5475         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
5476         * lib/stdlib.in.h (includes): Likewise.
5477         * lib/string.in.h (includes): Likewise.
5478         * lib/time.in.h (includes): Likewise.
5479         * lib/unistd.in.h (includes): Likewise.
5480         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
5481         replaced.
5482         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
5483         * m4/stddef_h.m4: New file.
5484         * modules/stddef: Likewise.
5485         * lib/stddef.in.h: Likewise.
5486         * modules/stddef-tests: Likewise.
5487         * tests/test-stddef.c: Likewise.
5488         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
5489         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
5490         * doc/posix-headers/locale.texi (locale.h): Likewise.
5491         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
5492         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
5493         * doc/posix-headers/string.texi (string.h): Likewise.
5494         * doc/posix-headers/time.texi (time.h): Likewise.
5495         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
5496         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
5497
5498 2009-08-14  Eric Blake  <ebb9@byu.net>
5499
5500         doc: improve git diff of texinfo files
5501         * .gitattributes: Add rule for *.texi files, with hint on how to
5502         use it.
5503         Copied from m4, and based on a report by Bruno Haible.
5504
5505 2009-08-14  Bruno Haible  <bruno@clisp.org>
5506
5507         Disable multithread support by default on Cygwin 1.5.x for real.
5508         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
5509
5510 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5511
5512         update-copyright: much ado about intervals
5513         * build-aux/update-copyright: Implement and document
5514         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
5515         of copyright year intervals.
5516         Also, document UPDATE_COPYRIGHT_YEAR.
5517         * tests/test-update-copyright.sh: Test it.
5518
5519         update-copyright: convert 2-digit to 4-digit years
5520         * build-aux/update-copyright: Implement and document.
5521         * tests/test-update-copyright.sh: Update.
5522
5523 2009-08-14  Jim Meyering  <meyering@redhat.com>
5524
5525         test-exclude: avoid coreutils "make check" failure
5526         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
5527         just as in test-argmatch.c.
5528
5529 2009-08-13  Eric Blake  <ebb9@byu.net>
5530
5531         test-dup2: fix bad assumption
5532         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
5533         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
5534
5535         test-version-etc: fix CRLF portability issue
5536         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
5537         recognize \r.
5538         * tests/test-argp-version-etc-1.sh: Likewise.
5539
5540         getopt: update client modules
5541         * modules/argp (Depends-on): Use getopt-gnu.
5542         * modules/git-merge-changelog (Depends-on): Likewise.
5543         * modules/long-options (Depends-on): Likewise.
5544         * modules/xstrtol (Depends-on): Likewise.
5545
5546 2009-08-13  Simon Josefsson  <simon@josefsson.org>
5547
5548         * tests/test-version-etc.sh: Don't fail on different
5549         project/version.  Don't fail on CRLF differences.  Rewrite to use
5550         multiple -e instead of multiple sed forks, suggested by Eric Blake
5551         <ebb9@byu.net>.
5552         * tests/test-argp-version-etc-1.sh: Likewise.
5553
5554 2009-08-13  Simon Josefsson  <simon@josefsson.org>
5555
5556         * tests/test-version-etc.sh: Don't fail on different
5557         project/version.
5558
5559 2009-08-12  Bruno Haible  <bruno@clisp.org>
5560
5561         Tests for modules 'getopt-posix', 'getopt-gnu'.
5562         * modules/getopt-posix-tests: New file.
5563         * tests/test-getopt.c: New file.
5564         * tests/test-getopt.h: New file.
5565         * tests/test-getopt_long.h: New file.
5566
5567         New modules 'getopt-posix', 'getopt-gnu'.
5568         * modules/getopt-gnu: New file, renamed from modules/getopt.
5569         * modules/getopt-posix: New file.
5570         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
5571         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
5572         (gl_GETOPT): Remove macro.
5573         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
5574         Disable the test against BSD systems that declare optreset. Test
5575         against mingw bug. Test against lack of support of optional arguments
5576         on many platforms.
5577         * doc/glibc-headers/getopt.texi: Update module name and list of
5578         relevant platforms.
5579         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
5580         'getopt-gnu' and more portability problems.
5581         * NEWS: Mention the changes.
5582
5583 2009-08-12  Bruno Haible  <bruno@clisp.org>
5584
5585         Ensure that optarg etc. get declared by <unistd.h>.
5586         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
5587         AC_USE_SYSTEM_EXTENSIONS.
5588         * modules/getopt (Depends-on): Add 'extensions'.
5589
5590 2009-08-12  Bruno Haible  <bruno@clisp.org>
5591
5592         Avoid test link errors.
5593         * modules/pipe-filter-ii-tests (Makefile.am): Define
5594         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
5595         * modules/pipe-filter-gi-tests (Makefile.am): Define
5596         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
5597         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5598
5599 2009-08-12  Bruno Haible  <bruno@clisp.org>
5600
5601         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
5602         gl_GETOPT_SUBSTITUTE before.
5603         (gl_GETOPT): Use it.
5604         * m4/argp.m4 (gl_ARGP): Update.
5605         Reported by Sergey Poznyakoff.
5606
5607         * m4/getopt.m4: Reorder macros.
5608         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
5609         (gl_GETOPT_SUBSTITUTE): Remove macro.
5610
5611 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5612
5613         Minor improvement in gitlog-to-changelog
5614
5615         * build-aux/gitlog-to-changelog: New option `--format' makes
5616         output format string configurable.
5617
5618 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5619
5620         Optimize exclude: use hash tables for non-wildcard patterns.
5621
5622         * lib/exclude.c: Include hash.h and mbuiter.h
5623         (struct exclude_pattern, exclude_segment): New data types.
5624         (struct exclude): Rewrite.
5625         (fnmatch_pattern_has_wildcards): New function.
5626         (new_exclude_segment, free_exclude_segment): New functions.
5627         (excluded_file_pattern_p, excluded_file_name_p): New functions.
5628         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
5629         * lib/exclude.h (is_fnmatch_pattern): New prototype.
5630         * modules/exclude: Depend on hash and mbuiter.
5631
5632         * modules/exclude-tests: New file.
5633         * tests/test-exclude.c: New file.
5634         * tests/test-exclude1.sh: New file.
5635         * tests/test-exclude2.sh: New file.
5636         * tests/test-exclude3.sh: New file.
5637         * tests/test-exclude4.sh: New file.
5638         * tests/test-exclude5.sh: New file.
5639         * tests/test-exclude6.sh: New file.
5640         * tests/test-exclude7.sh: New file.
5641
5642 2009-08-12  Bruno Haible  <bruno@clisp.org>
5643
5644         Ensure that getopt() gets declared by <unistd.h>.
5645         * lib/unistd.in.h: Conditionally include getopt.h.
5646         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
5647         Set GNULIB_UNISTD_H_GETOPT.
5648         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5649         GNULIB_UNISTD_H_GETOPT.
5650         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
5651
5652 2009-08-12  Bruno Haible  <bruno@clisp.org>
5653
5654         Clarify logic.
5655         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
5656         gl_replace_getopt instead of GETOPT_H.
5657
5658 2009-08-12  Bruno Haible  <bruno@clisp.org>
5659
5660         * m4/getopt.m4: Add comments.
5661
5662 2009-08-12  Bruno Haible  <bruno@clisp.org>
5663
5664         Disable multithread support by default on Cygwin 1.5.x.
5665         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
5666         set gl_use_threads=no if not specified otherwise.
5667
5668 2009-08-11  Bruno Haible  <bruno@clisp.org>
5669
5670         Avoid compilation error on NetBSD 5.0.
5671         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
5672         * tests/test-stdio.c: Likewise.
5673         * tests/test-stdlib.c: Likewise.
5674         * tests/test-string.c: Likewise.
5675         * tests/test-unistd.c: Likewise.
5676         Reported by Greg Troxel <gdt@ir.bbn.com>
5677         at <https://savannah.gnu.org/support/?106973>.
5678
5679 2009-08-11  Bruno Haible  <bruno@clisp.org>
5680
5681         * modules/dup2-tests (Depends-on): Remove close.
5682
5683         Undo 2009-07-19 commit.
5684         * modules/acl-tests (Depends-on): Remove close.
5685         * modules/binary-io-tests (Depends-on): Likewise.
5686         * modules/closein-tests (Depends-on): Likewise.
5687         * modules/flock-tests (Depends-on): Likewise.
5688         * modules/fsync-tests (Depends-on): Likewise.
5689         * modules/lseek-tests (Depends-on): Likewise.
5690         * modules/pipe-tests (Depends-on): Likewise.
5691         * modules/posix_spawn-tests (Depends-on): Likewise.
5692         * modules/posix_spawnp-tests (Depends-on): Likewise.
5693         * modules/stat-time-tests (Depends-on): Likewise.
5694         * modules/yesno-tests (Depends-on): Likewise.
5695
5696 2009-08-10  Bruno Haible  <bruno@clisp.org>
5697
5698         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
5699
5700 2009-08-10  Bruno Haible  <bruno@clisp.org>
5701
5702         Fix a gcc warning.
5703         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
5704
5705 2009-08-10  Bruno Haible  <bruno@clisp.org>
5706
5707         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
5708         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
5709         not only the first time.
5710         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
5711         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
5712         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
5713         is 1, not only the the first time.
5714
5715 2009-08-10  Bruno Haible  <bruno@clisp.org>
5716
5717         Make it possible to use module 'gethostname' without module 'close'.
5718         * lib/unistd.in.h (close): Evoke a link error only if
5719         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
5720         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5721         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5722         * modules/unistd (Makefile.am): Substitute
5723         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5724         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
5725         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
5726         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
5727         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5728         * modules/sys_ioctl (Makefile.am): Substitute
5729         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5730         * modules/socket (configure.ac): On native Windows, set
5731         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
5732         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5733         Reported by Sam Steingold <sds@gnu.org>.
5734
5735 2009-08-10  Bruno Haible  <bruno@clisp.org>
5736
5737         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
5738         * modules/ioctl (configure.ac): Likewise.
5739
5740 2009-08-10  Bruno Haible  <bruno@clisp.org>
5741
5742         Avoid collision between gnulib wrapper and libintl wrapper.
5743         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
5744         already defined in intl/printf.c.
5745         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
5746         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
5747
5748 2009-08-09  Bruno Haible  <bruno@clisp.org>
5749
5750         Make <sys/select.h> really self-contained, also on Solaris 10.
5751         * lib/sys_select.in.h: Include <string.h>.
5752         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
5753         Solaris 10 problem.
5754         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
5755         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
5756         Reported by Jim Meyering.
5757
5758 2009-08-09  Bruno Haible  <bruno@clisp.org>
5759
5760         Avoid warnings from 'aclocal' that are due to a use of macro name
5761         AM_XGETTEXT_OPTION that is not defined in automake.
5762         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
5763         automake.
5764         * modules/error (configure.ac): Likewise.
5765         * modules/propername (configure.ac): Likewise.
5766         * modules/vasprintf (configure.ac): Likewise.
5767         * modules/verror (configure.ac): Likewise.
5768         * modules/xprintf (configure.ac): Likewise.
5769         * modules/xvasprintf (configure.ac): Likewise.
5770
5771 2009-08-08  Bruno Haible  <bruno@clisp.org>
5772
5773         Avoid compilation error in C++ mode.
5774         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
5775         Reported by Sam Steingold <sds@gnu.org>.
5776
5777 2009-08-08  Bruno Haible  <bruno@clisp.org>
5778
5779         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
5780         for the various Unix platforms.
5781         * doc/posix-headers/limits.texi: Update platforms list regarding
5782         HOST_NAME_MAX.
5783         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5784
5785 2009-08-07  Jim Meyering  <meyering@redhat.com>
5786
5787         selinux-at: fix typo in a comment
5788         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
5789         Spotted by Paolo Bonzini.
5790
5791         selinux-at: remove redundant m4 code, add documentation
5792         * modules/selinux-at (configure.ac): Remove redundant code.
5793         LIB_SELINUX is already set via the dependent module, selinux-h.
5794         (Include): Add quotes around selinux-at.h.
5795         * lib/selinux-at.h: Add documentation.
5796         Reported by Bruno Haible in
5797         http://marc.info/?l=gnulib-bug&m=124958988300749
5798
5799 2009-08-07  Bruno Haible  <bruno@clisp.org>
5800
5801         Avoid link error on MacOS X 10.3 and 10.4.
5802         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
5803         on non-ELF systems.
5804         * lib/argp-pv.c (argp_program_version): Likewise.
5805         Reported by Simon Josefsson.
5806
5807 2009-08-07  Simon Josefsson  <simon@josefsson.org>
5808
5809         * tests/test-version-etc.sh: Use $EXEEXT.
5810
5811 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
5812
5813         update-copyright: update documentation to point to maint.mk
5814         * build-aux/update-copyright: Here.
5815
5816 2009-08-06  Jim Meyering  <meyering@redhat.com>
5817
5818         maint.mk: support update-copyright-local
5819         * top/maint.mk (update-copyright-local): Define place-holder.
5820         (update-copyright): Depend on $(update-copyright-local).
5821
5822 2009-08-06  Jim Meyering  <meyering@redhat.com>
5823
5824         selinux-at: new module
5825         Initially written for coreutils, this module will soon be
5826         used by findutils, too.
5827         * MODULES.html.sh [Misc]: Add selinux-at.
5828         * lib/selinux-at.h: New file, from coreutils.
5829         * lib/selinux-at.c: Likewise.
5830         * modules/selinux-at: Likewise.
5831         (License): Change from LGPL to GPL, since it depends
5832         on the GPL'd openat module.
5833
5834         doc: update README
5835         * README: Remove references to cogito.
5836         Remove cvs-repo-updating instructions from 2007.
5837         Don't imply that CVS is better if you have limited disk space.
5838
5839 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5840
5841         update-copyright: support C-style comments
5842         * build-aux/update-copyright: Implement and document.
5843         * tests/test-update-copyright.sh: Test.
5844
5845 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5846
5847         update-copyright: support omitted "(C)"
5848         * build-aux/update-copyright: Implement and document.  Also,
5849         allow variable whitespace before "(C)".
5850         * tests/test-update-copyright.sh: Test.
5851
5852 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5853
5854         update-copyright: don't trip on non-FSF copyright statements
5855         * build-aux/update-copyright: Fix so that the first correctly
5856         formatted FSF copyright statement is recognized no matter what
5857         appears before it.  Update documentation.
5858         * tests/test-update-copyright.sh: Test that.
5859
5860 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5861
5862         update-copyright: clean up code a little
5863         * build-aux/update-copyright: Append "_re" to the name of any
5864         variable holding a regular expression.
5865         Replace "old" and "new" with "stmt" in variable names.
5866         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
5867         handled correctly.
5868         Format code more consistently.
5869
5870 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5871
5872         update-copyright-tests: improve portability
5873         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
5874         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
5875
5876 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
5877
5878         update-copyright: support @copyright{} and &copy;
5879         * build-aux/update-copyright: Implement and document.
5880         * tests/test-update-copyright.sh: Test.
5881
5882 2009-08-04  Jim Meyering  <meyering@redhat.com>
5883
5884         update-copyright-tests: correctly test EOL=\r\n handling
5885         * tests/test-update-copyright.sh: Put \r at the end of some lines
5886         for the dos-eol tests.  Based on a patch by Joel E. Denny.
5887
5888         maint.mk: make update-copyright exclusion list more configurable
5889         * top/maint.mk (update-copyright): Default to excluding COPYING,
5890         but allow an override, in case someone does want to update that file.
5891
5892         maint.mk: don't update copyright date in COPYING
5893         * top/maint.mk (update-copyright): Exclude COPYING.
5894
5895         maint.mk: add a copyright-updating rule
5896         * top/maint.mk (update-copyright): New rule.
5897         Derived from coreutils/Makefile.am.
5898
5899         update-copyright: rename some variables
5900         * build-aux/update-copyright: Rename a few variables for clarity.
5901         Tweak syntax.  List Joel E. Denny as coauthor.
5902
5903 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
5904
5905         update-copyright: fix bug for 2-digit last year and add tests
5906         * build-aux/update-copyright: Fix bug.
5907         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
5908         specified.
5909         * modules/update-copyright-tests: New
5910         * tests/test-update-copyright.sh: New.
5911
5912 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5913
5914         update-copyright: handle leading tabs in line prefix
5915         * build-aux/update-copyright: Count leading tabs as 8 spaces
5916         when computing margin.  This helps with the formatting of
5917         ChangeLogs, for example.
5918         Fix documentation a little.
5919
5920 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5921
5922         update-copyright: support EOL=\r\n
5923         * build-aux/update-copyright: Implement that.
5924
5925 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5926
5927         update-copyright: automatically format copyright statements
5928         * build-aux/update-copyright: Implement that.
5929         Also, be a little more predictable and safer by always failing
5930         when the full copyright format is not perfectly recognized as an
5931         unbroken whole.  Discussed at
5932         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
5933         Rewrite documentation.
5934
5935 2009-08-03  Bruno Haible  <bruno@clisp.org>
5936
5937         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
5938
5939 2009-08-02  Bruno Haible  <bruno@clisp.org>
5940
5941         Tests for module 'uname'.
5942         * modules/uname-tests: New file.
5943         * tests/test-uname.c: New file.
5944
5945         New module 'uname'.
5946         * lib/uname.c: New file.
5947         * m4/uname.m4: New file.
5948         * modules/uname: New file.
5949         * doc/posix-functions/uname.texi: Mention the new module.
5950
5951 2009-08-02  Bruno Haible  <bruno@clisp.org>
5952
5953         Tests for module 'sys_utsname'.
5954         * modules/sys_utsname-tests: New file.
5955         * tests/test-sys_utsname.c: New file.
5956
5957         New module 'sys_utsname'.
5958         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
5959         * m4/sys_utsname_h.m4: New file.
5960         * modules/sys_utsname: New file.
5961         * doc/posix-headers/sys_utsname.texi: Mention the new module.
5962
5963 2009-08-02  Bruno Haible  <bruno@clisp.org>
5964
5965         Implicitly initialize the sockets library.
5966         * lib/gethostname.c: Include sockets.h.
5967         (rpl_gethostname): Invoke gl_sockets_startup.
5968         * lib/socket.c: Include sockets.h.
5969         (rpl_socket): Invoke gl_sockets_startup.
5970         * modules/gethostname (Depends-on): Add sockets.
5971         * modules/socket (Depends-on): Likewise.
5972         * tests/test-poll.c: Don't include sockets.h.
5973         (main): Don't invoke gl_sockets_startup.
5974         * tests/test-select.c: Don't include sockets.h.
5975         (main): Don't invoke gl_sockets_startup.
5976
5977 2009-08-02  Bruno Haible  <bruno@clisp.org>
5978
5979         Allow multiple calls to gl_sockets_startup.
5980         * lib/sockets.c (initialized_sockets_version): New variable.
5981         (gl_sockets_startup): Do nothing if already called for this or a higher
5982         version.
5983         (gl_sockets_cleanup): Reset initialized_sockets_version.
5984
5985 2009-08-03  Simon Josefsson  <simon@josefsson.org>
5986
5987         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
5988         different project/version.
5989
5990 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
5991             Bruno Haible  <bruno@clisp.org>
5992
5993         Tests for module 'pipe-filter-gi'.
5994         * modules/pipe-filter-gi-tests: New file.
5995         * tests/test-pipe-filter-gi1.sh: New file.
5996         * tests/test-pipe-filter-gi1.c: New file.
5997         * tests/test-pipe-filter-gi2.sh: New file.
5998         * tests/test-pipe-filter-gi2-main.c: New file.
5999         * tests/test-pipe-filter-gi2-child.c: New file.
6000
6001         New module 'pipe-filter-gi'.
6002         * lib/pipe-filter-gi.c: New file.
6003         * modules/pipe-filter-gi: New file.
6004
6005 2009-08-02  Bruno Haible  <bruno@clisp.org>
6006             Paolo Bonzini  <bonzini@gnu.org>
6007
6008         Tests for module 'pipe-filter-ii'.
6009         * modules/pipe-filter-ii-tests: New file.
6010         * tests/test-pipe-filter-ii1.sh: New file.
6011         * tests/test-pipe-filter-ii1.c: New file.
6012         * tests/test-pipe-filter-ii2.sh: New file.
6013         * tests/test-pipe-filter-ii2-main.c: New file.
6014         * tests/test-pipe-filter-ii2-child.c: New file.
6015
6016         New module 'pipe-filter-ii'.
6017         * lib/pipe-filter.h: New file.
6018         * lib/pipe-filter-ii.c: New file.
6019         * lib/pipe-filter-aux.h: New file.
6020         * modules/pipe-filter-ii: New file.
6021
6022 2009-08-02  Simon Josefsson  <simon@josefsson.org>
6023
6024         * lib/gc-libgcrypt.c: Change copyright to FSF.
6025         * lib/gc-gnulib.c: Likewise.
6026
6027 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
6028
6029         * lib/gethostname.c: Include limits.h.
6030
6031 2009-08-02  Simon Josefsson  <simon@josefsson.org>
6032             Bruno Haible  <bruno@clisp.org>
6033
6034         Ensure HOST_NAME_MAX as part of the gethostname module.
6035         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
6036         define also HOST_NAME_MAX.
6037         * tests/test-gethostname.c: Include <limits.h>.
6038         (main): Check also HOST_NAME_MAX.
6039         * doc/posix-headers/limits.texi: Document the mingw problem.
6040
6041 2009-08-02  Bruno Haible  <bruno@clisp.org>
6042
6043         * lib/gethostname.c (gethostname): Fix handling of large len argument.
6044         Add comments.
6045
6046 2009-03-31  Simon Josefsson  <simon@josefsson.org>
6047
6048         * lib/gethostname.c: Add Windows wrapper.
6049         * m4/gethostname.m4: Look for gethostname in -lws2_32.
6050         * modules/gethostname: Depend on sys_socket & errno, for also
6051         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
6052         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
6053
6054 2009-07-31  Jim Meyering  <meyering@redhat.com>
6055
6056         getloadavg: fix symbol name in comment
6057         * lib/getloadavg.c: Correct a typo I introduced when adding
6058         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
6059         Matt Kraai spotted the problem.
6060
6061 2009-07-29  Matt Kraai  <mkraai@beckman.com>
6062
6063         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
6064         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
6065         code also if ! defined N_NAME_POINTER.
6066         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
6067         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
6068         but the n_name member is a 12-byte array.
6069
6070 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
6071
6072         update-copyright: generalize comment handling
6073         * build-aux/update-copyright: Handle copyright statements
6074         within more comment styles.
6075         Document usage.
6076         Report any file with an external copyright holder or parse failure.
6077
6078 2009-07-29  Jim Meyering  <meyering@redhat.com>
6079
6080         mktime: correct setting of REPLACE_MKTIME
6081         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
6082
6083         update-copyright: new module
6084         * modules/update-copyright: New file.
6085         * build-aux/update-copyright: New file.
6086         * MODULES.html.sh (maint+release support): Add update-copyright.
6087
6088 2009-07-27  Bruno Haible  <bruno@clisp.org>
6089
6090         Fix compilation error when <ctime> is used and mktime is replaced.
6091         * lib/time.in.h (mktime): New declaration.
6092         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
6093         REPLACE_MKTIME instead of defining mktime in config.h.
6094         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
6095         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
6096         Reported by Ross McFarland <rwmcfa1@neces.com>.
6097
6098 2009-07-27  Bruno Haible  <bruno@clisp.org>
6099
6100         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
6101         Reported by Matt Kraai <mkraai@beckman.com>.
6102
6103 2009-07-25  Jim Meyering  <meyering@redhat.com>
6104
6105         maint.mk: avoid warnings about missing files
6106         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
6107         diagnostic when .prev-version does not exist.
6108         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
6109         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
6110         nonexistent cfg.mk.
6111         Suggestions from Simon Josefsson.
6112
6113 2009-07-25  Bruno Haible  <bruno@clisp.org>
6114
6115         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
6116         defined as macros. Needed on QNX 6.4.1.
6117         Reported by Matt Kraai <mkraai@beckman.com>.
6118
6119 2009-07-23  Jim Meyering  <meyering@redhat.com>
6120
6121         maint.mk: invoke "make dist" with a working value of XZ_OPT
6122         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
6123
6124 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
6125
6126         Make fseeko.c compile on QNX.
6127         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
6128
6129 2009-07-22  Peter Simons  <simons@cryp.to>
6130
6131         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
6132         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
6133         * lib/md4.h: Likewise.
6134         * lib/md5.h: Likewise.
6135         * lib/sha1.h: Likewise.
6136         * lib/sha256.h: Likewise.
6137         * lib/sha512.h: Likewise.
6138
6139         tests-sha1: don't assign literal string to 'char *' variable
6140         * tests/test-sha1.c (main): Declare locals with "const" to match
6141         attributes of the right hand side.
6142
6143 2009-07-21  Eric Blake  <ebb9@byu.net>
6144
6145         dup2: fix more mingw problems
6146         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
6147         fd to itself.
6148         * doc/posix-functions/dup2.texi (dup2): Document the bug.
6149         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
6150         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
6151         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
6152         care of mingw bugs.
6153
6154 2009-07-21  Jim Meyering  <meyering@redhat.com>
6155
6156         vc-list-files: avoid failure when /bin/sh is dash
6157         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
6158         On some Debian based systems, /bin/sh is a symlink to dash, and running
6159         this command would omit the "/" following each 'tests' prefix:
6160           dash -x build-aux/vc-list-files -C . tests
6161         That is because bash and dash work differently:
6162           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
6163           bash ok
6164           dash odd
6165
6166 2009-07-21  Eric Blake  <ebb9@byu.net>
6167
6168         dup2-tests: test previous patch
6169         * modules/dup2-tests: New file.
6170         * tests/test-dup2.c: Likewise.
6171         * tests/test-open.c (main): Avoid unspecified behavior.
6172         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
6173         test.
6174
6175         dup2: work around mingw and cygwin 1.5 bug
6176         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
6177         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
6178         * modules/unistd (Makefile.am): Substitute it.
6179         * lib/unistd.in.h (dup2): Declare the replacement.
6180         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
6181         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
6182         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
6183         * modules/execute (Depends-on): Add dup2.
6184         * modules/fseterr (Depends-on): Likewise.
6185         * modules/pipe (Depends-on): Likewise.
6186         * modules/posix_spawn-internal (Depends-on): Likewise.
6187
6188 2009-07-21  Bruno Haible  <bruno@clisp.org>
6189
6190         * modules/.gitattributes: New file.
6191
6192 2009-07-20  Bruno Haible  <bruno@clisp.org>
6193
6194         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
6195         (main): Use it.
6196
6197 2009-07-20  Eric Blake  <ebb9@byu.net>
6198
6199         test-pipe: make a bit more robust.
6200         * tests/test-pipe.c (myerr): Allow error messages regardless of
6201         what we do to stderr.
6202         (test_pipe): Rearrange to avoid deadlock.
6203         (child_main): Try a larger read, to ensure we avoided deadlock.
6204         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
6205         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
6206         if misused.
6207
6208 2009-07-19  Jim Meyering  <meyering@redhat.com>
6209
6210         fts: avoid false-positive cycle-detection
6211         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
6212         for each new command line argument.
6213
6214 2009-07-19  Bruno Haible  <bruno@clisp.org>
6215
6216         Fix build error on mingw with the modules sys_select and unistd.
6217         * modules/acl-tests (Depends-on): Add close.
6218         * modules/binary-io-tests (Depends-on): Likewise.
6219         * modules/closein-tests (Depends-on): Likewise.
6220         * modules/flock-tests (Depends-on): Likewise.
6221         * modules/fsync-tests (Depends-on): Likewise.
6222         * modules/lseek-tests (Depends-on): Likewise.
6223         * modules/pipe-tests (Depends-on): Likewise.
6224         * modules/posix_spawn-tests (Depends-on): Likewise.
6225         * modules/posix_spawnp-tests (Depends-on): Likewise.
6226         * modules/stat-time-tests (Depends-on): Likewise.
6227         * modules/yesno-tests (Depends-on): Likewise.
6228
6229 2009-07-19  Bruno Haible  <bruno@clisp.org>
6230
6231         Unify conditionals.
6232         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
6233         macros, not at the compiler macros.
6234         * lib/pipe.c: Likewise.
6235         * lib/execute.c: Likewise.
6236         * lib/spawni.c: Likewise.
6237
6238 2009-07-19  Bruno Haible  <bruno@clisp.org>
6239
6240         Fix handling of closed stdin/stdout/stderr on mingw.
6241         * lib/w32spawn.h: Include unistd.h.
6242         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
6243         file descriptor with O_NOINHERIT flag.
6244         (fd_safer_noinherit): New function, based on fd-safer.c.
6245         (dup_safer_noinherit): New function, based on dup-safer.c.
6246         (undup_safer_noinherit): New function.
6247         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
6248         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
6249         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
6250         instead of fd_safer.
6251         * tests/test-pipe.c: Include <windows.h>.
6252         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
6253
6254         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
6255         from main.
6256         (test_pipe): Pass an extra argument for disambiguation.
6257         (main): Invoke parent_main or child_main.
6258
6259         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
6260         consistently.
6261
6262 2009-07-18  Eric Blake  <ebb9@byu.net>
6263
6264         test-pipe: fix mingw build
6265         * tests/test-pipe.c (main): Avoid fcntl on mingw.
6266
6267 2009-07-18  Bruno Haible  <bruno@clisp.org>
6268
6269         * modules/pipe-tests (Makefile.am): Fix typo.
6270
6271 2009-07-18  Eric Blake  <ebb9@byu.net>
6272
6273         error: fix mingw build
6274         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
6275         Reported by Bruno Haible.
6276
6277         error: avoid undefined use of stdout
6278         * lib/error.c (error, error_at_line): Check that fd 1 is open
6279         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
6280         is handling faults and the close_stdout module wants to report the
6281         detection of closed stdout as an error.
6282
6283 2009-07-17  Eric Blake  <ebb9@byu.net>
6284
6285         pipe: be robust in face of closed fds
6286         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
6287         should cause child to misbehave.
6288         * modules/pipe-tests: New module.
6289         * tests/test-pipe.c: New file.
6290         * tests/test-pipe.sh: New file.
6291         Reported by Akim Demaille.
6292
6293 2009-07-14  Bruno Haible  <bruno@clisp.org>
6294
6295         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
6296         Reported by anonymous kc.
6297
6298 2009-07-07  Jim Meyering  <meyering@redhat.com>
6299
6300         maint.mk: don't look for translatable strings in *.m4 or *.mk
6301         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
6302         when searching for translatable strings.
6303
6304 2009-07-05  Jim Meyering  <meyering@redhat.com>
6305
6306         remove superfluous parentheses in STREQ definition
6307         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
6308         * lib/getugroups.c (STREQ): Likewise.
6309         * lib/fnmatch.c (STREQ): Likewise.
6310         Spotted by Bruno Haible.
6311
6312 2009-07-04  Jim Meyering  <meyering@redhat.com>
6313
6314         argv-iter: new module
6315         * MODULES.html.sh: Add argv-iter.
6316         * lib/argv-iter.c, lib/argv-iter.h: New files.
6317         * modules/argv-iter: New file.
6318         * modules/argv-iter-tests: New file.
6319         * tests/test-argv-iter.c: Test it.
6320
6321 2009-07-04  Bruno Haible  <bruno@clisp.org>
6322
6323         Fix assertion.
6324         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
6325         contains more exact copies of a given entry than file2, leave the extra
6326         copies unpaired rather than aborting.
6327         Reported by Eric Blake.
6328
6329 2009-07-02  Bruno Haible  <bruno@clisp.org>
6330
6331         Speedup git-merge-changelog for git cherry-pick.
6332         * lib/git-merge-changelog.c (struct entries_mapping): New type.
6333         (entries_mapping_get): New function, extracted from compute_mapping.
6334         (entries_mapping_reverse_get): New function.
6335         (compute_mapping): Add a 'full' argument. Return the result in a
6336         'struct entries_mapping'.
6337         (main): Update. Access the mappings through entries_mapping_get.
6338         Reported by Eric Blake.
6339
6340 2009-07-02  Bruno Haible  <bruno@clisp.org>
6341
6342         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
6343         best_i.
6344
6345 2009-07-02  Bruno Haible  <bruno@clisp.org>
6346
6347         Speed up approximate search for matching ChangeLog entries.
6348         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
6349         argument. Call fstrcmp_bounded instead of fstrcmp.
6350         (compute_mapping, try_split_merged_entry, main): Update callers.
6351
6352 2009-07-02  Bruno Haible  <bruno@clisp.org>
6353
6354         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
6355
6356 2009-06-30  Bruno Haible  <bruno@clisp.org>
6357
6358         Reduce the number of uc_is_cased calls.
6359         * lib/unicase.h (casing_suffix_context_t): Add
6360         'first_char_except_ignorable' field.
6361         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
6362         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
6363         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
6364         Update initializer.
6365         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
6366         case-ignorable characters.
6367         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
6368         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
6369         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
6370         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
6371         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
6372
6373 2009-06-30  Bruno Haible  <bruno@clisp.org>
6374
6375         Tests for module 'unicase/ignorable'.
6376         * modules/unicase/ignorable-tests: New file.
6377         * tests/unicase/test-ignorable.c: New file, generated by
6378         gen-uni-tables.
6379
6380         Tests for module 'unicase/cased'.
6381         * modules/unicase/cased-tests: New file.
6382         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
6383         * tests/unicase/test-predicate-part1.h: New file, derived from
6384         tests/unictype/test-predicate-part1.h.
6385         * tests/unicase/test-predicate-part2.h: New file, same as
6386         tests/unictype/test-predicate-part2.h.
6387
6388         Fix evaluation of "Before C" condition of FINAL_SIGMA.
6389         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
6390         (output_casing_properties): New function.
6391         (main): Call it.
6392         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
6393         * lib/unicase/cased.c: Include unictype/bitmap.h.
6394         (uc_is_cased): Define through a bitmap lookup.
6395         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
6396         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
6397         (uc_is_case_ignorable): Define through a bitmap lookup.
6398         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
6399         lib/unictype/bitmap.h.
6400         (Depends-on): Add inline. Clean up.
6401         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
6402         lib/unictype/bitmap.h.
6403         (Depends-on): Add inline. Clean up.
6404         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
6405         recognition.
6406         * tests/unicase/test-u16-tolower.c (main): Likewise.
6407         * tests/unicase/test-u32-tolower.c (main): Likewise.
6408
6409 2009-06-30  Bruno Haible  <bruno@clisp.org>
6410
6411         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
6412         * lib/unicase/u16-casemap.c: Likewise.
6413         * lib/unicase/u32-casemap.c: Likewise.
6414
6415 2009-06-29  Bruno Haible  <bruno@clisp.org>
6416
6417         Define u32_casefold as a wrapper around u32_ct_casefold.
6418         * lib/unicase/u32-casefold.c: Update.
6419         * modules/unicase/u32-casefold (Depends-on): Add
6420         unicase/u32-ct-casefold, unicase/empty-prefix-context,
6421         unicase/empty-suffix-context. Clean up.
6422
6423         Define u16_casefold as a wrapper around u16_ct_casefold.
6424         * lib/unicase/u16-casefold.c: Update.
6425         * modules/unicase/u16-casefold (Depends-on): Add
6426         unicase/u16-ct-casefold, unicase/empty-prefix-context,
6427         unicase/empty-suffix-context. Clean up.
6428
6429         Define u8_casefold as a wrapper around u8_ct_casefold.
6430         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
6431         * lib/unicase/u8-casefold.c: Update.
6432         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
6433         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6434
6435         Define u32_totitle as a wrapper around u32_ct_totitle.
6436         * lib/unicase/u32-totitle.c: Update.
6437         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
6438         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6439
6440         Define u16_totitle as a wrapper around u16_ct_totitle.
6441         * lib/unicase/u16-totitle.c: Update.
6442         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
6443         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6444
6445         Define u8_totitle as a wrapper around u8_ct_totitle.
6446         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
6447         functions.
6448         (FUNC): Delegate to U_CT_TOTITLE.
6449         * lib/unicase/u8-totitle.c: Update.
6450         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
6451         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6452
6453         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
6454         invocation.
6455         * modules/unicase/u32-tolower (Depends-on): Add
6456         unicase/empty-prefix-context, unicase/empty-suffix-context.
6457
6458         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
6459         invocation.
6460         * modules/unicase/u16-tolower (Depends-on): Add
6461         unicase/empty-prefix-context, unicase/empty-suffix-context.
6462
6463         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
6464         * modules/unicase/u8-tolower (Depends-on): Add
6465         unicase/empty-prefix-context, unicase/empty-suffix-context.
6466
6467         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
6468         invocation.
6469         * modules/unicase/u32-toupper (Depends-on): Add
6470         unicase/empty-prefix-context, unicase/empty-suffix-context.
6471
6472         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
6473         invocation.
6474         * modules/unicase/u16-toupper (Depends-on): Add
6475         unicase/empty-prefix-context, unicase/empty-suffix-context.
6476
6477         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
6478         * modules/unicase/u8-toupper (Depends-on): Add
6479         unicase/empty-prefix-context, unicase/empty-suffix-context.
6480
6481         New module 'unicase/u32-ct-casefold'.
6482         * lib/unicase/u32-ct-casefold.c: New file.
6483         * modules/unicase/u32-ct-casefold: New file.
6484
6485         New module 'unicase/u16-ct-casefold'.
6486         * lib/unicase/u16-ct-casefold.c: New file.
6487         * modules/unicase/u16-ct-casefold: New file.
6488
6489         New module 'unicase/u8-ct-casefold'.
6490         * lib/unicase/u8-ct-casefold.c: New file.
6491         * lib/unicase/u-ct-casefold.h: New file, derived from
6492         lib/unicase/u-casefold.h.
6493         * modules/unicase/u8-ct-casefold: New file.
6494
6495         New module 'unicase/u32-ct-totitle'.
6496         * lib/unicase/u32-ct-totitle.c: New file.
6497         * modules/unicase/u32-ct-totitle: New file.
6498
6499         New module 'unicase/u16-ct-totitle'.
6500         * lib/unicase/u16-ct-totitle.c: New file.
6501         * modules/unicase/u16-ct-totitle: New file.
6502
6503         New module 'unicase/u8-ct-totitle'.
6504         * lib/unicase/u8-ct-totitle.c: New file.
6505         * lib/unicase/u-ct-totitle.h: New file, derived from
6506         lib/unicase/u-totitle.h.
6507         * modules/unicase/u8-ct-totitle: New file.
6508
6509         New module 'unicase/u32-ct-tolower'.
6510         * lib/unicase/u32-ct-tolower.c: New file.
6511         * modules/unicase/u32-ct-tolower: New file.
6512
6513         New module 'unicase/u16-ct-tolower'.
6514         * lib/unicase/u16-ct-tolower.c: New file.
6515         * modules/unicase/u16-ct-tolower: New file.
6516
6517         New module 'unicase/u8-ct-tolower'.
6518         * lib/unicase/u8-ct-tolower.c: New file.
6519         * modules/unicase/u8-ct-tolower: New file.
6520
6521         New module 'unicase/u32-ct-toupper'.
6522         * lib/unicase/u32-ct-toupper.c: New file.
6523         * modules/unicase/u32-ct-toupper: New file.
6524
6525         New module 'unicase/u16-ct-toupper'.
6526         * lib/unicase/u16-ct-toupper.c: New file.
6527         * modules/unicase/u16-ct-toupper: New file.
6528
6529         New module 'unicase/u8-ct-toupper'.
6530         * lib/unicase/u8-ct-toupper.c: New file.
6531         * modules/unicase/u8-ct-toupper: New file.
6532
6533         Add context arguments to u*_casemap functions.
6534         * lib/unicase/unicasemap.h: Include unicase.h.
6535         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
6536         suffix_context arguments.
6537         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
6538         functions.
6539         (FUNC): Add prefix_context and suffix_context arguments. Use
6540         uc_is_cased and uc_is_case_ignorable.
6541         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
6542         * lib/unicase/u16-casemap.c: Likewise.
6543         * lib/unicase/u32-casemap.c: Likewise.
6544         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
6545         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6546         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
6547         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6548         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
6549         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6550
6551         New module 'unicase/u32-suffix-context'.
6552         * lib/unicase/u32-suffix-context.c: New file.
6553         * modules/unicase/u32-suffix-context: New file.
6554
6555         New module 'unicase/u16-suffix-context'.
6556         * lib/unicase/u16-suffix-context.c: New file.
6557         * modules/unicase/u16-suffix-context: New file.
6558
6559         New module 'unicase/u8-suffix-context'.
6560         * lib/unicase/u8-suffix-context.c: New file.
6561         * lib/unicase/u-suffix-context.h: New file.
6562         * modules/unicase/u8-suffix-context: New file.
6563
6564         New module 'unicase/empty-suffix-context'.
6565         * lib/unicase/empty-suffix-context.c: New file.
6566         * modules/unicase/empty-suffix-context: New file.
6567
6568         New module 'unicase/u32-prefix-context'.
6569         * lib/unicase/u32-prefix-context.c: New file.
6570         * modules/unicase/u32-prefix-context: New file.
6571
6572         New module 'unicase/u16-prefix-context'.
6573         * lib/unicase/u16-prefix-context.c: New file.
6574         * modules/unicase/u16-prefix-context: New file.
6575
6576         New module 'unicase/u8-prefix-context'.
6577         * lib/unicase/u8-prefix-context.c: New file.
6578         * lib/unicase/u-prefix-context.h: New file.
6579         * lib/unicase/context.h: New file.
6580         * modules/unicase/u8-prefix-context: New file.
6581
6582         New module 'unicase/empty-prefix-context'.
6583         * lib/unicase/empty-prefix-context.c: New file.
6584         * modules/unicase/empty-prefix-context: New file.
6585
6586         New module 'unicase/ignorable'.
6587         * lib/unicase/ignorable.c: New file.
6588         * modules/unicase/ignorable: New file.
6589
6590         New module 'unicase/cased'.
6591         * lib/unicase/caseprop.h: New file.
6592         * lib/unicase/cased.c: New file.
6593         * modules/unicase/cased: New file.
6594
6595         New functions for case mapping of substrings.
6596         * lib/unicase.h (casing_prefix_context_t): New type.
6597         (unicase_empty_prefix_context): New variable.
6598         (u8_casing_prefix_context, u16_casing_prefix_context,
6599         u32_casing_prefix_context, u8_casing_prefixes_context,
6600         u16_casing_prefixes_context, u32_casing_prefixes_context): New
6601         declarations.
6602         (casing_suffix_context_t): New type.
6603         (unicase_empty_suffix_context): New variable.
6604         (u8_casing_suffix_context, u16_casing_suffix_context,
6605         u32_casing_suffix_context, u8_casing_suffixes_context,
6606         u16_casing_suffixes_context, u32_casing_suffixes_context,
6607         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
6608         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
6609         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
6610         declarations.
6611
6612 2009-06-28  Jim Meyering  <meyering@redhat.com>
6613
6614         boostrap: indent only with spaces
6615         * build-aux/bootstrap: Indent only with spaces, never TABs.
6616
6617         bootstrap: split long lines
6618         * build-aux/bootstrap: Keep line length < 80.
6619
6620         bootstrap: sync from coreutils
6621         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
6622         just as autoreconf does.  Verify a list of prerequisite
6623         package-name,version-number pairs if defined in bootstrap.conf.
6624         Refer to README-prereq, if prerequisites are not satisfied.
6625
6626 2009-06-27  Eric Blake  <ebb9@byu.net>
6627
6628         tests: add test for bogus NULL definition
6629         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
6630         * tests/test-stdlib.c: Likewise.
6631         * tests/test-string.c: Likewise.
6632         * tests/test-locale.c: Likewise.
6633         * tests/test-unistd.c: Likewise.
6634         * modules/stdio-tests (Depends-on): Add verify.
6635         * modules/stdlib-tests (Depends-on): Likewise.
6636         * modules/string-tests (Depends-on): Likewise.
6637         * modules/locale-tests (Depends-on): Likewise.
6638         * modules/unistd-tests (Depends-on): Likewise.
6639
6640 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
6641
6642         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
6643         self-explaining comment.
6644         * m4/selinux-selinux-h: Update serial.
6645         (gl_LIBSELINUX): New macro, adding a warning for missing development
6646         packages to code extracted from...
6647         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
6648         Add warning for missing development packages here, too.
6649
6650 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
6651
6652         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
6653
6654 2009-06-25  Eric Blake  <ebb9@byu.net>
6655
6656         version-etc: fix regression
6657         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
6658         gcc.
6659         (version_etc): Use it, to catch bugs with trailing NULL.
6660         * lib/version-etc.c (version_etc_arn): Delete unused argument.
6661         (version_etc_va): Fix logic bug.
6662         * modules/version-etc-tests: Add test.
6663         * tests/test-version-etc.c: New file.
6664         * tests/test-version-etc.sh: Likewise.
6665
6666 2009-06-25  Sam Steingold  <sds@gnu.org>
6667
6668         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
6669         mbtowc declaration.
6670
6671 2009-06-25  Eric Blake  <ebb9@byu.net>
6672
6673         fpurge: migrate into <stdio.h>
6674         * lib/fpurge.h: Delete...
6675         * lib/stdio.in.h (fpurge): ...and declare here, instead.
6676         * lib/fpurge.c (fpurge): Change declaring header.
6677         * modules/fpurge (Files): Drop deleted file.
6678         (Depends-on): Add stdio.
6679         (configure.ac): Set witness.
6680         * modules/stdio (Makefile.am): Support fpurge macros.
6681         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
6682         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
6683         * lib/fflush.c: Update client.
6684         * tests/test-fpurge.c: Likewise.
6685         * NEWS: Mention the change.
6686
6687 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6688
6689         * lib/argp-version-etc.c (program_authors): Add const
6690         qualifier.
6691         * lib/version-etc.c: Fix typos in the comments.
6692         * modules/argp-version-etc: Depends on version-etc.
6693
6694 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6695
6696         argp-version-etc: new module.
6697
6698         * lib/argp-version-etc.c: New file.
6699         * lib/argp-version-etc.h: New file.
6700         * modules/argp-version-etc: New file.
6701         * modules/argp-version-etc-tests: New file.
6702         * tests/test-argp-version-etc.c: New test.
6703         * tests/test-argp-version-etc-1.sh: New test.
6704
6705 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6706
6707         Provide additional interfaces and documentation for version-etc
6708         module.
6709
6710         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
6711         interfaces.
6712         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
6713         prototypes.
6714
6715 2009-06-24  Bruno Haible  <bruno@clisp.org>
6716
6717         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
6718         HAVE_LIB${NAME} macro.
6719         Reported by Sam Steingold <sds@gnu.org>.
6720
6721 2009-06-23  Simon Josefsson  <simon@josefsson.org>
6722
6723         * modules/hash-tests (test_hash_LDADD): Link to libintl when
6724         needed.
6725
6726 2009-06-21  Bruno Haible  <bruno@clisp.org>
6727
6728         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
6729         work.
6730         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
6731         together with LIB${NAME}, LTLIB${NAME}.
6732         Reported by Sam Steingold <sds@gnu.org>.
6733
6734 2009-06-20  Jim Meyering  <meyering@redhat.com>
6735
6736         tests: make sc_require_test_exit_idiom more generic
6737         * top/maint.mk (Exit_witness_file): New overridable variable.
6738         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
6739         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
6740
6741 2009-06-19  Jim Meyering  <meyering@redhat.com>
6742
6743         hash: reverse order of src/dst parameters in an internal interface
6744         * lib/hash.c (transfer_entries): Reverse order of parameters to
6745         put DST before SRC.  Adjust callers.
6746
6747         tests: test-hash: avoid wholesale duplication
6748         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
6749         Instead, use a loop and add a single conditional.
6750
6751         tests: test-hash: allow seed selection via a command line argument
6752         * tests/test-hash.c (get_seed): New function.
6753         (main): Use it.
6754
6755 2009-06-19  Eric Blake  <ebb9@byu.net>
6756
6757         hash: avoid memory leak on allocation failure
6758         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
6759         failure.  Factor repeated algorithm...
6760         (transfer_entries): ...into new helper routine.
6761         (hash_delete): React to hash_rehash return value.
6762
6763         hash: reduce memory pressure in hash_rehash no-op case
6764         * lib/hash.c (next_prime): Avoid overflow.
6765         (hash_initialize): Factor bucket size computation...
6766         (compute_bucket_size): ...into new helper function.
6767         (hash_rehash): Use new function and open coding to reduce memory
6768         pressure, and avoid a memory leak in USE_OBSTACK code.
6769         Reported by Jim Meyering.
6770
6771 2009-06-18  Eric Blake  <ebb9@byu.net>
6772
6773         hash: make rotation more obvious
6774         * modules/hash (Depends-on): Add bitrotate and stdint.
6775         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
6776         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
6777         (SIZE_MAX): Rely on headers for definition.
6778         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
6779         (raw_hasher): Use rotr_sz.
6780         Suggested by Jim Meyering.
6781
6782         hash: fix memory leak in last patch
6783         * lib/hash.c (hash_rehash): Avoid memory leak.
6784
6785         hash: avoid no-op rehashing
6786         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
6787
6788         hash: provide default callback functions
6789         * lib/hash.c (raw_hasher, raw_comparator): New functions.
6790         (hash_initialize): Use them as defaults.
6791         * tests/test-hash.c (main): Test this.
6792
6793         hash: minor optimization
6794         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
6795         when possible.
6796         (hash_initialize): Document this promise.
6797         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
6798         * tests/test-hash.c (hash_compare_strings): Test this.
6799
6800 2009-06-18  Bruno Haible  <bruno@clisp.org>
6801
6802         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
6803         going to be replaced anyway.
6804
6805 2009-06-18  Bruno Haible  <bruno@clisp.org>
6806
6807         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
6808         in one place.
6809         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
6810         be replaced anyway.
6811
6812 2009-06-18  Eric Blake  <ebb9@byu.net>
6813
6814         hash: check for resize before insertion
6815         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
6816         threshold before insertion, so that a pathological hash_rehash
6817         that fills every bucket can still trigger another rehash.
6818
6819 2009-06-18  Jim Meyering  <meyering@redhat.com>
6820
6821         hash-tests: add a loop around the small tests
6822         * tests/test-hash.c (main): Repeat small tests with selected
6823         small initial table sizes.
6824
6825 2009-06-17  Eric Blake  <ebb9@byu.net>
6826
6827         hash: minor cleanups
6828         * lib/hash.h (hash_entry): Make opaque, by moving...
6829         * lib/hash.c (hash_entry): ...here.
6830         (hash_insert): Clarify restrictions on what can be inserted.
6831         (hash_get_next): Clarify when it is safe to remove an element
6832         during traversal.
6833         (check_tuning): Skip verification when tuning is known safe.
6834         (hash_initialize): Clarify restrictions on tuning.
6835
6836 2009-06-17  Jim Meyering  <jim@meyering.net>
6837         and Eric Blake  <ebb9@byu.net>
6838
6839         hash-tests: new module
6840         * modules/hash-tests: New file.
6841         * tests/test-hash.c: New file.
6842
6843 2009-06-17  Eric Blake  <ebb9@byu.net>
6844
6845         strstr-simple: document new module
6846         * MODULES.html.sh: Document new module.
6847
6848         strstr, strcasestr: replace on platforms with broken memchr
6849         * modules/strstr: Split into...
6850         * modules/strstr-simple: ...new module that does not care about
6851         performance, but does care about glibc bug.
6852         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
6853         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
6854         if platform memchr is broken, per Debian bug 521737.
6855         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
6856         memchr.
6857         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
6858         * doc/posix-functions/strstr.texi (strstr): Document the fix.
6859         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
6860         * modules/mountlist (Depends-on): Add strstr-simple.
6861         * modules/gen-uni-tables (Depends-on): Likewise.
6862         * modules/argz (Depends-on): Add strstr.
6863
6864 2009-06-17  Bruno Haible  <bruno@clisp.org>
6865
6866         * modules/posix_spawn-internal (Depends-on): Add errno.
6867
6868 2009-06-17  Bruno Haible  <bruno@clisp.org>
6869
6870         Define missing ESTALE on Interix 3.5.
6871         * lib/errno.in.h (ESTALE): Assign a value if missing.
6872         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
6873         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
6874         missing.
6875         * doc/posix-headers/errno.texi: Mention the Interix bug.
6876         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
6877
6878 2009-06-15  Eric Blake  <ebb9@byu.net>
6879
6880         memchr, memchr2: add valgrind exception
6881         * lib/memchr.valgrind: New file.
6882         * lib/memchr2.valgrind: New file.
6883         * modules/memchr (Files): Distribute valgrind file.
6884         * modules/memchr2 (Files): Likewise.
6885
6886         docs: memchr is no longer obsolete
6887         * MODULES.html.sh: Move memchr from obsolete to string.h section.
6888         * lib/string.in.h (memchr): Simplify logic.
6889
6890 2009-06-14  Jim Meyering  <meyering@redhat.com>
6891
6892         link-follow: fix the "checking..." message to not mention trailing slash
6893         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
6894         never considered trailing slashes.
6895
6896 2009-06-14  Bruno Haible  <bruno@clisp.org>
6897
6898         * m4/memchr.m4: Mention also the bug on IA-64.
6899         * doc/posix-functions/memchr.texi: Likewise.
6900
6901 2009-06-12  Eric Blake  <ebb9@byu.net>
6902
6903         memchr: detect broken x86_64 and alpha implementations
6904         * modules/memchr-tests (Depends-on): Move mmap detection...
6905         * modules/memchr (Depends-on): ...here.
6906         (configure.ac): Set indicator.
6907         * lib/string.in.h (memchr): Declare replacement.
6908         * modules/string (Makefile.am): Trigger replacement.
6909         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
6910         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
6911         bugs.
6912         * doc/posix-functions/memchr.texi (memchr): Document the bug.
6913         * modules/getpagesize (License): Relax license.
6914
6915 2009-06-11  Bruno Haible  <bruno@clisp.org>
6916
6917         * lib/idpriv.h: Add more references.
6918
6919 2009-06-08  Bruno Haible  <bruno@clisp.org>
6920
6921         Tests for module 'idpriv-droptemp'.
6922         * modules/idpriv-droptemp-tests: New file.
6923         * tests/test-idpriv-droptemp.sh: New file.
6924         * tests/test-idpriv-droptemp.su.sh: New file.
6925         * tests/test-idpriv-droptemp.c: New file.
6926
6927         New module 'idpriv-droptemp'.
6928         * lib/idpriv-droptemp.c: New file.
6929         * modules/idpriv-droptemp: New file.
6930
6931 2009-06-08  Bruno Haible  <bruno@clisp.org>
6932
6933         Tests for module 'idpriv-drop'.
6934         * modules/idpriv-drop-tests: New file.
6935         * tests/test-idpriv-drop.sh: New file.
6936         * tests/test-idpriv-drop.su.sh: New file.
6937         * tests/test-idpriv-drop.c: New file.
6938
6939         New module 'idpriv-drop'.
6940         * lib/idpriv.h: New file.
6941         * lib-idpriv-drop.c: New file.
6942         * m4/idpriv.m4: New file.
6943         * modules/idpriv-drop: New file.
6944
6945 2009-06-08  Bruno Haible  <bruno@clisp.org>
6946
6947         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
6948         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
6949         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
6950         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
6951         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
6952         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
6953         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
6954
6955 2009-06-08  Eric Blake  <ebb9@byu.net>
6956
6957         test-strstr: use memory fence, when possible
6958         * tests/test-strstr.c (main): Use memory fence, in order to be
6959         more likely to trigger Debian bug 521737.
6960         * modules/strstr-tests (Files): Pull in additional files.
6961
6962         memchr: no longer obsolete, for wider field testing
6963         * modules/memchr (Status, Notice): Delete, this module is no
6964         longer obsolete.
6965         * modules/vasnprintf (Depends-on): Add memchr.
6966
6967 2009-06-07  Jim Meyering  <meyering@redhat.com>
6968
6969         hash: declare some functions with the warn_unused_result attribute
6970         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
6971
6972 2009-06-07  Bruno Haible  <bruno@clisp.org>
6973
6974         * tests/test-alignof.c: Don't test int64_t if it does not exist.
6975         Reported by Eric Blake.
6976
6977 2009-06-06  Eric Blake  <ebb9@byu.net>
6978
6979         test-alignof: fix typo with long double
6980         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
6981         compiler error.
6982
6983 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
6984
6985         Escape non-texinfo { and }s.
6986         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
6987         markup error.
6988
6989 2009-06-04  Jim Meyering  <meyering@redhat.com>
6990
6991         gitlog-to-changelog: don't infloop on an empty commit log
6992         * build-aux/gitlog-to-changelog: Warn about an empty log message.
6993         Reported by Boris Petersen <transacid@centerim.org>.
6994
6995 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
6996
6997         version-etc: extend for packagers
6998         Add three new configure options, intended for packagers:
6999           --with-packager="packager name"
7000           --with-packager-version="packager-specific version"
7001           --with-packager-bug-reports="packager bug reporting"
7002         An example with coreutils:
7003           $ ./configure \
7004             --with-packager=Gentoo \
7005             --with-packager-bug-report=http://bugs.gentoo.org/ \
7006             --with-packager-version="patchset 1.6"
7007           $ ./src/ls --version | head -n3
7008           ls (GNU coreutils) 7.1-dirty
7009           Packaged by Gentoo (patchset 1.6)
7010           Copyright (C) 2009 Free Software Foundation, Inc.
7011         Note that the bug reporting info via --help doesn't show up because
7012         coreutils uses its own custom emit_bug_reporting_address() implementation
7013         in src/system.h.  If it didn't, it'd look like:
7014           $ ./src/ls --help | tail -n4
7015           Report bugs to <bug-coreutils@gnu.org>.
7016           Report Gentoo bugs to <http://bugs.gentoo.org/>.
7017           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
7018           General help using GNU software: <http://www.gnu.org/gethelp/>.
7019         * lib/version-etc.c: Print new information, if provided.
7020         * m4/version-etc.m4: New file.
7021         * modules/version-etc (Files): Add m4/version-etc.m4.
7022         (configure.ac): Add gl_VERSION_ETC.
7023
7024 2009-05-31  Bruno Haible  <bruno@clisp.org>
7025
7026         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
7027         and 'int64_t'.
7028         * modules/alignof-tests (Dependencies): Add stdint.
7029         Reported by Eric Blake.
7030
7031 2009-05-31  Bruno Haible  <bruno@clisp.org>
7032
7033         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
7034         restriction due to compiler bugs.
7035         Reported by Eric Blake.
7036
7037 2009-05-31  Simon Josefsson  <simon@josefsson.org>
7038             Bruno Haible  <bruno@clisp.org>
7039
7040         Fix test-alignof failure.
7041         * lib/alignof.h (alignof_slot): New macro.
7042         (alignof_type): New macro, with the same semantics as the previous
7043         'alignof'.
7044         (alignof): Alias to alignof_slot.
7045         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
7046         check that the results are usable as constant expressions.
7047
7048 2009-05-31  Bruno Haible  <bruno@clisp.org>
7049
7050         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
7051         * tests/test-memchr.c (main): Check that memchr does not read past the
7052         first occurrence of the byte.
7053         * tests/test-strstr.c (main): Update comment.
7054         Suggested by Eric Blake.
7055
7056 2009-05-30  Bruno Haible  <bruno@clisp.org>
7057
7058         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
7059         detail how to use dumpbin.
7060         Reported by David Byron <dbyron@dbyron.com>.
7061
7062 2009-06-02  Simon Josefsson  <simon@josefsson.org>
7063
7064         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
7065
7066 2009-06-02  Simon Josefsson  <simon@josefsson.org>
7067
7068         * m4/manywarnings.m4: Add GCC 4.4 warnings.
7069
7070 2009-05-28  Bruno Haible  <bruno@clisp.org>
7071
7072         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
7073         build-aux/ files.
7074
7075 2009-05-28  Simon Josefsson  <simon@josefsson.org>
7076
7077         * gnulib-tool (func_import): Transform license on build-aux/ files too.
7078
7079 2009-05-27  Simon Josefsson  <simon@josefsson.org>
7080
7081         * gnulib-tool (sed_transform_main_lib_file)
7082         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
7083         regexps.
7084
7085 2009-05-26  Simon Josefsson  <simon@josefsson.org>
7086
7087         * tests/test-strstr.c: Add another self-test.
7088         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
7089         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
7090
7091 2009-05-23  Bruno Haible  <bruno@clisp.org>
7092
7093         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
7094         change.
7095
7096 2009-05-21  Bruno Haible  <bruno@clisp.org>
7097
7098         Simplify use of mode_t varargs.
7099         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
7100         uses 'mode_t' or 'int'.
7101         * lib/openat.c (openat): Likewise.
7102         * lib/open-safer.c (open_safer): Likewise.
7103         * m4/mode_t.m4: New file.
7104         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
7105         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
7106         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
7107         * modules/open (Files): Add m4/mode_t.m4.
7108         * modules/openat (Files): Likewise.
7109         * modules/fcntl-safer (Files): Likewise.
7110         Suggested by Eric Blake.
7111
7112 2009-05-21  Pádraig Brady  <P@draigbrady.com>
7113
7114         * doc/glibc-functions/fallocate.texi: New file.
7115         * doc/gnulib.texi: Include it.
7116
7117 2009-05-21  Eric Blake  <ebb9@byu.net>
7118             Bruno Haible  <bruno@clisp.org>
7119
7120         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
7121         invocations.
7122         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
7123
7124 2009-05-21  Eric Blake  <ebb9@byu.net>
7125             Bruno Haible  <bruno@clisp.org>
7126
7127         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
7128         include_next. Fix of 2008-11-20 commit.
7129         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
7130         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
7131         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
7132         NEXT_MATH_H.
7133         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
7134         instead of NEXT_MATH_H.
7135
7136 2009-05-21  Bruno Haible  <bruno@clisp.org>
7137
7138         Avoid redefinition warnings for SIZE_MAX.
7139         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
7140         Reported by Simon Josefsson.
7141
7142 2009-05-21  Bruno Haible  <bruno@clisp.org>
7143
7144         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
7145         AC_CACHE_VAL.
7146
7147 2009-05-20  Bruno Haible  <bruno@clisp.org>
7148
7149         Make zeroptr.h work on mingw.
7150         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
7151         mprotect.
7152         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
7153         * modules/memchr2-tests (configure.ac): Likewise.
7154         * modules/memcmp-tests (configure.ac): Likewise.
7155         * modules/memmem-tests (configure.ac): Likewise.
7156         * modules/memrchr-tests (configure.ac): Likewise.
7157         Reported by Simon Josefsson.
7158
7159 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7160
7161         * tests/test-glob.c: Include string.h for strcmp prototype.
7162
7163 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7164
7165         * modules/getdelim (Depends-on): Add explicit stdint, although it
7166         was implicitly already pulled in via realloc-posix.
7167         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
7168
7169 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7170
7171         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
7172         G. Christensen" <tgc@jupiterrise.com>.
7173         * m4/sys_socket_h.m4: Check for sa_family_t.
7174         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
7175         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
7176         * tests/test-sys_socket.c: Check that sa_family_t works.
7177
7178 2009-05-18  Eric Blake  <ebb9@byu.net>
7179
7180         maint.mk: allow gnulib_dir in VPATH build
7181         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
7182
7183 2009-05-15  Jim Meyering  <meyering@redhat.com>
7184
7185         maint.mk: Give gnulib_dir a default definition.
7186         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
7187         Thus, most packages no longer need to specify this variable in cfg.mk
7188
7189 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
7190
7191         rename.m4: fix typos that would make non-mingw cross-configure fail
7192         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
7193
7194 2009-05-13  Eric Blake  <ebb9@byu.net>
7195
7196         mmap-anon: avoid out-of-order autoconf expansion
7197         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
7198         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
7199         * modules/memchr-tests (Depends-on): Add extensions.
7200         * modules/memchr2-tests (Depends-on): Add extensions.
7201         * modules/memcmp-tests (Depends-on): Add extensions.
7202         * modules/memmem-tests (Depends-on): Add extensions.
7203         * modules/memrchr-tests (Depends-on): Add extensions.
7204
7205 2009-05-13  Bruno Haible  <bruno@clisp.org>
7206
7207         Make some tests ISO C 99 compliant.
7208         * tests/zerosize-ptr.h: New file.
7209         * tests/test-memchr.c: Include zerosize-ptr.h.
7210         (main): Use a zero-size object pointer instead of NULL.
7211         * tests/test-memchr2.c: Include zerosize-ptr.h.
7212         (main): Use a zero-size object pointer instead of NULL.
7213         * tests/test-memcmp.c: Include zerosize-ptr.h.
7214         (main): Use a zero-size object pointer instead of NULL.
7215         * tests/test-memmem.c: Include zerosize-ptr.h.
7216         (main): Use a zero-size object pointer instead of NULL.
7217         * tests/test-memrchr.c: Include zerosize-ptr.h.
7218         (main): Use a zero-size object pointer instead of NULL.
7219         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
7220         m4/mmap-anon.m4.
7221         (Depends-on): Add getpagesize.
7222         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7223         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
7224         m4/mmap-anon.m4.
7225         (Depends-on): Add getpagesize.
7226         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7227         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
7228         m4/mmap-anon.m4.
7229         (Depends-on): Add getpagesize.
7230         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7231         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
7232         m4/mmap-anon.m4.
7233         (Depends-on): Add getpagesize.
7234         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7235         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
7236         m4/mmap-anon.m4.
7237         (Depends-on): Add getpagesize.
7238         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7239
7240 2009-05-12  Bruno Haible  <bruno@clisp.org>
7241
7242         Tests for module 'alignof'.
7243         * modules/alignof-tests: New file.
7244         * tests/test-alignof.c: New file.
7245
7246 2009-05-12  Bruno Haible  <bruno@clisp.org>
7247
7248         Fix alignof macro.
7249         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
7250         vendor compilers that are always correct.
7251
7252 2009-05-12  Bruno Haible  <bruno@clisp.org>
7253
7254         Make the MAP_ANONYMOUS detection work on HP-UX 11.
7255         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
7256         not whether its fully works.
7257
7258 2009-05-12  Bruno Haible  <bruno@clisp.org>
7259
7260         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
7261
7262 2009-05-12  Jim Meyering  <meyering@redhat.com>
7263
7264         * top/maint.mk: Adjust backslash alignment.
7265
7266 2009-05-11  Simon Josefsson  <simon@josefsson.org>
7267
7268         * top/maint.mk: Make $(srcdir)/build-aux configurable.
7269
7270 2009-05-11  Eric Blake  <ebb9@byu.net>
7271
7272         argp: avoid undefined behavior
7273         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
7274         macros.
7275
7276 2009-05-08  Simon Josefsson  <simon@josefsson.org>
7277
7278         * tests/test-vc-list-files-git.sh: Do git config of user.email and
7279         user.name to prevent git commit from complaining.
7280
7281 2009-05-10  Bruno Haible  <bruno@clisp.org>
7282
7283         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
7284         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
7285         it rewrites every file name only once.
7286         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
7287
7288 2009-05-08  Bruno Haible  <bruno@clisp.org>
7289
7290         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
7291         instead of 'max'.
7292
7293 2009-05-08  Simon Josefsson  <simon@josefsson.org>
7294
7295         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
7296         sockaddr_storage test.
7297
7298 2009-05-07  Simon Josefsson  <simon@josefsson.org>
7299
7300         * modules/sys_socket (Makefile.am): Substitute
7301         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
7302         * m4/sys_socket_h.m4: Check for sockaddr_storage.
7303         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
7304         * tests/test-sys_socket.c: Check sockaddr_storage.
7305
7306 2009-05-08  Bruno Haible  <bruno@clisp.org>
7307
7308         New module 'alignof'.
7309         * lib/alignof.h: New file.
7310         * modules/alignof: New file.
7311
7312 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7313             Bruno Haible  <bruno@clisp.org>
7314
7315         Fix test-file-has-acl on FreeBSD.
7316         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
7317         mask is implicitly added.
7318         * tests/test-file-has-acl.c: Include <signal.h>.
7319         (main): Terminate the test after 5 seconds.
7320         * modules/acl-tests (configure.ac): Check for alarm function.
7321
7322 2009-05-04  Bruno Haible  <bruno@clisp.org>
7323
7324         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
7325         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
7326         * modules/errno (configure.ac): Drop AC_REQUIRE.
7327         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
7328         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
7329
7330 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7331
7332         * modules/glob-tests: New module.
7333         * tests/test-glob.c: Add.
7334
7335 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7336
7337         * modules/fnmatch-tests: New module.
7338         * tests/test-fnmatch.c: Add.
7339
7340 2009-05-04  Eric Blake  <ebb9@byu.net>
7341
7342         maint: make the new no-submodule-changes rule VPATH-safe
7343         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
7344
7345 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7346             Bruno Haible  <bruno@clisp.org>
7347
7348         acl: Fix infinite loop on FreeBSD.
7349         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
7350         of return value from acl_get_entry.
7351         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
7352         Likewise.
7353
7354 2009-05-03  Bruno Haible  <bruno@clisp.org>
7355
7356         * lib/acl-internal.h (acl_entries): Clarify return value.
7357         * lib/acl_entries.c (acl_entries): Likewise.
7358
7359 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7360
7361         Bug fix in acl module.
7362         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
7363
7364 2009-05-03  Bruno Haible  <bruno@clisp.org>
7365
7366         Create gperf-generated file in the source dir, not in the build dir.
7367         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
7368         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
7369         * modules/unicase/locale-language (unicase/locale-languages.h):
7370         Likewise.
7371         * modules/unicase/special-casing (unicase/special-casing-table.h):
7372         Likewise.
7373         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
7374         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
7375         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
7376         Reported by Ralf Wildenhues.
7377
7378 2009-05-03  Bruno Haible  <bruno@clisp.org>
7379
7380         * modules/fnmatch (Description, configure.ac): Taken from
7381         fnmatch-posix.
7382         * modules/fnmatch-posix: Turn into a symbolic reference to the
7383         'fnmatch' module, and deprecate.
7384         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
7385
7386 2009-05-03  Bruno Haible  <bruno@clisp.org>
7387
7388         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
7389         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
7390         Reported by Ralf Wildenhues.
7391
7392 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7393
7394         * m4/fnmatch.m4: Fix fnmatch re-define.
7395
7396 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7397
7398         priv-set: new module and tests; adapt write-any-file
7399         * lib/priv-set.c: New file.
7400         * lib/priv-set.h: New file.
7401         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
7402         * lib/write-any-file.c: Simplify by using priv-set module.
7403         * m4/priv-set.m4: New file.
7404         * modules/priv-set: New file.
7405         * modules/unlinkdir: Add dependency on priv-set module.
7406         * modules/write-any-file: Likewise.
7407
7408         Tests for module 'priv-set'.
7409         * modules/priv-set-tests: New file.
7410         * tests/test-priv-set.c: New file.
7411
7412 2009-05-03  Jim Meyering  <meyering@redhat.com>
7413             Bruno Haible  <bruno@clisp.org>
7414
7415         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
7416         use the converted UTF-8 variant of the name instead.
7417
7418 2009-05-03  Jim Meyering  <meyering@redhat.com>
7419
7420         tests: tighten some getdate tests
7421         * tests/test-getdate.c (main): Tighten tests: require equality,
7422         not just greater than.  Set TZ envvar to UTC0.
7423
7424 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
7425
7426         getdate: correctly interpret "next monday" when run on a Monday
7427         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
7428         that e.g., "next tues" (when run on a tuesday) results in a date
7429         that is one week in the future, and not today's date.
7430         I.e., add a week when the wday is the same as the current one.
7431         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
7432         and earlier by Martin Bernreuther and Jan Minář.
7433         * tests/test-getdate.c (main): Check that "next DAY" is always in
7434         the future and that "last DAY" is always in the past.
7435
7436 2009-05-02  Jim Meyering  <meyering@redhat.com>
7437
7438         build: ensure that a release build fails when a submodule is unclean
7439         * top/maint.mk (no-submodule-changes): New rule.
7440         (alpha beta major): Depend on it.
7441
7442 2009-05-02  Bruno Haible  <bruno@clisp.org>
7443
7444         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
7445         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
7446         shell variable gl_fnmatch_required to detect which variant is
7447         requested.
7448         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
7449         gl_FUNC_FNMATCH_POSIX.
7450         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
7451         exclude fnmatch-posix.
7452
7453 2009-05-02  Bruno Haible  <bruno@clisp.org>
7454
7455         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
7456         * modules/mbsrtowcs (License): Change to LGPLv2+.
7457         * modules/strnlen1 (License): Likewise.
7458         Reported by Simon Josefsson.
7459
7460 2009-05-02  Bruno Haible  <bruno@clisp.org>
7461
7462         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
7463         "cross".
7464         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
7465         gnulib-tool was called with option --source-base=lib.
7466
7467 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7468
7469         Use automake *-local hooks without commands, for extensibility.
7470         * modules/localcharset (Makefile.am): Rename install-exec-local
7471         rule to install-exec-localcharset, and make it a prerequisite of
7472         install-exec-local.  Likewise, rename the uninstall-local rule to
7473         uninstall-localcharset, and make it a prerequisite of the former.
7474
7475 2009-05-01  Bruno Haible  <bruno@clisp.org>
7476
7477         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
7478         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
7479         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
7480         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
7481         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
7482         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
7483         m4/locale-zh.m4, m4/codeset.m4.
7484
7485         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
7486         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
7487         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
7488         m4/locale-zh.m4.
7489
7490         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
7491         REPLACE_WCRTOMB if mbstate_t must be replaced.
7492         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
7493         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
7494
7495 2009-05-01  Bruno Haible  <bruno@clisp.org>
7496
7497         Avoid compiler warnings when redefining macros defined by <libintl.h>.
7498         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
7499         dngettext, dcngettext, textdomain, bindtextdomain,
7500         bind_textdomain_codeset): Undefine before redefining.
7501
7502 2009-04-30  Bruno Haible  <bruno@clisp.org>
7503
7504         Fix bug introduced on 2009-04-25.
7505         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
7506         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
7507         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
7508         is defined.
7509         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
7510         is defined.
7511         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
7512         is defined.
7513         Reported by Elbert_Pol <elbert.pol@gmail.com>.
7514
7515 2009-04-28  Bruno Haible  <bruno@clisp.org>
7516
7517         Comment tweaks.
7518         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
7519         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
7520         * lib/unicase.h (u*_casexfrm): Likewise.
7521         Reported by Paolo Bonzini.
7522
7523 2009-04-28  Bruno Haible  <bruno@clisp.org>
7524
7525         Fix a compilation error.
7526         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
7527         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
7528         Reported by Jim Meyering.
7529
7530 2009-04-27  Bruno Haible  <bruno@clisp.org>
7531
7532         New module 'libunistring'.
7533         * modules/libunistring: New file.
7534         * m4/libunistring.m4: New file.
7535         * MODULES.html.sh (Unicode string functions): Add it.
7536
7537 2009-04-27  Eric Blake  <ebb9@byu.net>
7538
7539         maint.mk: allow package-specific header to provide <config.h>
7540         * top/maint.mk (sc_require_config_h): New variable.
7541         (sc_require_config_h, sc_require_config_h_first): Use it.
7542
7543 2009-04-27  Simon Josefsson  <simon@josefsson.org>
7544
7545         * top/maint.mk (sc_avoid_if_before_free): Except
7546         useless-if-before-free script.
7547
7548 2009-04-27  Eric Blake  <ebb9@byu.net>
7549
7550         maintainer-makefile: depend on all required helper scripts
7551         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
7552         useless-if-before-free.
7553         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
7554         version, rather than assuming gnulib checkout is available.
7555         Reported by Simen Josefsson.
7556
7557 2009-04-26  Bruno Haible  <bruno@clisp.org>
7558
7559         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
7560         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
7561         "../" or "..".
7562
7563 2009-04-26  Bruno Haible  <bruno@clisp.org>
7564
7565         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
7566         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
7567         AC_LIB_HAVE_LINKFLAGS.
7568
7569 2009-04-26  Bruno Haible  <bruno@clisp.org>
7570
7571         Simplify calling convention of u*_conv_from_encoding.
7572         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
7573         u32_conv_from_encoding): Expect a resultbuf argument and return the
7574         result directly as a pointer.
7575         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
7576         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
7577         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
7578         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
7579         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
7580         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
7581         Update.
7582         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
7583         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
7584         * lib/vasnprintf.c (VASNPRINTF): Update.
7585         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
7586         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
7587         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
7588         * NEWS: Mention the change.
7589
7590 2009-04-26  Bruno Haible  <bruno@clisp.org>
7591
7592         Simplify calling convention of u*_conv_to_encoding.
7593         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
7594         u32_conv_to_encoding): Expect a resultbuf argument and return the
7595         result directly as a pointer.
7596         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
7597         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
7598         freeing scaled_offsets if mem_iconveha failed.
7599         * lib/unicase/u-casexfrm.h (FUNC): Update.
7600         * lib/uninorm/u-normxfrm.h (FUNC): Update.
7601         * lib/vasnprintf.c (VASNPRINTF): Update.
7602         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
7603         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
7604         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
7605         * NEWS: Mention the change.
7606
7607 2009-04-26  Bruno Haible  <bruno@clisp.org>
7608
7609         Avoid test failures on AIX and OSF/1.
7610         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
7611         malloc(0).
7612         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
7613         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
7614         Likewise.
7615         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
7616         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
7617         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
7618         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
7619         * doc/posix-functions/malloc.texi: Document the portability problem
7620         related to malloc(0).
7621
7622 2009-04-26  Bruno Haible  <bruno@clisp.org>
7623
7624         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
7625         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
7626         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
7627
7628 2009-04-25  Bruno Haible  <bruno@clisp.org>
7629
7630         Avoid link error when creating a namespace clean library.
7631         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
7632         as macro with arguments if already defined as an alias.
7633         * lib/signbitf.c (gl_signbitf): Don't undefine.
7634         * lib/signbitd.c (gl_signbitd): Don't undefine.
7635         * lib/signbitl.c (gl_signbitl): Don't undefine.
7636
7637 2009-04-25  Jim Meyering  <meyering@redhat.com>
7638
7639         vc-list-files: fix another quoting bug
7640         * build-aux/vc-list-files: Avoid sed backslash expansion
7641         of pathological directory names.
7642
7643 2009-04-25  Eric Blake  <ebb9@byu.net>
7644
7645         vc-list-files: fix shell quoting error
7646         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
7647         timestamp.
7648
7649 2009-04-25  Jim Meyering  <meyering@redhat.com>
7650
7651         vc-list-files: restore lost functionality with subdir argument
7652         * build-aux/vc-list-files: When given a non-"." sub-directory
7653         argument, substitute the $dir/ prefix back onto each resulting name.
7654         Otherwise, coreutils' root_tests check would fail.
7655
7656 2009-04-24  Eric Blake  <ebb9@byu.net>
7657
7658         vc-list-files: ignore git symlinks
7659         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
7660         than ls-files, to ignore git symlinks.
7661
7662         maint.mk: import improvements from m4
7663         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
7664         (move_if_change): Delete unused macro.
7665         (news-date-check, vc-diff-check): Support VPATH builds.
7666         (announcement): Likewise.  Split --bootstrap-tools list...
7667         (boostrap-tools): ...into separate list, which can be overridden
7668         in cfg.mk.
7669         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
7670         requiring dependency on useless-if-before-free module.
7671         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
7672         Support VPATH builds.
7673
7674 2009-04-24  Jim Meyering  <meyering@redhat.com>
7675
7676         maint.mk: remove coreutils-specific rules and variables
7677         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
7678         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
7679         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
7680
7681         maint.mk: remove obsolete rule
7682         * top/maint.mk (rel-check): Remove rule.
7683         (WGET, WGETFLAGS): Remove now-unused variables.
7684
7685 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7686
7687         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
7688         consistency.
7689
7690         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
7691         '$(PATH_SEPARATOR)' instead of ':'.
7692
7693 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7694
7695         * lib/getopt1.c (main): Use 'const' for static array.
7696
7697 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7698
7699         * top/maint.mk: Sync with coreutils.
7700         * NEWS: Explain incompatibilities.
7701
7702 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7703             Bruno Haible  <bruno@clisp.org>
7704
7705         Fix cross-compilation results.
7706         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
7707         statement, as third argument of AC_TRY_RUN.
7708         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
7709         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
7710         Likewise.
7711         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
7712         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
7713         Likewise.
7714         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
7715         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
7716         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
7717
7718 2009-04-20  Bruno Haible  <bruno@clisp.org>
7719
7720         Avoid test failure on mingw.
7721         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
7722
7723 2009-04-20  Bruno Haible  <bruno@clisp.org>
7724
7725         Avoid compilation error on mingw.
7726         * modules/localename-tests (Depends-on): Add locale.
7727
7728 2009-04-19  Bruno Haible  <bruno@clisp.org>
7729
7730         Support for building a shared library on Windows platforms.
7731         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
7732         (main): Test the presence of UNINORM_NFC here.
7733         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
7734         (main): Test the presence of UNINORM_NFD here.
7735         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
7736         (main): Test the presence of UNINORM_NFKC here.
7737         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
7738         (main): Test the presence of UNINORM_NFKD here.
7739
7740 2009-04-19  Bruno Haible  <bruno@clisp.org>
7741
7742         Avoid a compiler warning.
7743         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
7744         Change type of variable 'sequence'.
7745
7746 2009-04-19  Bruno Haible  <bruno@clisp.org>
7747
7748         * modules/configmake (Makefile.am): When the contents of configmake.h
7749         does not change, arrange to preserve its modification time.
7750
7751 2009-04-17  Simon Josefsson  <simon@josefsson.org>
7752
7753         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
7754         gettext domain.
7755
7756 2009-04-16  Jim Meyering  <meyering@redhat.com>
7757
7758         useless-if-before-free: improve conversion code
7759         * build-aux/useless-if-before-free: Adjust code-in-comment to match
7760         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
7761
7762 2009-04-14  Bruno Haible  <bruno@clisp.org>
7763
7764         * modules/fcntl (Depends-on): Add extensions.
7765         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
7766
7767 2009-04-12  Ben Pfaff  <blp@gnu.org>
7768
7769         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
7770         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
7771
7772 2009-03-20  Ben Pfaff  <blp@gnu.org>
7773
7774         Make rename replace existing destinations on Windows.
7775         * m4/rename.m4: Add test for Mingw.
7776         * lib/rename.c: Add rename replacement that uses MoveFileEx with
7777         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
7778         * doc/posix-functions/rename.texi: Document.
7779
7780 2009-04-10  Bruno Haible  <bruno@clisp.org>
7781
7782         New include file "iconveh.h".
7783         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
7784         * lib/striconveh.h: Include it.
7785         (enum iconv_ilseq_handler): Remove definition.
7786         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
7787         striconveh.h.
7788         * lib/striconveha.c: Include striconveh.h.
7789         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
7790         * modules/striconveh (Files): Add lib/iconveh.h.
7791         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
7792         lib/striconveh.h.
7793
7794 2009-04-10  Bruno Haible  <bruno@clisp.org>
7795
7796         * lib/uniconv.h: Update comment.
7797
7798 2009-04-10  Bruno Haible  <bruno@clisp.org>
7799
7800         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
7801         always.
7802         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
7803         * lib/unistr/u16-mbtouc-aux.c: Likewise.
7804         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
7805         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
7806         "unistring-notinline.h", so that the function gets defined always.
7807         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
7808         * lib/unistr/u8-uctomb.c: Likewise.
7809         * lib/unistr/u16-mbtouc.c: Likewise.
7810         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
7811         * lib/unistr/u16-uctomb.c: Likewise.
7812         * lib/unistr/u32-mbtouc.c: Likewise.
7813         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
7814         * lib/unistr/u32-uctomb.c: Likewise.
7815
7816 2009-04-10  Bruno Haible  <bruno@clisp.org>
7817
7818         Mark 'utime' obsolete.
7819         * modules/utime (Status, Notice): New sections.
7820         Suggested by Jim Meyering.
7821
7822         Fix cross-compile guess for utime test.
7823         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
7824         autoconf.
7825         * doc/posix-functions/utime.texi: Give more precisions.
7826         Reported by Jan <ipif@ymail.com>.
7827
7828 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
7829
7830         filevercmp: correct today's change
7831         * lib/filevercmp.c: Also handle coreutils' test inputs.
7832         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
7833
7834         Fix regression in 'filevercmp' module. Thanks Sven Joachim
7835         for reporting it.
7836         * lib/filevercmp.c: Special handle for "", "." and "..".
7837         * tests/test-filevercmp.c: Enlarge the set suite.
7838
7839 2009-04-07  Jim Meyering  <meyering@redhat.com>
7840
7841         useless-if-before-free: show how to remove braced useless free, too
7842         * build-aux/useless-if-before-free: still only in a comment, though.
7843
7844 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
7845
7846         maint.mk: import changes to syntax-check macros from coreutils
7847         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
7848         Use them in the relevant macros.
7849
7850 2009-04-06  Bruno Haible  <bruno@clisp.org>
7851
7852         Fix unportable use of bit-fields.
7853         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
7854         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
7855         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
7856
7857 2009-04-06  Bruno Haible  <bruno@clisp.org>
7858
7859         Avoid test failures on AIX and OSF/1.
7860         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
7861         that malloc(0) = NULL.
7862         * tests/unicase/test-u8-tolower.c (check): Likewise.
7863         * tests/unicase/test-u8-totitle.c (check): Likewise.
7864         * tests/unicase/test-u8-toupper.c (check): Likewise.
7865         * tests/unicase/test-u16-casefold.c (check): Likewise.
7866         * tests/unicase/test-u16-tolower.c (check): Likewise.
7867         * tests/unicase/test-u16-totitle.c (check): Likewise.
7868         * tests/unicase/test-u16-toupper.c (check): Likewise.
7869         * tests/unicase/test-u32-casefold.c (check): Likewise.
7870         * tests/unicase/test-u32-tolower.c (check): Likewise.
7871         * tests/unicase/test-u32-totitle.c (check): Likewise.
7872         * tests/unicase/test-u32-toupper.c (check): Likewise.
7873         * tests/uninorm/test-u8-nfc.c (check): Likewise.
7874         * tests/uninorm/test-u8-nfd.c (check): Likewise.
7875         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
7876         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
7877         * tests/uninorm/test-u16-nfc.c (check): Likewise.
7878         * tests/uninorm/test-u16-nfd.c (check): Likewise.
7879         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
7880         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
7881         * tests/uninorm/test-u32-nfc.c (check): Likewise.
7882         * tests/uninorm/test-u32-nfd.c (check): Likewise.
7883         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
7884         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
7885
7886 2009-04-05  Bruno Haible  <bruno@clisp.org>
7887
7888         Work around an autoconf limitation.
7889         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
7890         comment line if it would be longer than 3 KB.
7891
7892 2009-04-05  Bruno Haible  <bruno@clisp.org>
7893
7894         Avoid test failure with libiconv-1.13.
7895         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
7896         of the expected test results.
7897
7898 2009-04-05  Bruno Haible  <bruno@clisp.org>
7899
7900         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
7901         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
7902         that it should be installed.
7903
7904 2009-04-05  Bruno Haible  <bruno@clisp.org>
7905
7906         * gnulib-tool: New option --copy-file.
7907         (func_usage): Document it.
7908         (func_dest_tmpfilename): Moved out of func_import.
7909         (func_add_file, func_update_file): New functions, extracted from
7910         func_import.
7911         (func_import): Update.
7912
7913 2009-04-05  Karl Berry  <karl@gnu.org>
7914
7915         * README: prominently mention gnulib-tool.
7916         Rearrange sections so getting the code is near the top.
7917
7918 2009-04-05  Bruno Haible  <bruno@clisp.org>
7919
7920         * lib/unicase.h: Mention u*_cmp2.
7921         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
7922         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
7923         * lib/unicase/ulc-casecmp.c: Likewise.
7924         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
7925         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
7926         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
7927         unistr/u8-cmp.
7928         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
7929         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
7930         unistr/u16-cmp.
7931         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
7932         unistr/u32-cmp.
7933
7934         * lib/uninorm.h: Mention u*_cmp2.
7935         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
7936         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
7937         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
7938         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
7939         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
7940         unistr/u8-cmp.
7941         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
7942         unistr/u16-cmp.
7943         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
7944         unistr/u32-cmp.
7945
7946         New module 'unistr/u32-cmp2'.
7947         * lib/unistr/u32-cmp2.c: New file.
7948         * modules/unistr/u32-cmp2: New file.
7949
7950         New module 'unistr/u16-cmp2'.
7951         * lib/unistr/u16-cmp2.c: New file.
7952         * modules/unistr/u16-cmp2: New file.
7953
7954         New module 'unistr/u8-cmp2'.
7955         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
7956         * lib/unistr/u8-cmp2.c: New file.
7957         * lib/unistr/u-cmp2.h: New file.
7958         * modules/unistr/u8-cmp2: New file.
7959
7960 2009-04-05  Bruno Haible  <bruno@clisp.org>
7961
7962         * lib/unictype.h (uc_property_is_valid): New macro.
7963         * tests/unictype/test-pr_byname.c (main): Use it.
7964
7965         * lib/unistr.h: Doc fixes.
7966         * lib/uniconv.h: Doc fixes.
7967         * lib/unictype.h: Doc fixes.
7968
7969 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
7970
7971         Port coreutils 7.2 to Solaris 8.
7972
7973         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
7974         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
7975         for Solaris 8.  This is a bit of a hack, as it means it's the
7976         caller's responsibility to add -lnsl if needed, but most likely it
7977         won't be needed since only getaddrinfo uses this and getaddrinfo
7978         isn't needed on Solaris 8.
7979
7980         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
7981         problem to Solaris 8 encountered with coreutils 7.2, which
7982         resulted in a message "fnmatch.c:292: warning: passing argument 4
7983         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
7984         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
7985
7986 2009-04-03  Simon Josefsson  <simon@josefsson.org>
7987
7988         * m4/ld-version-script.m4: Add FIXME comment.
7989
7990 2009-04-02  Simon Josefsson  <simon@josefsson.org>
7991
7992         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
7993         SOVERSION variable.
7994
7995 2009-04-02  Bruno Haible  <bruno@clisp.org>
7996
7997         * Makefile (info, html, dvi, pdf): Combine the rules.
7998         Suggested by Jim Meyering.
7999
8000 2009-04-01  Bruno Haible  <bruno@clisp.org>
8001
8002         * Makefile (info, html, dvi, pdf): New targets.
8003         Reported by Reuben Thomas <rrt@sc3d.org>.
8004
8005 2009-04-01  Bruno Haible  <bruno@clisp.org>
8006
8007         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
8008         can be put into PATH.
8009         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
8010
8011 2009-04-01  Bruno Haible  <bruno@clisp.org>
8012
8013         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
8014
8015 2009-04-01  Bruno Haible  <bruno@clisp.org>
8016
8017         Rename module 'visibility'.
8018         * modules/lib-symbol-visibility: Renamed from modules/visibility.
8019         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
8020         * doc/gnulib.texi: Update.
8021         * MODULES.html.sh (Misc): Update.
8022         * NEWS: Mention the change.
8023
8024 2009-04-01  Simon Josefsson  <simon@josefsson.org>
8025
8026         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
8027         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
8028         Eric Blake <ebb9@byu.net> for review.
8029         * MODULES.html.sh: Add lib-msvc-compat.
8030         * doc/gnulib.texi: Link to new section.
8031         * m4/ld-output-def.m4: New file.
8032         * doc/ld-output-def.texi: New file.
8033
8034 2009-04-01  Simon Josefsson  <simon@josefsson.org>
8035
8036         Rename ld-version-script to lib-symbol-versions.  Suggested by
8037         Bruno Haible <bruno@clisp.org>.
8038         * modules/ld-version-script: Renamed to lib-symbol-versions.
8039         * doc/ld-version-script.texi: Fix module name.
8040         * MODULES.html.sh: Add lib-symbol-versions.
8041
8042 2009-03-31  Simon Josefsson  <simon@josefsson.org>
8043
8044         * modules/u64-tests: New file.
8045         * tests/test-u64.c: New file.
8046
8047 2009-03-04  Simon Josefsson  <simon@josefsson.org>
8048
8049         * MODULES.html.sh: Mention u64.
8050         * modules/u64: New module.
8051         * modules/crypto/sha512: Depend on u64 module instead of providing
8052         u64.h.
8053
8054 2009-03-27  Eric Blake  <ebb9@byu.net>
8055
8056         test-strerror: make debugging EAI_SYSTEM easier
8057         * modules/getaddrinfo-tests (Depends-on): Add strerror.
8058         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
8059         failure was EAI_SYSTEM.
8060
8061 2009-03-25  Bruno Haible  <bruno@clisp.org>
8062
8063         Fix a problem with --enable-relocatable on Solaris 7.
8064         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
8065         since 2008-02-24.
8066
8067 2009-03-25  Eric Blake  <ebb9@byu.net>
8068
8069         test-sockets: avoid gcc warning
8070         * tests/test-sockets.c (main): Silence compiler warning.
8071
8072 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
8073
8074         New modules nproc, pthread, contributed by Glen Lenker.
8075
8076         * MODULES.html.sh: Add pthread, nproc.
8077         * lib/nproc.c: New file.
8078         * lib/nproc.h: New file.
8079         * lib/pthread.in.h: New file.
8080         * m4/pthread.m4: New file.
8081         * modules/nproc: New file.
8082         * modules/pthread: New file.
8083
8084 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8085
8086         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
8087         New variable.
8088
8089 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
8090
8091         filevercmp: handle simple~ and numbered.~3~ backup suffixes
8092         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
8093         * tests/test-filevercmp.c: Add tests for backup suffixes.
8094
8095 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8096
8097         * modules/stdlib (Depends-on): Add stdint, needed when defining
8098         struct random_data on, for example, HP-UX 10.20.  Reported by
8099         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
8100
8101 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8102
8103         * lib/readline.c (readline): Call fflush on stdout after printing
8104         prompt.
8105
8106 2009-03-20  Bruno Haible  <bruno@clisp.org>
8107
8108         Remove dependency from 'close' module to -lws2_32 on native Windows.
8109         * lib/close-hook.h: New file.
8110         * lib/close-hook.c: New file.
8111         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
8112         w32sock.h.
8113         (_gl_close_fd_maybe_socket): Remove function.
8114         (rpl_close): Invoke execute_all_close_hooks instead of
8115         _gl_close_fd_maybe_socket.
8116         * lib/sockets.c: Include close-hook.h, w32sock.h.
8117         (close_fd_maybe_socket): New function, essentially from lib/close.c.
8118         (close_sockets_hook): New variable.
8119         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
8120         (gl_sockets_cleanup): Unregister it.
8121         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
8122         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
8123         * modules/close-hook: New file.
8124         * modules/close (Files): Remove lib/w32sock.h.
8125         (Depends-on): Add close-hook.
8126         (Link): Remove section.
8127         * modules/sockets (Files): Add lib/w32sock.h.
8128         (Depends-on): Add close-hook.
8129         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
8130         invocation.
8131         * NEWS: Mention that LIB_CLOSE is gone.
8132
8133 2009-03-23  Eric Blake  <ebb9@byu.net>
8134
8135         signal-tests: test previous patch
8136         * tests/test-signal.c: New file.
8137         * modules/signal-tests: Likewise.
8138
8139         signal.h: always support 'volatile sig_atomic_t'
8140         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
8141         (gl_SIGNAL_H_DEFAULTS): Add a default.
8142         * modules/signal (Makefile.am): Substitute if needed.
8143         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
8144         users can blindly add volatile.
8145         * doc/posix-headers/signal.texi (signal.h): Document it.
8146         Reported by Matthew Woehlke.
8147
8148 2009-03-23  Jim Meyering  <meyering@redhat.com>
8149
8150         pathmax: PATH_MAX: use pathconf only when available
8151         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
8152         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
8153         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
8154         This avoids a link failure in a PSP cross-compilation environment
8155         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
8156
8157         * lib/vasnprintf.c (divide): Fix typo in comment.
8158
8159 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8160
8161         * gnulib-tool (func_filter_filelist): Fix comment.
8162
8163 2009-03-20  Bruno Haible  <bruno@clisp.org>
8164
8165         Make sockets.h self-contained.
8166         * lib/sockets.c: Include sockets.h first.
8167         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
8168
8169 2009-03-19  Eric Blake  <ebb9@byu.net>
8170
8171         doc: mention more functions added in cygwin 1.7.0
8172         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
8173         addition.
8174         * doc/posix-functions/log2f.texi: Likewise.
8175
8176 2009-03-19  Jim Meyering  <meyering@redhat.com>
8177
8178         fsusage: avoid syntax error due to statement-before-declaration
8179         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
8180         after all declarations.  Reported by Matthew Woehlke in
8181         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
8182
8183 2009-03-18  Eric Blake  <ebb9@byu.net>
8184
8185         build-aux/compile: sync from automake
8186         * build-aux/compile: New file, from automake.
8187         * config/srclist.txt: Mention build-aux/compile.
8188
8189 2009-03-17  Bruno Haible  <bruno@clisp.org>
8190
8191         * lib/git-merge-changelog.c: Fix typo in comment.
8192         Reported by Reuben Thomas <rrt@sc3d.org>.
8193
8194 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
8195
8196         * m4/regex.m4: update and improve help for
8197         --without-included-regex.
8198
8199 2009-03-17  Simon Josefsson  <simon@josefsson.org>
8200
8201         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
8202         failure on missing include files.
8203
8204 2009-03-17  Eric Blake  <ebb9@byu.net>
8205
8206         doc: mention more functions added in cygwin 1.7.0
8207         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
8208         addition.
8209         * doc/posix-functions/fwscanf.texi: Likewise.
8210         * doc/posix-functions/swprintf.texi: Likewise.
8211         * doc/posix-functions/swscanf.texi: Likewise.
8212         * doc/posix-functions/vfwprintf.texi: Likewise.
8213         * doc/posix-functions/vfwscanf.texi: Likewise.
8214         * doc/posix-functions/vswprintf.texi: Likewise.
8215         * doc/posix-functions/vswscanf.texi: Likewise.
8216         * doc/posix-functions/vwprintf.texi: Likewise.
8217         * doc/posix-functions/vwscanf.texi: Likewise.
8218         * doc/posix-functions/wcscasecmp.texi: Likewise.
8219         * doc/posix-functions/wcsdup.texi: Likewise.
8220         * doc/posix-functions/wcsftime.texi: Likewise.
8221         * doc/posix-functions/wcsncasecmp.texi: Likewise.
8222         * doc/posix-functions/wprintf.texi: Likewise.
8223         * doc/posix-functions/wscanf.texi: Likewise.
8224         * doc/glibc-functions/gethostbyname2.texi: Likewise.
8225
8226 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8227
8228         maint.mk: really add $(AM_MAKEFLAGS)
8229         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
8230         was inadvertently omitted in the last commit.
8231         Spotted by Bruno Haible.
8232
8233         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
8234         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
8235         $(AM_MAKEFLAGS)' rather than plain `make'.
8236
8237         gnulib-tool: execute $MAKE not make
8238         * gnulib-tool: Default $MAKE to 'make'.
8239         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
8240         than make.  Initialize $MAKE in the do-autobuild script.
8241
8242         gnulib-tool: use $MAKE not make in generated files
8243         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
8244         make, in generated files.  Initialize $MAKE in the do-autobuild
8245         script.
8246
8247         * top/GNUmakefile (_have-git-version-gen): Fix typo.
8248
8249         GNUmakefile: disable parallelism only for multiple, recursive targets
8250         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
8251         additions in the Makefile.
8252         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
8253         by Automake.
8254         (.NOTPARALLEL): Only disable parallel builds if multiple targets
8255         are listed on the command line and at least one of them is
8256         listed in $(ALL_RECURSIVE_TARGETS).
8257
8258 2009-03-14  Bruno Haible  <bruno@clisp.org>
8259
8260         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
8261         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
8262         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
8263         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
8264         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
8265         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
8266         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
8267         unistr/u8-uctomb.
8268         * modules/unistr/u8-strchr (Depends-on): Likewise.
8269         * modules/unistr/u8-strrchr (Depends-on): Likewise.
8270         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
8271         unistr/u16-uctomb.
8272         * modules/unistr/u16-strchr (Depends-on): Likewise.
8273         * modules/unistr/u16-strrchr (Depends-on): Likewise.
8274
8275 2009-03-12  Bruno Haible  <bruno@clisp.org>
8276
8277         Work around select() bug on Interix 3.5.
8278         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
8279         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
8280         * m4/select.m4: New file.
8281         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
8282         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
8283         * modules/select (Files): Add m4/select.m4.
8284         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
8285         * modules/nanosleep (Depends-on): Add select.
8286         * modules/poll (Depends-on): Likewise.
8287         * doc/posix-functions/select.texi: Mention the Interix bug.
8288         Reported by Markus Duft <mduft@gentoo.org>.
8289
8290         * lib/select.c: Renamed from lib/winsock-select.c.
8291         * modules/select (Files): Add lib/select.c, remove
8292         lib/winsock-select.c.
8293         (configure.ac): Update.
8294
8295 2009-03-12  Jim Meyering  <meyering@redhat.com>
8296
8297         avoid gcc warnings about unused macro definitions
8298         * lib/readtokens.c (STREQ): Remove unused definition.
8299         * lib/xmalloc.c (SIZE_MAX): Likewise.
8300         * lib/openat-die.c (N_): Likewise.
8301         * lib/mountlist.c (SIZE_MAX): Remove definition.
8302         Instead, include <stdint.h>.
8303         * lib/readutmp.c: Likewise.
8304         * modules/readutmp (Depends-on): Add stdint.
8305         * modules/mountlist (Depends-on): Add stdint.
8306         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
8307
8308 2009-03-10  Bruno Haible  <bruno@clisp.org>
8309
8310         Tests for module 'mbmemcasecoll'.
8311         * modules/mbmemcasecoll-tests: New file.
8312         * tests/test-mbmemcasecoll1.sh: New file.
8313         * tests/test-mbmemcasecoll2.sh: New file.
8314         * tests/test-mbmemcasecoll3.sh: New file.
8315         * tests/test-mbmemcasecoll.c: New file.
8316
8317         New module 'mbmemcasecoll'.
8318         * lib/mbmemcasecoll.h: New file.
8319         * lib/mbmemcasecoll.c: New file.
8320         * modules/mbmemcasecoll: New file.
8321
8322         * tests/test-mbmemcasecmp.h: New file, extracted from
8323         tests/test-mbmemcasecmp.c.
8324         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
8325         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
8326         (main): Update.
8327         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
8328
8329 2009-03-09  Bruno Haible  <bruno@clisp.org>
8330
8331         Tests for module 'mbmemcasecmp'.
8332         * modules/mbmemcasecmp-tests: New file.
8333         * tests/test-mbmemcasecmp1.sh: New file.
8334         * tests/test-mbmemcasecmp2.sh: New file.
8335         * tests/test-mbmemcasecmp3.sh: New file.
8336         * tests/test-mbmemcasecmp.c: New file.
8337
8338         New module 'mbmemcasecmp'.
8339         * lib/mbmemcasecmp.h: New file.
8340         * lib/mbmemcasecmp.c: New file.
8341         * modules/mbmemcasecmp: New file.
8342
8343 2009-03-09  Bruno Haible  <bruno@clisp.org>
8344
8345         Tests for module 'unicase/ulc-casecoll'.
8346         * modules/unicase/ulc-casecoll-tests: New file.
8347         * tests/unicase/test-ulc-casecoll1.sh: New file.
8348         * tests/unicase/test-ulc-casecoll2.sh: New file.
8349         * tests/unicase/test-ulc-casecoll.c: New file.
8350
8351         New module 'unicase/ulc-casecoll'.
8352         * lib/unicase.h (ulc_casecoll): New declaration.
8353         * lib/unicase/ulc-casecoll.c: New file.
8354         * modules/unicase/ulc-casecoll: New file.
8355
8356         New module 'unicase/ulc-casexfrm'.
8357         * lib/unicase.h (ulc_casexfrm): New declaration.
8358         * lib/unicase/ulc-casexfrm.c: New file.
8359         * modules/unicase/ulc-casexfrm: New file.
8360
8361 2009-03-09  Bruno Haible  <bruno@clisp.org>
8362
8363         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
8364         invocations.
8365
8366         * m4/mbscasecmp.m4: Remove file.
8367         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
8368         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
8369
8370         * m4/mbscasestr.m4: Remove file.
8371         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
8372         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
8373
8374         * m4/mbschr.m4: Remove file.
8375         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
8376         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
8377
8378         * m4/mbscspn.m4: Remove file.
8379         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
8380         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
8381
8382         * m4/mbslen.m4: Remove file.
8383         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
8384         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
8385
8386         * m4/mbsncasecmp.m4: Remove file.
8387         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
8388         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
8389
8390         * m4/mbsnlen.m4: Remove file.
8391         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
8392         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
8393
8394         * m4/mbspbrk.m4: Remove file.
8395         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
8396         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
8397
8398         * m4/mbspcasecmp.m4: Remove file.
8399         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
8400         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
8401
8402         * m4/mbsrchr.m4: Remove file.
8403         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
8404         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
8405
8406         * m4/mbssep.m4: Remove file.
8407         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
8408         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
8409
8410         * m4/mbsspn.m4: Remove file.
8411         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
8412         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
8413
8414         * m4/mbsstr.m4: Remove file.
8415         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
8416         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
8417
8418         * m4/mbstok_r.m4: Remove file.
8419         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
8420         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
8421
8422         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
8423
8424         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
8425         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
8426
8427         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
8428
8429 2009-03-08  Bruno Haible  <bruno@clisp.org>
8430
8431         Tests for module 'unicase/ulc-casecmp'.
8432         * modules/unicase/ulc-casecmp-tests: New file.
8433         * tests/unicase/test-ulc-casecmp1.sh: New file.
8434         * tests/unicase/test-ulc-casecmp2.sh: New file.
8435         * tests/unicase/test-ulc-casecmp.c: New file.
8436
8437         New module 'unicase/ulc-casecmp'.
8438         * lib/unicase.h (ulc_casecmp): New declaration.
8439         * lib/unicase/ulc-casecmp.c: New file.
8440         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
8441         'const SRC_UNIT *'.
8442         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
8443         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
8444         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
8445         * modules/unicase/ulc-casecmp: New file.
8446
8447         Tests for module 'unicase/u32-is-cased'.
8448         * modules/unicase/u32-is-cased-tests: New file.
8449         * tests/unicase/test-u32-is-cased.c: New file.
8450
8451         Tests for module 'unicase/u16-is-cased'.
8452         * modules/unicase/u16-is-cased-tests: New file.
8453         * tests/unicase/test-u16-is-cased.c: New file.
8454
8455         Tests for module 'unicase/u8-is-cased'.
8456         * modules/unicase/u8-is-cased-tests: New file.
8457         * tests/unicase/test-u8-is-cased.c: New file.
8458         * tests/unicase/test-is-cased.h: New file.
8459
8460         New module 'unicase/u32-is-cased'.
8461         * lib/unicase/u32-is-cased.c: New file.
8462         * modules/unicase/u32-is-cased: New file.
8463
8464         New module 'unicase/u16-is-cased'.
8465         * lib/unicase/u16-is-cased.c: New file.
8466         * modules/unicase/u16-is-cased: New file.
8467
8468         New module 'unicase/u8-is-cased'.
8469         * lib/unicase/u8-is-cased.c: New file.
8470         * lib/unicase/u-is-cased.h: New file.
8471         * modules/unicase/u8-is-cased: New file.
8472
8473         Tests for module 'unicase/u32-is-casefolded'.
8474         * modules/unicase/u32-is-casefolded-tests: New file.
8475         * tests/unicase/test-u32-is-casefolded.c: New file.
8476
8477         Tests for module 'unicase/u16-is-casefolded'.
8478         * modules/unicase/u16-is-casefolded-tests: New file.
8479         * tests/unicase/test-u16-is-casefolded.c: New file.
8480
8481         Tests for module 'unicase/u8-is-casefolded'.
8482         * modules/unicase/u8-is-casefolded-tests: New file.
8483         * tests/unicase/test-u8-is-casefolded.c: New file.
8484         * tests/unicase/test-is-casefolded.h: New file.
8485
8486         New module 'unicase/u32-is-casefolded'.
8487         * lib/unicase/u32-is-casefolded.c: New file.
8488         * modules/unicase/u32-is-casefolded: New file.
8489
8490         New module 'unicase/u16-is-casefolded'.
8491         * lib/unicase/u16-is-casefolded.c: New file.
8492         * modules/unicase/u16-is-casefolded: New file.
8493
8494         New module 'unicase/u8-is-casefolded'.
8495         * lib/unicase/u8-is-casefolded.c: New file.
8496         * modules/unicase/u8-is-casefolded: New file.
8497
8498         Tests for module 'unicase/u32-is-titlecase'.
8499         * modules/unicase/u32-is-titlecase-tests: New file.
8500         * tests/unicase/test-u32-is-titlecase.c: New file.
8501
8502         Tests for module 'unicase/u16-is-titlecase'.
8503         * modules/unicase/u16-is-titlecase-tests: New file.
8504         * tests/unicase/test-u16-is-titlecase.c: New file.
8505
8506         Tests for module 'unicase/u8-is-titlecase'.
8507         * modules/unicase/u8-is-titlecase-tests: New file.
8508         * tests/unicase/test-u8-is-titlecase.c: New file.
8509         * tests/unicase/test-is-titlecase.h: New file.
8510
8511         New module 'unicase/u32-is-titlecase'.
8512         * lib/unicase/u32-is-titlecase.c: New file.
8513         * modules/unicase/u32-is-titlecase: New file.
8514
8515         New module 'unicase/u16-is-titlecase'.
8516         * lib/unicase/u16-is-titlecase.c: New file.
8517         * modules/unicase/u16-is-titlecase: New file.
8518
8519         New module 'unicase/u8-is-titlecase'.
8520         * lib/unicase/u8-is-titlecase.c: New file.
8521         * modules/unicase/u8-is-titlecase: New file.
8522
8523         Tests for module 'unicase/u32-is-lowercase'.
8524         * modules/unicase/u32-is-lowercase-tests: New file.
8525         * tests/unicase/test-u32-is-lowercase.c: New file.
8526
8527         Tests for module 'unicase/u16-is-lowercase'.
8528         * modules/unicase/u16-is-lowercase-tests: New file.
8529         * tests/unicase/test-u16-is-lowercase.c: New file.
8530
8531         Tests for module 'unicase/u8-is-lowercase'.
8532         * modules/unicase/u8-is-lowercase-tests: New file.
8533         * tests/unicase/test-u8-is-lowercase.c: New file.
8534         * tests/unicase/test-is-lowercase.h: New file.
8535
8536         New module 'unicase/u32-is-lowercase'.
8537         * lib/unicase/u32-is-lowercase.c: New file.
8538         * modules/unicase/u32-is-lowercase: New file.
8539
8540         New module 'unicase/u16-is-lowercase'.
8541         * lib/unicase/u16-is-lowercase.c: New file.
8542         * modules/unicase/u16-is-lowercase: New file.
8543
8544         New module 'unicase/u8-is-lowercase'.
8545         * lib/unicase/u8-is-lowercase.c: New file.
8546         * modules/unicase/u8-is-lowercase: New file.
8547
8548         Tests for module 'unicase/u32-is-uppercase'.
8549         * modules/unicase/u32-is-uppercase-tests: New file.
8550         * tests/unicase/test-u32-is-uppercase.c: New file.
8551
8552         Tests for module 'unicase/u16-is-uppercase'.
8553         * modules/unicase/u16-is-uppercase-tests: New file.
8554         * tests/unicase/test-u16-is-uppercase.c: New file.
8555
8556         Tests for module 'unicase/u8-is-uppercase'.
8557         * modules/unicase/u8-is-uppercase-tests: New file.
8558         * tests/unicase/test-u8-is-uppercase.c: New file.
8559         * tests/unicase/test-is-uppercase.h: New file.
8560
8561         New module 'unicase/u32-is-uppercase'.
8562         * lib/unicase/u32-is-uppercase.c: New file.
8563         * modules/unicase/u32-is-uppercase: New file.
8564
8565         New module 'unicase/u16-is-uppercase'.
8566         * lib/unicase/u16-is-uppercase.c: New file.
8567         * modules/unicase/u16-is-uppercase: New file.
8568
8569         New module 'unicase/u8-is-uppercase'.
8570         * lib/unicase/u8-is-uppercase.c: New file.
8571         * modules/unicase/u8-is-uppercase: New file.
8572
8573         New module 'unicase/u32-is-invariant'.
8574         * lib/unicase/u32-is-invariant.c: New file.
8575         * modules/unicase/u32-is-invariant: New file.
8576
8577         New module 'unicase/u16-is-invariant'.
8578         * lib/unicase/u16-is-invariant.c: New file.
8579         * modules/unicase/u16-is-invariant: New file.
8580
8581         New module 'unicase/u8-is-invariant'.
8582         * lib/unicase/u8-is-invariant.c: New file.
8583         * lib/unicase/invariant.h: New file.
8584         * lib/unicase/u-is-invariant.h: New file.
8585         * modules/unicase/u8-is-invariant: New file.
8586
8587         Tests for module 'unicase/u32-casecoll'.
8588         * modules/unicase/u32-casecoll-tests: New file.
8589         * tests/unicase/test-u32-casecoll.c: New file.
8590
8591         Tests for module 'unicase/u16-casecoll'.
8592         * modules/unicase/u16-casecoll-tests: New file.
8593         * tests/unicase/test-u16-casecoll.c: New file.
8594
8595         Tests for module 'unicase/u8-casecoll'.
8596         * modules/unicase/u8-casecoll-tests: New file.
8597         * tests/unicase/test-u8-casecoll.c: New file.
8598
8599         New module 'unicase/u32-casecoll'.
8600         * lib/unicase/u32-casecoll.c: New file.
8601         * modules/unicase/u32-casecoll: New file.
8602
8603         New module 'unicase/u16-casecoll'.
8604         * lib/unicase/u16-casecoll.c: New file.
8605         * modules/unicase/u16-casecoll: New file.
8606
8607         New module 'unicase/u8-casecoll'.
8608         * lib/unicase/u8-casecoll.c: New file.
8609         * lib/unicase/u-casecoll.h: New file.
8610         * modules/unicase/u8-casecoll: New file.
8611
8612         New module 'unicase/u32-casexfrm'.
8613         * lib/unicase/u32-casexfrm.c: New file.
8614         * modules/unicase/u32-casexfrm: New file.
8615
8616         New module 'unicase/u16-casexfrm'.
8617         * lib/unicase/u16-casexfrm.c: New file.
8618         * modules/unicase/u16-casexfrm: New file.
8619
8620         New module 'unicase/u8-casexfrm'.
8621         * lib/unicase/u8-casexfrm.c: New file.
8622         * lib/unicase/u-casexfrm.h: New file.
8623         * modules/unicase/u8-casexfrm: New file.
8624
8625         Tests for module 'unicase/u32-casecmp'.
8626         * modules/unicase/u32-casecmp-tests: New file.
8627         * tests/unicase/test-u32-casecmp.c: New file.
8628
8629         Tests for module 'unicase/u16-casecmp'.
8630         * modules/unicase/u16-casecmp-tests: New file.
8631         * tests/unicase/test-u16-casecmp.c: New file.
8632
8633         Tests for module 'unicase/u8-casecmp'.
8634         * modules/unicase/u8-casecmp-tests: New file.
8635         * tests/unicase/test-u8-casecmp.c: New file.
8636         * tests/unicase/test-casecmp.h: New file.
8637
8638         New module 'unicase/u32-casecmp'.
8639         * lib/unicase/u32-casecmp.c: New file.
8640         * modules/unicase/u32-casecmp: New file.
8641
8642         New module 'unicase/u16-casecmp'.
8643         * lib/unicase/u16-casecmp.c: New file.
8644         * modules/unicase/u16-casecmp: New file.
8645
8646         New module 'unicase/u8-casecmp'.
8647         * lib/unicase/u8-casecmp.c: New file.
8648         * lib/unicase/u-casecmp.h: New file.
8649         * modules/unicase/u8-casecmp: New file.
8650
8651         Tests for module 'unicase/u32-casefold'.
8652         * modules/unicase/u32-casefold-tests: New file.
8653         * tests/unicase/test-u32-casefold.c: New file.
8654
8655         Tests for module 'unicase/u16-casefold'.
8656         * modules/unicase/u16-casefold-tests: New file.
8657         * tests/unicase/test-u16-casefold.c: New file.
8658
8659         Tests for module 'unicase/u8-casefold'.
8660         * modules/unicase/u8-casefold-tests: New file.
8661         * tests/unicase/test-u8-casefold.c: New file.
8662
8663         New module 'unicase/u32-casefold'.
8664         * lib/unicase/u32-casefold.c: New file.
8665         * modules/unicase/u32-casefold: New file.
8666
8667         New module 'unicase/u16-casefold'.
8668         * lib/unicase/u16-casefold.c: New file.
8669         * modules/unicase/u16-casefold: New file.
8670
8671         New module 'unicase/u8-casefold'.
8672         * lib/unicase/u8-casefold.c: New file.
8673         * lib/unicase/u-casefold.h: New file.
8674         * modules/unicase/u8-casefold: New file.
8675
8676         New module 'unicase/tocasefold'.
8677         * lib/unicase/casefold.h: New file.
8678         * lib/unicase/tocasefold.c: New file.
8679         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
8680         * modules/unicase/tocasefold: New file.
8681
8682         Tests for module 'unicase/u32-totitle'.
8683         * modules/unicase/u32-totitle-tests: New file.
8684         * tests/unicase/test-u32-totitle.c: New file.
8685
8686         Tests for module 'unicase/u16-totitle'.
8687         * modules/unicase/u16-totitle-tests: New file.
8688         * tests/unicase/test-u16-totitle.c: New file.
8689
8690         Tests for module 'unicase/u8-totitle'.
8691         * modules/unicase/u8-totitle-tests: New file.
8692         * tests/unicase/test-u8-totitle.c: New file.
8693
8694         New module 'unicase/u32-totitle'.
8695         * lib/unicase/u32-totitle.c: New file.
8696         * modules/unicase/u32-totitle: New file.
8697
8698         New module 'unicase/u16-totitle'.
8699         * lib/unicase/u16-totitle.c: New file.
8700         * modules/unicase/u16-totitle: New file.
8701
8702         New module 'unicase/u8-totitle'.
8703         * lib/unicase/u8-totitle.c: New file.
8704         * lib/unicase/u-totitle.h: New file.
8705         * modules/unicase/u8-totitle: New file.
8706
8707         Tests for module 'unicase/u32-tolower'.
8708         * modules/unicase/u32-tolower-tests: New file.
8709         * tests/unicase/test-u32-tolower.c: New file.
8710
8711         Tests for module 'unicase/u16-tolower'.
8712         * modules/unicase/u16-tolower-tests: New file.
8713         * tests/unicase/test-u16-tolower.c: New file.
8714
8715         Tests for module 'unicase/u8-tolower'.
8716         * modules/unicase/u8-tolower-tests: New file.
8717         * tests/unicase/test-u8-tolower.c: New file.
8718
8719         New module 'unicase/u32-tolower'.
8720         * lib/unicase/u32-tolower.c: New file.
8721         * modules/unicase/u32-tolower: New file.
8722
8723         New module 'unicase/u16-tolower'.
8724         * lib/unicase/u16-tolower.c: New file.
8725         * modules/unicase/u16-tolower: New file.
8726
8727         New module 'unicase/u8-tolower'.
8728         * lib/unicase/u8-tolower.c: New file.
8729         * modules/unicase/u8-tolower: New file.
8730
8731         Tests for module 'unicase/u32-toupper'.
8732         * modules/unicase/u32-toupper-tests: New file.
8733         * tests/unicase/test-u32-toupper.c: New file.
8734
8735         Tests for module 'unicase/u16-toupper'.
8736         * modules/unicase/u16-toupper-tests: New file.
8737         * tests/unicase/test-u16-toupper.c: New file.
8738
8739         Tests for module 'unicase/u8-toupper'.
8740         * modules/unicase/u8-toupper-tests: New file.
8741         * tests/unicase/test-u8-toupper.c: New file.
8742
8743         New module 'unicase/u32-toupper'.
8744         * lib/unicase/u32-toupper.c: New file.
8745         * modules/unicase/u32-toupper: New file.
8746
8747         New module 'unicase/u16-toupper'.
8748         * lib/unicase/u16-toupper.c: New file.
8749         * modules/unicase/u16-toupper: New file.
8750
8751         New module 'unicase/u8-toupper'.
8752         * lib/unicase/u8-toupper.c: New file.
8753         * modules/unicase/u8-toupper: New file.
8754
8755         New module 'unicase/u32-casemap'.
8756         * lib/unicase/u32-casemap.c: New file.
8757         * modules/unicase/u32-casemap: New file.
8758
8759         New module 'unicase/u16-casemap'.
8760         * lib/unicase/u16-casemap.c: New file.
8761         * modules/unicase/u16-casemap: New file.
8762
8763         New module 'unicase/u8-casemap'.
8764         * lib/unicase/unicasemap.h: New file.
8765         * lib/unicase/u8-casemap.c: New file.
8766         * lib/unicase/u-casemap.h: New file.
8767         * modules/unicase/u8-casemap: New file.
8768
8769         New module 'unicase/special-casing'.
8770         * lib/unicase/special-casing.h: New file.
8771         * lib/unicase/special-casing.c: New file.
8772         * lib/unicase/special-casing-table.gperf: New file, generated by
8773         gen-uni-tables.c.
8774         * modules/unicase/special-casing: New file.
8775
8776         Tests for module 'unicase/locale-language'.
8777         * modules/unicase/locale-language-tests: New file.
8778         * tests/unicase/test-locale-language.sh: New file.
8779         * tests/unicase/test-locale-language.c: New file.
8780
8781         New module 'unicase/locale-language'.
8782         * lib/unicase/locale-language.c: New file.
8783         * lib/unicase/locale-languages.gperf: New file.
8784         * modules/unicase/locale-language: New file.
8785
8786         Generate more tables for case conversion and case folding.
8787         * lib/gen-uni-tables.c (SCC_*): New enum items.
8788         (struct special_casing_rule): New type.
8789         (casing_rules, num_casing_rules, allocated_casing_rules): New
8790         variables.
8791         (add_casing_rule, fill_casing_rules): New functions.
8792         (struct casefold_rule): New type.
8793         (casefolding_rules, num_casefolding_rules,
8794         allocated_casefolding_rules): New variables.
8795         (fill_casefolding_rules): New function.
8796         (unicode_casefold): New variable.
8797         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
8798         sort_casing_rules, output_casing_rules): New functions.
8799         (main): Accept to more arguments: SpecialCasing.txt and
8800         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
8801         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
8802         Output mapping for casefolding.
8803
8804         * lib/unicase.h: Include stdbool.h, uninorm.h.
8805         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
8806         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
8807         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
8808         arguments.
8809         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
8810         resultp arguments.
8811         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
8812         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
8813         resultp arguments.
8814         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
8815         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
8816         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
8817         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
8818         declarations.
8819         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
8820
8821 2009-03-08  Bruno Haible  <bruno@clisp.org>
8822
8823         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
8824         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
8825         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
8826         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
8827
8828 2009-03-07  Bruno Haible  <bruno@clisp.org>
8829
8830         Adjust u*_normcmp, u*_normcoll API.
8831         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
8832         u16_normcoll, u32_normcoll): Change failure conventions.
8833         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
8834         errno and return -1.
8835         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
8836
8837 2009-03-07  Bruno Haible  <bruno@clisp.org>
8838
8839         Tests for module 'uninorm/u32-normcoll'.
8840         * modules/uninorm/u32-normcoll-tests: New file.
8841         * tests/uninorm/test-u32-normcoll.c: New file.
8842
8843         Tests for module 'uninorm/u16-normcoll'.
8844         * modules/uninorm/u16-normcoll-tests: New file.
8845         * tests/uninorm/test-u16-normcoll.c: New file.
8846
8847         Tests for module 'uninorm/u8-normcoll'.
8848         * modules/uninorm/u8-normcoll-tests: New file.
8849         * tests/uninorm/test-u8-normcoll.c: New file.
8850
8851 2009-03-07  Bruno Haible  <bruno@clisp.org>
8852
8853         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
8854         tests/uninorm/test-u32-normcmp.c.
8855         * tests/uninorm/test-u32-normcmp.c: Include it.
8856         (test_nonascii): New function, extracted from main. Add some more
8857         tests.
8858         (main): Invoke test_ascii and test_nonascii.
8859         * modules/uninorm/u32-normcmp-tests (Files): Add
8860         tests/uninorm/test-u32-normcmp.h.
8861         (Depends-on): Remove uninorm/u32-normcmp.
8862
8863         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
8864         tests/uninorm/test-u16-normcmp.c.
8865         * tests/uninorm/test-u16-normcmp.c: Include it.
8866         (test_nonascii): New function, extracted from main. Add some more
8867         tests.
8868         (main): Invoke test_ascii and test_nonascii.
8869         * modules/uninorm/u16-normcmp-tests (Files): Add
8870         tests/uninorm/test-u16-normcmp.h.
8871         (Depends-on): Remove uninorm/u16-normcmp.
8872
8873         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
8874         tests/uninorm/test-u8-normcmp.c.
8875         * tests/uninorm/test-u8-normcmp.c: Include it.
8876         (test_nonascii): New function, extracted from main. Add some more
8877         tests.
8878         (main): Invoke test_ascii and test_nonascii.
8879         * modules/uninorm/u8-normcmp-tests (Files): Add
8880         tests/uninorm/test-u8-normcmp.h.
8881         (Depends-on): Remove uninorm/u8-normcmp.
8882
8883 2009-03-07  Bruno Haible  <bruno@clisp.org>
8884
8885         New module 'uninorm/u32-normcoll'.
8886         * lib/uninorm/u32-normcoll.c: New file.
8887         * modules/uninorm/u32-normcoll: New file.
8888
8889         New module 'uninorm/u16-normcoll'.
8890         * lib/uninorm/u16-normcoll.c: New file.
8891         * modules/uninorm/u16-normcoll: New file.
8892
8893         New module 'uninorm/u8-normcoll'.
8894         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
8895         declarations.
8896         * lib/uninorm/u8-normcoll.c: New file.
8897         * lib/uninorm/u-normcoll.h: New file.
8898         * modules/uninorm/u8-normcoll: New file.
8899
8900         New module 'uninorm/u32-normxfrm'.
8901         * lib/uninorm/u32-normxfrm.c: New file.
8902         * modules/uninorm/u32-normxfrm: New file.
8903
8904         New module 'uninorm/u16-normxfrm'.
8905         * lib/uninorm/u16-normxfrm.c: New file.
8906         * modules/uninorm/u16-normxfrm: New file.
8907
8908         New module 'uninorm/u8-normxfrm'.
8909         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
8910         declarations.
8911         * lib/uninorm/u8-normxfrm.c: New file.
8912         * lib/uninorm/u-normxfrm.h: New file.
8913         * modules/uninorm/u8-normxfrm: New file.
8914
8915 2009-03-07  Bruno Haible  <bruno@clisp.org>
8916
8917         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
8918         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
8919         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
8920
8921 2009-03-07  Bruno Haible  <bruno@clisp.org>
8922
8923         New module 'memxfrm'.
8924         * lib/memxfrm.h: New file.
8925         * lib/memxfrm.c: New file.
8926         * modules/memxfrm: New file.
8927
8928 2009-03-07  Bruno Haible  <bruno@clisp.org>
8929
8930         New module 'memcmp2'.
8931         * lib/memcmp2.h: New file.
8932         * lib/memcmp2.c: New file.
8933         * modules/memcmp2: New file.
8934
8935 2009-03-07  Bruno Haible  <bruno@clisp.org>
8936
8937         Tests for module 'uninorm/decomposing-form'.
8938         * modules/uninorm/decomposing-form-tests: New file.
8939         * tests/uninorm/test-decomposing-form.c: New file.
8940
8941         New module 'uninorm/decomposing-form'.
8942         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
8943         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
8944         Add 'decomposing_variant' field.
8945         * lib/uninorm/decomposing-form.c: New file.
8946         * lib/uninorm/nfc.c (uninorm_nfc): Update.
8947         * lib/uninorm/nfd.c (uninorm_nfd): Update.
8948         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
8949         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
8950         * modules/uninorm/decomposing-form: New file.
8951         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
8952         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
8953
8954 2009-03-07  Bruno Haible  <bruno@clisp.org>
8955
8956         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
8957         strings.
8958
8959 2009-03-06  Bruno Haible  <bruno@clisp.org>
8960
8961         Tests for module 'uninorm/u32-normcmp'.
8962         * tests/uninorm/test-u32-normcmp.c: New file.
8963         * modules/uninorm/u32-normcmp-tests: New file.
8964
8965         Tests for module 'uninorm/u16-normcmp'.
8966         * tests/uninorm/test-u16-normcmp.c: New file.
8967         * modules/uninorm/u16-normcmp-tests: New file.
8968
8969         Tests for module 'uninorm/u8-normcmp'.
8970         * tests/uninorm/test-u8-normcmp.c: New file.
8971         * modules/uninorm/u8-normcmp-tests: New file.
8972
8973         New module 'uninorm/u32-normcmp'.
8974         * lib/uninorm/u32-normcmp.c: New file.
8975         * modules/uninorm/u32-normcmp: New file.
8976
8977         New module 'uninorm/u16-normcmp'.
8978         * lib/uninorm/u16-normcmp.c: New file.
8979         * modules/uninorm/u16-normcmp: New file.
8980
8981         New module 'uninorm/u8-normcmp'.
8982         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
8983         declarations.
8984         * lib/uninorm/u8-normcmp.c: New file.
8985         * lib/uninorm/u-normcmp.h: New file.
8986         * modules/uninorm/u8-normcmp: New file.
8987
8988 2009-03-06  Bruno Haible  <bruno@clisp.org>
8989
8990         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
8991         Reported by Eric Blake.
8992
8993 2009-03-06  Eric Blake  <ebb9@byu.net>
8994             Bruno Haible  <bruno@clisp.org>
8995
8996         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
8997         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
8998         condition.
8999         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
9000         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
9001         condition.
9002         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
9003
9004 2009-03-06  Eric Blake  <ebb9@byu.net>
9005
9006         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
9007         to avoid compiler warnings.
9008         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
9009
9010 2009-03-05  Bruno Haible  <bruno@clisp.org>
9011
9012         * tests/test-ftell.c (main): Disable test beyond end of file on
9013         FreeMiNT.
9014         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
9015
9016 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
9017
9018         * lib/filevercmp.c: Move hidden files up in ordering.
9019         * tests/test-filevercmp.c: Add tests for hidden files.
9020
9021 2009-03-04  Bruno Haible  <bruno@clisp.org>
9022
9023         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
9024         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
9025         AM_CFLAGS.
9026         Reported by Simon Josefsson.
9027
9028 2009-03-03  Bruno Haible  <bruno@clisp.org>
9029
9030         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
9031         Reported by Simon Josefsson.
9032
9033         * doc/ld-version-script.texi: Update node reference.
9034
9035 2009-03-03  Bruno Haible  <bruno@clisp.org>
9036
9037         * modules/visibility (License): Change to 'unlimited'.
9038         Suggested by Simon Josefsson.
9039
9040 2009-03-03  Jim Meyering  <meyering@redhat.com>
9041
9042         unlinkdir: cannot_unlink_dir may modify process state
9043         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
9044         it's neither thread-safe nor appropriate for use in a library.
9045
9046 2009-03-03  Eric Blake  <ebb9@byu.net>
9047
9048         test-closein: silence test under Darwin
9049         * tests/test-closein.sh: Ignore stderr from cat, since we don't
9050         care if it dies from EPIPE or EBADF.
9051
9052 2009-03-03  Bruno Haible  <bruno@clisp.org>
9053
9054         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
9055         earlier.
9056         * doc/visibility.texi: Fix @node and @section.
9057
9058 2009-03-03  Simon Josefsson  <simon@josefsson.org>
9059
9060         * doc/gnulib.texi: Link to sections for ld version script and
9061         visibility.
9062         * doc/visibility.texi: Add @node and @section.
9063         * modules/ld-version-script: New module.
9064         * m4/ld-version-script.m4: New file.
9065         * doc/ld-version-script.texi: New file.
9066
9067 2009-03-02  David Lutterkort  <lutter@redhat.com>
9068
9069         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
9070         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9071
9072 2009-03-02  Bruno Haible  <bruno@clisp.org>
9073
9074         * doc/visibility.texi: Mention libtool's -export-symbols option.
9075
9076 2009-03-02  Jim Meyering  <meyering@redhat.com>
9077
9078         announce-gen: new option: --no-print-checksums
9079         * build-aux/announce-gen (usage): Describe it.
9080         (print_checksums): Print a newline here, not in the [*] footnote.
9081         (main): Honor it.
9082
9083 2009-03-01  Bruno Haible  <bruno@clisp.org>
9084
9085         Use socklen_t in the native Windows replacements prototypes.
9086         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
9087         instead of 'int'.
9088         * lib/getsockopt.c (rpl_getsockopt): Likewise.
9089         * lib/setsockopt.c (rpl_setsockopt): Likewise.
9090         * modules/getsockopt (Depends-on): Add socklen.
9091         * modules/setsockopt (Depends-on): Add socklen.
9092
9093 2009-03-01  Bruno Haible  <bruno@clisp.org>
9094
9095         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
9096         least 4.2.
9097
9098 2009-03-01  Eric Blake  <ebb9@byu.net>
9099             Bruno Haible  <bruno@clisp.org>
9100
9101         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
9102         error messages.
9103         * lib/wait-process.c (wait_subprocess): Omit error message about
9104         deadly signal sent to the child of termsigp != NULL.
9105
9106 2009-03-01  Eric Blake  <ebb9@byu.net>
9107
9108         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
9109
9110 2009-03-01  Bruno Haible  <bruno@clisp.org>
9111
9112         Avoid a gcc warning.
9113         * tests/test-sched.c (b): Make global.
9114         Reported by Eric Blake.
9115
9116 2009-01-19  Martin Lambers  <marlam@marlam.de>
9117
9118         Provide POSIX semantics for socket timeout options on W32.
9119         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
9120         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
9121         * modules/setsockopt: Depend on sys_time module for struct timeval.
9122         * modules/getsockopt: Depend on sys_time module for struct timeval.
9123
9124 2009-03-01  Simon Josefsson  <simon@josefsson.org>
9125
9126         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
9127         __USE_GNU, for consistency with netdb.in.h.
9128         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9129
9130 2009-03-01  Bruno Haible  <bruno@clisp.org>
9131
9132         More support for FreeMiNT.
9133         * lib/fseeko.c (rpl_fseeko): Complete last commit.
9134         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9135
9136 2009-03-01  Bruno Haible  <bruno@clisp.org>
9137
9138         More support for FreeMiNT.
9139         * lib/fpurge.c (fpurge): Correct last commit.
9140         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9141
9142 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9143
9144         Fix unportable awk script in vc-list-files.
9145         * build-aux/vc-list-files: In the replacement awk script, use
9146         substr with a second argument of 1, not zero.
9147         Report by Simon Josefsson.
9148
9149 2009-02-28  Bruno Haible  <bruno@clisp.org>
9150
9151         More support for FreeMiNT.
9152         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
9153         to FreeMiNT today.
9154         * lib/fwriting.c (fwriting): Likewise.
9155         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
9156
9157 2009-02-28  Bruno Haible  <bruno@clisp.org>
9158
9159         * tests/test-freadseek.c (main): Disable test beyond end of file on
9160         FreeMiNT.
9161         * tests/test-ftello.c (main): Likewise.
9162         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
9163
9164 2009-02-28  Bruno Haible  <bruno@clisp.org>
9165
9166         Add tentative support for FreeMiNT.
9167         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
9168         * lib/fpurge.c (fpurge): Likewise.
9169         * lib/freadable.c (freadable): Likewise.
9170         * lib/freading.c (freading): Likewise.
9171         * lib/freadptr.c (freadptr): Likewise.
9172         * lib/freadseek.c (freadptrinc): Likewise.
9173         * lib/fseeko.c (rpl_fseeko): Likewise.
9174         * lib/fseterr.c (fseterr): Likewise.
9175         * lib/fwritable.c (fwritable): Likewise.
9176         * lib/fwriting.c (fwriting): Likewise.
9177         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
9178         Hourihane.
9179         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9180
9181 2009-02-28  Bruno Haible  <bruno@clisp.org>
9182
9183         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
9184         SIGCHLD.
9185         Reported by Jim Meyering.
9186
9187 2009-02-28  Bruno Haible  <bruno@clisp.org>
9188
9189         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
9190         Mention the results of these tests on various platforms.
9191         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
9192         order.
9193         * doc/posix-functions/printf.texi: Likewise.
9194         * doc/posix-functions/snprintf.texi: Likewise.
9195         * doc/posix-functions/sprintf.texi: Likewise.
9196         * doc/posix-functions/vfprintf.texi: Likewise.
9197         * doc/posix-functions/vprintf.texi: Likewise.
9198         * doc/posix-functions/vsnprintf.texi: Likewise.
9199         * doc/posix-functions/vsprintf.texi: Likewise.
9200         * doc/glibc-functions/obstack_printf.texi: Likewise.
9201         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
9202
9203 2009-02-28  Bruno Haible  <bruno@clisp.org>
9204
9205         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
9206         Reported by Loïc Minier <lool@dooz.org>.
9207
9208 2009-02-27  Bruno Haible  <bruno@clisp.org>
9209
9210         * gnulib-tool (func_import): Make the sed expression used to create the
9211         sed script for updating the .gitignore file POSIX compliant.
9212         Reported by Eric Blake.
9213
9214 2009-02-27  Bruno Haible  <bruno@clisp.org>
9215
9216         * gnulib-tool (sed): Don't alias as "sed --posix".
9217         Reported by Eric Blake.
9218
9219 2009-02-27  Bruno Haible  <bruno@clisp.org>
9220
9221         Avoid test link errors.
9222         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
9223         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
9224         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
9225         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
9226         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9227
9228 2009-02-27  Bruno Haible  <bruno@clisp.org>
9229
9230         Avoid spurious "(cached)" in configure output.
9231         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
9232         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
9233         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
9234         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
9235         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
9236         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
9237         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
9238         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
9239         Reported by Eric Blake.
9240
9241 2009-02-27  Eric Blake  <ebb9@byu.net>
9242
9243         printf: fix regression in previous patch
9244         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
9245
9246 2009-02-27  Bruno Haible  <bruno@clisp.org>
9247
9248         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
9249         value.
9250         * lib/stdint.in.h: Likewise.
9251         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
9252
9253 2009-02-27  Eric Blake  <ebb9@byu.net>
9254
9255         doc: mention more functions added in cygwin 1.7.0
9256         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
9257         addition.
9258         * doc/posix-functions/open_wmemstream.texi: Likewise.
9259         * doc/posix-functions/wcsnlen.texi: Likewise.
9260         * doc/posix-functions/wcsnrtombs.texi: Likewise.
9261         * doc/posix-functions/wcstod.texi: Likewise.
9262         * doc/posix-functions/wcstof.texi: Likewise.
9263         * doc/posix-functions/wcstoimax.texi: Likewise.
9264         * doc/posix-functions/wcstok.texi: Likewise.
9265         * doc/posix-functions/wcstoumax.texi: Likewise.
9266
9267         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
9268         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
9269         * doc/posix-functions/fprintf.texi: Update.
9270         * doc/posix-functions/printf.texi: Update.
9271         * doc/posix-functions/snprintf.texi: Update.
9272         * doc/posix-functions/sprintf.texi: Update.
9273         * doc/posix-functions/vfprintf.texi: Update.
9274         * doc/posix-functions/vprintf.texi: Update.
9275         * doc/posix-functions/vsnprintf.texi: Update.
9276         * doc/posix-functions/vsprintf.texi: Update.
9277         * doc/glibc-functions/obstack_printf.texi: Update.
9278         * doc/glibc-functions/obstack_vprintf.texi: Update.
9279
9280 2009-02-26  Eric Blake  <ebb9@byu.net>
9281
9282         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
9283         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
9284         compilation bug by using runtime conversion.
9285         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
9286         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
9287         * modules/ceill-tests (Files): Use nan.h.
9288         * modules/floorl-tests (Files): Likewise.
9289         * modules/frexpl-tests (Files): Likewise.
9290         * modules/isnanl-tests (Files): Likewise.
9291         * modules/ldexpl-tests (Files): Likewise.
9292         * modules/roundl-tests (Files): Likewise.
9293         * modules/truncl-tests (Files): Likewise.
9294         * tests/test-ceill.c (main): Use a working NaN.
9295         * tests/test-floorl.c (main): Likewise.
9296         * tests/test-frexpl.c (main): Likewise.
9297         * tests/test-isnan.c (test_long_double): Likewise.
9298         * tests/test-isnanl.h (main): Likewise.
9299         * tests/test-ldexpl.h (main): Likewise.
9300         * tests/test-roundl.h (main): Likewise.
9301         * tests/test-truncl.h (main): Likewise.
9302         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
9303
9304 2009-02-26  Eric Blake  <ebb9@byu.net>
9305             Bruno Haible  <bruno@clisp.org>
9306
9307         Work around a *printf bug with %ls on Solaris.
9308         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
9309         precision is specified, sprintf stops converting the wide string
9310         argument when the number of bytes that have been produced by this
9311         conversion equals or exceeds the precision.
9312         * doc/posix-functions/fprintf.texi: Update.
9313         * doc/posix-functions/printf.texi: Update.
9314         * doc/posix-functions/snprintf.texi: Update.
9315         * doc/posix-functions/sprintf.texi: Update.
9316         * doc/posix-functions/vfprintf.texi: Update.
9317         * doc/posix-functions/vprintf.texi: Update.
9318         * doc/posix-functions/vsnprintf.texi: Update.
9319         * doc/posix-functions/vsprintf.texi: Update.
9320         * doc/glibc-functions/obstack_printf.texi: Update.
9321         * doc/glibc-functions/obstack_vprintf.texi: Update.
9322
9323 2009-02-26  Eric Blake  <ebb9@byu.net>
9324
9325         stdlib: favor compiler check of random.h
9326         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
9327         to avoid an ObjC random.h installed by Swarm.
9328
9329 2009-02-26  Bruno Haible  <bruno@clisp.org>
9330
9331         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
9332         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
9333         Reported by Gary V. Vaughan <gary@gnu.org>.
9334
9335 2009-02-26  Bruno Haible  <bruno@clisp.org>
9336
9337         Fix *printf behaviour regarding the %ls directive.
9338         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
9339         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
9340         NEED_PRINTF_DIRECTIVE_LS.
9341         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
9342         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
9343         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9344         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
9345         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
9346         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
9347         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
9348         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9349         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9350         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9351         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9352         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
9353         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9354         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9355         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9356         * doc/posix-functions/fprintf.texi: Update.
9357         * doc/posix-functions/printf.texi: Update.
9358         * doc/posix-functions/snprintf.texi: Update.
9359         * doc/posix-functions/sprintf.texi: Update.
9360         * doc/posix-functions/vfprintf.texi: Update.
9361         * doc/posix-functions/vprintf.texi: Update.
9362         * doc/posix-functions/vsnprintf.texi: Update.
9363         * doc/posix-functions/vsprintf.texi: Update.
9364         * doc/glibc-functions/obstack_printf.texi: Update.
9365         * doc/glibc-functions/obstack_vprintf.texi: Update.
9366         Reported by Eric Blake.
9367
9368 2009-02-25  Bruno Haible  <bruno@clisp.org>
9369
9370         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
9371         with known value.
9372         Reported by Gary V. Vaughan <gary@gnu.org>.
9373
9374 2009-02-25  Bruno Haible  <bruno@clisp.org>
9375
9376         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
9377         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
9378         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
9379         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
9380         Reported by Gary V. Vaughan <gary@gnu.org>.
9381
9382 2009-02-25  Bruno Haible  <bruno@clisp.org>
9383
9384         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
9385         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
9386         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
9387         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
9388         Reported by Gary V. Vaughan <gary@gnu.org>.
9389
9390 2009-02-25  Eric Blake  <ebb9@byu.net>
9391
9392         tests: skip fseek/ftell tests if ungetc is broken
9393         * m4/ungetc.m4: New file.
9394         * modules/fseek-tests: Split test, so ungetc dependency is
9395         separate from rest of test.
9396         * modules/fseeko-tests: Likewise.
9397         * modules/ftell-tests: Likewise.
9398         * modules/ftello-tests: Likewise.
9399         * tests/test-fseek.c (main): Isolate ungetc dependency.
9400         * tests/test-fseeko.c (main): Likewise.
9401         * tests/test-ftell.c (main): Likewise.
9402         * tests/test-ftello.c (main): Likewise.
9403         * tests/test-fseek2.sh: New file.
9404         * tests/test-fseeko2.sh: Likewise.
9405         * tests/test-ftell2.sh: Likewise.
9406         * tests/test-ftello2.sh: Likewise.
9407
9408 2009-02-25  Ondřej Vašík  <ovasik@redhat.com>
9409
9410         test-getaddrinfo: fix usage of skip return code 77
9411         * tests/test-gettaddrinfo.c: Return skip code 77 only
9412         for first occurance of skip (4x77 is not 77)
9413
9414 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
9415
9416         strtod: avoid C99 decl-after-statement
9417         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
9418
9419 2009-02-24  Eric Blake  <ebb9@byu.net>
9420
9421         strtod: detect HP-UX 11.31 bug
9422         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
9423         Reported by Gary V. Vaughan.
9424
9425 2009-02-23  Bruno Haible  <bruno@clisp.org>
9426
9427         Fix invalid read past end of memory block.
9428         * lib/vasnprintf.c (DCHAR_SET): Define.
9429         (local_wcslen): Define only when needed.
9430         (local_strnlen, local_wcsnlen): New functions.
9431         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
9432         directives that involve a conversion ourselves.
9433         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
9434         wcsnlen, mbrtowc, wcrtomb.
9435         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
9436         * tests/test-vasprintf-posix.c (test_function): Likewise.
9437         * tests/test-snprintf-posix.h (test_function): Likewise.
9438         * tests/test-sprintf-posix.h (test_function): Likewise.
9439         Reported by Ben Pfaff <blp@cs.stanford.edu>.
9440
9441 2009-02-22  Bruno Haible  <bruno@clisp.org>
9442
9443         Implement new clarified decomposition of Hangul syllables.
9444         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
9445         of type LTV, return only a pairwise decomposition.
9446         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
9447         Likewise.
9448         * tests/uninorm/test-decomposition.c (main): Updated expected result.
9449         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
9450         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
9451
9452 2009-02-22  Bruno Haible  <bruno@clisp.org>
9453
9454         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
9455         zero-length results and shrink excess allocated memory.
9456         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
9457         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
9458         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
9459         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
9460         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
9461         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
9462         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
9463         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
9464         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
9465         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
9466         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
9467         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
9468
9469 2009-02-21  Bruno Haible  <bruno@clisp.org>
9470
9471         * doc/gnulib.texi: Include safe-alloc.texi earlier.
9472         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
9473         spaces after a period. Put a space between a macro name and its
9474         argument list. Trivial rewordings.
9475         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
9476         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
9477         (main): Return 0 explicitly.
9478
9479 2009-02-21  Bruno Haible  <bruno@clisp.org>
9480
9481         Tests for module 'uninorm/filter'.
9482         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
9483         * modules/uninorm/filter-tests: New file.
9484
9485         New module 'uninorm/filter'.
9486         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
9487         uninorm_filter_flush, uninorm_filter_free): New declarations.
9488         * lib/uninorm/uninorm-filter.c: New file.
9489         * modules/uninorm/filter: New file.
9490
9491 2009-02-21  Bruno Haible  <bruno@clisp.org>
9492
9493         Tests for module 'uninorm/nfkc'.
9494         * tests/uninorm/test-nfkc.c: New file.
9495         * tests/uninorm/test-u8-nfkc.c: New file.
9496         * tests/uninorm/test-u16-nfkc.c: New file.
9497         * tests/uninorm/test-u32-nfkc.c: New file.
9498         * tests/uninorm/test-u32-nfkc-big.sh: New file.
9499         * tests/uninorm/test-u32-nfkc-big.c: New file.
9500         * modules/uninorm/nfkc-tests: New file.
9501
9502         New module 'uninorm/nfkc'.
9503         * lib/uninorm/nfkc.c: New file.
9504         * modules/uninorm/nfkc: New file.
9505
9506         Tests for module 'uninorm/nfkd'.
9507         * tests/uninorm/test-nfkd.c: New file.
9508         * tests/uninorm/test-u8-nfkd.c: New file.
9509         * tests/uninorm/test-u16-nfkd.c: New file.
9510         * tests/uninorm/test-u32-nfkd.c: New file.
9511         * tests/uninorm/test-u32-nfkd-big.sh: New file.
9512         * tests/uninorm/test-u32-nfkd-big.c: New file.
9513         * modules/uninorm/nfkd-tests: New file.
9514
9515         New module 'uninorm/nfkd'.
9516         * lib/uninorm/nfkd.c: New file.
9517         * modules/uninorm/nfkd: New file.
9518
9519         Tests for module 'uninorm/nfc'.
9520         * tests/uninorm/test-nfc.c: New file.
9521         * tests/uninorm/test-u8-nfc.c: New file.
9522         * tests/uninorm/test-u16-nfc.c: New file.
9523         * tests/uninorm/test-u32-nfc.c: New file.
9524         * tests/uninorm/test-u32-nfc-big.sh: New file.
9525         * tests/uninorm/test-u32-nfc-big.c: New file.
9526         * modules/uninorm/nfc-tests: New file.
9527
9528         New module 'uninorm/nfc'.
9529         * lib/uninorm/nfc.c: New file.
9530         * modules/uninorm/nfc: New file.
9531
9532         Tests for module 'uninorm/nfd'.
9533         * tests/uninorm/test-nfd.c: New file.
9534         * tests/uninorm/test-u8-nfd.c: New file.
9535         * tests/uninorm/test-u16-nfd.c: New file.
9536         * tests/uninorm/test-u32-nfd.c: New file.
9537         * tests/uninorm/test-u32-nfd-big.sh: New file.
9538         * tests/uninorm/test-u32-nfd-big.c: New file.
9539         * tests/uninorm/test-u32-normalize-big.h: New file.
9540         * tests/uninorm/test-u32-normalize-big.c: New file.
9541         * tests/uninorm/NormalizationTest.txt: New file, created from
9542         Unicode 5.1.0 NormalizationTest.txt.
9543         * modules/uninorm/nfd-tests: New file.
9544
9545         New module 'uninorm/nfd'.
9546         * lib/uninorm/nfd.c: New file.
9547         * modules/uninorm/nfd: New file.
9548
9549         New module 'uninorm/u32-normalize'.
9550         * lib/uninorm/u32-normalize.c: New file.
9551         * modules/uninorm/u32-normalize: New file.
9552
9553         New module 'uninorm/u16-normalize'.
9554         * lib/uninorm/u16-normalize.c: New file.
9555         * modules/uninorm/u16-normalize: New file.
9556
9557         New module 'uninorm/u8-normalize'.
9558         * lib/uninorm/u8-normalize.c: New file.
9559         * lib/uninorm/normalize-internal.h: New file.
9560         * lib/uninorm/u-normalize-internal.h: New file.
9561         * modules/uninorm/u8-normalize: New file.
9562
9563         New module 'uninorm/decompose-internal'.
9564         * lib/uninorm/decompose-internal.c: New file.
9565         * modules/uninorm/decompose-internal: New file.
9566
9567         Tests for module 'uninorm/composition'.
9568         * tests/uninorm/test-composition.c: New file.
9569         * modules/uninorm/composition-tests: New file.
9570
9571         New module 'uninorm/composition'.
9572         * lib/uninorm/composition.c: New file.
9573         * lib/uninorm/composition-table.gperf: New file, generated by
9574         gen-uni-tables.
9575         * modules/uninorm/composition: New file.
9576
9577         Tests for module 'uninorm/compat-decomposition'.
9578         * tests/uninorm/test-compat-decomposition.c: New file.
9579         * modules/uninorm/compat-decomposition-tests: New file.
9580
9581         New module 'uninorm/compat-decomposition'.
9582         * lib/uninorm/decompose-internal.h: New file.
9583         * lib/uninorm/compat-decomposition.c: New file.
9584         * modules/uninorm/compat-decomposition: New file.
9585
9586         Tests for module 'uninorm/canonical-decomposition'.
9587         * tests/uninorm/test-canonical-decomposition.c: New file.
9588         * modules/uninorm/canonical-decomposition-tests: New file.
9589
9590         New module 'uninorm/canonical-decomposition'.
9591         * lib/uninorm/canonical-decomposition.c: New file.
9592         * modules/uninorm/canonical-decomposition: New file.
9593
9594         Tests for module 'uninorm/decomposition'.
9595         * tests/uninorm/test-decomposition.c: New file.
9596         * modules/uninorm/decomposition-tests: New file.
9597
9598         New module 'uninorm/decomposition'.
9599         * lib/uninorm/decomposition.c: New file.
9600         * modules/uninorm/decomposition: New file.
9601
9602         New module 'uninorm/decomposition-table'.
9603         * lib/uninorm/decomposition-table.h: New file.
9604         * lib/uninorm/decomposition-table.c: New file.
9605         * lib/uninorm/decomposition-table1.h: New file, generated by
9606         gen-uni-tables.
9607         * lib/uninorm/decomposition-table2.h: New file, generated by
9608         gen-uni-tables.
9609         * modules/uninorm/decomposition-table: New file.
9610
9611         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
9612         (UC_DECOMP_*): New enumeration items.
9613         (get_decomposition): New function.
9614         (struct decomp_table): New type.
9615         (output_decomposition, output_decomposition_tables): New functions.
9616         (unicode_composition_exclusions): New variable.
9617         (fill_composition_exclusions, debug_output_composition_tables): New
9618         functions.
9619         (main): Accept one more argument. Invoke fill_composition_exclusions.
9620         Output decomposition and composition tables.
9621
9622         New module 'uninorm/base'.
9623         * lib/uninorm.h: New file.
9624         * lib/unictype.h: Update comment.
9625         * modules/uninorm/base: New file.
9626
9627 2009-02-21  David Lutterkort  <lutter@redhat.com>
9628
9629         Tests for module 'safe-alloc'.
9630         * tests/test-safe-alloc.c: New file.
9631         * modules/safe-alloc-tests: New file.
9632
9633         New module 'safe-alloc'.
9634         * lib/safe-alloc.h: New file.
9635         * lib/safe-alloc.c: New file.
9636         * m4/safe-alloc.m4: New file.
9637         * modules/safe-alloc: New file.
9638         * doc/safe-alloc.texi: New file.
9639         * doc/gnulib.texi: Include it.
9640         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
9641         safe-alloc.
9642
9643 2009-02-18  Bruno Haible  <bruno@clisp.org>
9644
9645         Fix link error on non-glibc systems.
9646         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
9647         variable.
9648         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9649
9650 2009-02-18  Jim Meyering  <meyering@redhat.com>
9651
9652         fts: avoid used-uninitialized error due to recent change
9653         * lib/fts.c (fts_read): Guard uses of the new member,
9654         parent->fts_n_dirs_remaining, since it's not relevant for
9655         the parent of a directory specified on the command-line.
9656
9657 2009-02-17  James Youngman  <jay@gnu.org>
9658             Bruno Haible  <bruno@clisp.org>
9659
9660         * m4/include_next.m4: Reformulate comment.
9661
9662 2009-02-16  Jim Meyering  <meyering@redhat.com>
9663
9664         fts: add #if guards so that the fts_lgpl module still builds
9665         * lib/fts.c: Guard just-added hash-table-using parts with
9666         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
9667         Reported by Simon Josefsson.
9668
9669 2009-02-15  Bruno Haible  <bruno@clisp.org>
9670
9671         * modules/array-mergesort-tests: New file.
9672         * tests/test-array-mergesort.c: New file.
9673
9674         New module 'array-mergesort'.
9675         * modules/array-mergesort: New file.
9676         * lib/array-mergesort.h: New file.
9677
9678 2009-02-15  Bruno Haible  <bruno@clisp.org>
9679
9680         Fix 2009-02-07 commit.
9681         * lib/gen-uni-tables.c (output_predicate, output_category,
9682         output_combclass, output_bidi_category, output_decimal_digit,
9683         output_digit, output_numeric, output_mirror, output_scripts,
9684         output_ident_category, output_simple_mapping): Fix format directives.
9685         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
9686
9687 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
9688
9689         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
9690         fixes are available from IBM.
9691
9692 2009-02-13  Jim Meyering  <meyering@redhat.com>
9693
9694         fts: arrange not to stat non-directories in more cases
9695         This makes GNU find (when it doesn't need to stat each file)
9696         *much* more efficient at traversing reiserfs file systems.
9697         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
9698         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
9699         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
9700         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
9701         (leaf_optimization_applies): New function.
9702         (LCO_hash, LCO_compare): New helper functions.
9703         (link_count_optimize_ok): New function.
9704         (fts_stat): Initialize new member (if dir).
9705         (fts_read): Decrement parent's fts_n_dirs_remaining count if
9706         we've just stat'ed a directory.  Skip the stat call when possible.
9707         ---
9708         Note this AFS-related exchange:
9709         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
9710         and note find's pioctl call in find/fstype.c.
9711         But that is necessary only if you want to enable the
9712         optimization for AFS, and for now, I don't.
9713
9714         fts: move a function definition "up" (no semantic change)
9715         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
9716         "up" to precede upcoming use of a related function.
9717
9718 2009-02-11  Jim Meyering  <meyering@redhat.com>
9719
9720         fts: correct internal computation of nlinks (optimization-related)
9721         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
9722         whether the current entry is a directory, so don't test it.
9723
9724 2009-02-10  Bruno Haible  <bruno@clisp.org>
9725
9726         Tests for module 'uniwbrk/ulc-wordbreaks'.
9727         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
9728         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
9729         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
9730
9731         Tests for module 'uniwbrk/u32-wordbreaks'.
9732         * modules/uniwbrk/u32-wordbreaks-tests: New file.
9733         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
9734
9735         Tests for module 'uniwbrk/u16-wordbreaks'.
9736         * modules/uniwbrk/u16-wordbreaks-tests: New file.
9737         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
9738
9739         Tests for module 'uniwbrk/u8-wordbreaks'.
9740         * modules/uniwbrk/u8-wordbreaks-tests: New file.
9741         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
9742
9743 2009-02-10  Bruno Haible  <bruno@clisp.org>
9744
9745         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
9746         property.
9747         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
9748         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
9749         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
9750
9751 2009-02-10  Simon Josefsson  <simon@josefsson.org>
9752
9753         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
9754         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
9755
9756 2009-02-10  Bruno Haible  <bruno@clisp.org>
9757
9758         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
9759         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
9760         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
9761         * lib/unilbrk/u8-possible-linebreaks.c: Update.
9762         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
9763         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
9764
9765 2009-02-09  Simon Josefsson  <simon@josefsson.org>
9766
9767         * lib/sockets.h (gl_fd_to_handle): New function.
9768
9769         * tests/test-sockets.c: Call gl_fd_to_handle.
9770
9771 2009-02-09  Bruno Haible  <bruno@clisp.org>
9772
9773         * doc/havelib.texi: Document the conventions on bi-arch systems.
9774
9775 2009-02-08  Bruno Haible  <bruno@clisp.org>
9776
9777         Document the AC_LIB_LINKFLAGS macro.
9778         * doc/havelib.texi: New file, mostly written on 2005-05-24.
9779         * doc/gnulib.texi: Include it.
9780
9781 2009-02-08  Bruno Haible  <bruno@clisp.org>
9782
9783         Fix wrong order of sections, compared to TOC.
9784         * doc/gnulib.texi: Include relocatable-maint.texi after the
9785         "Regular expressions" node, not before.
9786
9787 2009-02-08  Bruno Haible  <bruno@clisp.org>
9788
9789         Tests for module 'unicase/totitle'.
9790         * modules/unicase/totitle-tests: New file.
9791
9792         Tests for module 'unicase/tolower'.
9793         * modules/unicase/tolower-tests: New file.
9794
9795         Tests for module 'unicase/toupper'.
9796         * modules/unicase/toupper-tests: New file.
9797         * tests/unicase/test-mapping-part1.h: New file.
9798         * tests/unicase/test-mapping-part2.h: New file.
9799
9800         New module 'unicase/totitle'.
9801         * modules/unicase/totitle: New file.
9802         * lib/unicase/totitle.c: New file.
9803
9804         New module 'unicase/tolower'.
9805         * modules/unicase/tolower: New file.
9806         * lib/unicase/tolower.c: New file.
9807
9808         New module 'unicase/toupper'.
9809         * modules/unicase/toupper: New file.
9810         * lib/unicase/toupper.c: New file.
9811         * lib/unicase/simple-mapping.h: New file.
9812
9813         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
9814         (mapping_table): New structure.
9815         (output_simple_mapping): New function.
9816         (main): Invoke output_simple_mapping_test and output_simple_mapping.
9817         * modules/gen-uni-tables (Description): Update.
9818         * lib/unicase/toupper.h: New file, automatically generated by
9819         gen-uni-tables.
9820         * lib/unicase/tolower.h: New file, automatically generated by
9821         gen-uni-tables.
9822         * lib/unicase/totitle.h: New file, automatically generated by
9823         gen-uni-tables.
9824         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
9825         gen-uni-tables.
9826         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
9827         gen-uni-tables.
9828         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
9829         gen-uni-tables.
9830
9831         New module 'unicase/base'.
9832         * modules/unicase/base: New file.
9833         * lib/unicase.h: New file.
9834
9835 2009-02-08  Bruno Haible  <bruno@clisp.org>
9836
9837         New module 'uniwbrk/ulc-wordbreaks'.
9838         * modules/uniwbrk/ulc-wordbreaks: New file.
9839         * lib/uniwbrk/ulc-wordbreaks.c: New file.
9840
9841         New module 'uniwbrk/u32-wordbreaks'.
9842         * modules/uniwbrk/u32-wordbreaks: New file.
9843         * lib/uniwbrk/u32-wordbreaks.c: New file.
9844
9845         New module 'uniwbrk/u16-wordbreaks'.
9846         * modules/uniwbrk/u16-wordbreaks: New file.
9847         * lib/uniwbrk/u16-wordbreaks.c: New file.
9848
9849         New module 'uniwbrk/u8-wordbreaks'.
9850         * modules/uniwbrk/u8-wordbreaks: New file.
9851         * lib/uniwbrk/u8-wordbreaks.c: New file.
9852         * lib/uniwbrk/u-wordbreaks.h: New file.
9853
9854         New module 'uniwbrk/table'.
9855         * modules/uniwbrk/table: New file.
9856         * lib/uniwbrk/wbrktable.h: New file.
9857         * lib/uniwbrk/wbrktable.c: New file.
9858
9859         New module 'uniwbrk/wordbreak-property'.
9860         * modules/uniwbrk/wordbreak-property: New file.
9861         * lib/uniwbrk/wordbreak-property.c: New file.
9862
9863         * lib/gen-uni-tables.c (WBP_*): New enum items.
9864         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
9865         (unicode_org_wbp): New variable.
9866         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
9867         New functions.
9868         (wbp_table): New structure.
9869         (output_wbp, output_wbrk_tables): New functions.
9870         (main): Accept additional argument. Invoke fill_org_wbp,
9871         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
9872         output_wbrk_tables.
9873         * modules/gen-uni-tables (Description): Update.
9874         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
9875         gen-uni-tables.
9876
9877         New module 'uniwbrk/base'.
9878         * modules/uniwbrk/base: New file.
9879         * lib/uniwbrk.h: New file.
9880
9881 2009-02-08  Bruno Haible  <bruno@clisp.org>
9882
9883         Update to Unicode 5.1.0.
9884         * lib/gen-uni-tables.c (is_property_alphabetic): Include
9885         U+2185..U+2188.
9886         (is_property_default_ignorable_code_point): Don't include characters
9887         of category Cc or Cs and not-a-characters.
9888         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
9889         U+0D79, U+109E, U+109F, U+A60C.
9890         * lib/unictype/bidi_of.h: Regenerated.
9891         * lib/unictype/blocks.h: Regenerated.
9892         * lib/unictype/categ_C.h: Regenerated.
9893         * lib/unictype/categ_Cf.h: Regenerated.
9894         * lib/unictype/categ_Cn.h: Regenerated.
9895         * lib/unictype/categ_L.h: Regenerated.
9896         * lib/unictype/categ_Ll.h: Regenerated.
9897         * lib/unictype/categ_Lm.h: Regenerated.
9898         * lib/unictype/categ_Lo.h: Regenerated.
9899         * lib/unictype/categ_Lu.h: Regenerated.
9900         * lib/unictype/categ_M.h: Regenerated.
9901         * lib/unictype/categ_Mc.h: Regenerated.
9902         * lib/unictype/categ_Me.h: Regenerated.
9903         * lib/unictype/categ_Mn.h: Regenerated.
9904         * lib/unictype/categ_N.h: Regenerated.
9905         * lib/unictype/categ_Nd.h: Regenerated.
9906         * lib/unictype/categ_Nl.h: Regenerated.
9907         * lib/unictype/categ_No.h: Regenerated.
9908         * lib/unictype/categ_P.h: Regenerated.
9909         * lib/unictype/categ_Pd.h: Regenerated.
9910         * lib/unictype/categ_Pe.h: Regenerated.
9911         * lib/unictype/categ_Pf.h: Regenerated.
9912         * lib/unictype/categ_Pi.h: Regenerated.
9913         * lib/unictype/categ_Po.h: Regenerated.
9914         * lib/unictype/categ_Ps.h: Regenerated.
9915         * lib/unictype/categ_S.h: Regenerated.
9916         * lib/unictype/categ_Sk.h: Regenerated.
9917         * lib/unictype/categ_Sm.h: Regenerated.
9918         * lib/unictype/categ_So.h: Regenerated.
9919         * lib/unictype/categ_of.h: Regenerated.
9920         * lib/unictype/combining.h: Regenerated.
9921         * lib/unictype/ctype_alnum.h: Regenerated.
9922         * lib/unictype/ctype_alpha.h: Regenerated.
9923         * lib/unictype/ctype_graph.h: Regenerated.
9924         * lib/unictype/ctype_lower.h: Regenerated.
9925         * lib/unictype/ctype_print.h: Regenerated.
9926         * lib/unictype/ctype_punct.h: Regenerated.
9927         * lib/unictype/ctype_upper.h: Regenerated.
9928         * lib/unictype/decdigit.h: Regenerated.
9929         * lib/unictype/digit.h: Regenerated.
9930         * lib/unictype/mirror.h: Regenerated.
9931         * lib/unictype/numeric.h: Regenerated.
9932         * lib/unictype/pr_alphabetic.h: Regenerated.
9933         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
9934         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
9935         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
9936         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
9937         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
9938         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
9939         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
9940         * lib/unictype/pr_combining.h: Regenerated.
9941         * lib/unictype/pr_dash.h: Regenerated.
9942         * lib/unictype/pr_decimal_digit.h: Regenerated.
9943         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
9944         * lib/unictype/pr_deprecated.h: Regenerated.
9945         * lib/unictype/pr_diacritic.h: Regenerated.
9946         * lib/unictype/pr_extender.h: Regenerated.
9947         * lib/unictype/pr_format_control.h: Regenerated.
9948         * lib/unictype/pr_grapheme_base.h: Regenerated.
9949         * lib/unictype/pr_grapheme_extend.h: Regenerated.
9950         * lib/unictype/pr_grapheme_link.h: Regenerated.
9951         * lib/unictype/pr_id_continue.h: Regenerated.
9952         * lib/unictype/pr_id_start.h: Regenerated.
9953         * lib/unictype/pr_ideographic.h: Regenerated.
9954         * lib/unictype/pr_ignorable_control.h: Regenerated.
9955         * lib/unictype/pr_lowercase.h: Regenerated.
9956         * lib/unictype/pr_math.h: Regenerated.
9957         * lib/unictype/pr_numeric.h: Regenerated.
9958         * lib/unictype/pr_other_alphabetic.h: Regenerated.
9959         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
9960         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
9961         * lib/unictype/pr_other_id_continue.h: Regenerated.
9962         * lib/unictype/pr_other_lowercase.h: Regenerated.
9963         * lib/unictype/pr_other_math.h: Regenerated.
9964         * lib/unictype/pr_punctuation.h: Regenerated.
9965         * lib/unictype/pr_sentence_terminal.h: Regenerated.
9966         * lib/unictype/pr_soft_dotted.h: Regenerated.
9967         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
9968         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
9969         * lib/unictype/pr_unified_ideograph.h: Regenerated.
9970         * lib/unictype/pr_uppercase.h: Regenerated.
9971         * lib/unictype/pr_xid_continue.h: Regenerated.
9972         * lib/unictype/pr_xid_start.h: Regenerated.
9973         * lib/unictype/pr_zero_width.h: Regenerated.
9974         * lib/unictype/scripts.h: Regenerated.
9975         * lib/unictype/scripts_byname.gperf: Regenerated.
9976         * lib/unictype/sy_java_ident.h: Regenerated.
9977         * lib/unilbrk/lbrkprop1.h: Regenerated.
9978         * lib/unilbrk/lbrkprop2.h: Regenerated.
9979         * tests/unictype/test-categ_C.c: Regenerated.
9980         * tests/unictype/test-categ_Cf.c: Regenerated.
9981         * tests/unictype/test-categ_Cn.c: Regenerated.
9982         * tests/unictype/test-categ_L.c: Regenerated.
9983         * tests/unictype/test-categ_Ll.c: Regenerated.
9984         * tests/unictype/test-categ_Lm.c: Regenerated.
9985         * tests/unictype/test-categ_Lo.c: Regenerated.
9986         * tests/unictype/test-categ_Lu.c: Regenerated.
9987         * tests/unictype/test-categ_M.c: Regenerated.
9988         * tests/unictype/test-categ_Mc.c: Regenerated.
9989         * tests/unictype/test-categ_Me.c: Regenerated.
9990         * tests/unictype/test-categ_Mn.c: Regenerated.
9991         * tests/unictype/test-categ_N.c: Regenerated.
9992         * tests/unictype/test-categ_Nd.c: Regenerated.
9993         * tests/unictype/test-categ_Nl.c: Regenerated.
9994         * tests/unictype/test-categ_No.c: Regenerated.
9995         * tests/unictype/test-categ_P.c: Regenerated.
9996         * tests/unictype/test-categ_Pd.c: Regenerated.
9997         * tests/unictype/test-categ_Pe.c: Regenerated.
9998         * tests/unictype/test-categ_Pf.c: Regenerated.
9999         * tests/unictype/test-categ_Pi.c: Regenerated.
10000         * tests/unictype/test-categ_Po.c: Regenerated.
10001         * tests/unictype/test-categ_Ps.c: Regenerated.
10002         * tests/unictype/test-categ_S.c: Regenerated.
10003         * tests/unictype/test-categ_Sk.c: Regenerated.
10004         * tests/unictype/test-categ_Sm.c: Regenerated.
10005         * tests/unictype/test-categ_So.c: Regenerated.
10006         * tests/unictype/test-ctype_alnum.c: Regenerated.
10007         * tests/unictype/test-ctype_alpha.c: Regenerated.
10008         * tests/unictype/test-ctype_graph.c: Regenerated.
10009         * tests/unictype/test-ctype_lower.c: Regenerated.
10010         * tests/unictype/test-ctype_print.c: Regenerated.
10011         * tests/unictype/test-ctype_punct.c: Regenerated.
10012         * tests/unictype/test-ctype_upper.c: Regenerated.
10013         * tests/unictype/test-decdigit.h: Regenerated.
10014         * tests/unictype/test-digit.h: Regenerated.
10015         * tests/unictype/test-numeric.h: Regenerated.
10016         * tests/unictype/test-pr_alphabetic.c: Regenerated.
10017         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
10018         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
10019         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
10020         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
10021         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
10022         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
10023         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
10024         * tests/unictype/test-pr_combining.c: Regenerated.
10025         * tests/unictype/test-pr_dash.c: Regenerated.
10026         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
10027         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
10028         * tests/unictype/test-pr_deprecated.c: Regenerated.
10029         * tests/unictype/test-pr_diacritic.c: Regenerated.
10030         * tests/unictype/test-pr_extender.c: Regenerated.
10031         * tests/unictype/test-pr_format_control.c: Regenerated.
10032         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
10033         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
10034         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
10035         * tests/unictype/test-pr_id_continue.c: Regenerated.
10036         * tests/unictype/test-pr_id_start.c: Regenerated.
10037         * tests/unictype/test-pr_ideographic.c: Regenerated.
10038         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
10039         * tests/unictype/test-pr_lowercase.c: Regenerated.
10040         * tests/unictype/test-pr_math.c: Regenerated.
10041         * tests/unictype/test-pr_numeric.c: Regenerated.
10042         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
10043         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
10044         Regenerated.
10045         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
10046         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
10047         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
10048         * tests/unictype/test-pr_other_math.c: Regenerated.
10049         * tests/unictype/test-pr_punctuation.c: Regenerated.
10050         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
10051         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
10052         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
10053         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
10054         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
10055         * tests/unictype/test-pr_uppercase.c: Regenerated.
10056         * tests/unictype/test-pr_xid_continue.c: Regenerated.
10057         * tests/unictype/test-pr_xid_start.c: Regenerated.
10058         * tests/unictype/test-pr_zero_width.c: Regenerated.
10059
10060         Update to Unicode 5.1.0.
10061         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
10062         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
10063         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
10064         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
10065         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
10066         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
10067         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
10068         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
10069         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
10070         (nonspacing_table_ind): Update.
10071         * tests/uniwidth/test-uc_width2.sh: Update expected result.
10072
10073         Update to Unicode 5.1.0.
10074         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
10075         code transform.
10076         * lib/uniname/uniname.c (unicode_character_name,
10077         unicode_name_character): Add the range 0x1Fxxx to the code transform.
10078         * lib/uniname/uninames.h: Regenerated.
10079         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
10080
10081 2009-02-07  Bruno Haible  <bruno@clisp.org>
10082
10083         Merge gen-ctype and gen-lbrk into a single program.
10084         * lib/gen-uni-tables.c: New file, incorporating
10085         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
10086         Add directory prefixes to the names of the generated files.
10087         * lib/unictype/gen-ctype.c: Remove file.
10088         * lib/unilbrk/gen-lbrk.c: Remove file.
10089         * modules/gen-uni-tables: New file.
10090         * modules/unictype/gen-ctype: Remove file.
10091         * modules/unilbrk/gen-lbrk: Remove file.
10092
10093 2009-02-07  Bruno Haible  <bruno@clisp.org>
10094
10095         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
10096
10097         New module 'unistr/u32-strcoll'.
10098         * modules/unistr/u32-strcoll: New file.
10099         * lib/unistr/u32-strcoll.c: New file.
10100
10101         New module 'unistr/u16-strcoll'.
10102         * modules/unistr/u16-strcoll: New file.
10103         * lib/unistr/u16-strcoll.c: New file.
10104
10105         New module 'unistr/u8-strcoll'.
10106         * modules/unistr/u8-strcoll: New file.
10107         * lib/unistr/u8-strcoll.c: New file.
10108         * lib/unistr/u-strcoll.h: New file.
10109
10110 2009-02-07  Bruno Haible  <bruno@clisp.org>
10111
10112         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
10113         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
10114         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
10115         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
10116         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
10117         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
10118
10119 2009-02-07  Bruno Haible  <bruno@clisp.org>
10120
10121         Make 64-bit clean.
10122         * lib/unictype/gen-ctype.c (output_predicate, output_category,
10123         output_combclass, output_bidi_category, output_decimal_digit,
10124         output_digit, output_numeric, output_mirror, output_scripts,
10125         output_ident_category): Use proper width specifier in format strings.
10126
10127 2009-02-07  Bruno Haible  <bruno@clisp.org>
10128
10129         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
10130         failure behaviour.
10131
10132 2009-02-07  Jim Meyering  <meyering@redhat.com>
10133
10134         regex: avoid compilation failure with upcoming gcc-4.4
10135         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
10136         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
10137         "... error: integer overflow in preprocessor expression".
10138
10139 2009-02-05  Ben Pfaff  <blp@gnu.org>
10140
10141         Fix link errors on Windows when close module is used.
10142         * modules/close: Add $(LIB_CLOSE) to Link section.
10143         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
10144         $(LIB_CLOSE) on Windows.
10145
10146 2009-02-05  Jim Meyering  <meyering@redhat.com>
10147
10148         still avoid unused-parameter warnings, but do it cleanly
10149         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
10150         (get_fs_usage): Cast to void instead.
10151         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
10152         (dev_from_mount_options, read_file_system_list): Cast to void.
10153         Prompted by Bruno Haible.
10154
10155 2009-02-04  Jim Meyering  <meyering@redhat.com>
10156
10157         fsusage.c: correct copyright year
10158         * lib/fsusage.c: Reflect year in which the change is pushed into
10159
10160         avoid misc. warnings
10161         * lib/fsusage.c (UNUSED_PARAM): Define.
10162         (get_fs_usage): Mark parameter "disk" as unused.
10163         * lib/getugroups.c (getgrent): Use "void" in prototype.
10164         * lib/mountlist.c: Mark unused parameters.
10165         (read_file_system_list): Declare a local with "const".
10166         * lib/nanosleep.c (getnow): Declare static.
10167         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
10168
10169         dirfd: set errno upon failure
10170         * lib/dirfd.c: Include <errno.h>.
10171         Set errno to ENOTSUP when returning -1.
10172         * modules/dirfd (Depends-on): Add errno.
10173         Suggested by John Kodis <kodis@comcast.net>.
10174
10175 2009-02-01  Bruno Haible  <bruno@clisp.org>
10176
10177         Don't assume sizeof (long) >= sizeof (void *).
10178         * lib/memcmp.c: Include stdint.h.
10179         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
10180         srcp2 to 'const byte *'.
10181         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
10182         types to uintptr_t.
10183         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
10184         * modules/memcmp (Depends-on): Add stdint.
10185         Reported by Ozkan Sezer <sezeroz@gmail.com>.
10186
10187 2009-01-30  Eric Blake  <ebb9@byu.net>
10188
10189         fix more require-before-expand issues
10190         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
10191         expand, AC_PROG_AWK.
10192         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
10193
10194 2009-01-28  Eric Blake  <ebb9@byu.net>
10195
10196         version-etc: use consistent URL formatting
10197         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
10198         Improve formatting.  Use fputs for string without %.
10199
10200 2009-01-28  Jim Meyering  <meyering@redhat.com>
10201
10202         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
10203         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
10204         "underquoted definition of NAME" from autoconf-2.59.
10205
10206 2009-01-28  Bruno Haible  <bruno@clisp.org>
10207
10208         * doc/gnulib.texi: Add "Obsolete modules" to index.
10209
10210 2009-01-28  Jim Meyering  <meyering@redhat.com>
10211
10212         useless-if-before-free: recognize more variants
10213         * build-aux/useless-if-before-free: Also recognize e.g.,
10214         if (NULL != p) free (p);
10215
10216 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
10217
10218         test-getaddrinfo: skip (don't fail) this test when there's no network
10219         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
10220         on the presumption that it means you lack network access.
10221
10222 2009-01-26  Jim Meyering  <meyering@redhat.com>
10223
10224         fflush: avoid warnings on modern systems
10225         * lib/fflush.c (rpl_fflush): Move declarations of locals,
10226         pos and result, into scopes where they're used.
10227
10228 2009-01-26  Eric Blake  <ebb9@byu.net>
10229
10230         Silence warning reintroduced by recent extensions patch.
10231         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
10232         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
10233         autoconf.
10234
10235         Backport improved autoconf semantics of AC_DEFUN_ONCE.
10236         * m4/00gnulib.m4: New file.
10237         * gnulib-tool (func_get_filelist): Always use it.
10238         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
10239         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
10240
10241 2009-01-25  Bruno Haible  <bruno@clisp.org>
10242
10243         Make test-quotearg work on MacOS X and AIX.
10244         * tests/test-quotearg.sh: New file.
10245         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
10246         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
10247         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
10248         include <libintl.h>.
10249         (fake_locale): Remove variable.
10250         (gettext, dgettext, dcgettext): Remove functions.
10251         (main): Instead of setting a fake locale, set a real locale. Call
10252         textdomain and bindtextdomain.
10253         * modules/quotearg-tests (Files): Add the new files.
10254         (Depends-on): Add gettext, setenv, unsetenv.
10255         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
10256         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
10257         Augment TESTS_ENVIRONMENT.
10258
10259 2009-01-25  Bruno Haible  <bruno@clisp.org>
10260
10261         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
10262         fr_FR.ISO8859-1 locale on MacOS X.
10263         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
10264         ja_JP.eucJP locale on MacOS X.
10265         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
10266         zh_CN.GB18030 locale on MacOS X.
10267
10268 2009-01-25  Bruno Haible  <bruno@clisp.org>
10269
10270         Avoid link errors on MacOS X 10.3.
10271         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
10272         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
10273
10274 2009-01-25  Bruno Haible  <bruno@clisp.org>
10275
10276         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
10277         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
10278         * modules/pipe (Files): Remove m4/posix_spawn.m4.
10279         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
10280         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
10281         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
10282         posix_spawnattr_init, posix_spawnattr_setsigmask,
10283         posix_spawnattr_setflags, posix_spawnattr_destroy.
10284
10285         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
10286         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
10287         * modules/execute (Files): Remove m4/posix_spawn.m4.
10288         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
10289         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
10290         posix_spawnattr_init, posix_spawnattr_setsigmask,
10291         posix_spawnattr_setflags, posix_spawnattr_destroy.
10292
10293 2009-01-25  Bruno Haible  <bruno@clisp.org>
10294
10295         * lib/glthread/threadlib.c: Include <stdlib.h>.
10296
10297 2009-01-25  Bruno Haible  <bruno@clisp.org>
10298
10299         * lib/glthread/threadlib.c (dummy): New declaration.
10300
10301 2009-01-25  Bruno Haible  <bruno@clisp.org>
10302
10303         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
10304         multibyte characters also for the GB18030 encoding. Don't crash when
10305         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
10306
10307 2009-01-25  Bruno Haible  <bruno@clisp.org>
10308
10309         Avoid redefining 'struct random_data' on OSF/1 5.1.
10310         * lib/stdlib.in.h: Include <random.h> if it exists.
10311         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
10312         HAVE_RANDOM_H. Include <random.h> when testing whether
10313         'struct random_data' exists.
10314         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
10315
10316 2009-01-25  Bruno Haible  <bruno@clisp.org>
10317
10318         Don't install charset.alias on MacOS X >= 10.3.
10319         * lib/localcharset.c (DARWIN7): New macro.
10320         (get_charset_aliases): Hardcode the result for Darwin7.
10321         * modules/localcharset (install-exec-local): Don't install
10322         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
10323
10324 2009-01-25  Bruno Haible  <bruno@clisp.org>
10325
10326         Don't install charset.alias on mingw and Cygwin.
10327         * modules/localcharset (install-exec-local): Don't install
10328         charset.alias on mingw and Cygwin, if the file does not yet exist.
10329         The result for these platforms is hardcoded in localcharset.c.
10330
10331 2009-01-25  Bruno Haible  <bruno@clisp.org>
10332
10333         Make it possible again to use AC_GNU_SOURCE together with gnulib.
10334         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
10335         before requiring AC_USE_SYSTEM_EXTENSIONS.
10336
10337 2009-01-25  Jim Meyering  <meyering@redhat.com>
10338
10339         c-strtod: avoid warnings
10340         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
10341         "assignment discards qualifiers from pointer target type" warnings.
10342
10343 2009-01-24  Bruno Haible  <bruno@clisp.org>
10344
10345         Add support for non-UTF-8 locales on MacOS X.
10346         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
10347         canonical encodings. For Darwin 7 and newer, don't map traditional
10348         encodings to UTF-8.
10349         Reported by Vincent Lefevre <vincent@vinc17.org>
10350         at <http://savannah.gnu.org/bugs/?25235>.
10351
10352 2009-01-24  Bruno Haible  <bruno@clisp.org>
10353
10354         * doc/gnulib.texi (Obsolete modules): New section.
10355         Reported by Mike Frysinger <vapier@gentoo.org>.
10356
10357 2009-01-24  Bruno Haible  <bruno@clisp.org>
10358
10359         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
10360         (%.dvi): New rule.
10361
10362 2009-01-24  Bruno Haible  <bruno@clisp.org>
10363
10364         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
10365         Reported by Eric Blake.
10366
10367 2009-01-24  Bruno Haible  <bruno@clisp.org>
10368
10369         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
10370         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
10371         Reported by Gary V. Vaughan <gary@gnu.org>.
10372
10373 2009-01-24  Bruno Haible  <bruno@clisp.org>
10374
10375         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
10376
10377 2009-01-23  Bruno Haible  <bruno@clisp.org>
10378
10379         Make c-strtod, c-strtold usable in libraries.
10380         * lib/c-strtod.c: Include string.h instead of xalloc.h.
10381         (C_STRTOD): Call strdup instead of xstrdup.
10382         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
10383         * modules/c-strtold (Depends-on): Likewise.
10384         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
10385         * NEWS: Mention the change.
10386         Reported by Michael Gold <mgold@ncf.ca>.
10387
10388 2009-01-23  Jim Meyering  <meyering@redhat.com>
10389
10390         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
10391         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
10392         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
10393
10394 2009-01-23  Simon Josefsson  <simon@josefsson.org>
10395
10396         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
10397         GNU CoreUtils.
10398         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
10399         * modules/version-etc (Description): Update.
10400
10401 2009-01-22  Bruno Haible  <bruno@clisp.org>
10402
10403         Cache the C locale object.
10404         * lib/c-strtod.c (c_locale_cache): New variable.
10405         (c_locale): New function.
10406         (C_STRTOD): Use it, and don't call freelocale.
10407         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
10408         Suggested by Paolo Bonzini.
10409
10410 2009-01-21  Bruno Haible  <bruno@clisp.org>
10411
10412         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
10413         conditions other than overflow.
10414
10415 2009-01-21  Bruno Haible  <bruno@clisp.org>
10416
10417         * lib/c-strtod.c: Include errno.h.
10418         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
10419         value from STRTOD_L and STRTOD.
10420
10421 2009-01-21  Bruno Haible  <bruno@clisp.org>
10422         and Jim Meyering  <meyering@redhat.com>
10423
10424         nanosleep: skip configure test (fail it) for apple universal builds
10425         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
10426         universal builds, assume that nanosleep does not work.
10427         * modules/nanosleep (Depends-on): Add multiarch.
10428
10429         mktime: skip configure test (fail it) for apple universal builds
10430         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
10431         universal builds, assume that mktime does not work.
10432         * modules/mktime (Depends-on): Add multiarch.
10433
10434 2009-01-21  Eric Blake  <ebb9@byu.net>
10435
10436         multiarch: avoid expand-before-require warning
10437         * modules/multiarch (configure.ac): Require, rather than expand,
10438         gl_MULTIARCH.
10439         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
10440         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
10441         enforce that all clients require it.  Partial reversion of
10442         2008-12-29 patch.
10443
10444         error: avoid expand-before-require warning
10445         * modules/errno (configure.ac): Require, rather than expand,
10446         gl_HEADER_ERRNO_H.
10447         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
10448         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
10449         enforce that all clients require it.
10450
10451         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
10452         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
10453         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
10454         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
10455
10456 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
10457
10458         Revert:
10459         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
10460
10461         regex: do not depend on obsolete modules.
10462         * modules/regex: Remove memcmp and memmove.
10463
10464 2009-01-20  Bruno Haible  <bruno@clisp.org>
10465
10466         Make the 'link' module link on Windows NT 4.
10467         * lib/link.c (_WIN32_WINNT): Don't define.
10468         (CreateHardLinkFuncType): New type.
10469         (CreateHardLinkFunc, initialized): New variables.
10470         (initialize): New function.
10471         (link): Invoke CreateHardLink indirectly through the function pointer.
10472
10473 2009-01-20  Bruno Haible  <bruno@clisp.org>
10474
10475         Fix compilation failure on mingw.
10476         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
10477
10478 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
10479
10480         * doc/c-strtod.texi: Mention a couple of restrictions.
10481
10482 2009-01-20  Jim Meyering  <meyering@redhat.com>
10483
10484         gettimeofday: move more declarations out of functions
10485         * lib/gettimeofday.c: Move extern declarations of tzset and
10486         gmtime out of containing functions.  Prompted by Bruno Haible.
10487
10488 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
10489
10490         regex: do not depend on obsolete modules.
10491         * modules/regex: Remove memcmp and memmove.
10492
10493 2009-01-19  Bruno Haible  <bruno@clisp.org>
10494
10495         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
10496         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
10497         gl_BIGENDIAN, not AC_C_BIGENDIAN.
10498         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
10499         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
10500
10501 2009-01-19  Bruno Haible  <bruno@clisp.org>
10502
10503         * tests/test-link.c: Include <errno.h>.
10504         (main): Exit with code 77 when a hard link cannot be created due to
10505         the file system.
10506         * tests/test-link.sh: Skip test when a hard link cannot be created due
10507         to the file system.
10508         Suggested by Eric Blake.
10509
10510 2009-01-19  Martin Lambers  <marlam@marlam.de>
10511
10512         * modules/link-tests: New file.
10513         * tests/test-link.sh: New file.
10514         * tests/test-link.c: New file.
10515
10516 2009-01-19  Eric Blake  <ebb9@byu.net>
10517
10518         doc: mention another function added in cygwin 1.7.0
10519         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
10520         Another new function in cygwin 1.7.
10521
10522 2009-01-19  Bruno Haible  <bruno@clisp.org>
10523
10524         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
10525         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
10526         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
10527         gl_BIGENDIAN, not AC_C_BIGENDIAN.
10528         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
10529         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
10530         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
10531         * m4/md4.m4 (gl_MD4): Likewise.
10532         * m4/md5.m4 (gl_MD5): Likewise.
10533         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
10534         * m4/sha1.m4 (gl_SHA1): Likewise.
10535         * m4/sha256.m4 (gl_SHA256): Likewise.
10536         * m4/sha512.m4 (gl_SHA512): Likewise.
10537
10538 2009-01-19  Bruno Haible  <bruno@clisp.org>
10539
10540         * modules/uniname/uniname-tests (Depends-on): Add progname.
10541         * tests/uniname/test-uninames.c: Include progname.h.
10542         (main): Call set_program_name.
10543
10544         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
10545         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
10546         (main): Call set_program_name.
10547
10548         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
10549         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
10550         (main): Call set_program_name.
10551
10552         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
10553         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
10554         (main): Call set_program_name.
10555
10556         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
10557         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
10558         (main): Call set_program_name.
10559
10560         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
10561         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
10562         (main): Call set_program_name.
10563
10564         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
10565         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
10566         (main): Call set_program_name.
10567
10568         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
10569         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
10570         (main): Call set_program_name.
10571
10572         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
10573         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
10574         (main): Call set_program_name.
10575
10576 2009-01-19  Eric Blake  <ebb9@byu.net>
10577
10578         test-unistd: test previous patch
10579         * tests/test-unistd.c: Test *_FILENO macros.
10580
10581         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
10582         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10583         Guarantee a definition.
10584         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
10585         * modules/unistd-safer (Depends-on): Add dependency on unistd.
10586         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
10587         * lib/dup-safer.c (STDERR_FILENO): Likewise.
10588         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10589         Likewise.
10590         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
10591         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
10592         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10593         Likewise.
10594         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
10595         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
10596         (STDERR_FILENO): Likewise.
10597         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
10598         (STDERR_FILENO): Likewise.
10599         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
10600         (STDERR_FILENO): Likewise.
10601         Reported by Elbert Pol.
10602
10603 2009-01-19  Eric Blake  <ebb9@byu.net>
10604
10605         doc: mention more functions added in cygwin 1.7.0
10606         * doc/posix-functions/abort.texi (abort): Update wording related
10607         to cygwin.
10608         * doc/posix-functions/daylight.texi (daylight): Likewise.
10609         * doc/posix-functions/optarg.texi (optarg): Likewise.
10610         * doc/posix-functions/optarg.texi (opterr): Likewise.
10611         * doc/posix-functions/optarg.texi (optind): Likewise.
10612         * doc/posix-functions/optarg.texi (optopt): Likewise.
10613         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
10614         worked in 1.5.x, and was withdrawn in 1.7.
10615         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
10616         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
10617         cygwin versions.
10618         * doc/posix-functions/perror.texi (perror): Likewise.
10619         * doc/posix-functions/printf.texi (printf): Likewise.
10620         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
10621         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
10622         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
10623         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
10624         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
10625         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
10626         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
10627         Likewise.
10628         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
10629         Likewise.
10630         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
10631         this function.
10632         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
10633         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
10634         Likewise.
10635         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
10636         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
10637         * doc/posix-functions/confstr.texi (confstr): Likewise.
10638         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
10639         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
10640         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
10641         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
10642         * doc/posix-functions/fputws.texi (fputws): Likewise.
10643         * doc/posix-functions/fwide.texi (fwide): Likewise.
10644         * doc/posix-functions/getwc.texi (getwc): Likewise.
10645         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
10646         * doc/posix-functions/putwc.texi (putwc): Likewise.
10647         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
10648         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
10649         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
10650         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
10651         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
10652         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
10653         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
10654         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
10655         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
10656         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
10657         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
10658
10659 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
10660
10661         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
10662         * lib/ioctl.c: Include <sys/ioctl.h>.
10663
10664 2009-01-19  Simon Josefsson  <simon@josefsson.org>
10665
10666         * modules/getdate-tests (Depends-on): Add progname.
10667         * tests/test-getdate.c: Use progname module, to avoid link errors
10668         on non-glibc systems.
10669
10670 2009-01-18  Simon Josefsson  <simon@josefsson.org>
10671
10672         * modules/filenamecat-tests (Depends-on): Add progname.
10673         * modules/fstrcmp-tests (Depends-on): Likewise.
10674
10675         * tests/test-filenamecat.c: Use progname module, to avoid link
10676         errors on non-glibc systems.
10677         * tests/test-fstrcmp.c: Likewise.
10678
10679 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
10680
10681         gettimeofday: avoid warning: nested extern declaration of 'localtime'
10682         * lib/gettimeofday.c: Move extern declaration out of function.
10683
10684 2009-01-18  Bruno Haible  <bruno@clisp.org>
10685
10686         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
10687         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
10688         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
10689
10690 2009-01-18  Bruno Haible  <bruno@clisp.org>
10691
10692         * lib/strftime.c (MEMPCPY): Remove unused macro.
10693         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
10694
10695 2009-01-18  Martin Lambers  <marlam@marlam.de>
10696
10697         New module 'link'.
10698         * lib/unistd.in.h (link): New declaration.
10699         * lib/link.c: New file.
10700         * m4/link.m4: New file.
10701         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
10702         HAVE_LINK.
10703         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
10704         * modules/link: New file.
10705         * doc/posix-functions/link.texi: Mention the new module.
10706
10707 2009-01-18  Bruno Haible  <bruno@clisp.org>
10708
10709         * tests/test-avltree_list.c (main): Call set_program_name.
10710         * tests/test-avltree_oset.c (main): Likewise.
10711         * tests/test-obstack-printf.c: Include progname.h.
10712         (main): Call set_program_name.
10713         * tests/test-quotearg.c: Include progname.h.
10714         (main): Call set_program_name.
10715         * tests/test-xmemdup0.c: Include progname.h.
10716         (main): Call set_program_name.
10717
10718 2009-01-18  Bruno Haible  <bruno@clisp.org>
10719
10720         New module 'alphasort'.
10721         * lib/dirent.in.h (alphasort): New declaration.
10722         * lib/alphasort.c: New file, from glibc with modifications.
10723         * m4/alphasort.m4: New file.
10724         * modules/alphasort: New file.
10725         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
10726         HAVE_ALPHASORT.
10727         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
10728         HAVE_ALPHASORT.
10729         * doc/posix-functions/alphasort.texi: Mention the new module and the
10730         portability problems.
10731
10732 2009-01-18  Bruno Haible  <bruno@clisp.org>
10733
10734         New module 'scandir'.
10735         * lib/dirent.in.h (scandir): New declaration.
10736         * lib/scandir.c: New file, from glibc with modifications.
10737         * m4/scandir.m4: New file.
10738         * modules/scandir: New file.
10739         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
10740         HAVE_SCANDIR.
10741         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
10742         HAVE_SCANDIR.
10743         * doc/posix-functions/scandir.texi: Mention the new module and the
10744         portability problems.
10745
10746 2009-01-17  Bruno Haible  <bruno@clisp.org>
10747
10748         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
10749         Update documentation.
10750         (func_remove_suffix): Escape all dots in the suffix. Update
10751         documentation.
10752         (func_filter_filelist): Update documentation.
10753         Reported by Ralf Wildenhues.
10754
10755 2009-01-17  Bruno Haible  <bruno@clisp.org>
10756
10757         * modules/dprintf-posix-tests: New file.
10758         * tests/test-dprintf-posix.sh: New file.
10759         * tests/test-dprintf-posix.c: New file.
10760
10761         New modules 'dprintf', 'dprintf-posix'.
10762         * lib/stdio.in.h (dprintf): New declaration.
10763         * lib/dprintf.c: New file.
10764         * m4/dprintf.m4: New file.
10765         * m4/dprintf-posix.m4: New file.
10766         * modules/dprintf: New file.
10767         * modules/dprintf-posix: New file.
10768         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
10769         HAVE_DPRINTF, REPLACE_DPRINTF.
10770         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
10771         HAVE_DPRINTF, REPLACE_DPRINTF.
10772         * doc/posix-functions/dprintf.texi: Mention the new modules.
10773
10774 2009-01-17  Bruno Haible  <bruno@clisp.org>
10775
10776         * modules/vdprintf-posix-tests: New file.
10777         * tests/test-vdprintf-posix.sh: New file.
10778         * tests/test-vdprintf-posix.c: New file.
10779
10780         New modules 'vdprintf', 'vdprintf-posix'.
10781         * lib/stdio.in.h (vdprintf): New declaration.
10782         * lib/vdprintf.c: New file.
10783         * m4/vdprintf.m4: New file.
10784         * m4/vdprintf-posix.m4: New file.
10785         * modules/vdprintf: New file.
10786         * modules/vdprintf-posix: New file.
10787         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
10788         HAVE_VDPRINTF, REPLACE_VDPRINTF.
10789         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
10790         HAVE_VDPRINTF, REPLACE_VDPRINTF.
10791         * doc/posix-functions/vdprintf.texi: Mention the new modules.
10792
10793 2009-01-17  Bruno Haible  <bruno@clisp.org>
10794
10795         Fix replacement of fopen on mingw.
10796         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
10797         mingw.
10798
10799 2009-01-17  Bruno Haible  <bruno@clisp.org>
10800
10801         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
10802         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
10803
10804 2009-01-17  Bruno Haible  <bruno@clisp.org>
10805
10806         Avoid test-fflush2.sh failure on mingw.
10807         * tests/test-fflush2.c: Include binary-io.h.
10808         (main): Put standard input into binary mode.
10809         * modules/fflush-tests (Depends-on): Add binary-io.
10810
10811 2009-01-17  Bruno Haible  <bruno@clisp.org>
10812
10813         * lib/wchar.in.h: In another particular situation, include only the
10814         system's <wchar.h> file.
10815         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
10816         Reported by Albert Chin-A-Young <china@thewrittenword.com>
10817         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
10818
10819 2009-01-17  Bruno Haible  <bruno@clisp.org>
10820
10821         Support for stripping executables in --enable-relocatable.
10822         * build-aux/install-reloc: Expect one more argument, or an environment
10823         variable RELOC_STRIP_PROG. If set, strip the destination program and
10824         its wrapper.
10825         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
10826         RELOC_STRIP_PROG.
10827         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
10828         to set RELOCATABLE_STRIP.
10829         * NEWS: Mention the new Makefile requirement.
10830
10831 2009-01-17  Bruno Haible  <bruno@clisp.org>
10832
10833         * build-aux/install-reloc: Remove debugging information left over by
10834         C compiler on MacOS X.
10835
10836 2009-01-17  Bruno Haible  <bruno@clisp.org>
10837
10838         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
10839         * lib/progreloc.c (find_executable): Fix type of pointer passed to
10840         _NSGetExecutablePath.
10841
10842 2009-01-16  Jim Meyering  <meyering@redhat.com>
10843
10844         strerror: avoid warnings about discarding "const"
10845         * lib/strerror.c (rpl_strerror): Instead of returning a const
10846         string from each and every "case", use a variable, and add a single
10847         cast after the switch.
10848
10849 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
10850
10851         * lib/arpa_inet.in.h: Add extern "C" block for C++.
10852
10853 2009-01-16  Bruno Haible  <bruno@clisp.org>
10854
10855         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
10856         array initializer syntax that also works in C++ mode.
10857         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10858
10859 2009-01-16  Jim Meyering  <meyering@redhat.com>
10860
10861         poll: suppress a warning
10862         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
10863         to ignore "...unsigned expression < 0 is always false" warnings.
10864
10865 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
10866
10867         poll: remove declarations of unused variables
10868         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
10869         sockbuf and optlen.
10870
10871 2009-01-15  Bruno Haible  <bruno@clisp.org>
10872
10873         Make fflush-after-ungetc POSIX compliant on BSD systems.
10874         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
10875         (clear_ungetc_buffer): Implement also for other systems.
10876         (rpl_fflush): On glibc systems, invoke
10877         clear_ungetc_buffer_preserving_position. Otherwise, invoke
10878         clear_ungetc_buffer after fetching the stream's position, not before.
10879
10880 2009-01-15  Bruno Haible  <bruno@clisp.org>
10881
10882         Make fflush-after-ungetc POSIX compliant on glibc systems.
10883         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
10884         after ungetc.
10885         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
10886         (rpl_fflush): On glibc systems, simply call the system's fflush
10887         function after clearing the ungetc buffer.
10888         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
10889         Instead, lseek only to the end of file, then use the system's fseeko
10890         for the rest. On glibc systems, reset the EOF indicator bit.
10891
10892 2009-01-15  Jim Meyering  <meyering@redhat.com>
10893
10894         openmp.m4: revert quote-adding change, for portability to older autoconf
10895         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
10896         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
10897         Simon Josefsson noticed the problem when using autoconf-2.61.
10898
10899 2009-01-15  Bruno Haible  <bruno@clisp.org>
10900
10901         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
10902         * tests/test-fflush2.c (ASSERT): Always fail.
10903         (main): Add two tests for fflush() after ungetc(), taking into account
10904         the Austin Group's clarification.
10905         Suggested by Eric Blake.
10906
10907 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
10908
10909         mktime.m4: remove K&R-style function prototypes
10910         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
10911         for the Sun C++ compiler.
10912
10913 2009-01-14  Bruno Haible  <bruno@clisp.org>
10914
10915         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
10916         while including <wchar.h>.
10917         * lib/wchar.in.h: In two particular situations on HP-UX, include only
10918         the system's <wchar.h> file.
10919         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10920
10921 2009-01-14  Bruno Haible  <bruno@clisp.org>
10922
10923         * m4/csharp.m4: Don't mention gettext on the serial number line.
10924         * m4/csharpexec.m4: Likewise.
10925         * m4/eaccess.m4: Likewise.
10926         * m4/javaexec.m4: Likewise.
10927         * m4/sig_atomic_t.m4: Likewise.
10928         * m4/tmpdir.m4: Likewise.
10929         * m4/intldir.m4: Bump gettext version.
10930         * m4/lib-ld.m4: Likewise.
10931
10932 2009-01-14  Bruno Haible  <bruno@clisp.org>
10933
10934         * lib/progname.c (set_program_name): Add more comments.
10935         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
10936
10937 2009-01-14  Simon Josefsson  <simon@josefsson.org>
10938
10939         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
10940         were sys/stat.h does not define it.
10941
10942 2009-01-14  Jim Meyering  <meyering@redhat.com>
10943
10944         many *.m4 files: improve m4 quoting
10945         99% of this change was performed by running the following commands:
10946         git ls-files | grep '\.m4$' | xargs perl -pi \
10947           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
10948           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
10949           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
10950           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
10951         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
10952         The remainder were to add Copyright dates, increment serial numbers,
10953         undo some changes in comments, exclude m4/intl.m4, and add quotes
10954         around the "1" in ",1" where the unusual spacing prohibited the
10955         above regexps from doing the job.  For more details, see
10956         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
10957         * m4/acl.m4: Modified.
10958         * m4/afs.m4: Likewise.
10959         * m4/alloca.m4: Likewise.
10960         * m4/argp.m4: Likewise.
10961         * m4/argz.m4: Likewise.
10962         * m4/atexit.m4: Likewise.
10963         * m4/bison-i18n.m4: Likewise.
10964         * m4/bison.m4: Likewise.
10965         * m4/byteswap.m4: Likewise.
10966         * m4/c-stack.m4: Likewise.
10967         * m4/c-strtod.m4: Likewise.
10968         * m4/calloc.m4: Likewise.
10969         * m4/canonicalize-lgpl.m4: Likewise.
10970         * m4/chown.m4: Likewise.
10971         * m4/clock_time.m4: Likewise.
10972         * m4/codeset.m4: Likewise.
10973         * m4/copy-file.m4: Likewise.
10974         * m4/csharp.m4: Likewise.
10975         * m4/csharpcomp.m4: Likewise.
10976         * m4/csharpexec.m4: Likewise.
10977         * m4/d-ino.m4: Likewise.
10978         * m4/d-type.m4: Likewise.
10979         * m4/dirfd.m4: Likewise.
10980         * m4/double-slash-root.m4: Likewise.
10981         * m4/eaccess.m4: Likewise.
10982         * m4/eealloc.m4: Likewise.
10983         * m4/environ.m4: Likewise.
10984         * m4/errno_h.m4: Likewise.
10985         * m4/euidaccess.m4: Likewise.
10986         * m4/execute.m4: Likewise.
10987         * m4/fatal-signal.m4: Likewise.
10988         * m4/fchdir.m4: Likewise.
10989         * m4/fcntl_h.m4: Likewise.
10990         * m4/fileblocks.m4: Likewise.
10991         * m4/filenamecat.m4: Likewise.
10992         * m4/findprog.m4: Likewise.
10993         * m4/flexmember.m4: Likewise.
10994         * m4/fnmatch.m4: Likewise.
10995         * m4/fopen.m4: Likewise.
10996         * m4/fpending.m4: Likewise.
10997         * m4/fprintf-posix.m4: Likewise.
10998         * m4/free.m4: Likewise.
10999         * m4/frexp.m4: Likewise.
11000         * m4/frexpl.m4: Likewise.
11001         * m4/fsusage.m4: Likewise.
11002         * m4/ftruncate.m4: Likewise.
11003         * m4/gc-camellia.m4: Likewise.
11004         * m4/gc-random.m4: Likewise.
11005         * m4/gc.m4: Likewise.
11006         * m4/getaddrinfo.m4: Likewise.
11007         * m4/getcwd-abort-bug.m4: Likewise.
11008         * m4/getcwd-path-max.m4: Likewise.
11009         * m4/getdate.m4: Likewise.
11010         * m4/getdomainname.m4: Likewise.
11011         * m4/getgroups.m4: Likewise.
11012         * m4/gethostname.m4: Likewise.
11013         * m4/gethrxtime.m4: Likewise.
11014         * m4/getline.m4: Likewise.
11015         * m4/getloadavg.m4: Likewise.
11016         * m4/getndelim2.m4: Likewise.
11017         * m4/getpass.m4: Likewise.
11018         * m4/gettext.m4: Likewise.
11019         * m4/gettime.m4: Likewise.
11020         * m4/gettimeofday.m4: Likewise.
11021         * m4/gnulib-common.m4: Likewise.
11022         * m4/group-member.m4: Likewise.
11023         * m4/host-os.m4: Likewise.
11024         * m4/iconv.m4: Likewise.
11025         * m4/iconv_open.m4: Likewise.
11026         * m4/inet_ntop.m4: Likewise.
11027         * m4/inet_pton.m4: Likewise.
11028         * m4/inline.m4: Likewise.
11029         * m4/intldir.m4: Likewise.
11030         * m4/intlmacosx.m4: Likewise.
11031         * m4/intmax.m4: Likewise.
11032         * m4/intmax_t.m4: Likewise.
11033         * m4/inttypes.m4: Likewise.
11034         * m4/inttypes_h.m4: Likewise.
11035         * m4/inttypes-pri.m4: Likewise.
11036         * m4/isapipe.m4: Likewise.
11037         * m4/isnand.m4: Likewise.
11038         * m4/isnanf.m4: Likewise.
11039         * m4/isnanl.m4: Likewise.
11040         * m4/javacomp.m4: Likewise.
11041         * m4/javaexec.m4: Likewise.
11042         * m4/jm-winsz1.m4: Likewise.
11043         * m4/jm-winsz2.m4: Likewise.
11044         * m4/lchown.m4: Likewise.
11045         * m4/lcmessage.m4: Likewise.
11046         * m4/ldexpl.m4: Likewise.
11047         * m4/lib-ld.m4: Likewise.
11048         * m4/lib-link.m4: Likewise.
11049         * m4/libsigsegv.m4: Likewise.
11050         * m4/link-follow.m4: Likewise.
11051         * m4/localcharset.m4: Likewise.
11052         * m4/locale-fr.m4: Likewise.
11053         * m4/locale-ja.m4: Likewise.
11054         * m4/locale-tr.m4: Likewise.
11055         * m4/locale-zh.m4: Likewise.
11056         * m4/lock.m4: Likewise.
11057         * m4/longlong.m4: Likewise.
11058         * m4/ls-mntd-fs.m4: Likewise.
11059         * m4/lstat.m4: Likewise.
11060         * m4/malloc.m4: Likewise.
11061         * m4/mathl.m4: Likewise.
11062         * m4/mbrtowc.m4: Likewise.
11063         * m4/mbstate_t.m4: Likewise.
11064         * m4/mbswidth.m4: Likewise.
11065         * m4/memchr.m4: Likewise.
11066         * m4/memcmp.m4: Likewise.
11067         * m4/memcpy.m4: Likewise.
11068         * m4/memmem.m4: Likewise.
11069         * m4/memmove.m4: Likewise.
11070         * m4/mempcpy.m4: Likewise.
11071         * m4/memrchr.m4: Likewise.
11072         * m4/memset.m4: Likewise.
11073         * m4/minmax.m4: Likewise.
11074         * m4/mkdir-slash.m4: Likewise.
11075         * m4/mkdtemp.m4: Likewise.
11076         * m4/mktime.m4: Likewise.
11077         * m4/mmap-anon.m4: Likewise.
11078         * m4/mountlist.m4: Likewise.
11079         * m4/nanosleep.m4: Likewise.
11080         * m4/nls.m4: Likewise.
11081         * m4/nocrash.m4: Likewise.
11082         * m4/open.m4: Likewise.
11083         * m4/openat.m4: Likewise.
11084         * m4/openmp.m4: Likewise.
11085         * m4/pathmax.m4: Likewise.
11086         * m4/perl.m4: Likewise.
11087         * m4/physmem.m4: Likewise.
11088         * m4/pipe.m4: Likewise.
11089         * m4/po.m4: Likewise.
11090         * m4/poll.m4: Likewise.
11091         * m4/posixtm.m4: Likewise.
11092         * m4/posixver.m4: Likewise.
11093         * m4/printf-frexp.m4: Likewise.
11094         * m4/printf-frexpl.m4: Likewise.
11095         * m4/printf-posix.m4: Likewise.
11096         * m4/printf-posix-rpl.m4: Likewise.
11097         * m4/printf.m4: Likewise.
11098         * m4/progtest.m4: Likewise.
11099         * m4/putenv.m4: Likewise.
11100         * m4/readline.m4: Likewise.
11101         * m4/readlink.m4: Likewise.
11102         * m4/readutmp.m4: Likewise.
11103         * m4/realloc.m4: Likewise.
11104         * m4/regex.m4: Likewise.
11105         * m4/relocatable.m4: Likewise.
11106         * m4/relocatable-lib.m4: Likewise.
11107         * m4/rename-dest-slash.m4: Likewise.
11108         * m4/rename.m4: Likewise.
11109         * m4/rmdir-errno.m4: Likewise.
11110         * m4/rmdir.m4: Likewise.
11111         * m4/roundf.m4: Likewise.
11112         * m4/roundl.m4: Likewise.
11113         * m4/rpmatch.m4: Likewise.
11114         * m4/save-cwd.m4: Likewise.
11115         * m4/selinux-selinux-h.m4: Likewise.
11116         * m4/setenv.m4: Likewise.
11117         * m4/settime.m4: Likewise.
11118         * m4/sig2str.m4: Likewise.
11119         * m4/sig_atomic_t.m4: Likewise.
11120         * m4/signalblocking.m4: Likewise.
11121         * m4/signbit.m4: Likewise.
11122         * m4/sigpipe.m4: Likewise.
11123         * m4/sockets.m4: Likewise.
11124         * m4/sockpfaf.m4: Likewise.
11125         * m4/st_dm_mode.m4: Likewise.
11126         * m4/stat-time.m4: Likewise.
11127         * m4/stdbool.m4: Likewise.
11128         * m4/stdint.m4: Likewise.
11129         * m4/stdint_h.m4: Likewise.
11130         * m4/stpcpy.m4: Likewise.
11131         * m4/stpncpy.m4: Likewise.
11132         * m4/strcase.m4: Likewise.
11133         * m4/strchrnul.m4: Likewise.
11134         * m4/strcspn.m4: Likewise.
11135         * m4/strdup.m4: Likewise.
11136         * m4/strftime.m4: Likewise.
11137         * m4/strndup.m4: Likewise.
11138         * m4/strnlen.m4: Likewise.
11139         * m4/strpbrk.m4: Likewise.
11140         * m4/strptime.m4: Likewise.
11141         * m4/strsep.m4: Likewise.
11142         * m4/strtod.m4: Likewise.
11143         * m4/strtoimax.m4: Likewise.
11144         * m4/strtok_r.m4: Likewise.
11145         * m4/strtol.m4: Likewise.
11146         * m4/strtoll.m4: Likewise.
11147         * m4/strtoul.m4: Likewise.
11148         * m4/strtoull.m4: Likewise.
11149         * m4/strtoumax.m4: Likewise.
11150         * m4/strverscmp.m4: Likewise.
11151         * m4/threadlib.m4: Likewise.
11152         * m4/timegm.m4: Likewise.
11153         * m4/tm_gmtoff.m4: Likewise.
11154         * m4/tmpdir.m4: Likewise.
11155         * m4/tmpfile.m4: Likewise.
11156         * m4/tzset.m4: Likewise.
11157         * m4/uintmax_t.m4: Likewise.
11158         * m4/unlinkdir.m4: Likewise.
11159         * m4/unlocked-io.m4: Likewise.
11160         * m4/uptime.m4: Likewise.
11161         * m4/userspec.m4: Likewise.
11162         * m4/utimbuf.m4: Likewise.
11163         * m4/utime.m4: Likewise.
11164         * m4/utimes-null.m4: Likewise.
11165         * m4/utimes.m4: Likewise.
11166         * m4/vararrays.m4: Likewise.
11167         * m4/vasnprintf.m4: Likewise.
11168         * m4/vfprintf-posix.m4: Likewise.
11169         * m4/vprintf-posix.m4: Likewise.
11170         * m4/wait-process.m4: Likewise.
11171         * m4/wchar_t.m4: Likewise.
11172         * m4/wint_t.m4: Likewise.
11173         * m4/write-any-file.m4: Likewise.
11174         * m4/yield.m4: Likewise.
11175
11176 2009-01-13  Bruno Haible  <bruno@clisp.org>
11177
11178         Avoid test-copy-file.sh failures when ACL support insufficient.
11179         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
11180         TESTS_ENVIRONMENT.
11181         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
11182         Reported by Jim Meyering.
11183
11184 2009-01-13  Bruno Haible  <bruno@clisp.org>
11185
11186         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
11187         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
11188         * modules/unistdio/u8-printf-parse (Files): Likewise.
11189         * modules/unistdio/u32-printf-parse (Files): Likewise.
11190         * modules/unistdio/ulc-printf-parse (Files): Likewise.
11191
11192 2009-01-13  Simon Josefsson  <simon@josefsson.org>
11193
11194         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
11195         and m4/inttypes_h.m4 too.
11196
11197 2009-01-12  Eric Blake  <ebb9@byu.net>
11198
11199         tests: IRIX 6.2 cc can't compile -0.0 into .data
11200         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
11201         rather than at compile-time.
11202         * tests/test-floorl.c (minus_zero): Likewise.
11203         * tests/test-frexpl.c (minus_zero): Likewise.
11204         * tests/test-isnan.c (minus_zerol): Likewise.
11205         * tests/test-isnanl.h (minus_zero): Likewise.
11206         * tests/test-ldexpl.c (minus_zero): Likewise.
11207         * tests/test-roundl.c (minus_zero): Likewise.
11208         * tests/test-signbit.c (minus_zerol): Likewise.
11209         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
11210         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
11211         * tests/test-truncl.c (minus_zero): Likewise.
11212         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
11213         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
11214         Reported by Tom G. Christensen and Nelson H. F. Beebe.
11215
11216 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11217
11218         regex: fix glibc bug 9697
11219         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
11220         handling.
11221
11222 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11223
11224         regex: fix glibc bug 697
11225         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
11226         being NULL also if there are no backreferences.
11227
11228 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11229
11230         regex: merge glibc changes
11231         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
11232         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
11233         re_string_skip_chars, re_string_reconstruct): Likewise.
11234         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
11235
11236 2009-01-07  Jim Meyering  <meyering@redhat.com>
11237
11238         poll: filter through cppi
11239         * lib/poll.c: Indent cpp directives to reflect nesting.
11240
11241 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
11242
11243         poll: don't return uninitialized
11244         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
11245
11246 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
11247
11248         avoid compile failure on AIX 6.1
11249         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
11250         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
11251
11252 2009-01-04  Jim Meyering  <meyering@redhat.com>
11253
11254         remove duplicate inclusion of <stdio.h>
11255         * tests/test-fprintf-posix.c: Likewise.
11256         * tests/test-printf-posix.c: Likewise.
11257         * tests/test-snprintf-posix.c: Likewise.
11258         * tests/test-sprintf-posix.c: Likewise.
11259         * tests/test-vasprintf-posix.c: Likewise.
11260         * tests/test-vfprintf-posix.c: Likewise.
11261         * tests/test-vprintf-posix.c: Likewise.
11262         * tests/test-vsnprintf-posix.c: Likewise.
11263         * tests/test-vsprintf-posix.c: Likewise.
11264
11265 2009-01-03  Jim Meyering  <meyering@redhat.com>
11266
11267         gnulib-tool: fix sed-based filtering
11268         * gnulib-tool (func_filter_filelist): Remove extra backslash
11269         in sed_fff_filter definition.
11270
11271 2009-01-02  Jim Meyering  <meyering@redhat.com>
11272
11273         strftime: avoid compilation failure on Solaris 2.6
11274         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
11275         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
11276         Don't #define mbrlen or mbsinit, since now they're guaranteed to
11277         be available.  Reported by Tom G. Christensen.  Details in
11278         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
11279
11280 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11281             Bruno Haible  <bruno@clisp.org>
11282
11283         Speed up gnulib-tool by doing more string processing through shell
11284         built-ins.
11285         * gnulib-tool (fast_func_append): New variable.
11286         (func_remove_prefix, func_remove_suffix): New functions.
11287         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
11288         (func_filter_filelist): New function.
11289         (func_get_dependencies): Use func_remove_suffix instead of sed.
11290         (func_get_automake_snippet): Use func_filter_filelist instead of a
11291         subshell and sed invocation.
11292
11293 2009-01-01  Bruno Haible  <bruno@clisp.org>
11294
11295         Fix a security bug.
11296         * gnulib-tool (func_import, import, update): Don't allow the characters
11297         '"', '$', '`', '\' in macro arguments that become part of commands that
11298         are evaluated.
11299
11300 2009-01-01  Bruno Haible  <bruno@clisp.org>
11301
11302         * gnulib-tool (func_reset_sigpipe): Add more comments.
11303
11304 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11305
11306         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
11307         func_emit_tests_Makefile_am, func_import): Abort loops early if we
11308         already know the answer.
11309
11310 2009-01-01  Jim Meyering  <meyering@redhat.com>
11311
11312         * lib/version-etc.c (version_etc_va): Update copyright year.
11313
11314 2008-12-30  Bruno Haible  <bruno@clisp.org>
11315
11316         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
11317         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
11318         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
11319
11320 2008-12-29  Eric Blake  <ebb9@byu.net>
11321
11322         multiarch: avoid autoconf AC_REQUIRE bug
11323         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
11324         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
11325         2.63 and older.
11326         Reported by Bruno Haible, and analyzed in
11327         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
11328
11329 2008-12-29  Bruno Haible  <bruno@clisp.org>
11330
11331         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
11332         files in subdirectories correctly.
11333         Reported by Ralf Wildenhues.
11334
11335 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11336
11337         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
11338         rather than 'join FILE -', for Solaris join.
11339
11340 2008-12-29  Bruno Haible  <bruno@clisp.org>
11341
11342         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
11343         quoting.
11344         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
11345         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
11346         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
11347         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
11348         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
11349         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
11350         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
11351         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
11352         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
11353         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
11354         * m4/nls.m4 (AM_NLS): Likewise.
11355         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
11356         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
11357         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
11358         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
11359         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
11360         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
11361         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
11362         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
11363         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
11364         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
11365         * m4/xsize.m4 (gl_XSIZE): Likewise.
11366         Suggested by Jim Meyering.
11367
11368 2008-11-17  Bruce Korb  <bkorb@gnu.org>
11369
11370         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
11371         * lib/parse-duration.c: use a switch instead of cascading if's.
11372
11373 2008-12-29  Eric Blake  <ebb9@byu.net>
11374
11375         wchar.h: supply WEOF on Irix 5.3
11376         * lib/wchar.in.h (wint_t): Also supply WEOF.
11377         * lib/wctype.in.h (wint_t): Likewise.
11378         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
11379         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
11380         Reported by Tom G. Christensen.
11381
11382 2008-12-26  Bruno Haible  <bruno@clisp.org>
11383
11384         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
11385         i486, i586, i686.
11386
11387 2008-12-26  Bruno Haible  <bruno@clisp.org>
11388
11389         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
11390
11391 2008-12-26  Bruno Haible  <bruno@clisp.org>
11392
11393         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
11394         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
11395         not __STDC_CONSTANT_MACROS.
11396         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
11397
11398 2008-12-25  Bruno Haible  <bruno@clisp.org>
11399
11400         Add support for universal builds to vasnprintf.
11401         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
11402         universal builds, guess no.
11403         * modules/vasnprintf-posix (Depends-on): Add multiarch.
11404         * modules/vasprintf-posix (Depends-on): Likewise.
11405         * modules/fprintf-posix (Depends-on): Likewise.
11406         * modules/vfprintf-posix (Depends-on): Likewise.
11407         * modules/snprintf-posix (Depends-on): Likewise.
11408         * modules/vsnprintf-posix (Depends-on): Likewise.
11409         * modules/sprintf-posix (Depends-on): Likewise.
11410         * modules/vsprintf-posix (Depends-on): Likewise.
11411         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
11412         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
11413         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
11414         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
11415         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
11416         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
11417         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
11418
11419         Add support for universal builds to <inttypes.h>.
11420         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
11421         _SCNu64_PREFIX): In Apple
11422         universal builds, define directly, using _LP64.
11423         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
11424         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
11425         * modules/inttypes (Depends-on): Add multiarch.
11426         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
11427
11428         Add support for universal builds to <stdint.h>.
11429         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
11430         universal builds, define directly, using _LP64.
11431         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
11432         Apple universal builds, don't test for the size and suffix of ptrdiff_t
11433         and size_t.
11434         * modules/stdint (Depends-on): Add multiarch.
11435         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
11436
11437         New module 'multiarch'.
11438         * modules/multiarch: New file.
11439         * m4/multiarch.m4: New file.
11440
11441 2008-12-25  Bruno Haible  <bruno@clisp.org>
11442
11443         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
11444
11445 2008-12-25  Bruno Haible  <bruno@clisp.org>
11446
11447         * modules/btowc (License): Relicense under LGPLv2+.
11448         * modules/mbsinit (License): Likewise.
11449         * modules/mbrtowc (License): Likewise.
11450         * modules/wcrtomb (License): Likewise.
11451         * modules/streq (License): Likewise.
11452         Reported by David Lutterkort <lutter@redhat.com>.
11453
11454 2008-12-23  Bruno Haible  <bruno@clisp.org>
11455
11456         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
11457
11458 2008-12-23  Bruno Haible  <bruno@clisp.org>
11459
11460         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
11461         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
11462         GETADDRINFO_LIB, not in LIBS.
11463         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
11464         * modules/canon-host (Link): Likewise.
11465         * NEWS: Mention the change.
11466         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
11467         GETADDRINFO_LIB.
11468
11469 2008-12-22  Bruno Haible  <bruno@clisp.org>
11470
11471         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
11472         * doc/posix-functions/iswalpha_l.texi: Likewise.
11473         * doc/posix-functions/iswblank_l.texi: Likewise.
11474         * doc/posix-functions/iswcntrl_l.texi: Likewise.
11475         * doc/posix-functions/iswctype_l.texi: Likewise.
11476         * doc/posix-functions/iswdigit_l.texi: Likewise.
11477         * doc/posix-functions/iswgraph_l.texi: Likewise.
11478         * doc/posix-functions/iswlower_l.texi: Likewise.
11479         * doc/posix-functions/iswprint_l.texi: Likewise.
11480         * doc/posix-functions/iswpunct_l.texi: Likewise.
11481         * doc/posix-functions/iswspace_l.texi: Likewise.
11482         * doc/posix-functions/iswupper_l.texi: Likewise.
11483         * doc/posix-functions/iswxdigit_l.texi: Likewise.
11484         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
11485         * doc/posix-functions/open_wmemstream.texi: Likewise.
11486         * doc/posix-functions/swscanf.texi: Likewise.
11487         * doc/posix-functions/towctrans_l.texi: Likewise.
11488         * doc/posix-functions/towlower.texi: Likewise.
11489         * doc/posix-functions/towlower_l.texi: Likewise.
11490         * doc/posix-functions/towupper.texi: Likewise.
11491         * doc/posix-functions/towupper_l.texi: Likewise.
11492         * doc/posix-functions/vfwprintf.texi: Likewise.
11493         * doc/posix-functions/vfwscanf.texi: Likewise.
11494         * doc/posix-functions/vswscanf.texi: Likewise.
11495         * doc/posix-functions/vwprintf.texi: Likewise.
11496         * doc/posix-functions/vwscanf.texi: Likewise.
11497         * doc/posix-functions/wcpcpy.texi: Likewise.
11498         * doc/posix-functions/wcpncpy.texi: Likewise.
11499         * doc/posix-functions/wcscasecmp.texi: Likewise.
11500         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
11501         * doc/posix-functions/wcscoll_l.texi: Likewise.
11502         * doc/posix-functions/wcsdup.texi: Likewise.
11503         * doc/posix-functions/wcsncasecmp.texi: Likewise.
11504         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
11505         * doc/posix-functions/wcsnlen.texi: Likewise.
11506         * doc/posix-functions/wcsnrtombs.texi: Likewise.
11507         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
11508         * doc/posix-functions/wctrans_l.texi: Likewise.
11509         * doc/posix-functions/wctype_l.texi: Likewise.
11510         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
11511         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
11512         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
11513         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
11514         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
11515         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
11516         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
11517         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
11518         * doc/glibc-functions/wcschrnul.texi: Likewise.
11519         * doc/glibc-functions/wcsftime_l.texi: Likewise.
11520         * doc/glibc-functions/wcstod_l.texi: Likewise.
11521         * doc/glibc-functions/wcstof_l.texi: Likewise.
11522         * doc/glibc-functions/wcstol_l.texi: Likewise.
11523         * doc/glibc-functions/wcstold_l.texi: Likewise.
11524         * doc/glibc-functions/wcstoll_l.texi: Likewise.
11525         * doc/glibc-functions/wcstoq.texi: Likewise.
11526         * doc/glibc-functions/wcstoul_l.texi: Likewise.
11527         * doc/glibc-functions/wcstoull_l.texi: Likewise.
11528         * doc/glibc-functions/wcstouq.texi: Likewise.
11529         * doc/glibc-functions/wmempcpy.texi: Likewise.
11530
11531 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
11532             Eric Blake  <ebb9@byu.net>
11533             Paolo Bonzini  <bonzini@gnu.org>
11534             Bruno Haible  <bruno@clisp.org>
11535
11536         Make c-stack work on Haiku.
11537         * lib/c-stack.c (SA_ONSTACK): Define fallback.
11538         (c_stack_action): Use SA_ONSTACK flag.
11539
11540 2008-12-22  Bruno Haible  <bruno@clisp.org>
11541
11542         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
11543
11544 2008-12-22  Bruno Haible  <bruno@clisp.org>
11545
11546         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
11547         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
11548         being overridden.
11549         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
11550         New macros.
11551         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
11552         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
11553         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
11554         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
11555
11556 2008-12-22  Bruno Haible  <bruno@clisp.org>
11557
11558         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
11559         from test code.
11560
11561 2008-12-22  Eric Blake  <ebb9@byu.net>
11562
11563         Avoid gcc warnings on cygwin.
11564         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
11565         Avoid unused variable.
11566         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
11567         Likewise.
11568
11569 2008-12-22  Bruno Haible  <bruno@clisp.org>
11570
11571         Remove HAVE_MBRTOWC conditionals.
11572         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
11573         (mbscasecmp): Assume mbrtowc function.
11574         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
11575         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
11576         * lib/mbschr.c: Include mbuiter.h unconditionally.
11577         (mbschr): Assume mbrtowc function.
11578         * lib/mbscspn.c: Include mbuiter.h unconditionally.
11579         (mbscspn): Assume mbrtowc function.
11580         * lib/mbslen.c: Include mbuiter.h unconditionally.
11581         (mbslen): Assume mbrtowc function.
11582         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
11583         (mbsncasecmp): Assume mbrtowc function.
11584         * lib/mbsnlen.c: Include mbiter.h unconditionally.
11585         (mbsnlen): Assume mbrtowc function.
11586         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
11587         (mbspbrk): Assume mbrtowc function.
11588         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
11589         (mbspcasecmp): Assume mbrtowc function.
11590         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
11591         (mbsrchr): Assume mbrtowc function.
11592         * lib/mbssep.c: Include mbuiter.h unconditionally.
11593         (mbssep): Assume mbrtowc function.
11594         * lib/mbsspn.c: Include mbuiter.h unconditionally.
11595         (mbsspn): Assume mbrtowc function.
11596         * lib/mbsstr.c: Include mbuiter.h unconditionally.
11597         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
11598         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
11599         (mbstok_r): Assume mbrtowc function.
11600         * lib/propername.c: Include mbuiter.h unconditionally.
11601         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
11602         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
11603         (trim2): Assume mbrtowc function.
11604         * lib/mbswidth.c (mbsinit): Remove fallback definition.
11605         (mbsnwidth): Assume mbrtowc function.
11606         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
11607         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
11608         fallback definitions.
11609         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
11610
11611 2008-12-22  Bruno Haible  <bruno@clisp.org>
11612
11613         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
11614
11615 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
11616
11617         * modules/regex: Request emulations for the mb*/wc* functions we need.
11618         * m4/regex.m4: Don't look for those functions here.
11619         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
11620
11621 2008-12-22  Bruno Haible  <bruno@clisp.org>
11622
11623         * modules/fnmatch (Depends-on): Remove duplicated dependency.
11624
11625 2008-12-21  Bruno Haible  <bruno@clisp.org>
11626
11627         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
11628         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
11629         (Include): Remove conditionalization.
11630         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
11631         (Include): Remove conditionalization.
11632         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
11633         (Include): Remove conditionalization.
11634         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
11635         * m4/mbfile.m4 (gl_MBFILE): Likewise.
11636         * NEWS: Mention the change.
11637         Reported by Alan Hourihane <alanh@fairlite.co.uk>
11638         via Sergey Poznyakoff <gray@gnu.org.ua>.
11639
11640 2008-12-21  Bruno Haible  <bruno@clisp.org>
11641
11642         * MODULES.html.sh (Extended multibyte and wide character utilities
11643         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
11644         wcrtomb, wcsrtombs.
11645         (Support for systems lacking POSIX:2008): Add accept, bind, close,
11646         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
11647         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
11648         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
11649
11650 2008-12-21  Bruno Haible  <bruno@clisp.org>
11651
11652         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
11653
11654 2008-12-21  Bruno Haible  <bruno@clisp.org>
11655
11656         * modules/wcsnrtombs-tests: New file.
11657         * tests/test-wcsnrtombs1.sh: New file.
11658         * tests/test-wcsnrtombs2.sh: New file.
11659         * tests/test-wcsnrtombs3.sh: New file.
11660         * tests/test-wcsnrtombs4.sh: New file.
11661         * tests/test-wcsnrtombs.c: New file.
11662
11663         New module 'wcsnrtombs'.
11664         * lib/wchar.in.h (wcsnrtombs): New declaration.
11665         * lib/wcsnrtombs.c: New file.
11666         * lib/wcsrtombs-state.c: New file.
11667         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
11668         (internal_state): Remove variable.
11669         * m4/wcsnrtombs.m4: New file.
11670         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
11671         compilation units.
11672         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
11673         HAVE_WCSNRTOMBS.
11674         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
11675         HAVE_WCSNRTOMBS.
11676         * modules/wcsnrtombs: New file.
11677         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
11678         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
11679
11680 2008-12-21  Bruno Haible  <bruno@clisp.org>
11681
11682         * modules/wcsrtombs-tests: New file.
11683         * tests/test-wcsrtombs1.sh: New file.
11684         * tests/test-wcsrtombs2.sh: New file.
11685         * tests/test-wcsrtombs3.sh: New file.
11686         * tests/test-wcsrtombs4.sh: New file.
11687         * tests/test-wcsrtombs.c: New file.
11688
11689         New module 'wcsrtombs'.
11690         * lib/wchar.in.h (wcsrtombs): New declaration.
11691         * lib/wcsrtombs.c: New file.
11692         * m4/wcsrtombs.m4: New file.
11693         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
11694         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
11695         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
11696         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
11697         * modules/wcsrtombs: New file.
11698         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
11699         bugs.
11700
11701 2008-12-21  Bruno Haible  <bruno@clisp.org>
11702
11703         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
11704         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
11705         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
11706         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
11707         if not correct.
11708         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
11709         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
11710         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11711         m4/locale-zh.m4, m4/codeset.m4.
11712         * doc/posix-functions/wcrtomb.texi: Document the bug.
11713
11714 2008-12-21  Bruno Haible  <bruno@clisp.org>
11715
11716         Work around a btowc() bug on IRIX 6.5.
11717         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
11718         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
11719         REPLACE_WTOBC if not.
11720         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
11721         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
11722         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
11723
11724 2008-12-21  Bruno Haible  <bruno@clisp.org>
11725
11726         * modules/wcrtomb-tests: New file.
11727         * tests/test-wcrtomb.sh: New file.
11728         * tests/test-wcrtomb.c: New file.
11729
11730         New module 'wcrtomb'.
11731         * lib/wchar.in.h (wcrtomb): New declaration.
11732         * lib/wcrtomb.c: New file.
11733         * m4/wcrtomb.m4: New file.
11734         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
11735         HAVE_WCRTOMB.
11736         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
11737         HAVE_WCRTOMB.
11738         * modules/wcrtomb: New file.
11739         * doc/posix-functions/wcrtomb.texi: Mention the new module.
11740
11741 2008-12-21  Bruno Haible  <bruno@clisp.org>
11742
11743         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
11744         * modules/mbsrtowcs (Files): Likewise.
11745         * modules/wctob (Files): Likewise.
11746         * modules/c-strcase-tests (Files): Likewise.
11747         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
11748         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
11749         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
11750         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
11751         * modules/vasnprintf-posix-tests (Files): Likewise.
11752
11753 2008-12-21  William Pursell  <bill.pursell@gmail.com>
11754
11755         gitlog-to-changelog: pass all command-line arguments to git-log
11756         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
11757         it is sometimes convenient to filter the commits in various ways.
11758         gitlog-to-changelog only allows --since to specify a start date,
11759         but git-log itself supports many other filtering mechanisms.
11760         At the moment, I want to filter by branch name.  Rather than
11761         adding a --branch option to gitlog-to-changelog, it seems more
11762         flexible to simply pass all options directly to git-log and let
11763         git do the work.  Notice that this effectively makes --since a
11764         redundant option for gitlog-to-changelog, but removing it would
11765         require current usage to change since calls would then require
11766         an additional '--'.
11767
11768 2008-12-21  Bruno Haible  <bruno@clisp.org>
11769
11770         * modules/mbsnrtowcs-tests: New file.
11771         * tests/test-mbsnrtowcs1.sh: New file.
11772         * tests/test-mbsnrtowcs2.sh: New file.
11773         * tests/test-mbsnrtowcs3.sh: New file.
11774         * tests/test-mbsnrtowcs4.sh: New file.
11775         * tests/test-mbsnrtowcs.c: New file.
11776
11777         New module 'mbsnrtowcs'.
11778         * lib/wchar.in.h (mbsnrtowcs): New declaration.
11779         * lib/mbsnrtowcs.c: New file.
11780         * lib/mbsrtowcs-state.c: New file.
11781         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
11782         (internal_state): Remove variable.
11783         * m4/mbsnrtowcs.m4: New file.
11784         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
11785         compilation units.
11786         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
11787         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
11788         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
11789         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
11790         * modules/mbsnrtowcs: New file.
11791         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
11792         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
11793         portability problem.
11794
11795 2008-12-21  Bruno Haible  <bruno@clisp.org>
11796
11797         Work around mbsrtowcs bug.
11798         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
11799         (gl_FUNC_MBSRTOWCS): Invoke it.
11800         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11801         m4/locale-zh.m4.
11802         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
11803
11804 2008-12-21  Bruno Haible  <bruno@clisp.org>
11805
11806         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
11807
11808 2008-12-21  Bruno Haible  <bruno@clisp.org>
11809
11810         Update doc for AIX.
11811         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
11812         16-bit wchar_t type.
11813         * doc/posix-functions/btowc.texi: Likewise.
11814         * doc/posix-functions/fgetwc.texi: Likewise.
11815         * doc/posix-functions/fgetws.texi: Likewise.
11816         * doc/posix-functions/fputwc.texi: Likewise.
11817         * doc/posix-functions/fputws.texi: Likewise.
11818         * doc/posix-functions/fwide.texi: Likewise.
11819         * doc/posix-functions/fwprintf.texi: Likewise.
11820         * doc/posix-functions/fwscanf.texi: Likewise.
11821         * doc/posix-functions/getwchar.texi: Likewise.
11822         * doc/posix-functions/getwc.texi: Likewise.
11823         * doc/posix-functions/iswalnum.texi: Likewise.
11824         * doc/posix-functions/iswalpha.texi: Likewise.
11825         * doc/posix-functions/iswblank.texi: Likewise.
11826         * doc/posix-functions/iswcntrl.texi: Likewise.
11827         * doc/posix-functions/iswctype.texi: Likewise.
11828         * doc/posix-functions/iswdigit.texi: Likewise.
11829         * doc/posix-functions/iswgraph.texi: Likewise.
11830         * doc/posix-functions/iswlower.texi: Likewise.
11831         * doc/posix-functions/iswprint.texi: Likewise.
11832         * doc/posix-functions/iswpunct.texi: Likewise.
11833         * doc/posix-functions/iswspace.texi: Likewise.
11834         * doc/posix-functions/iswupper.texi: Likewise.
11835         * doc/posix-functions/iswxdigit.texi: Likewise.
11836         * doc/posix-functions/mbrtowc.texi: Likewise.
11837         * doc/posix-functions/mbsrtowcs.texi: Likewise.
11838         * doc/posix-functions/mbstowcs.texi: Likewise.
11839         * doc/posix-functions/mbtowc.texi: Likewise.
11840         * doc/posix-functions/putwchar.texi: Likewise.
11841         * doc/posix-functions/putwc.texi: Likewise.
11842         * doc/posix-functions/swprintf.texi: Likewise.
11843         * doc/posix-functions/tolower.texi: Likewise.
11844         * doc/posix-functions/toupper.texi: Likewise.
11845         * doc/posix-functions/towctrans.texi: Likewise.
11846         * doc/posix-functions/ungetwc.texi: Likewise.
11847         * doc/posix-functions/vswprintf.texi: Likewise.
11848         * doc/posix-functions/wcrtomb.texi: Likewise.
11849         * doc/posix-functions/wcscat.texi: Likewise.
11850         * doc/posix-functions/wcschr.texi: Likewise.
11851         * doc/posix-functions/wcscmp.texi: Likewise.
11852         * doc/posix-functions/wcscoll.texi: Likewise.
11853         * doc/posix-functions/wcscpy.texi: Likewise.
11854         * doc/posix-functions/wcscspn.texi: Likewise.
11855         * doc/posix-functions/wcsftime.texi: Likewise.
11856         * doc/posix-functions/wcslen.texi: Likewise.
11857         * doc/posix-functions/wcsncat.texi: Likewise.
11858         * doc/posix-functions/wcsncmp.texi: Likewise.
11859         * doc/posix-functions/wcsncpy.texi: Likewise.
11860         * doc/posix-functions/wcspbrk.texi: Likewise.
11861         * doc/posix-functions/wcsrchr.texi: Likewise.
11862         * doc/posix-functions/wcsrtombs.texi: Likewise.
11863         * doc/posix-functions/wcsspn.texi: Likewise.
11864         * doc/posix-functions/wcsstr.texi: Likewise.
11865         * doc/posix-functions/wcstod.texi: Likewise.
11866         * doc/posix-functions/wcstof.texi: Likewise.
11867         * doc/posix-functions/wcstoimax.texi: Likewise.
11868         * doc/posix-functions/wcstok.texi: Likewise.
11869         * doc/posix-functions/wcstold.texi: Likewise.
11870         * doc/posix-functions/wcstoll.texi: Likewise.
11871         * doc/posix-functions/wcstol.texi: Likewise.
11872         * doc/posix-functions/wcstombs.texi: Likewise.
11873         * doc/posix-functions/wcstoull.texi: Likewise.
11874         * doc/posix-functions/wcstoul.texi: Likewise.
11875         * doc/posix-functions/wcstoumax.texi: Likewise.
11876         * doc/posix-functions/wcswidth.texi: Likewise.
11877         * doc/posix-functions/wcsxfrm.texi: Likewise.
11878         * doc/posix-functions/wctob.texi: Likewise.
11879         * doc/posix-functions/wctomb.texi: Likewise.
11880         * doc/posix-functions/wctrans.texi: Likewise.
11881         * doc/posix-functions/wctype.texi: Likewise.
11882         * doc/posix-functions/wcwidth.texi: Likewise.
11883         * doc/posix-functions/wmemchr.texi: Likewise.
11884         * doc/posix-functions/wmemcmp.texi: Likewise.
11885         * doc/posix-functions/wmemcpy.texi: Likewise.
11886         * doc/posix-functions/wmemmove.texi: Likewise.
11887         * doc/posix-functions/wmemset.texi: Likewise.
11888         * doc/posix-functions/wprintf.texi: Likewise.
11889         * doc/posix-functions/wscanf.texi: Likewise.
11890
11891 2008-12-21  Bruno Haible  <bruno@clisp.org>
11892
11893         Update doc for HP-UX 11.11.
11894         * doc/posix-functions/btowc.texi: Clarify that the function is missing
11895         in HP-UX version 11.00, not in all versions of HP-UX 11.
11896         * doc/posix-functions/fwide.texi: Likewise.
11897         * doc/posix-functions/fwprintf.texi: Likewise.
11898         * doc/posix-functions/fwscanf.texi: Likewise.
11899         * doc/posix-functions/inet_ntop.texi: Likewise.
11900         * doc/posix-functions/inet_pton.texi: Likewise.
11901         * doc/posix-functions/mbrlen.texi: Likewise.
11902         * doc/posix-functions/mbrtowc.texi: Likewise.
11903         * doc/posix-functions/mbsinit.texi: Likewise.
11904         * doc/posix-functions/mbsrtowcs.texi: Likewise.
11905         * doc/posix-functions/swprintf.texi: Likewise.
11906         * doc/posix-functions/swscanf.texi: Likewise.
11907         * doc/posix-functions/towctrans.texi: Likewise.
11908         * doc/posix-functions/vfwprintf.texi: Likewise.
11909         * doc/posix-functions/vswprintf.texi: Likewise.
11910         * doc/posix-functions/vwprintf.texi: Likewise.
11911         * doc/posix-functions/wcrtomb.texi: Likewise.
11912         * doc/posix-functions/wcsrtombs.texi: Likewise.
11913         * doc/posix-functions/wcsstr.texi: Likewise.
11914         * doc/posix-functions/wctob.texi: Likewise.
11915         * doc/posix-functions/wctrans.texi: Likewise.
11916         * doc/posix-functions/wmemchr.texi: Likewise.
11917         * doc/posix-functions/wmemcmp.texi: Likewise.
11918         * doc/posix-functions/wmemcpy.texi: Likewise.
11919         * doc/posix-functions/wmemmove.texi: Likewise.
11920         * doc/posix-functions/wmemset.texi: Likewise.
11921         * doc/posix-functions/wprintf.texi: Likewise.
11922         * doc/posix-functions/wscanf.texi: Likewise.
11923
11924 2008-12-21  Bruno Haible  <bruno@clisp.org>
11925
11926         Work around a portability problem.
11927         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
11928         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
11929
11930 2008-12-20  Bruno Haible  <bruno@clisp.org>
11931
11932         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
11933         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
11934         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
11935         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
11936         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
11937
11938         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
11939         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
11940         set.
11941         (GNULIB_defined_mbstate_t): New macro.
11942         (mbsinit): Redefine if REPLACE_MBSINIT is set.
11943         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
11944         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
11945         reuses the system's mbrtowc function but works around the bugs.
11946         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
11947         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
11948         macros.
11949         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
11950         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
11951         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
11952         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
11953         REPLACE_MBSINIT if mbsinit needs to be overridden.
11954         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
11955         REPLACE_MBSINIT, REPLACE_MBRTOWC.
11956         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
11957         REPLACE_MBSINIT, REPLACE_MBRTOWC.
11958         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11959         m4/locale-zh.m4.
11960         (Depends): Add mbsinit.
11961         * modules/mbsinit (Depends): Add mbrtowc.
11962         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
11963
11964 2008-12-20  Bruno Haible  <bruno@clisp.org>
11965
11966         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
11967         so that there are no conversion errors on AIX.
11968         * tests/test-mbsrtowcs.c (main): LIkewise.
11969
11970 2008-12-20  Bruno Haible  <bruno@clisp.org>
11971
11972         Work around wctob bug on Solaris <= 9.
11973         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
11974         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
11975         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
11976         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
11977         * modules/wctob (Files): Add m4/locale-fr.m4.
11978         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
11979
11980 2008-12-20  Bruno Haible  <bruno@clisp.org>
11981
11982         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
11983         /dev/null.
11984         * tests/test-select-in.sh: Likewise.
11985         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11986
11987 2008-12-20  Bruno Haible  <bruno@clisp.org>
11988
11989         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
11990         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
11991         Cygwin 1.5.x.
11992
11993 2008-12-20  Bruno Haible  <bruno@clisp.org>
11994
11995         Ensure mbstate_t is defined on HP-UX 11.11.
11996         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
11997         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
11998         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
11999         AC_USE_SYSTEM_EXTENSIONS.
12000         * modules/fnmatch (Depends-on): Add extensions.
12001         * modules/mbrlen (Depends-on): Likewise.
12002         * modules/mbrtowc (Depends-on): Likewise.
12003         * modules/mbsinit (Depends-on): Likewise.
12004         * modules/mbsrtowcs (Depends-on): Likewise.
12005         * modules/mbswidth (Depends-on): Likewise.
12006         * modules/quotearg (Depends-on): Likewise.
12007         * modules/strftime (Depends-on): Likewise.
12008
12009 2008-12-20  Bruno Haible  <bruno@clisp.org>
12010
12011         Ensure wctob is declared on IRIX 6.5.
12012         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
12013         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
12014         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
12015         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
12016         of HAVE_WCTOB.
12017         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
12018         HAVE_WCTOB.
12019         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
12020
12021 2008-12-19  Bruno Haible  <bruno@clisp.org>
12022
12023         * modules/mbsrtowcs-tests: New file.
12024         * tests/test-mbsrtowcs1.sh: New file.
12025         * tests/test-mbsrtowcs2.sh: New file.
12026         * tests/test-mbsrtowcs3.sh: New file.
12027         * tests/test-mbsrtowcs4.sh: New file.
12028         * tests/test-mbsrtowcs.c: New file.
12029
12030         New module 'mbsrtowcs'.
12031         * lib/wchar.in.h (mbsrtowcs): New declaration.
12032         * lib/mbsrtowcs.c: New file.
12033         * m4/mbsrtowcs.m4: New file.
12034         * modules/mbsrtowcs: New file.
12035         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
12036         HAVE_MBSRTOWCS.
12037         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
12038         HAVE_MBSRTOWCS.
12039         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
12040
12041 2008-12-19  Bruno Haible  <bruno@clisp.org>
12042
12043         New module 'mbrlen'.
12044         * lib/wchar.in.h (mbrlen): New declaration.
12045         * lib/mbrlen.c: New file.
12046         * m4/mbrlen.m4: New file.
12047         * modules/mbrlen: New file.
12048         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
12049         HAVE_MBRLEN.
12050         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
12051         HAVE_MBRLEN.
12052         * doc/posix-functions/mbrlen.texi: Document the new module.
12053
12054 2008-12-19  Bruno Haible  <bruno@clisp.org>
12055
12056         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
12057         * modules/mbrtowc (Depends-on): Add verify.
12058         Suggested by Paul Eggert.
12059
12060 2008-12-18  Bruno Haible  <bruno@clisp.org>
12061
12062         * modules/mbsinit-tests: New file.
12063         * tests/test-mbsinit.sh: New file.
12064         * tests/test-mbsinit.c: New file.
12065
12066 2008-12-18  Bruno Haible  <bruno@clisp.org>
12067
12068         * modules/mbrtowc-tests: New file.
12069         * tests/test-mbrtowc1.sh: New file.
12070         * tests/test-mbrtowc2.sh: New file.
12071         * tests/test-mbrtowc3.sh: New file.
12072         * tests/test-mbrtowc4.sh: New file.
12073         * tests/test-mbrtowc.c: New file.
12074
12075         New module 'mbrtowc'.
12076         * lib/wchar.in.h (mbstate_t): Override when the system does not have
12077         mbsinit and mbrtowc.
12078         (mbrtowc): New declaration.
12079         * lib/mbrtowc.c: New file.
12080         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
12081         * modules/mbrtowc: New file.
12082         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
12083         HAVE_MBRTOWC.
12084         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
12085         HAVE_MBRTOWC.
12086         * doc/posix-functions/mbrtowc.texi: Document the new module.
12087
12088 2008-12-18  Bruno Haible  <bruno@clisp.org>
12089
12090         New module 'wctob'.
12091         * lib/wchar.in.h (wctob): New declaration.
12092         * lib/wctob.c: New file.
12093         * m4/wctob.m4: New file.
12094         * modules/wctob: New file.
12095         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
12096         HAVE_WCTOB.
12097         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
12098         * doc/posix-functions/wctob.texi: Document the new module.
12099
12100 2008-12-18  Bruno Haible  <bruno@clisp.org>
12101
12102         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
12103         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
12104
12105 2008-12-18  Simon Josefsson  <simon@josefsson.org>
12106
12107         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
12108         G. Christensen" <tgc@jupiterrise.com>.
12109
12110         * lib/flock.c: Need to include errno.h.  Reported by "Tom
12111         G. Christensen" <tgc@jupiterrise.com>.
12112
12113         * lib/flock.c: Need to include string.h.  Reported by "Tom
12114         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
12115         <ebb9@byu.net>.
12116
12117 2008-12-18  Bruno Haible  <bruno@clisp.org>
12118
12119         * m4/locale-ja.m4: New file, from GNU gettext.
12120
12121 2008-12-17  Bruno Haible  <bruno@clisp.org>
12122
12123         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
12124         Suggested by Eric Blake.
12125
12126 2008-12-17  Bruno Haible  <bruno@clisp.org>
12127
12128         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
12129
12130 2008-12-17  Bruno Haible  <bruno@clisp.org>
12131
12132         * lib/mbsinit.c: Include verify.h. Verify an assumption.
12133         * modules/mbsinit (Depends-on): Add verify.
12134         Suggested by Paul Eggert.
12135
12136 2008-12-17  Bruno Haible  <bruno@clisp.org>
12137
12138         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
12139         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
12140         gl_FUNC_MBRTOWC.
12141         * m4/mbiter.m4 (gl_MBITER): LIkewise.
12142         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
12143         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
12144         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
12145         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
12146         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
12147         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
12148         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
12149         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
12150         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
12151         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
12152         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
12153         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
12154         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
12155         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
12156         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
12157         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
12158         * modules/trim (configure.ac): Likewise.
12159
12160 2008-12-17  Bruno Haible  <bruno@clisp.org>
12161
12162         * modules/btowc-tests: New file.
12163         * tests/test-btowc1.sh: New file.
12164         * tests/test-btowc2.sh: New file.
12165         * tests/test-btowc.c: New file.
12166
12167         New module 'btowc'.
12168         * lib/wchar.in.h (btowc): New declaration.
12169         * lib/btowc.c: New file.
12170         * m4/btowc.m4: New file.
12171         * modules/btowc: New file.
12172         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
12173         HAVE_BTOWC.
12174         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
12175         * doc/posix-functions/btowc.texi: Document the new module.
12176
12177 2008-12-17  Bruno Haible  <bruno@clisp.org>
12178
12179         New module 'mbsinit'.
12180         * lib/wchar.in.h (mbsinit): New declaration.
12181         * lib/mbsinit.c: New file.
12182         * m4/mbsinit.m4: New file.
12183         * modules/mbsinit: New file.
12184         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
12185         HAVE_MBSINIT.
12186         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
12187         HAVE_MBSINIT.
12188         * doc/posix-functions/mbsinit.texi: Document the new module.
12189
12190 2008-12-16  Bruno Haible  <bruno@clisp.org>
12191
12192         * lib/unistd.in.h: Add comment.
12193         * tests/test-environ.c: Don't include <stdlib.h>.
12194
12195 2008-12-16  Bruno Haible  <bruno@clisp.org>
12196
12197         * lib/parse-duration.h (parse_duration): Document return value
12198         convention.
12199         * lib/parse-duration.c: Include specification header first. Add
12200         comments.
12201         (_): Remove macro.
12202         (parse_year_month_day, parse_hour_minute_second): Move side effects
12203         outside of strchr call.
12204         (parse_non_iso8601): Move side effects outside of isspace call.
12205         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
12206         call.
12207
12208 2008-12-16  Bruno Haible  <bruno@clisp.org>
12209
12210         * tests/test-parse-duration.sh: Produce no output when the test
12211         succeeds.
12212
12213 2008-12-16  Bruno Haible  <bruno@clisp.org>
12214
12215         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
12216         expressions.
12217
12218 2008-12-15  Bruno Haible  <bruno@clisp.org>
12219
12220         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
12221         * doc/glibc-functions/flistxattr.texi: Likewise.
12222         * doc/glibc-functions/fopencookie.texi: Likewise.
12223         * doc/glibc-functions/fremovexattr.texi: Likewise.
12224         * doc/glibc-functions/fsetxattr.texi: Likewise.
12225         * doc/glibc-functions/getxattr.texi: Likewise.
12226         * doc/glibc-functions/lgetxattr.texi: Likewise.
12227         * doc/glibc-functions/listxattr.texi: Likewise.
12228         * doc/glibc-functions/llistxattr.texi: Likewise.
12229         * doc/glibc-functions/lremovexattr.texi: Likewise.
12230         * doc/glibc-functions/lsetxattr.texi: Likewise.
12231         * doc/glibc-functions/removexattr.texi: Likewise.
12232         * doc/glibc-functions/setxattr.texi: Likewise.
12233         * doc/posix-functions/open_memstream.texi: Likewise.
12234
12235 2008-12-15  Eric Blake  <ebb9@byu.net>
12236
12237         Update doc for cygwin 1.7.
12238         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
12239         functions.
12240         * doc/posix-functions/fchmodat.texi: Likewise.
12241         * doc/posix-functions/fchownat.texi: Likewise.
12242         * doc/posix-functions/fdopendir.texi: Likewise.
12243         * doc/posix-functions/fmemopen.texi: Likewise.
12244         * doc/posix-functions/freeaddrinfo.texi: Likewise.
12245         * doc/posix-functions/fstatat.texi: Likewise.
12246         * doc/posix-functions/futimens.texi: Likewise.
12247         * doc/posix-functions/gai_strerror.texi: Likewise.
12248         * doc/posix-functions/getaddrinfo.texi: Likewise.
12249         * doc/posix-functions/getnameinfo.texi: Likewise.
12250         * doc/posix-functions/if_freenameindex.texi: Likewise.
12251         * doc/posix-functions/if_indextoname.texi: Likewise.
12252         * doc/posix-functions/if_nameindex.texi: Likewise.
12253         * doc/posix-functions/if_nametoindex.texi: Likewise.
12254         * doc/posix-functions/insque.texi: Likewise.
12255         * doc/posix-functions/linkat.texi: Likewise.
12256         * doc/posix-functions/llrint.texi: Likewise.
12257         * doc/posix-functions/llrintf.texi: Likewise.
12258         * doc/posix-functions/llrintl.texi: Likewise.
12259         * doc/posix-functions/lockf.texi: Likewise.
12260         * doc/posix-functions/lrintl.texi: Likewise.
12261         * doc/posix-functions/mkdirat.texi: Likewise.
12262         * doc/posix-functions/mkfifoat.texi: Likewise.
12263         * doc/posix-functions/mknodat.texi: Likewise.
12264         * doc/posix-functions/mq_close.texi: Likewise.
12265         * doc/posix-functions/mq_getattr.texi: Likewise.
12266         * doc/posix-functions/mq_notify.texi: Likewise.
12267         * doc/posix-functions/mq_open.texi: Likewise.
12268         * doc/posix-functions/mq_receive.texi: Likewise.
12269         * doc/posix-functions/mq_send.texi: Likewise.
12270         * doc/posix-functions/mq_setattr.texi: Likewise.
12271         * doc/posix-functions/mq_timedreceive.texi: Likewise.
12272         * doc/posix-functions/mq_timedsend.texi: Likewise.
12273         * doc/posix-functions/mq_unlink.texi: Likewise.
12274         * doc/posix-functions/open_memstream.texi: Likewise.
12275         * doc/posix-functions/openat.texi: Likewise.
12276         * doc/posix-functions/posix_fadvise.texi: Likewise.
12277         * doc/posix-functions/posix_fallocate.texi: Likewise.
12278         * doc/posix-functions/posix_madvise.texi: Likewise.
12279         * doc/posix-functions/posix_memalign.texi: Likewise.
12280         * doc/posix-functions/posix_openpt.texi: Likewise.
12281         * doc/posix-functions/readlinkat.texi: Likewise.
12282         * doc/posix-functions/remque.texi: Likewise.
12283         * doc/posix-functions/renameat.texi: Likewise.
12284         * doc/posix-functions/rintl.texi: Likewise.
12285         * doc/posix-functions/sem_unlink.texi: Likewise.
12286         * doc/posix-functions/shm_open.texi: Likewise.
12287         * doc/posix-functions/shm_unlink.texi: Likewise.
12288         * doc/posix-functions/signgam.texi: Likewise.
12289         * doc/posix-functions/sigset.texi: Likewise.
12290         * doc/posix-functions/stpcpy.texi: Likewise.
12291         * doc/posix-functions/stpncpy.texi: Likewise.
12292         * doc/posix-functions/strerror.texi: Likewise.
12293         * doc/posix-functions/strtod.texi: Likewise.
12294         * doc/posix-functions/symlinkat.texi: Likewise.
12295         * doc/posix-functions/unlinkat.texi: Likewise.
12296         * doc/posix-functions/utimensat.texi: Likewise.
12297         * doc/glibc-functions/bindresvport.texi: Likewise.
12298         * doc/glibc-functions/dn_expand.texi: Likewise.
12299         * doc/glibc-functions/exp10.texi: Likewise.
12300         * doc/glibc-functions/exp10f.texi: Likewise.
12301         * doc/glibc-functions/fgetxattr.texi: Likewise.
12302         * doc/glibc-functions/flistxattr.texi: Likewise.
12303         * doc/glibc-functions/fopencookie.texi: Likewise.
12304         * doc/glibc-functions/freeifaddrs.texi: Likewise.
12305         * doc/glibc-functions/fremovexattr.texi: Likewise.
12306         * doc/glibc-functions/fsetxattr.texi: Likewise.
12307         * doc/glibc-functions/getifaddrs.texi: Likewise.
12308         * doc/glibc-functions/getxattr.texi: Likewise.
12309         * doc/glibc-functions/lgetxattr.texi: Likewise.
12310         * doc/glibc-functions/listxattr.texi: Likewise.
12311         * doc/glibc-functions/llistxattr.texi: Likewise.
12312         * doc/glibc-functions/lremovexattr.texi: Likewise.
12313         * doc/glibc-functions/lsetxattr.texi: Likewise.
12314         * doc/glibc-functions/pow10.texi: Likewise.
12315         * doc/glibc-functions/pow10f.texi: Likewise.
12316         * doc/glibc-functions/rcmd_af.texi: Likewise.
12317         * doc/glibc-functions/removexattr.texi: Likewise.
12318         * doc/glibc-functions/res_init.texi: Likewise.
12319         * doc/glibc-functions/res_mkquery.texi: Likewise.
12320         * doc/glibc-functions/res_query.texi: Likewise.
12321         * doc/glibc-functions/res_querydomain.texi: Likewise.
12322         * doc/glibc-functions/res_send.texi: Likewise.
12323         * doc/glibc-functions/rresvport_af.texi: Likewise.
12324         * doc/glibc-functions/setxattr.texi: Likewise.
12325         * doc/glibc-functions/strcasestr.texi: Likewise.
12326
12327 2008-12-15  Bruno Haible  <bruno@clisp.org>
12328
12329         Fix compilation error on OSF/1 4.0.
12330         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
12331         <sys/time.h>, simply delegate to the system header.
12332         Reported by Daniel Richard G. <oss@teragram.com>.
12333
12334 2008-12-15  Bruno Haible  <bruno@clisp.org>
12335
12336         * doc/posix-functions/openat.texi: Mention the 'openat' module.
12337         * doc/posix-functions/fchmodat.texi: Likewise.
12338         * doc/posix-functions/fchownat.texi: Likewise.
12339         * doc/posix-functions/fdopendir.texi: Likewise.
12340         * doc/posix-functions/fstatat.texi: Likewise.
12341         * doc/posix-functions/mkdirat.texi: Likewise.
12342         * doc/posix-functions/unlinkat.texi: Likewise.
12343
12344 2008-12-14  Bruno Haible  <bruno@clisp.org>
12345
12346         Update doc for POSIX:2008.
12347         * doc/posix-functions/faccessat.texi: New file.
12348         * doc/posix-functions/fchmodat.texi: New file.
12349         * doc/posix-functions/fchownat.texi: New file.
12350         * doc/posix-functions/fdopendir.texi: New file.
12351         * doc/posix-functions/fstatat.texi: New file.
12352         * doc/posix-functions/futimens.texi: New file.
12353         * doc/posix-functions/linkat.texi: New file.
12354         * doc/posix-functions/mkdirat.texi: New file.
12355         * doc/posix-functions/mkfifoat.texi: New file.
12356         * doc/posix-functions/mknodat.texi: New file.
12357         * doc/posix-functions/open_wmemstream.texi: New file.
12358         * doc/posix-functions/openat.texi: New file.
12359         * doc/posix-functions/psiginfo.texi: New file.
12360         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
12361         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
12362         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
12363         * doc/posix-functions/readlinkat.texi: New file.
12364         * doc/posix-functions/renameat.texi: New file.
12365         * doc/posix-functions/strerror_l.texi: New file.
12366         * doc/posix-functions/symlinkat.texi: New file.
12367         * doc/posix-functions/unlinkat.texi: New file.
12368         * doc/posix-functions/utimensat.texi: New file.
12369         * doc/gnulib.texi (Function Substitutes): Add these subsections.
12370
12371 2008-12-14  Bruno Haible  <bruno@clisp.org>
12372
12373         Update doc for POSIX:2008.
12374         * doc/posix-functions/alphasort.texi: Renamed from
12375         doc/glibc-functions/alphasort.texi.
12376         * doc/posix-functions/dirfd.texi: Renamed from
12377         doc/glibc-functions/dirfd.texi.
12378         * doc/posix-functions/dprintf.texi: Renamed from
12379         doc/glibc-functions/dprintf.texi.
12380         * doc/posix-functions/duplocale.texi: Renamed from
12381         doc/glibc-functions/duplocale.texi.
12382         * doc/posix-functions/fexecve.texi: Renamed from
12383         doc/glibc-functions/fexecve.texi.
12384         * doc/posix-functions/fmemopen.texi: Renamed from
12385         doc/glibc-functions/fmemopen.texi.
12386         * doc/posix-functions/freelocale.texi: Renamed from
12387         doc/glibc-functions/freelocale.texi.
12388         * doc/posix-functions/getdate_err.texi: Renamed from
12389         doc/glibc-functions/getdate_err.texi.
12390         * doc/posix-functions/isalnum_l.texi: Renamed from
12391         doc/glibc-functions/isalnum_l.texi.
12392         * doc/posix-functions/isalpha_l.texi: Renamed from
12393         doc/glibc-functions/isalpha_l.texi.
12394         * doc/posix-functions/isblank_l.texi: Renamed from
12395         doc/glibc-functions/isblank_l.texi.
12396         * doc/posix-functions/iscntrl_l.texi: Renamed from
12397         doc/glibc-functions/iscntrl_l.texi.
12398         * doc/posix-functions/isdigit_l.texi: Renamed from
12399         doc/glibc-functions/isdigit_l.texi.
12400         * doc/posix-functions/isgraph_l.texi: Renamed from
12401         doc/glibc-functions/isgraph_l.texi.
12402         * doc/posix-functions/islower_l.texi: Renamed from
12403         doc/glibc-functions/islower_l.texi.
12404         * doc/posix-functions/isprint_l.texi: Renamed from
12405         doc/glibc-functions/isprint_l.texi.
12406         * doc/posix-functions/ispunct_l.texi: Renamed from
12407         doc/glibc-functions/ispunct_l.texi.
12408         * doc/posix-functions/isspace_l.texi: Renamed from
12409         doc/glibc-functions/isspace_l.texi.
12410         * doc/posix-functions/isupper_l.texi: Renamed from
12411         doc/glibc-functions/isupper_l.texi.
12412         * doc/posix-functions/iswalnum_l.texi: Renamed from
12413         doc/glibc-functions/iswalnum_l.texi.
12414         * doc/posix-functions/iswalpha_l.texi: Renamed from
12415         doc/glibc-functions/iswalpha_l.texi.
12416         * doc/posix-functions/iswblank_l.texi: Renamed from
12417         doc/glibc-functions/iswblank_l.texi.
12418         * doc/posix-functions/iswcntrl_l.texi: Renamed from
12419         doc/glibc-functions/iswcntrl_l.texi.
12420         * doc/posix-functions/iswctype_l.texi: Renamed from
12421         doc/glibc-functions/iswctype_l.texi.
12422         * doc/posix-functions/iswdigit_l.texi: Renamed from
12423         doc/glibc-functions/iswdigit_l.texi.
12424         * doc/posix-functions/iswgraph_l.texi: Renamed from
12425         doc/glibc-functions/iswgraph_l.texi.
12426         * doc/posix-functions/iswlower_l.texi: Renamed from
12427         doc/glibc-functions/iswlower_l.texi.
12428         * doc/posix-functions/iswprint_l.texi: Renamed from
12429         doc/glibc-functions/iswprint_l.texi.
12430         * doc/posix-functions/iswpunct_l.texi: Renamed from
12431         doc/glibc-functions/iswpunct_l.texi.
12432         * doc/posix-functions/iswspace_l.texi: Renamed from
12433         doc/glibc-functions/iswspace_l.texi.
12434         * doc/posix-functions/iswupper_l.texi: Renamed from
12435         doc/glibc-functions/iswupper_l.texi.
12436         * doc/posix-functions/iswxdigit_l.texi: Renamed from
12437         doc/glibc-functions/iswxdigit_l.texi.
12438         * doc/posix-functions/isxdigit_l.texi: Renamed from
12439         doc/glibc-functions/isxdigit_l.texi.
12440         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
12441         doc/glibc-functions/mbsnrtowcs.texi.
12442         * doc/posix-functions/mkdtemp.texi: Renamed from
12443         doc/glibc-functions/mkdtemp.texi.
12444         * doc/posix-functions/newlocale.texi: Renamed from
12445         doc/glibc-functions/newlocale.texi.
12446         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
12447         doc/glibc-functions/nl_langinfo_l.texi.
12448         * doc/posix-functions/open_memstream.texi: Renamed from
12449         doc/glibc-functions/open_memstream.texi.
12450         * doc/posix-functions/opterr.texi: Renamed from
12451         doc/glibc-functions/opterr.texi.
12452         * doc/posix-functions/optind.texi: Renamed from
12453         doc/glibc-functions/optind.texi.
12454         * doc/posix-functions/optopt.texi: Renamed from
12455         doc/glibc-functions/optopt.texi.
12456         * doc/posix-functions/psignal.texi: Renamed from
12457         doc/glibc-functions/psignal.texi.
12458         * doc/posix-functions/scandir.texi: Renamed from
12459         doc/glibc-functions/scandir.texi.
12460         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
12461         doc/glibc-functions/sched_get_priority_min.texi.
12462         * doc/posix-functions/signgam.texi: Renamed from
12463         doc/glibc-functions/signgam.texi.
12464         * doc/posix-functions/stpcpy.texi: Renamed from
12465         doc/glibc-functions/stpcpy.texi.
12466         * doc/posix-functions/stpncpy.texi: Renamed from
12467         doc/glibc-functions/stpncpy.texi.
12468         * doc/posix-functions/strcasecmp_l.texi: Renamed from
12469         doc/glibc-functions/strcasecmp_l.texi.
12470         * doc/posix-functions/strcoll_l.texi: Renamed from
12471         doc/glibc-functions/strcoll_l.texi.
12472         * doc/posix-functions/strfmon_l.texi: Renamed from
12473         doc/glibc-functions/strfmon_l.texi.
12474         * doc/posix-functions/strftime_l.texi: Renamed from
12475         doc/glibc-functions/strftime_l.texi.
12476         * doc/posix-functions/strncasecmp_l.texi: Renamed from
12477         doc/glibc-functions/strncasecmp_l.texi.
12478         * doc/posix-functions/strndup.texi: Renamed from
12479         doc/glibc-functions/strndup.texi.
12480         * doc/posix-functions/strnlen.texi: Renamed from
12481         doc/glibc-functions/strnlen.texi.
12482         * doc/posix-functions/strsignal.texi: Renamed from
12483         doc/glibc-functions/strsignal.texi.
12484         * doc/posix-functions/strxfrm_l.texi: Renamed from
12485         doc/glibc-functions/strxfrm_l.texi.
12486         * doc/posix-functions/timer_gettime.texi: Renamed from
12487         doc/glibc-functions/timer_gettime.texi.
12488         * doc/posix-functions/tolower_l.texi: Renamed from
12489         doc/glibc-functions/tolower_l.texi.
12490         * doc/posix-functions/toupper_l.texi: Renamed from
12491         doc/glibc-functions/toupper_l.texi.
12492         * doc/posix-functions/towctrans_l.texi: Renamed from
12493         doc/glibc-functions/towctrans_l.texi.
12494         * doc/posix-functions/towlower_l.texi: Renamed from
12495         doc/glibc-functions/towlower_l.texi.
12496         * doc/posix-functions/towupper_l.texi: Renamed from
12497         doc/glibc-functions/towupper_l.texi.
12498         * doc/posix-functions/uselocale.texi: Renamed from
12499         doc/glibc-functions/uselocale.texi.
12500         * doc/posix-functions/vdprintf.texi: Renamed from
12501         doc/glibc-functions/vdprintf.texi.
12502         * doc/posix-functions/wcpcpy.texi:
12503         Renamed from doc/glibc-functions/wcpcpy.texi.
12504         * doc/posix-functions/wcpncpy.texi: Renamed from
12505         doc/glibc-functions/wcpncpy.texi.
12506         * doc/posix-functions/wcscasecmp.texi: Renamed from
12507         doc/glibc-functions/wcscasecmp.texi.
12508         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
12509         doc/glibc-functions/wcscasecmp_l.texi.
12510         * doc/posix-functions/wcscoll_l.texi: Renamed from
12511         doc/glibc-functions/wcscoll_l.texi.
12512         * doc/posix-functions/wcsdup.texi: Renamed from
12513         doc/glibc-functions/wcsdup.texi.
12514         * doc/posix-functions/wcsncasecmp.texi: Renamed from
12515         doc/glibc-functions/wcsncasecmp.texi.
12516         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
12517         doc/glibc-functions/wcsncasecmp_l.texi.
12518         * doc/posix-functions/wcsnlen.texi: Renamed from
12519         doc/glibc-functions/wcsnlen.texi.
12520         * doc/posix-functions/wcsnrtombs.texi: Renamed from
12521         doc/glibc-functions/wcsnrtombs.texi.
12522         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
12523         doc/glibc-functions/wcsxfrm_l.texi.
12524         * doc/posix-functions/wctrans_l.texi: Renamed from
12525         doc/glibc-functions/wctrans_l.texi.
12526         * doc/posix-functions/wctype_l.texi: Renamed from
12527         doc/glibc-functions/wctype_l.texi.
12528         * doc/gnulib.texi (Function Substitutes): Add these subsections.
12529         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
12530         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
12531         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
12532         these subsections.
12533         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
12534         Remove sections.
12535
12536 2008-12-14  Bruno Haible  <bruno@clisp.org>
12537
12538         Update doc for POSIX:2008.
12539         * doc/posix-functions/*.texi: Update URL of POSIX specification.
12540
12541 2008-12-14  Bruno Haible  <bruno@clisp.org>
12542
12543         Update doc for POSIX:2008.
12544         * doc/pastposix-functions/bcmp.texi: Renamed from
12545         doc/posix-functions/bcmp.texi.
12546         * doc/pastposix-functions/bcopy.texi: Renamed from
12547         doc/posix-functions/bcopy.texi.
12548         * doc/pastposix-functions/bsd_signal.texi: Renamed from
12549         doc/posix-functions/bsd_signal.texi.
12550         * doc/pastposix-functions/bzero.texi: Renamed from
12551         doc/posix-functions/bzero.texi.
12552         * doc/pastposix-functions/ecvt.texi: Renamed from
12553         doc/posix-functions/ecvt.texi.
12554         * doc/pastposix-functions/fcvt.texi: Renamed from
12555         doc/posix-functions/fcvt.texi.
12556         * doc/pastposix-functions/ftime.texi: Renamed from
12557         doc/posix-functions/ftime.texi.
12558         * doc/pastposix-functions/gcvt.texi: Renamed from
12559         doc/posix-functions/gcvt.texi.
12560         * doc/pastposix-functions/getcontext.texi: Renamed from
12561         doc/posix-functions/getcontext.texi.
12562         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
12563         doc/posix-functions/gethostbyaddr.texi.
12564         * doc/pastposix-functions/gethostbyname.texi: Renamed from
12565         doc/posix-functions/gethostbyname.texi.
12566         * doc/pastposix-functions/getwd.texi: Renamed from
12567         doc/posix-functions/getwd.texi.
12568         * doc/pastposix-functions/h_errno.texi: Renamed from
12569         doc/posix-functions/h_errno.texi.
12570         * doc/pastposix-functions/index.texi: Renamed from
12571         doc/posix-functions/index.texi.
12572         * doc/pastposix-functions/makecontext.texi: Renamed from
12573         doc/posix-functions/makecontext.texi.
12574         * doc/pastposix-functions/mktemp.texi: Renamed from
12575         doc/posix-functions/mktemp.texi.
12576         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
12577         doc/posix-functions/pthread_attr_getstackaddr.texi.
12578         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
12579         doc/posix-functions/pthread_attr_setstackaddr.texi.
12580         * doc/pastposix-functions/rindex.texi: Renamed from
12581         doc/posix-functions/rindex.texi.
12582         * doc/pastposix-functions/scalb.texi: Renamed from
12583         doc/posix-functions/scalb.texi.
12584         * doc/pastposix-functions/setcontext.texi: Renamed from
12585         doc/posix-functions/setcontext.texi.
12586         * doc/pastposix-functions/swapcontext.texi: Renamed from
12587         doc/posix-functions/swapcontext.texi.
12588         * doc/pastposix-functions/ualarm.texi: Renamed from
12589         doc/posix-functions/ualarm.texi.
12590         * doc/pastposix-functions/usleep.texi: Renamed from
12591         doc/posix-functions/usleep.texi.
12592         * doc/pastposix-functions/vfork.texi: Renamed from
12593         doc/posix-functions/vfork.texi.
12594         * doc/pastposix-functions/wcswcs.texi: Renamed from
12595         doc/posix-functions/wcswcs.texi.
12596         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
12597         (Function Substitutes): Update.
12598
12599 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12600
12601         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
12602         m4/strerror.m4.
12603
12604 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12605             Bruno Haible  <bruno@clisp.org>
12606
12607         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
12608
12609 2008-12-13  Bruno Haible  <bruno@clisp.org>
12610
12611         * modules/strtoull (Depends-on): Remove unistd.
12612
12613 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12614
12615         * modules/strtoull (Depends-on): Add stdlib.
12616
12617 2008-12-11  Simon Josefsson  <simon@josefsson.org>
12618
12619         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
12620
12621 2008-12-10  Jim Meyering  <meyering@redhat.com>
12622
12623         gl_ASSERT: don't say assertions are disabled when they're not
12624         * m4/assert.m4 (gl_ASSERT): Do not make configure report
12625         "checking whether to enable assertions... no", when they are in
12626         fact enabled.  This is solely a bug in the output of configure.
12627         In spite of saying "no", NDEBUG was not defined in that case.
12628         Also, as noted by Eric Blake, leave assertions enabled upon
12629         --enable-assert=INVALID.
12630
12631 2008-12-10  Bruno Haible  <bruno@clisp.org>
12632
12633         Change MODULES.html to refer to POSIX:2008 where possible.
12634         * MODULES.html.sh (POSIX2008_URL): New variable.
12635         (posix_headers): Remove sys/timeb, ucontext.
12636         (posix2001_headers): New variable.
12637         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
12638         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
12639         index, makecontext, mktemp, pthread_attr_getstackaddr,
12640         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
12641         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
12642         (posix2001_functions): New variable.
12643         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
12644         otherwise.
12645
12646 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12647
12648         add missing include to parse-duration.c
12649         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
12650         * modules/parse-duration (Depends-on): Add xalloc.
12651
12652         fix sed script reading maint.mk
12653         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
12654         (syntax-check-rules): Use it.
12655
12656 2008-12-09  Bruno Haible  <bruno@clisp.org>
12657
12658         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
12659         MacOS X 10.4/PowerPC.
12660         Reported by Simon Josefsson.
12661
12662 2008-12-08  Jim Meyering  <meyering@redhat.com>
12663
12664         work around mingw's lack of some S_IF definitions
12665         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
12666         Reported by Simon Josefsson.
12667
12668 2008-12-08  Bruno Haible  <bruno@clisp.org>
12669
12670         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
12671         applied to variables. Needed on MacOS X 10.4/PowerPC.
12672         Reported by Simon Josefsson.
12673
12674 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
12675         and Eric Blake  <ebb9@byu.net>
12676
12677         assert: honor --enable-assert
12678         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
12679         order to honor --enable-assert, rather than treating it as a
12680         synonym for --disable-assert.
12681
12682 2008-12-08  Jim Meyering  <meyering@redhat.com>
12683
12684         * lib/posixtm.c: Remove now-useless declaration of mktime.
12685
12686         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
12687
12688 2008-12-07  Bruno Haible  <bruno@clisp.org>
12689
12690         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
12691         test_once): Mark functions as static.
12692         * tests/test-tls.c (test_tls): Likewise.
12693
12694 2008-12-07  Bruno Haible  <bruno@clisp.org>
12695
12696         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
12697         iconv_register_autodetect.
12698
12699 2008-12-07  Jim Meyering  <meyering@redhat.com>
12700
12701         posixtm.c: avoid a warning
12702         * lib/posixtm.c (posixtime): Don't initialize tm0.
12703         It's no longer needed to placate gcc4's -Wuninitialized,
12704         and the attempt to placate would elicit a new warning.
12705
12706         unicodeio.c: mark unused parameters
12707         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
12708         (fallback_failure_callback): Likewise.
12709
12710 2008-12-07  Bruno Haible  <bruno@clisp.org>
12711
12712         * gnulib-tool (func_create_testdir): When building the tests
12713         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
12714         Reported by Simon Josefsson.
12715
12716 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12717
12718         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
12719
12720 2008-12-06  Bruno Haible  <bruno@clisp.org>
12721
12722         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
12723         Suggested by Eric Blake.
12724
12725 2008-12-06  Bruno Haible  <bruno@clisp.org>
12726
12727         Fix a c-stack test failure on MacOS X.
12728         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
12729         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
12730         handler for SIGBUS as well.
12731         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
12732         install a signal handler for SIGBUS as well.
12733         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
12734
12735 2008-12-06  Bruno Haible  <bruno@clisp.org>
12736
12737         Advocacy documentation.
12738         * doc/gnulib-intro.texi (Benefits): New section.
12739         * doc/gnulib.texi: Update.
12740
12741 2008-12-06  Bruno Haible  <bruno@clisp.org>
12742
12743         Document the 'manywarnings' module.
12744         * doc/manywarnings.texi: New file.
12745         * doc/gnulib.texi: Include it.
12746
12747 2008-12-05  Eric Blake  <ebb9@byu.net>
12748
12749         tests: silence some gcc warnings
12750         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
12751         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
12752         type mismatches.
12753
12754 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12755             Bruno Haible  <bruno@clisp.org>
12756
12757         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
12758
12759 2008-11-29  Jim Meyering  <meyering@redhat.com>
12760
12761         unicodeio.c: mark unused parameters
12762         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
12763         (fallback_failure_callback): Likewise.
12764
12765         fts: fix a thinko
12766         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
12767         (set_stat_type): Return S_IF*-valued "type" directly.
12768         Prompted by James Youngman's spotting a related bug.
12769         Confirmed by further testing through find.
12770
12771         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
12772         * lib/fts.c (D_TYPE): Define.
12773         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
12774         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
12775         (s_ifmt_shift_bits): New function.
12776         (set_stat_type): New function.
12777         (fts_build): When not calling fts_stat, call set_stat_type
12778         to propagate dirent.d_type info to fts_read caller.
12779         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
12780         fts_statp->st_mode type information may be valid.
12781
12782 2008-11-28  Simon Josefsson  <simon@josefsson.org>
12783
12784         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
12785         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
12786         <sds@gnu.org>.
12787
12788 2008-11-20  Bruno Haible  <bruno@clisp.org>
12789
12790         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
12791         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
12792         INCLUDE_NEXT.
12793         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
12794         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
12795         * modules/math (Makefile.am): Substitute
12796         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
12797         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
12798
12799 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
12800             Bruno Haible  <bruno@clisp.org>
12801
12802         * lib/stdint.in.h: Define all type macros so that their expansion is
12803         a single typedef'ed token. Fixes a compilation failure in Boost which
12804         does "using ::int8_t;".
12805
12806 2008-11-18  Simon Josefsson  <simon@josefsson.org>
12807
12808         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
12809         gl_MANYWARN_ALL_GCC.
12810         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
12811         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
12812         * modules/manywarnings: New file.
12813         * MODULES.html.sh: Mention manywarnings module.
12814
12815 2008-11-18  Bruno Haible  <bruno@clisp.org>
12816
12817         * doc/gnulib-tool.texi (Unit tests): New section.
12818
12819 2008-11-18  Simon Josefsson  <simon@josefsson.org>
12820
12821         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
12822         paths like 'lib/po/foo.po'.
12823
12824 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12825
12826         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
12827         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
12828
12829 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12830
12831         * m4/warnings.m4: Use CPPFLAGS to really check whether the
12832         parameter works.
12833
12834 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12835
12836         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
12837
12838 2008-11-17  Bruce Korb  <bkorb@gnu.org>
12839
12840         * modules/parse-duration-tests: New file.
12841         * tests/test-parse-duration.sh: New file.
12842         * tests/test-parse-duration.c: New file.
12843
12844         New module 'parse-duration'.
12845         * lib/parse-duration.h: New file.
12846         * lib/parse-duration.c: New file.
12847         * modules/parse-duration: New file.
12848
12849 2008-11-17  Bruno Haible  <bruno@clisp.org>
12850
12851         * tests/test-select-out.sh: Comment out the first pipe test.
12852         Reported by Simon Josefsson.
12853
12854 2008-11-17  Bruno Haible  <bruno@clisp.org>
12855
12856         * modules/getaddrinfo (Depends-on): Add servent, hostent.
12857         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
12858         gl_HOSTENT.
12859
12860 2008-11-17  Bruno Haible  <bruno@clisp.org>
12861
12862         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
12863         -lnetwork and -lnet. Needed for Haiku and BeOS.
12864
12865 2008-11-16  Bruno Haible  <bruno@clisp.org>
12866
12867         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
12868
12869 2008-11-16  Bruno Haible  <bruno@clisp.org>
12870
12871         Avoid test failure on Haiku.
12872         * tests/test-fsync.c: Include <errno.h>.
12873         (main): Don't require that fsync (0) fails.
12874
12875 2008-11-15  Bruno Haible  <bruno@clisp.org>
12876
12877         New module 'hostent'.
12878         * modules/hostent: New file.
12879         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
12880
12881 2008-11-15  Bruno Haible  <bruno@clisp.org>
12882
12883         New module 'servent'.
12884         * modules/servent: New file.
12885         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
12886
12887 2008-11-15  Bruno Haible  <bruno@clisp.org>
12888
12889         Avoid generating same test program with two different rules.
12890         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
12891         test-frexp to test-frexp-nolibm.
12892         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
12893         test-frexpl to test-frexpl-nolibm.
12894
12895 2008-11-15  Bruno Haible  <bruno@clisp.org>
12896
12897         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
12898         $(FREXPL_LIBM).
12899
12900 2008-11-15  Bruno Haible  <bruno@clisp.org>
12901
12902         * lib/netdb.in.h: Activate the definitions also when the system's
12903         <netdb.h> has 'struct addrinfo'.
12904         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
12905         EAI_OVERFLOW or AI_NUMERICSERV.
12906         * doc/posix-headers/netdb.texi: Document the problem.
12907
12908 2008-11-15  Bruno Haible  <bruno@clisp.org>
12909
12910         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
12911
12912         Make the 'sched' module work on platforms where <sched.h> exists but
12913         is incomplete (such as Haiku).
12914         * lib/sched.in.h; Include the system's <sched.h> if it exists.
12915         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
12916         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
12917         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
12918         HAVE_STRUCT_SCHED_PARAM.
12919         * modules/sched (Depends-on): Add include_next.
12920         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
12921         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
12922         * doc/posix-headers/sched.texi: Document the issue.
12923
12924 2008-11-13  Jim Meyering  <meyering@redhat.com>
12925
12926         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
12927         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
12928         test would fail due to the difference in the Report bugs to ...
12929         line.  The expected address is empty, "<>", while the actual
12930         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
12931
12932 2008-11-12  Bruno Haible  <bruno@clisp.org>
12933
12934         lstat: don't compile lstat.c on systems lacking lstat
12935         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
12936         which don't have lstat; this is handled by lib/sys_stat.in.h already.
12937         Reported by Daniel P. Berrange via Jim Meyering.
12938
12939 2008-11-12  Jim Meyering  <meyering@redhat.com>
12940
12941         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
12942
12943 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12944
12945         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
12946         instead.
12947
12948 2008-11-12  Bruno Haible  <bruno@clisp.org>
12949
12950         * lib/unicodeio.c: Include unistr.h.
12951         (utf8_wctomb): Remove function.
12952         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
12953
12954 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12955
12956         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
12957         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
12958         <bruno@clisp.org>.
12959         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
12960
12961 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12962
12963         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
12964         * doc/gnulib.texi: Add section for warnings.
12965
12966 2008-11-11  Bruno Haible  <bruno@clisp.org>
12967
12968         * lib/sockets.h: Add a comment.
12969
12970 2008-11-11  Karl Berry  <karl@gnu.org>
12971
12972         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
12973
12974 2008-11-11  Eric Blake  <ebb9@byu.net>
12975
12976         fdl.texi: avoid git symlinks
12977         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
12978
12979 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12980
12981         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
12982
12983 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12984
12985         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
12986         (gl_WARN_ADD): Substitute $2 if literal.
12987
12988 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12989
12990         * m4/warning.m4: Remove.
12991
12992 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12993
12994         * m4/warnings.m4: Almost complete rewrite. :-)
12995
12996 2008-11-10  Simon Josefsson  <simon@josefsson.org>
12997
12998         * modules/warnings: New module.
12999         * m4/warnings.m4: New file.
13000         * MODULES.html.sh: Mention warnings module.
13001         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
13002         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13003
13004 2008-11-10  Eric Blake  <ebb9@byu.net>
13005
13006         fdl.texi: make a symlink to the latest version
13007         * doc/standards.texi: Revert today's earlier change.
13008         * doc/fdl-1.2.texi: Rename from old fdl.texi...
13009         * doc/fdl.texi: ...and replace this with a symlink to the newer
13010         fdl-1.3.texi.
13011
13012 2008-11-10  Bruno Haible  <bruno@clisp.org>
13013
13014         * tests/test-select-fd.c (main): Accept the result file name as fourth
13015         argument.
13016         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
13017         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
13018
13019 2008-11-10  Bruno Haible  <bruno@clisp.org>
13020
13021         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
13022         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
13023         as autoconf-substituted macros.
13024         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
13025         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
13026         gl_NETDB_H_DEFAULTS. Set these variables.
13027         * modules/netdb (Makefile.am): Substitute these variables.
13028
13029 2008-11-10  Eric Blake  <ebb9@byu.net>
13030
13031         standards.texi: include correct file for FDL 1.3
13032         * doc/standards.texi (GNU Free Documentation License): Change
13033         include file to pull in FDL 1.3, not 1.2.
13034
13035         fdl.texi: revert accidental change to license
13036         * doc/fdl.texi: This is FDL 1.2, not 1.3.
13037
13038 2008-11-10  Bruno Haible  <bruno@clisp.org>
13039
13040         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
13041         cross-compiling guesses also when the native compile gives no result.
13042
13043 2008-11-10  Bruno Haible  <bruno@clisp.org>
13044
13045         * lib/spawni.c (__spawni): Force variable into the stack.
13046
13047 2008-11-10  Bruno Haible  <bruno@clisp.org>
13048
13049         Add support for Haiku.
13050         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
13051         glibc and BeOS, but also on Haiku.
13052         * lib/fpurge.c (fpurge): Likewise.
13053         * lib/freadable.c (freadable): Likewise.
13054         * lib/freadahead.c (freadahead): Likewise.
13055         * lib/freading.c (freading): Likewise.
13056         * lib/freadptr.c (freadptr): Likewise.
13057         * lib/freadseek.c (freadptrinc): Likewise.
13058         * lib/fseeko.c (rpl_fseeko): Likewise.
13059         * lib/fseterr.c (fseterr): Likewise.
13060         * lib/fwritable.c (fwritable): Likewise.
13061         * lib/fwriting.c (fwriting): Likewise.
13062         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
13063
13064 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
13065
13066         * lib/config.charset: Treat Haiku like BeOS.
13067
13068 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
13069
13070         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
13071         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
13072
13073 2008-11-08  Bruno Haible  <bruno@clisp.org>
13074
13075         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
13076         AC_CACHE_CHECK.
13077
13078 2008-11-08  Bruno Haible  <bruno@clisp.org>
13079
13080         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
13081
13082 2008-11-08  Bruno Haible  <bruno@clisp.org>
13083
13084         * tests/test-select-fd.c: New file.
13085         * tests/test-select-in.sh: New file.
13086         * tests/test-select-out.sh: New file.
13087         * tests/test-select-stdin.c: New file.
13088         * modules/select-tests (Files): Add the new files.
13089         (Depends-on): Add gettimeofday.
13090         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
13091         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
13092         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
13093
13094 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
13095             Bruno Haible  <bruno@clisp.org>
13096
13097         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
13098
13099 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
13100
13101         * build-aux/pmccabe2html: Added support for C++ source files.
13102
13103 2008-11-05  Ben Pfaff  <blp@gnu.org>
13104
13105         Fix lib/close.c build on Windows.
13106         * modules/close (Files): Add lib/w32sock.h.
13107
13108 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
13109
13110         Accept Bison's NEWS format.
13111         * build-aux/announce-gen (print_news_deltas): Tweak
13112         $re_prefix.
13113
13114 2008-11-04  Bruno Haible  <bruno@clisp.org>
13115
13116         * modules/random_r (Maintainer): Add glibc.
13117
13118 2008-11-04  Simon Josefsson  <simon@josefsson.org>
13119
13120         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
13121         by karl@freefriends.org (Karl Berry).
13122         * doc/alloca.texi: Likewise.
13123         * doc/c-ctype.texi: Likewise.
13124         * doc/c-strcase.texi: Likewise.
13125         * doc/c-strcaseeq.texi: Likewise.
13126         * doc/c-strcasestr.texi: Likewise.
13127         * doc/c-strstr.texi: Likewise.
13128         * doc/c-strtod.texi: Likewise.
13129         * doc/c-strtold.texi: Likewise.
13130         * doc/ctime.texi: Likewise.
13131         * doc/error.texi: Likewise.
13132         * doc/fdl.texi: Likewise.
13133         * doc/gcd.texi: Likewise.
13134         * doc/getdate.texi: Likewise.
13135         * doc/gnulib-intro.texi: Likewise.
13136         * doc/gnulib-tool.texi: Likewise.
13137         * doc/gnulib.texi: Likewise.
13138         * doc/inet_ntoa.texi: Likewise.
13139         * doc/maintain.texi: Likewise.
13140         * doc/make-stds.texi: Likewise.
13141         * doc/quote.texi: Likewise.
13142         * doc/regexprops-generic.texi: Likewise.
13143         * doc/standards.texi: Likewise.
13144         * doc/verify.texi: Likewise.
13145         * doc/visibility.texi: Likewise.
13146         * doc/gnulib.texi (GNU Free Documentation License): Include
13147         fdl-1.3.texi instead of fdl.texi.
13148
13149 2008-11-04  Simon Josefsson  <simon@josefsson.org>
13150
13151         * doc/fdl-1.3.texi: New file, from
13152         <http://www.gnu.org/licenses/fdl-1.3.texi>.
13153         * modules/fdl-1.3: Add.
13154         * MODULES.html.sh: Add fdl-1.3.
13155
13156 2008-11-03  Bruno Haible  <bruno@clisp.org>
13157
13158         Make determination of absolute name of header file work with AIX xlc.
13159         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
13160         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
13161         preprocessing.
13162         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13163         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
13164
13165 2008-11-03  Simon Josefsson  <simon@josefsson.org>
13166
13167         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
13168         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
13169         <ludo@gnu.org>.
13170
13171 2008-11-02  Bruno Haible  <bruno@clisp.org>
13172
13173         Mark 'strpbrk' obsolete.
13174         * modules/strpbrk (Status, Notice): New sections.
13175         * modules/strtok_r (Depends-on): Add strpbrk.
13176
13177 2008-11-02  Bruno Haible  <bruno@clisp.org>
13178
13179         Mark 'strdup' obsolete.
13180         * modules/strdup (Status, Notice): New sections.
13181         * modules/findprog (Depends-on): Add strdup.
13182         * modules/getaddrinfo (Depends-on): Likewise.
13183         * modules/localename (Depends-on): Likewise.
13184         * modules/relocatable-lib (Depends-on): Likewise.
13185         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
13186         * modules/relocatable-prog (Depends-on): Likewise.
13187         * modules/trim (Depends-on): Likewise.
13188         * modules/unictype/gen-ctype (Depends-on): Likewise.
13189         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
13190
13191 2008-11-02  Bruno Haible  <bruno@clisp.org>
13192
13193         Mark 'strcspn' obsolete.
13194         * modules/strcspn (Status, Notice): New sections.
13195
13196 2008-11-02  Bruno Haible  <bruno@clisp.org>
13197
13198         Mark 'rmdir' obsolete.
13199         * modules/rmdir (Status, Notice): New sections.
13200         * modules/clean-temp (Depends-on): Add rmdir.
13201         * modules/openat (Depends-on): Likewise.
13202
13203 2008-11-02  Bruno Haible  <bruno@clisp.org>
13204
13205         Mark 'raise' obsolete.
13206         * modules/raise (Status, Notice): New sections.
13207         (Include): Specify <signal.h>.
13208         * modules/stdio (Depends-on): Add raise.
13209         * modules/write (Depends-on): Likewise.
13210
13211 2008-11-02  Bruno Haible  <bruno@clisp.org>
13212
13213         Mark 'memset' obsolete.
13214         * modules/memset (Status, Notice): New sections.
13215
13216 2008-11-02  Bruno Haible  <bruno@clisp.org>
13217
13218         Mark 'memmove' obsolete.
13219         * modules/memmove (Status, Notice): New sections.
13220         * modules/argp (Depends-on): Add memmove.
13221         * modules/argz (Depends-on): Likewise.
13222         * modules/canonicalize (Depends-on): Likewise.
13223         * modules/canonicalize-lgpl (Depends-on): Likewise.
13224         * modules/fts (Depends-on): Likewise.
13225         * modules/getcwd (Depends-on): Likewise.
13226         * modules/human (Depends-on): Likewise.
13227         * modules/regex (Depends-on): Likewise.
13228         * modules/striconveh (Depends-on): Likewise.
13229         * modules/trim (Depends-on): Likewise.
13230         * modules/unistr/u8-move (Depends-on): Likewise.
13231         * modules/unistr/u16-move (Depends-on): Likewise.
13232         * modules/unistr/u32-move (Depends-on): Likewise.
13233
13234 2008-11-02  Bruno Haible  <bruno@clisp.org>
13235
13236         Mark 'memcpy' obsolete.
13237         * modules/memcpy (Status, Notice): New sections.
13238
13239 2008-11-02  Bruno Haible  <bruno@clisp.org>
13240
13241         Mark 'memcmp' obsolete.
13242         * modules/memcmp (Status, Notice): New sections.
13243         * modules/argmatch (Depends-on): Add memchr.
13244         * modules/backupfile (Depends-on): Likewise.
13245         * modules/c-strcasestr (Depends-on): Likewise.
13246         * modules/crypto/des (Depends-on): Likewise.
13247         * modules/csharpcomp (Depends-on): Likewise.
13248         * modules/fnmatch (Depends-on): Likewise.
13249         * modules/git-merge-changelog (Depends-on): Likewise.
13250         * modules/isnand (Depends-on): Likewise.
13251         * modules/isnand-nolibm (Depends-on): Likewise.
13252         * modules/isnanf (Depends-on): Likewise.
13253         * modules/isnanf-nolibm (Depends-on): Likewise.
13254         * modules/isnanl (Depends-on): Likewise.
13255         * modules/isnanl-nolibm (Depends-on): Likewise.
13256         * modules/mbchar (Depends-on): Likewise.
13257         * modules/memcoll (Depends-on): Likewise.
13258         * modules/quotearg (Depends-on): Likewise.
13259         * modules/regex (Depends-on): Likewise.
13260         * modules/relocatable-prog (Depends-on): Likewise.
13261         * modules/same (Depends-on): Likewise.
13262         * modules/signbit (Depends-on): Likewise.
13263         * modules/strcasestr-simple (Depends-on): Likewise.
13264         * modules/unictype/gen-ctype (Depends-on): Likewise.
13265         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
13266         * modules/uniname/uniname (Depends-on): Likewise.
13267         * modules/unistr/u8-cmp (Depends-on): Likewise.
13268
13269 2008-11-02  Bruno Haible  <bruno@clisp.org>
13270
13271         Mark 'memchr' obsolete.
13272         * modules/memchr (Status, Notice): New sections.
13273         * modules/argp (Depends-on): Add memchr.
13274         * modules/base64 (Depends-on): Likewise.
13275         * modules/c-strcasestr (Depends-on): Likewise.
13276         * modules/chdir-long (Depends-on): Likewise.
13277         * modules/fnmatch (Depends-on): Likewise.
13278         * modules/getsubopt (Depends-on): Likewise.
13279         * modules/git-merge-changelog (Depends-on): Likewise.
13280         * modules/glob (Depends-on): Likewise.
13281         * modules/strcasestr-simple (Depends-on): Likewise.
13282         * modules/strnlen (Depends-on): Likewise.
13283
13284 2008-11-02  Bruno Haible  <bruno@clisp.org>
13285
13286         Mark 'atexit' obsolete.
13287         * modules/atexit (Status, Notice): New sections.
13288         * modules/chdir-long (Depends-on): Add atexit.
13289         * modules/wait-process (Depends-on): Likewise.
13290
13291 2008-11-02  Bruno Haible  <bruno@clisp.org>
13292
13293         * gnulib-tool: New option --with-obsolete.
13294         (func_usage): Document it.
13295         (func_modules_transitive_closure): Drop obsolete dependencies if
13296         incobsolete is not true.
13297         (func_import): Read and save the incobsolete variable to the cache.
13298
13299 2008-11-02  Bruno Haible  <bruno@clisp.org>
13300
13301         * modules/TEMPLATE-EXTENDED: New field 'Status'.
13302         * gnulib-tool: New option --extract-status.
13303         (func_usage): Document it.
13304         (sed_extract_prog): Recognize it.
13305         (func_get_status): New function.
13306
13307 2008-10-30  Simon Josefsson  <simon@josefsson.org>
13308
13309         * modules/sockets (License): Change from LGPL to LGPLv2+.
13310
13311 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13312
13313         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
13314
13315 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13316
13317         * MODULES.html.sh (Support for systems lacking POSIX:2001):
13318         Mention times and sys_times.
13319         * modules/sys_times, modules/sys_times-tests: New modules.
13320         * modules/times, modules/times-tests: Likewise
13321         * m4/sys_times_h.m4: New file.
13322         * lib/sys_times.in.h: Likewise
13323         * lib/times.c: Likewise.
13324         * tests/test-sys_times.c: Likewise.
13325         * tests/test-times.c: Likewise.
13326         * doc/posix-headers/sys_times.texi: Update.
13327         * doc/posix-functions/times.texi: Update.
13328
13329 2008-10-28  Jim Meyering  <meyering@redhat.com>
13330
13331         * modules/tempname (Depends-on): Add lstat.
13332
13333         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
13334
13335 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13336
13337         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
13338         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
13339         using idiom used elsewhere in gnulib.
13340
13341 2008-10-27  Jim Meyering  <meyering@redhat.com>
13342
13343         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
13344
13345 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13346
13347         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
13348         TESTS_ENVIRONMENT, for shell scripts that needs to call built
13349         programs.
13350         * tests/test-argp-2.sh: Use $EXEEXT when needed.
13351
13352 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13353
13354         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
13355
13356 2008-10-27  Bruno Haible  <bruno@clisp.org>
13357
13358         * tests/test-lstat.c: Include <stdio.h>.
13359
13360 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13361
13362         * modules/lstat-tests: New module.
13363         * tests/test-lstat.c: New file.
13364
13365 2008-10-26  Jim Meyering  <meyering@redhat.com>
13366
13367         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
13368
13369 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13370             Bruno Haible  <bruno@clisp.org>
13371
13372         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
13373         * modules/configmake (Include): Add a note that the include must come
13374         after all system headers.
13375         * lib/javaversion.c: Include configmake.h after all other includes.
13376
13377 2008-10-26  Bruno Haible  <bruno@clisp.org>
13378
13379         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
13380         HAVE_STRUCT_RANDOM_DATA to 1.
13381         (gl_STDLIB_H): Simplify.
13382
13383 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13384
13385         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
13386         substitute HAVE_STRUCT_RANDOM_DATA.
13387         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
13388         random_data.
13389         * modules/stdlib (Makefile.am): Substitute
13390         HAVE_STRUCT_RANDOM_DATA.
13391
13392 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13393
13394         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
13395         * doc/gnulib-intro.texi (Copyright): Likewise.
13396
13397 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13398
13399         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
13400         findings.
13401
13402 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
13403             Bruno Haible  <bruno@clisp.org>
13404
13405         * lib/unistd.in.h: Include <winsock2.h>.
13406         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
13407         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
13408         Provide dummy declarations.
13409         (gethostname): Override.
13410         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
13411         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
13412         gl_PREREQ_SYS_H_WINSOCK2.
13413         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
13414         * doc/posix-functions/gethostname.texi: More details.
13415
13416 2008-10-25  Bruno Haible  <bruno@clisp.org>
13417
13418         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
13419         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
13420         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
13421
13422         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
13423         here ...
13424         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
13425         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
13426         gl_UNISTD_H_DEFAULTS.
13427
13428 2008-10-25  Eric Blake  <ebb9@byu.net>
13429
13430         signbit: avoid spurious compiler failure
13431         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
13432         declarations inside function.
13433
13434 2008-10-24  Simon Josefsson  <simon@josefsson.org>
13435             Bruno Haible  <bruno@clisp.org>
13436
13437         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
13438         * modules/random_r (Depends-on): Add stdint.
13439
13440 2008-10-24  Bruno Haible  <bruno@clisp.org>
13441
13442         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
13443         Eggert.
13444         * modules/strerror (License): Likewise.
13445
13446 2008-10-24  Jim Meyering  <meyering@redhat.com>
13447
13448         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
13449         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
13450
13451 2008-10-24  Eric Blake  <ebb9@byu.net>
13452
13453         getgroups: fix compilation when getgroups is available
13454         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
13455         but with <config.h> override of getgroups disabled.
13456
13457 2008-10-24  Simon Josefsson  <simon@josefsson.org>
13458
13459         * doc/gnulib.texi (Header files): Add note about C++ problems.
13460         Explained by Bruno Haible <bruno@clisp.org>.
13461
13462 2008-10-23  Bruno Haible  <bruno@clisp.org>
13463
13464         Define a dummy SA_NODEFER macro on Interix.
13465         * lib/signal.in.h (SA_NODEFER): Define fallback.
13466         Reported by Aleksey Cheusov <cheusov@tut.by> via
13467         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
13468
13469 2008-10-23  Bruno Haible  <bruno@clisp.org>
13470
13471         * modules/freadahead (License): Change to LGPLv2+.
13472         Suggested by Simon Josefsson.
13473
13474 2008-10-23  Jim Meyering  <meyering@redhat.com>
13475
13476         random_r: new module
13477         * modules/random_r: New file.
13478         * m4/random_r.m4: New file.
13479         * lib/random_r.c: New file, from glibc.
13480         * modules/random_r-tests: New file.
13481         * tests/test-random_r.c: New file.
13482         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
13483          Declare.
13484         (RAND_MAX): Define.
13485         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
13486         * modules/stdlib: Substitute them, too.
13487         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
13488         * doc/glibc-functions/initstate_r.texi: Mention the new module.
13489         * doc/glibc-functions/random_r.texi: Likewise.
13490         * doc/glibc-functions/setstate_r.texi: Likewise.
13491         * doc/glibc-functions/srandom_r.texi: Likewise.
13492         * config/srclist.txt: Mention it.
13493
13494 2008-10-23  David Lutterkort  <lutter@redhat.com>
13495
13496         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
13497         link requirement
13498
13499 2008-10-23  Jim Meyering  <meyering@redhat.com>
13500
13501         selinux-h: mark parameters of stub functions as intentionally unused
13502         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
13503         * lib/se-context.in.h: Likewise.
13504
13505 2008-10-22  Simon Josefsson  <simon@josefsson.org>
13506
13507         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
13508
13509 2008-10-22  Simon Josefsson  <simon@josefsson.org>
13510
13511         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
13512
13513 2008-10-22  Eric Blake  <ebb9@byu.net>
13514
13515         glthread/thread: avoid compiler warning
13516         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
13517         Add unreachable abort to silence compiler.
13518
13519 2008-10-22  Eric Blake  <ebb9@byu.net>
13520
13521         netdb: also supply struct addrinfo for cygwin 1.5.x
13522         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
13523         older cygwin.
13524         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
13525         cygwin.
13526         * doc/posix-headers/netdb.texi (netdb.h): Document this.
13527
13528 2008-10-22  Bruno Haible  <bruno@clisp.org>
13529
13530         * users.txt: Update entry about pspp.
13531
13532 2008-10-21  Bruno Haible  <bruno@clisp.org>
13533
13534         Simplification.
13535         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
13536         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
13537
13538         Simplification.
13539         * lib/ioctl.c (ioctl): Don't undefine.
13540         * lib/socket.c (socket): Don't undefine.
13541
13542         Remove unused module indicator macros.
13543         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
13544         GNULIB_$1 as a C macro.
13545
13546         * doc/posix-functions/close.texi: Undo last change.
13547         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
13548         Windows platforms.
13549
13550 2008-10-21  Bruno Haible  <bruno@clisp.org>
13551
13552         Add gethostname() declaration to <unistd.h>.
13553         * lib/unistd.in.h (gethostname): New declaration.
13554         * lib/gethostname.c: Include <unistd.h>.
13555         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
13556         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
13557         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
13558         and HAVE_GETHOSTNAME.
13559         * modules/gethostname (Depends-on): Add unistd.
13560         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13561         (Include): Specify <unistd.h>.
13562         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
13563         HAVE_GETHOSTNAME.
13564         * tests/test-gethostname.c: Include <unistd.h> first.
13565
13566 2008-10-21  Bruno Haible  <bruno@clisp.org>
13567
13568         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
13569         * modules/select-tests (Depends-on): Likewise.
13570         Reported by Simon Josefsson.
13571
13572 2008-10-21  Simon Josefsson  <simon@josefsson.org>
13573
13574         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
13575         * lib/accept.c: New file, based on winsock.c.
13576         * lib/bind.c: New file, based on winsock.c.
13577         * lib/connect.c: New file, based on winsock.c.
13578         * lib/getpeername.c: New file, based on winsock.c.
13579         * lib/getsockname.c: New file, based on winsock.c.
13580         * lib/getsockopt.c: New file, based on winsock.c.
13581         * lib/ioctl.c: New file, based on winsock.c.
13582         * lib/listen.c: New file, based on winsock.c.
13583         * lib/recv.c: New file, based on winsock.c.
13584         * lib/recvfrom.c: New file, based on winsock.c.
13585         * lib/send.c: New file, based on winsock.c.
13586         * lib/sendto.c: New file, based on winsock.c.
13587         * lib/setsockopt.c: New file, based on winsock.c.
13588         * lib/shutdown.c: New file, based on winsock.c.
13589         * lib/socket.c: New file, based on winsock.c.
13590         * lib/w32sock.h: New file, based on winsock.c.
13591         * lib/winsock.c: Remove file.
13592         * modules/accept: Likewise.
13593         * modules/bind: Likewise.
13594         * modules/connect: Likewise.
13595         * modules/getpeername: Likewise.
13596         * modules/getsockname: Likewise.
13597         * modules/getsockopt: Likewise.
13598         * modules/ioctl: Likewise.
13599         * modules/listen: Likewise.
13600         * modules/recv: Likewise.
13601         * modules/recvfrom: Likewise.
13602         * modules/send: Likewise.
13603         * modules/sendto: Likewise.
13604         * modules/setsockopt: Likewise.
13605         * modules/shutdown: Likewise.
13606         * modules/socket: Use socket.c instead of winsock.c.
13607         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
13608         * doc/posix-functions/accept.texi: Doc fix.
13609         * doc/posix-functions/bind.texi: Doc fix.
13610         * doc/posix-functions/close.texi: Doc fix.
13611         * doc/posix-functions/connect.texi: Doc fix.
13612         * doc/posix-functions/getpeername.texi: Doc fix.
13613         * doc/posix-functions/getsockname.texi: Doc fix.
13614         * doc/posix-functions/getsockopt.texi: Doc fix.
13615         * doc/posix-functions/ioctl.texi: Doc fix.
13616         * doc/posix-functions/listen.texi: Doc fix.
13617         * doc/posix-functions/recv.texi: Doc fix.
13618         * doc/posix-functions/recvfrom.texi: Doc fix.
13619         * doc/posix-functions/send.texi: Doc fix.
13620         * doc/posix-functions/sendto.texi: Doc fix.
13621         * doc/posix-functions/setsockopt.texi: Doc fix.
13622         * doc/posix-functions/shutdown.texi: Doc fix.
13623         * doc/posix-functions/socket.texi: Doc fix.
13624
13625 2008-10-20  Bruno Haible  <bruno@clisp.org>
13626
13627         Take into account the role of SIGABRT_COMPAT on Windows 2008.
13628         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
13629         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
13630         as an alias for SIGABRT.
13631         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
13632         (sigaction): Map it to SIGABRT.
13633         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
13634
13635 2008-10-20  Bruno Haible  <bruno@clisp.org>
13636
13637         * lib/fts.c: Don't include lstat.h.
13638         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
13639
13640         Move the lstat() declaration to <sys/stat.h>.
13641         * lib/lstat.h: Remove file.
13642         * lib/sys_stat.in.h: Add special invocation convention.
13643         (lstat): New declaration.
13644         * lib/lstat.c (orig_lstat): New function.
13645         (rpl_lstat): Use orig_lstat instead of lstat.
13646         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
13647         AC_C_INLINE. Set REPLACE_LSTAT.
13648         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
13649         and REPLACE_LSTAT.
13650         * modules/lstat (Files): Remove lib/lstat.h.
13651         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
13652         (Include): Specify <sys/stat.h> instead of lstat.h.
13653         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
13654         REPLACE_LSTAT.
13655         * NEWS: Mention the change.
13656
13657 2008-10-20  Bruno Haible  <bruno@clisp.org>
13658
13659         * modules/posix_spawn-tests: New file.
13660         * tests/test-posix_spawn3.c: New file.
13661
13662 2008-10-20  Bruno Haible  <bruno@clisp.org>
13663
13664         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
13665         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
13666         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
13667         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
13668         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
13669
13670 2008-10-20  Bruno Haible  <bruno@clisp.org>
13671
13672         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
13673         of posix_spawn on AIX 5.3.
13674
13675 2008-10-20  Bruno Haible  <bruno@clisp.org>
13676
13677         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
13678
13679 2008-10-20  Bruno Haible  <bruno@clisp.org>
13680
13681         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
13682         of AC_LANG_PROGRAM.
13683
13684 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13685
13686         * lib/netdb.in.h: Don't define GNU specific constants until they
13687         are supported or needed.  Reported by Bruno Haible
13688         <bruno@clisp.org>.
13689
13690 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13691
13692         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
13693
13694 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13695
13696         * lib/getaddrinfo.h: Remove file.
13697         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
13698         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
13699         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
13700         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
13701         * modules/netdb: Substitute GNULIB_GETADDRINFO.
13702         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
13703         * tests/test-getaddrinfo.c: Likewise.
13704         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
13705         * NEWS: Mention change.
13706
13707 2008-10-19  Bruno Haible  <bruno@clisp.org>
13708
13709         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
13710
13711 2008-10-19  Bruno Haible  <bruno@clisp.org>
13712
13713         * lib/wait-process.c: Include simply <sys/wait.h>.
13714         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
13715         WIFSTOPPED): Remove fallback definitions.
13716         * modules/wait-process (Depends-on): Add sys_wait.
13717
13718         New module 'sys_wait'.
13719         * modules/sys_wait: New file.
13720         * lib/sys_wait.in.h: New file, partially copied from
13721         lib/wait-process.c.
13722         * m4/sys_wait_h.m4: New file.
13723         * doc/posix-headers/sys_wait.texi: Mention the new module.
13724
13725 2008-10-19  Bruno Haible  <bruno@clisp.org>
13726
13727         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
13728
13729 2008-10-19  Bruno Haible  <bruno@clisp.org>
13730
13731         Assume that waitpid() fills an 'int' status, not a 'union wait'.
13732         * lib/wait-process.c (WAIT_T): Remove type.
13733         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
13734         (wait_subprocess): Update.
13735
13736 2008-10-19  Bruno Haible  <bruno@clisp.org>
13737
13738         New module 'atoll'.
13739         * modules/atoll: New file.
13740         * lib/stdlib.in.h (atoll): New declaration.
13741         * lib/atoll.c: New file, from glibc with modifications.
13742         * m4/atoll.m4: New file.
13743         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
13744         HAVE_ATOLL.
13745         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
13746         * doc/posix-functions/atoll.texi: Mention the new module.
13747
13748 2008-10-19  Bruno Haible  <bruno@clisp.org>
13749
13750         Add strtoull() declaration to <stdlib.h>.
13751         * lib/stdlib.in.h (strtoull): New declaration.
13752         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
13753         Set HAVE_STRTOULL.
13754         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
13755         HAVE_STRTOULL.
13756         * modules/strtoull (Depends-on): Add stdlib.
13757         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13758         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
13759         HAVE_STRTOULL.
13760
13761 2008-10-19  Bruno Haible  <bruno@clisp.org>
13762
13763         Add strtoll() declaration to <stdlib.h>.
13764         * lib/stdlib.in.h (strtoll): New declaration.
13765         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
13766         Set HAVE_STRTOLL.
13767         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
13768         HAVE_STRTOLL.
13769         * modules/strtoll (Depends-on): Add stdlib.
13770         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13771         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
13772
13773 2008-10-19  Bruno Haible  <bruno@clisp.org>
13774
13775         * modules/bcopy (Depends-on): Add strings.
13776         (Include): Specify <strings.h>.
13777
13778 2008-10-19  Bruno Haible  <bruno@clisp.org>
13779
13780         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
13781
13782 2008-10-19  Bruno Haible  <bruno@clisp.org>
13783
13784         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
13785         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
13786         mingw.
13787
13788 2008-10-19  Bruno Haible  <bruno@clisp.org>
13789
13790         * lib/atanl.c: Don't include isnanl.h.
13791         * lib/cosl.c: Likewise.
13792         * lib/ldexpl.c: Likewise.
13793         * lib/logl.c: Likewise.
13794         * lib/sinl.c: Likewise.
13795         * lib/sqrtl.c: Likewise.
13796         * lib/tanl.c: Likewise.
13797
13798         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
13799         * lib/isnanf.h: Remove file.
13800         * lib/isnand.h: Remove file.
13801         * lib/isnanl.h: Remove file.
13802         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
13803         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
13804         macros.
13805         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
13806         HAVE_ISNANF, don't define it as a C macro.
13807         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
13808         HAVE_ISNAND, don't define it as a C macro.
13809         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
13810         HAVE_ISNANL, don't define it as a C macro.
13811         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
13812         HAVE_ISNAN[FDL].
13813         * modules/isnanf (Files): Remove lib/isnanf.h.
13814         (Depends-on): Add math.
13815         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13816         (Include): Specify <math.h> instead of isnanf.h.
13817         * modules/isnand (Files): Remove lib/isnand.h.
13818         (Depends-on): Add math.
13819         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13820         (Include): Specify <math.h> instead of isnand.h.
13821         * modules/isnanl (Files): Remove lib/isnanl.h.
13822         (Depends-on): Add math.
13823         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13824         (Include): Specify <math.h> instead of isnanl.h.
13825         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
13826         HAVE_ISNAN[FDL].
13827         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
13828         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
13829         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
13830         * NEWS: Mention the change.
13831
13832 2008-10-18  Bruno Haible  <bruno@clisp.org>
13833
13834         Add getusershell(), setusershell(), endusershell() declarations to
13835         <unistd.h>.
13836         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
13837         declarations.
13838         * lib/getusershell.c: Include unistd.h.
13839         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
13840         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
13841         HAVE_GETUSERSHELL.
13842         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
13843         and HAVE_GETUSERSHELL.
13844         * modules/getusershell (Depends-on): Add unistd, extensions.
13845         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13846         (Include): Specify <unistd.h>.
13847         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
13848         HAVE_GETUSERSHELL.
13849
13850 2008-10-18  Bruno Haible  <bruno@clisp.org>
13851
13852         Add a getloadavg() declaration to <stdlib.h>.
13853         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
13854         getloadavg declaration.
13855         (getloadavg): New declaration.
13856         * lib/getloadavg.c: Include <stdlib.h> first.
13857         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
13858         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
13859         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
13860         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
13861         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
13862         * modules/getloadavg (Depends-on): Add stdlib, extensions.
13863         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13864         (Include): Specify <stdlib.h>.
13865         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
13866         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
13867
13868 2008-10-18  Bruno Haible  <bruno@clisp.org>
13869
13870         * lib/dirchownmod.c: Don't include lchmod.h.
13871
13872         Move the lchmod() declaration to <sys/stat.h>.
13873         * lib/lchmod.h: Remove file.
13874         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
13875         (lchmod): New declaration, moved here from lib/lchown.h.
13876         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
13877         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
13878         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
13879         and HAVE_LCHMOD.
13880         * modules/lchmod (Files): Remove lib/lchmod.h.
13881         (Depends-on): Add sys_stat, extensions.
13882         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
13883         (Include): Specify <sys/stat.h> instead of lchmod.h.
13884         * modules/sys_stat (Depends-on): Add link-warning.
13885         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
13886         definition of GL_LINK_WARNING.
13887         * NEWS: Mention the change.
13888
13889 2008-10-18  Bruno Haible  <bruno@clisp.org>
13890
13891         * lib/fchdir.c: Don't include dirfd.h.
13892         * lib/fts.c: Likewise.
13893         * lib/getcwd.c: Likewise.
13894         * lib/glob.c: Likewise.
13895
13896         Move the dirfd() declaration to <dirent.h>.
13897         * lib/dirfd.h: Remove file.
13898         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
13899         (dirfd): New declaration.
13900         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
13901         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
13902         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
13903         HAVE_DECL_DIRFD.
13904         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
13905         HAVE_DECL_DIRFD.
13906         * modules/dirfd (Files): Remove lib/dirfd.h.
13907         (Depends-on): Add dirent, extensions.
13908         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
13909         (Include): Specify <dirent.h> instead of dirfd.h.
13910         * modules/dirent (Depends-on): Add link-warning.
13911         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
13912         definition of GL_LINK_WARNING.
13913         * NEWS: Mention the change.
13914
13915 2008-10-18  Bruno Haible  <bruno@clisp.org>
13916
13917         Move the euidaccess() declaration to <unistd.h>.
13918         * lib/euidaccess.h: Remove file.
13919         * lib/unistd.in.h (euidaccess): New declaration.
13920         * lib/euidaccess.c: Don't include euidaccess.h.
13921         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
13922         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
13923         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
13924         and HAVE_EUIDACCESS.
13925         * modules/euidaccess (Files): Remove lib/euidaccess.h.
13926         (Depends-on): Add unistd.
13927         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13928         (Include): Specify <unistd.h> instead of euidaccess.h.
13929         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
13930         HAVE_EUIDACCESS.
13931         * NEWS: Mention the change.
13932
13933 2008-10-18  Bruno Haible  <bruno@clisp.org>
13934
13935         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
13936
13937         Move the getdomainname() declaration to <unistd.h>.
13938         * lib/getdomainname.h: Remove file.
13939         * lib/unistd.in.h (getdomainname): New declaration.
13940         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
13941         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
13942         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
13943         HAVE_GETDOMAINNAME.
13944         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
13945         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
13946         * modules/getdomainname (Files): Remove lib/getdomainname.h.
13947         (Depends-on): Add unistd, extensions.
13948         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13949         (Includes): Specify <unistd.h> instead of getdomainname.h.
13950         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
13951         HAVE_GETDOMAINNAME.
13952         * NEWS: Mention the change.
13953
13954 2008-10-18  Bruno Haible  <bruno@clisp.org>
13955
13956         * modules/dirent: New file.
13957         * m4/dirent_h.m4: New file.
13958         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
13959         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
13960         * modules/fchdir (Files): Remove lib/dirent.in.h.
13961         (Depends-on): Add dirent.
13962         (Makefile.am): Move rules to modules/dirent.
13963         * doc/posix-headers/dirent.texi: Mention the new module.
13964
13965 2008-10-18  Bruno Haible  <bruno@clisp.org>
13966
13967         Avoid -Wunused-parameter warnings in public gnulib header files.
13968         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
13969         macro.
13970         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
13971
13972 2008-10-18  Bruno Haible  <bruno@clisp.org>
13973
13974         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
13975         * doc/glibc-functions/error.texi: Mention the module 'error'.
13976         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
13977         * doc/glibc-functions/getdomainname.texi: Mention the module
13978         'getdomainname'.
13979         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
13980         * doc/glibc-functions/getpagesize.texi: Mention the module
13981         'getpagesize'.
13982         * doc/glibc-functions/getusershell.texi: Mention the module
13983         'getusershell'.
13984         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
13985         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
13986         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
13987         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
13988         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
13989         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
13990         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
13991         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
13992         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
13993         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
13994         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
13995         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
13996         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
13997         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
13998
13999 2008-10-17  Bruno Haible  <bruno@clisp.org>
14000
14001         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
14002         HP-UX and IRIX, use -0.0L.
14003         * tests/test-ceill.c (minus_zero): Likewise.
14004         * tests/test-floorl.c (minus_zero): Likewise.
14005         * tests/test-frexpl.c (minus_zero): Likewise.
14006         * tests/test-isnan.c (minus_zerol): Likewise.
14007         * tests/test-isnanl.h (minus_zero): Likewise.
14008         * tests/test-ldexpl.c (minus_zero): Likewise.
14009         * tests/test-roundl.c (minus_zero): Likewise.
14010         * tests/test-signbit.c (minus_zerol): Likewise.
14011         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
14012         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
14013         * tests/test-truncl.c (minus_zero): Likewise.
14014         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
14015         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
14016         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
14017         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
14018
14019 2008-10-17  Bruno Haible  <bruno@clisp.org>
14020
14021         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
14022         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
14023         that it gets activated only for gcc >= 3.0.
14024         * lib/dirent.in.h: Likewise.
14025         * lib/errno.in.h: Likewise.
14026         * lib/fcntl.in.h: Likewise.
14027         * lib/float.in.h: Likewise.
14028         * lib/iconv.in.h: Likewise.
14029         * lib/inttypes.in.h: Likewise.
14030         * lib/locale.in.h: Likewise.
14031         * lib/math.in.h: Likewise.
14032         * lib/netdb.in.h: Likewise.
14033         * lib/netinet_in.in.h: Likewise.
14034         * lib/search.in.h: Likewise.
14035         * lib/signal.in.h: Likewise.
14036         * lib/spawn.in.h: Likewise.
14037         * lib/stdarg.in.h: Likewise.
14038         * lib/stdint.in.h: Likewise.
14039         * lib/stdio.in.h: Likewise.
14040         * lib/stdlib.in.h: Likewise.
14041         * lib/string.in.h: Likewise.
14042         * lib/strings.in.h: Likewise.
14043         * lib/sys_file.in.h: Likewise.
14044         * lib/sys_ioctl.in.h: Likewise.
14045         * lib/sys_select.in.h: Likewise.
14046         * lib/sys_socket.in.h: Likewise.
14047         * lib/sys_stat.in.h: Likewise.
14048         * lib/sys_time.in.h: Likewise.
14049         * lib/sysexits.in.h: Likewise.
14050         * lib/time.in.h: Likewise.
14051         * lib/unistd.in.h: Likewise.
14052         * lib/wchar.in.h: Likewise.
14053         * lib/wctype.in.h: Likewise.
14054         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
14055
14056 2008-10-17  Jim Meyering  <meyering@redhat.com>
14057
14058         ignore-value: don't depend on inline module
14059         * modules/ignore-value (Depends-on): Remove 'inline'.
14060         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
14061         Suggestion from Bruno Haible.
14062
14063 2008-10-17  Bruno Haible  <bruno@clisp.org>
14064
14065         New implementation of condition variables for Win32.
14066         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
14067         (gl_linked_waitqueue_t): New type.
14068         (gl_cond_t): Use it.
14069         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
14070         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
14071         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
14072         (glthread_cond_init_func, glthread_cond_wait_func,
14073         glthread_cond_timedwait_func, glthread_cond_signal_func,
14074         glthread_cond_broadcast_func, glthread_cond_destroy_func):
14075         Reimplemented on the basis of gl_linked_waitqueue_t.
14076         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
14077         gl_waitqueue_t.
14078         (gl_rwlock_t): Update.
14079         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
14080
14081 2008-10-17  Simon Josefsson  <simon@josefsson.org>
14082
14083         * modules/recvfrom (Depends-on): Add dependency on getpeername.
14084         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14085
14086 2008-10-17  Jim Meyering  <meyering@redhat.com>
14087
14088         ignore-value: new module
14089         * modules/ignore-value: New file.
14090         * lib/ignore-value.h: New file.
14091         * MODULES.html.sh (Compiler warning management): New section,
14092         just for this module.  More to come.
14093
14094 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
14095
14096         open-safer.c: avoid 'signed and unsigned in conditional...' warning
14097         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
14098         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
14099
14100 2008-10-16  Jim Meyering  <meyering@redhat.com>
14101
14102         openat-die.c: avoid 'no previous prototype' warning
14103         * lib/openat-die.c: Include "openat.h".
14104         Reported by Reuben Thomas <rrt@sc3d.org>.
14105
14106 2008-10-16  Simon Josefsson  <simon@josefsson.org>
14107
14108         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
14109         * lib/netdb.in.h: Fix typo.
14110         Reported by Bruno Haible  <bruno@clisp.org>
14111
14112         * lib/netdb.in.h: Include sys/socket.h for platforms without
14113         netdb.h, to get structures like hostent on MinGW.
14114         * modules/netdb (Depends-on): Add sys_socket.
14115
14116 2008-10-15  Simon Josefsson  <simon@josefsson.org>
14117
14118         * modules/netdb, modules/netdb-tests: New file.
14119         * m4/netdb_h.m4: New file.
14120         * lib/netdb.in.h: Add, currently just an empty file pending
14121         definitions.
14122         * tests/test-netdb.c: New file.
14123         * doc/posix-headers/netdb.texi: Mention that we replace it if
14124         needed.
14125         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14126         netdb.
14127
14128 2008-10-15  Simon Josefsson  <simon@josefsson.org>
14129
14130         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
14131         with code.
14132
14133 2008-10-13  Bruno Haible  <bruno@clisp.org>
14134
14135         * lib/glthread/cond.c (glthread_cond_wait_func,
14136         glthread_cond_timedwait_func): Add a comment.
14137
14138 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14139
14140         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
14141         * tests/test-select.c: Likewise,
14142
14143 2008-10-13  Bruno Haible  <bruno@clisp.org>
14144
14145         * lib/glthread/cond.c (glthread_cond_wait_func,
14146         glthread_cond_timedwait_func): Fix variable name.
14147         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14148
14149 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
14150
14151         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
14152         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
14153         struct sockaddr.sa_len.
14154         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
14155
14156 2008-10-13  Simon Josefsson  <simon@josefsson.org>
14157
14158         * build-aux/pmccabe2html: Add css and css_url parameters.
14159
14160 2008-10-12  Bruno Haible  <bruno@clisp.org>
14161
14162         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
14163         calling aclx_get.
14164         Reported by Rainer Tammer <tammer@tammer.net>.
14165
14166 2008-10-12  Bruno Haible  <bruno@clisp.org>
14167
14168         Use msvcrt aware primitives for creation/termination of Win32 threads.
14169         * lib/glthread/thread.c: Include <process.h>.
14170         (glthread_create_func): Use _beginthreadex instead of CreateThread.
14171         (wrapper_func): Update signature.
14172         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
14173
14174 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14175             Bruno Haible  <bruno@clisp.org>
14176
14177         Provide a Win32 implementation of the 'cond' module.
14178         * lib/glthread/cond.h [USE_WIN32]: New implementation.
14179         * lib/glthread/cond.c (glthread_cond_init_func,
14180         glthread_cond_wait_func, glthread_cond_timedwait_func,
14181         glthread_cond_signal_func, glthread_cond_broadcast_func,
14182         glthread_cond_destroy_func) [USE_WIN32]: New functions.
14183         * modules/cond (Dependencies): Add gettimeofday.
14184
14185 2008-10-11  Bruno Haible  <bruno@clisp.org>
14186
14187         Make sleep work on older versions of mingw.
14188         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
14189         only whether it exists.
14190         * doc/posix-functions/sleep.texi: Mention the problem with older
14191         versions of mingw.
14192
14193 2008-10-11  Bruno Haible  <bruno@clisp.org>
14194
14195         New module 'shutdown'.
14196         * modules/shutdown: New file.
14197         * lib/sys_socket.in.h (shutdown): New declaration.
14198         * lib/winsock.c (shutdown): New function.
14199         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
14200         GNULIB_SHUTDOWN.
14201         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
14202         * doc/posix-functions/shutdown.texi: Document the new module.
14203
14204 2008-10-11  Jim Meyering  <meyering@redhat.com>
14205
14206         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
14207
14208 2008-10-11  Bruno Haible  <bruno@clisp.org>
14209
14210         New module 'fclose'.
14211         * modules/fclose: New file.
14212         * lib/stdio.in.h (fclose): New declaration.
14213         * lib/fclose.c: New file.
14214         * m4/fclose.m4: New file.
14215         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
14216         REPLACE_FCLOSE.
14217         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
14218         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
14219         REPLACE_FCLOSE.
14220         * modules/close (Depends-on): fclose.
14221         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
14222
14223 2008-10-11  Bruno Haible  <bruno@clisp.org>
14224
14225         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
14226         set errno and don't call _close.
14227
14228 2008-10-10  Bruno Haible  <bruno@clisp.org>
14229
14230         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
14231         ACL, not afterwards. Fixes test failure on Cygwin.
14232
14233 2008-10-09  Ben Pfaff  <blp@gnu.org>
14234
14235         * build-aux/announce-gen: Fix gnulib version related part of usage
14236         message.  Die with a useful error message if no tarballs are
14237         found.
14238
14239 2008-10-10  Jim Meyering  <meyering@redhat.com>
14240
14241         bootstrap: use git's --depth=N option only if it's supported
14242         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
14243         recognize the --depth option.  Reported by Pádraig Brady.
14244
14245 2008-10-09  Bruno Haible  <bruno@clisp.org>
14246
14247         New module 'ioctl'.
14248         * modules/ioctl: New file.
14249         * lib/sys_socket.in.h (ioctl): Remove declaration.
14250         * lib/winsock.c: Include <sys/ioctl.h>.
14251         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
14252         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
14253         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
14254         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
14255         * doc/posix-functions/ioctl.texi: Mention the new module.
14256
14257 2008-10-09  Bruno Haible  <bruno@clisp.org>
14258
14259         New module 'sys_ioctl'.
14260         * lib/sys_ioctl.in.h: New file.
14261         * m4/sys_ioctl_h.m4: New file.
14262         * modules/sys_ioctl: New file.
14263         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
14264
14265 2008-10-09  Bruno Haible  <bruno@clisp.org>
14266
14267         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
14268         * lib/winsock.c: Include <stdarg.h>.
14269         (rpl_ioctl): Change to second argument 'int' and then varargs.
14270
14271 2008-10-09  Bruno Haible  <bruno@clisp.org>
14272
14273         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
14274         when the sys_socket module is present and the system has <winsock2.h>.
14275
14276 2008-10-09  Bruno Haible  <bruno@clisp.org>
14277
14278         * doc/posix-functions/close.texi: Mention module 'close' instead of
14279         module 'sys_socket'.
14280
14281 2008-10-09  Bruno Haible  <bruno@clisp.org>
14282
14283         * doc/glibc-headers/sys_ioctl.texi: New file.
14284         * doc/gnulib.texi: Include it.
14285
14286 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14287             Bruno Haible  <bruno@clisp.org>
14288
14289         Combine the two replacements of 'close'.
14290         * lib/sys_socket.in.h (close): Define to a reminder to include
14291         <unistd.h>.
14292         (_gl_close_fd_maybe_socket): New declaration.
14293         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
14294         * lib/winsock.c (close): Remove undefinition.
14295         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
14296         needed for the gnulib module 'close'.
14297         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
14298         define to an error symbol or to a warning, if suitable.
14299         * lib/close.c: Include <sys/socket.h>.
14300         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
14301         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
14302         UNISTD_H_HAVE_WINSOCK2_H.
14303         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
14304         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14305         UNISTD_H_HAVE_WINSOCK2_H.
14306         * modules/sys_socket (Files): Add m4/unistd_h.m4.
14307         (configure.ac): Set a module indicator.
14308         (Makefile.am): Substitute GNULIB_CLOSE.
14309         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
14310         * modules/poll-tests (Depends-on): Add close.
14311         * modules/select-tests (Depends-on): Likewise.
14312
14313 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14314             Bruno Haible  <bruno@clisp.org>
14315
14316         New module 'close'.
14317         * modules/close: New file.
14318         * lib/unistd.in.h (close): Move declaration out of the
14319         FCHDIR_REPLACEMENT scope.
14320         (_gl_unregister_fd): New declaration.
14321         * lib/close.c: New file.
14322         * lib/fchdir.c (rpl_close): Remove function.
14323         * m4/close.m4: New file.
14324         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
14325         close.
14326         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
14327         REPLACE_CLOSE.
14328         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
14329         REPLACE_CLOSE.
14330         * modules/fchdir (Depends-on): Add close.
14331
14332 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14333             Bruno Haible  <bruno@clisp.org>
14334
14335         * lib/fcntl.in.h (open): Simplify conditionals.
14336         (_gl_register_fd): New declaration.
14337         * lib/fchdir.c (rpl_open): Remove function.
14338         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
14339         also.
14340         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
14341         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
14342         open.
14343
14344 2008-10-09  Jim Meyering  <meyering@redhat.com>
14345
14346         GNUmakefile: use the more name-space-friendly "_version"
14347         * top/GNUmakefile (_dummy): Update.
14348         (_version): Rename from "version".
14349
14350 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14351             Bruno Haible  <bruno@clisp.org>
14352
14353         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
14354         rpl_close.
14355         (_gl_register_fd): New function, extracted from rpl_open.
14356         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
14357         (rpl_open, rpl_opendir): Use _gl_register_fd.
14358
14359 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14360
14361         Fix organization of 'open' replacement.
14362         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
14363         (gl_FUNC_OPEN): Use it.
14364         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
14365
14366 2008-10-08  Bruno Haible  <bruno@clisp.org>
14367
14368         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
14369
14370 2008-10-08  Simon Josefsson  <simon@josefsson.org>
14371
14372         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
14373         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
14374         listen).
14375
14376 2008-10-08  Eric Blake  <ebb9@byu.net>
14377
14378         GNUmakefile: add 'make version' target
14379         * top/GNUmakefile (_curr-ver): Split version update rules...
14380         (version): ...into a target.
14381
14382 2008-10-07  Bruno Haible  <bruno@clisp.org>
14383
14384         Use a more portable replacement expression for -0.0L.
14385         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
14386         instead of -0.0L. Fix m4 quotation.
14387
14388         * tests/test-signbit.c: Include <float.h>.
14389         (minus_zero): New variable.
14390         (test_signbitl): Use minus_zero instead of -zero.
14391         * modules/signbit-tests (Depends-on): Add float.
14392
14393         * tests/test-ceill.c: Include <float.h>.
14394         (zero): Remove variable.
14395         (minus_zero): New variable.
14396         (main): Use minus_zero instead of -zero.
14397         * modules/ceill-tests (Depends-on): Add float.
14398
14399         * tests/test-floorl.c: Include <float.h>.
14400         (zero): Remove variable.
14401         (minus_zero): New variable.
14402         (main): Use minus_zero instead of -zero.
14403         * modules/floorl-tests (Depends-on): Add float.
14404
14405         * tests/test-roundl.c: Include <float.h>.
14406         (zero): Remove variable.
14407         (minus_zero): New variable.
14408         (main): Use minus_zero instead of -zero.
14409         * modules/roundl-tests (Depends-on): Add float.
14410
14411         * tests/test-truncl.c: Include <float.h>.
14412         (zero): Remove variable.
14413         (minus_zero): New variable.
14414         (main): Use minus_zero instead of -zero.
14415         * modules/truncl-tests (Depends-on): Add float.
14416
14417         * tests/test-frexpl.c (zero): Remove variable.
14418         (minus_zero): New variable.
14419         (main): Use minus_zero instead of -zero.
14420         * modules/frexpl-tests (Depends-on): Add float.
14421
14422         * tests/test-isnan.c (zerol): Remove variable.
14423         (minus_zerol): New variable.
14424         (test_long_double): Use minus_zerol instead of -zerol.
14425         * modules/isnan-tests (Depends-on): Add float.
14426
14427         * tests/test-isnanl.h (zero): Remove variable.
14428         (minus_zero): New variable.
14429         (main): Use minus_zero instead of -zero.
14430         * modules/isnanl-nolibm-tests (Depends-on): Add float.
14431         * modules/isnanl-tests (Depends-on): Add float.
14432
14433         * tests/test-ldexpl.c (zero): Remove variable.
14434         (minus_zero): New variable.
14435         (main): Use minus_zero instead of -zero.
14436         * modules/ldexpl-tests (Depends-on): Add float.
14437
14438         * tests/test-snprintf-posix.h (zerol): Remove variable.
14439         (minus_zerol): New variable.
14440         (test_function): Use minus_zerol instead of -zerol.
14441         * modules/snprintf-posix-tests (Depends-on): Add float.
14442         * modules/vsnprintf-posix-tests (Depends-on): Add float.
14443
14444         * tests/test-sprintf-posix.h (zerol): Remove variable.
14445         (minus_zerol): New variable.
14446         (test_function): Use minus_zerol instead of -zerol.
14447         * modules/sprintf-posix-tests (Depends-on): Add float.
14448         * modules/vsprintf-posix-tests (Depends-on): Add float.
14449
14450         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
14451         (minus_zerol): New variable.
14452         (test_function): Use minus_zerol instead of -zerol.
14453         * modules/vasnprintf-posix-tests (Depends-on): Add float.
14454
14455         * tests/test-vasprintf-posix.c (zerol): Remove variable.
14456         (minus_zerol): New variable.
14457         (test_function): Use minus_zerol instead of -zerol.
14458         * modules/vasprintf-posix-tests (Depends-on): Add float.
14459
14460 2008-10-07  Simon Josefsson  <simon@josefsson.org>
14461
14462         * MODULES.html.sh (Support for building documentation): Mention
14463         pmccabe2html.  Sort entries.
14464
14465         Add pmccabe2html module, from gnupdf.
14466         * build-aux/pmccabe.css: New file.
14467         * build-aux/pmccabe2html: New file.
14468         * m4/pmccabe2html.m4: New file.
14469         * modules/pmccabe2html: New file.
14470
14471 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
14472
14473         flock: new module
14474         * MODULES.html.sh: Add to list of modules.
14475         * lib/flock.c: flock implementation for Windows and Unix systems
14476         which have fcntl.
14477         * doc/glibc-functions/flock.texi: Update documentation.
14478         * lib/sys_file.in.h: <sys/file.h> header file.
14479         * m4/flock.m4: M4 macros.
14480         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
14481         * modules/flock: flock module.
14482         * modules/flock-tests: flock tests module.
14483         * modules/sys_file: sys/file.h module.
14484         * tests/test-flock.c: test suite for flock.
14485
14486 2008-10-06  Jim Meyering  <meyering@redhat.com>
14487
14488         bootstrap: check for LT_INIT more portably still ;-)
14489         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
14490         Spotted by Bruno Haible.
14491
14492 2008-10-06  Eric Blake  <ebb9@byu.net>
14493
14494         test-signbit: avoid tripping Irix cc bug on -0.0L
14495         * tests/test-signbit.c (minus_zerol): Delete, and replace with
14496         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
14497         entire testsuite consistent and avoids an Irix 6.2 bug.
14498
14499 2008-10-05  Bruno Haible  <bruno@clisp.org>
14500             Jim Meyering  <jim@meyering.net>
14501
14502         Add an option for ignoring EPIPE during close_stdout.
14503         * lib/closeout.h: Include <stdbool.h>.
14504         (close_stdout_set_ignore_EPIPE): New declaration.
14505         * lib/closeout.c: Include <stdbool.h>.
14506         (ignore_EPIPE): New variable.
14507         (close_stdout_set_ignore_EPIPE): New function.
14508         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
14509         * lib/close-stream.c (close_stream): Mention the possible EPIPE
14510         failure.
14511         * modules/closeout (Depends-on): Add stdbool.
14512
14513 2008-10-05  Bruno Haible  <bruno@clisp.org>
14514
14515         * modules/accept: New file.
14516         * modules/bind: New file.
14517         * modules/connect: New file.
14518         * modules/getpeername: New file.
14519         * modules/getsockname: New file.
14520         * modules/getsockopt: New file.
14521         * modules/listen: New file.
14522         * modules/recv: New file.
14523         * modules/recvfrom: New file.
14524         * modules/send: New file.
14525         * modules/sendto: New file.
14526         * modules/setsockopt: New file.
14527         * modules/socket: New file.
14528         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
14529         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
14530         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
14531         the particular module is requested. Add a link warning when the
14532         particular module is not requested.
14533         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
14534         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
14535         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
14536         the particular module is requested.
14537         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
14538         gl_SYS_SOCKET_H_DEFAULTS): New macros.
14539         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
14540         * modules/sys_socket (Depends-on): Add link-warning.
14541         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
14542         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
14543         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
14544         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
14545         GL_LINK_WARNING.
14546         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
14547         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
14548         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
14549         * doc/posix-functions/getpeername.texi: Mention the new module
14550         'getpeername'.
14551         * doc/posix-functions/getsockname.texi: Mention the new module
14552         'getsockname'.
14553         * doc/posix-functions/getsockopt.texi: Mention the new module
14554         'getsockopt'.
14555         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
14556         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
14557         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
14558         * doc/posix-functions/send.texi: Mention the new module 'send'.
14559         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
14560         * doc/posix-functions/setsockopt.texi: Mention the new module
14561         'setsockopt'.
14562         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
14563         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
14564         listen, connect, accept.
14565         * modules/select-tests (Depends-on): Likewise.
14566
14567 2008-10-05  Bruno Haible  <bruno@clisp.org>
14568
14569         * lib/winsock.c (strerror): Remove unused #undef.
14570         (rpl_close): Remove unused local variable.
14571
14572         * modules/sys_socket (Depends-on); Add errno.
14573
14574 2008-10-05  Bruno Haible  <bruno@clisp.org>
14575
14576         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
14577         (select): Add a link warning when the 'select' module is not used.
14578         * modules/sys_select (Depends-on): Add link-warning.
14579         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
14580         Suggested by Paolo Bonzini.
14581
14582 2008-10-05  Jim Meyering  <meyering@redhat.com>
14583
14584         bootstrap: check for LT_INIT more portably
14585         * build-aux/bootstrap: Avoid using grep -E, since it's not
14586         portable enough.  Suggestion from Bruno Haible.
14587
14588 2008-10-05  Bruno Haible  <bruno@clisp.org>
14589
14590         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
14591         as being fixed by gnulib.
14592
14593 2008-10-05  Bruno Haible  <bruno@clisp.org>
14594
14595         * modules/select-tests: New file, mostly copied from
14596         modules/sys_select-tests.
14597         * tests/test-select.c: New file, mostly copied from
14598         tests/test-sys_select.c.
14599         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
14600         * modules/sys_select-tests (Depends-on): Remove all dependencies.
14601         (Makefile.am): Remove test_sys_select_LDADD.
14602
14603         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
14604         to an undefined symbol, for an error message.
14605         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
14606         (gl_SYS_SELECT_H_DEFAULTS): New macro.
14607         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
14608         winsock-select.c here.
14609         * modules/sys_select (Files): Remove lib/winsock-select.c.
14610         (Depends-on): Remove alloca.
14611         (Makefile.am): Substitute GNULIB_SELECT.
14612         * modules/select: New file.
14613         * doc/posix-functions/select.texi: Update.
14614
14615 2008-10-05  Bruno Haible  <bruno@clisp.org>
14616
14617         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
14618         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
14619         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
14620         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
14621         getdtablesize.
14622         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
14623         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
14624
14625 2008-10-05  Bruno Haible  <bruno@clisp.org>
14626
14627         * modules/getdtablesize-tests: New file.
14628         * tests/test-getdtablesize.c: New file.
14629
14630         New module 'getdtablesize'.
14631         * lib/unistd.in.h (getdtablesize): New declaration.
14632         * lib/getdtablesize.c: New file.
14633         * m4/getdtablesize.m4: New file.
14634         * modules/getdtablesize: New file.
14635         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14636         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
14637         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
14638         HAVE_GETDTABLESIZE.
14639         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
14640
14641 2008-10-05  Bruno Haible  <bruno@clisp.org>
14642
14643         * modules/sched (Makefile.am): Fix typo.
14644         Reported by Simon Josefsson.
14645
14646 2008-10-05  Jim Meyering  <meyering@redhat.com>
14647
14648         bootstrap: check for LT_INIT, too
14649         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
14650         are deprecated.  Suggestion from Ralf Wildenhues.
14651
14652 2008-10-05  Bruno Haible  <bruno@clisp.org>
14653
14654         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
14655         overriding them by ours.
14656         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
14657
14658 2008-10-05  Jim Meyering  <meyering@redhat.com>
14659
14660         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
14661         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
14662         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
14663
14664 2008-10-04  Bruno Haible  <bruno@clisp.org>
14665
14666         * modules/dup2 (License): Change to LGPLv2+.
14667         * modules/sleep (License): Likewise.
14668         * modules/perror (License): Likewise.
14669         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
14670         Blake.
14671         * modules/signal (License): Likewise.
14672         * modules/sigprocmask (License): Likewise.
14673         * modules/raise (License): Change to LGPLv2+, with approval by Jim
14674         Meyering.
14675
14676 2008-10-04  Bruno Haible  <bruno@clisp.org>
14677
14678         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
14679         Reported by Rainer Tammer <tammer@tammer.net>.
14680
14681 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
14682             Bruno Haible  <bruno@clisp.org>
14683
14684         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
14685         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
14686         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
14687
14688 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
14689
14690         filevercmp: new module
14691         * lib/filevercmp.h: New function filevercmp comparing version strings.
14692         * lib/filevercmp.c: Implementation of filevercmp function.
14693         * modules/filevercmp: Module metadata.
14694         * tests/test-filevercmp.c: Unit test for new module.
14695         * modules/filevercmp-tests: Unit test metadata.
14696         * MODULES.html.sh: Add filevercmp module.
14697
14698 2008-10-03  Bruno Haible  <bruno@clisp.org>
14699
14700         * lib/c-ctype.h: Add comment.
14701         Reported by Jim Meyering.
14702
14703 2008-10-02  Bruno Haible  <bruno@clisp.org>
14704
14705         * modules/posix_spawn-internal (Depends-on): Add 'open'.
14706
14707 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14708
14709         * build-aux/bootstrap: Allow renaming bootstrap, and change the
14710         name of bootstrap.conf accordingly.
14711
14712 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14713
14714         * build-aux/bootstrap: Install git-merge-changelog configuration
14715         items into .gitconfig if needed.
14716
14717 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14718
14719         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
14720         git repository, and initialize/update it accordingly.
14721
14722 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
14723
14724         * modules/fsync-tests: New file.
14725         * tests/test-fsync.c: New file.
14726
14727         New module 'fsync'.
14728         * lib/fsync.c: New file.
14729         * m4/fsync.m4: New file.
14730         * modules/fsync: New file.
14731         * lib/unistd.in.h (fsync): New declaration.
14732         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
14733         GNULIB_FSYNC and HAVE_FSYNC.
14734         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
14735         * MODULES.html.sh (posix_functions): Add fsync.
14736         * doc/posix-functions/fsync.texi: Mention the new module.
14737
14738 2008-10-02  Jim Meyering  <meyering@redhat.com>
14739
14740         fts.c: sync with similar code from coreutils' remove.c
14741         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
14742         Guard also with "#if defined __linux__", since for now at least,
14743         this code is Linux-kernel-specific.
14744
14745 2008-10-02  Jim Meyering  <meyering@redhat.com>
14746
14747         fts: bug fixes
14748         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
14749         Include <sys/vfs.h>, not <sys/statfs.h>.
14750
14751         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
14752         Include <sys/vfs.h>, not <sys/statfs.h>.
14753
14754 2008-10-01  Bruno Haible  <bruno@clisp.org>
14755
14756         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
14757         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
14758         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
14759         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
14760         * doc/posix-functions/posix_spawnp.texi: Likewise.
14761         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
14762         whether posix_spawn actually works.
14763         * m4/pipe.m4 (gl_PIPE): Likewise.
14764         * modules/execute (Files): Add m4/posix_spawn.m4.
14765         * modules/pipe (Files): Add m4/posix_spawn.m4.
14766         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
14767
14768 2008-10-01  Jim Meyering  <meyering@redhat.com>
14769
14770         remove trailing spaces
14771         * NEWS: Likewise.
14772         * lib/poll.c (poll): Likewise.
14773         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
14774         * lib/winsock.c (rpl_close): Likewise.
14775         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
14776         * modules/yield: Likewise.
14777         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
14778         * tests/test-sys_select.c (connect_to_socket): Likewise.
14779
14780         fts.c: adjust a new interface to be more generally useful
14781         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
14782         (fts_build): Adjust caller.
14783
14784 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14785
14786         * modules/cond-tests: New file.
14787         * tests/test-cond.c: New file.
14788
14789 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14790             Bruno Haible  <bruno@clisp.org>
14791
14792         * modules/cond (Dependencies): Add errno, time.
14793         * lib/glthread/cond.h: Include <time.h>.
14794         (gl_cond_define, gl_cond_define_initialized): Use the same definition
14795         across platforms.
14796
14797 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14798             Bruno Haible  <bruno@clisp.org>
14799
14800         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
14801
14802 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14803             Bruno Haible  <bruno@clisp.org>
14804
14805         * modules/tls-tests (Depends-on): Add thread, yield.
14806         (configure.ac): Remove all checks.
14807         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
14808         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
14809         gl_thread_self): Remove definitions. Include glthread/thread.h and
14810         glthread/yield.h instead.
14811         (test_tls): Pass an additional NULL argument to gl_thread_join.
14812
14813 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14814             Bruno Haible  <bruno@clisp.org>
14815
14816         * modules/lock-tests (Depends-on): Add thread, yield.
14817         (configure.ac): Remove all checks.
14818         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
14819         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
14820         gl_thread_self): Remove definitions. Include glthread/thread.h and
14821         glthread/yield.h instead.
14822         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
14823         additional NULL argument to gl_thread_join.
14824
14825 2008-09-30  Bruno Haible  <bruno@clisp.org>
14826
14827         Fix the Win32 implementation of the 'thread' module.
14828         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
14829         pointer type.
14830         (gl_thread_self): Invoke gl_thread_self_func.
14831         (gl_thread_self_func): New declaration.
14832         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
14833         (do_init_self_key, init_self_key): New functions.
14834         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
14835         Remove some fields.
14836         (running_threads, running_lock): Remove variables.
14837         (get_current_thread_handle): New function.
14838         (gl_thread_self_func, wrapper_func, glthread_create_func,
14839         glthread_join_func, gl_thread_exit_func): Largely rewritten and
14840         simplified.
14841
14842 2008-09-30  Bruno Haible  <bruno@clisp.org>
14843
14844         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
14845         files.
14846
14847 2008-09-30  Jim Meyering  <meyering@redhat.com>
14848
14849         fts.m4: correct the test for statfs.f_type
14850         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
14851         when checking for statfs.f_type.
14852
14853 2008-09-15  Simon Josefsson  <simon@josefsson.org>
14854
14855         tests: avoid some compiler warnings
14856         * tests/test-memchr.c (main): Pass NULL indirectly.
14857         * tests/test-getdate.c (main): Remove unused variable 'ret'.
14858
14859 2008-09-29  Ondřej Vašík  <ovasik@redhat.com>
14860
14861         getdate.y: disallow countable dayshifts like "4 yesterday ago"
14862         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
14863         exactly specified dayshifts.
14864         (dayshift): New rule.
14865         (rel): Add dayshift.
14866         (relative_time_table) [tomorrow, yesterday, today, now]:
14867         Use tDAY_SHIFT in place of tDAY_UNIT.
14868         * tests/test-getdate.c: Add tests for now-disallowed countable
14869         dayshifts, e.g., "4 yesterday ago".
14870
14871 2008-09-29  Bruno Haible  <bruno@clisp.org>
14872
14873         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
14874         * tests/test-posix_spawn1.in.sh: Renamed from
14875         tests/test-posix_spawn.in.sh.
14876         * tests/test-posix_spawn2.c: New file.
14877         * tests/test-posix_spawn2.in.sh: New file.
14878         * modules/posix_spawnp-tests (Files): Update.
14879         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
14880
14881 2008-09-29  Bruno Haible  <bruno@clisp.org>
14882
14883         Propagate effects of putenv/setenv/unsetenv to child processes.
14884         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
14885         * lib/pipe.c (create_pipe): Likewise.
14886
14887 2008-09-29  Bruno Haible  <bruno@clisp.org>
14888
14889         Enable use of shell scripts as executables in mingw.
14890         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
14891         run the program as a shell script.
14892         * lib/pipe.c (create_pipe): Likewise.
14893         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
14894         resulting array.
14895
14896 2008-09-29  Eric Blake  <ebb9@byu.net>
14897
14898         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
14899
14900 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
14901
14902         * doc/posix-functions/accept.texi: Update mingw problems.
14903         * doc/posix-functions/bind.texi: Update mingw problems.
14904         * doc/posix-functions/close.texi: Update mingw problems.
14905         * doc/posix-functions/connect.texi: Update mingw problems.
14906         * doc/posix-functions/getpeername.texi: Update mingw problems.
14907         * doc/posix-functions/getsockname.texi: Update mingw problems.
14908         * doc/posix-functions/getsockopt.texi: Update mingw problems.
14909         * doc/posix-functions/ioctl.texi: Update mingw problems.
14910         * doc/posix-functions/listen.texi: Update mingw problems.
14911         * doc/posix-functions/recv.texi: Update mingw problems.
14912         * doc/posix-functions/recvfrom.texi: Update mingw problems.
14913         * doc/posix-functions/select.texi: Update mingw problems.
14914         * doc/posix-functions/send.texi: Update mingw problems.
14915         * doc/posix-functions/sendto.texi: Update mingw problems.
14916         * doc/posix-functions/setsockopt.texi: Update mingw problems.
14917         * doc/posix-functions/socket.texi: Update mingw problems.
14918
14919 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
14920             Bruno Haible  <bruno@clisp.org>
14921
14922         * lib/sys_select.in.h: Include sys/time.h.
14923         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
14924         * modules/sys_select: Depend on sys_time.
14925         * tests/test-sys_select.c: Test that sys/select.h defines struct
14926         timeval fully.
14927
14928 2008-09-29  Bruno Haible  <bruno@clisp.org>
14929
14930         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
14931         * lib/sys_select.in.h: Likewise.
14932
14933 2008-09-29  Bruno Haible  <bruno@clisp.org>
14934
14935         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
14936
14937 2008-09-29  Bruno Haible  <bruno@clisp.org>
14938
14939         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
14940         Set LIBSOCKET instead of augmenting LIBS.
14941         * modules/sockets (Link): New section.
14942         * modules/sockets-tests (test_sockets_LDADD): New variable.
14943         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
14944         * modules/poll-tests (test_poll_LDADD): New variable.
14945         * NEWS: Document the change.
14946
14947 2008-09-29  Bruno Haible  <bruno@clisp.org>
14948
14949         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
14950         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
14951         ARPA_INET_H directly.
14952         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
14953
14954 2008-09-28  Bruno Haible  <bruno@clisp.org>
14955
14956         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
14957         from gl_HEADER_SYS_SOCKET.
14958         (gl_HEADER_SYS_SOCKET): Invoke it.
14959         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
14960
14961 2008-09-28  Bruno Haible  <bruno@clisp.org>
14962
14963         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
14964         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
14965         Needed on OSF/1 4.0.
14966
14967 2008-09-28  Bruno Haible  <bruno@clisp.org>
14968
14969         Override open more carefully.
14970         * lib/open.c (orig_open): New function.
14971         (rpl_open): Use orig_open instead of open.
14972         * lib/fcntl.in.h: Add special invocation convention.
14973         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
14974         (gl_FUNC_OPEN): Invoke it.
14975
14976         Override freopen more carefully.
14977         * lib/freopen.c (orig_freopen): New function.
14978         (rpl_freopen): Use orig_freopen instead of freopen.
14979         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
14980         (gl_FUNC_FREOPEN): Invoke it.
14981
14982         Override fopen more carefully.
14983         * lib/fopen.c (orig_fopen): New function.
14984         (rpl_fopen): Use orig_fopen instead of fopen.
14985         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
14986         (gl_FUNC_FOPEN): Invoke it.
14987         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
14988
14989 2008-09-28  Bruno Haible  <bruno@clisp.org>
14990
14991         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
14992         SIGPIPE.
14993
14994 2008-09-28  Bruno Haible  <bruno@clisp.org>
14995
14996         * tests/test-sigaction.c (handler, main): Disable the check whether
14997         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
14998         glibc systems with LinuxThreads.
14999
15000 2008-09-28  Bruno Haible  <bruno@clisp.org>
15001
15002         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
15003
15004         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
15005         with AIX xlc.
15006         * lib/fcntl.in.h (open): Likewise.
15007         Reported by Rainer Tammer <tammer@tammer.net>.
15008
15009 2008-09-28  Bruno Haible  <bruno@clisp.org>
15010
15011         * modules/posix_spawnp-tests: New file.
15012         * tests/test-posix_spawn.c: New file.
15013         * tests/test-posix_spawn.in.sh: New file.
15014
15015         New module 'posix_spawnp'.
15016         * modules/posix_spawnp: New file.
15017         * lib/spawnp.c: New file, from GNU libc with modifications.
15018         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
15019
15020         New module 'posix_spawn'.
15021         * modules/posix_spawn: New file.
15022         * lib/spawn.c: New file, from GNU libc with modifications.
15023         * doc/posix-functions/posix_spawn.texi: Mention the new module.
15024
15025         New module 'posix_spawnattr_destroy'.
15026         * modules/posix_spawnattr_destroy: New file.
15027         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
15028         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
15029         module.
15030
15031         New module 'posix_spawnattr_setsigmask'.
15032         * modules/posix_spawnattr_setsigmask: New file.
15033         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
15034         modifications.
15035         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
15036         new module.
15037
15038         New module 'posix_spawnattr_getsigmask'.
15039         * modules/posix_spawnattr_getsigmask: New file.
15040         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
15041         modifications.
15042         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
15043         new module.
15044
15045         New module 'posix_spawnattr_setsigdefault'.
15046         * modules/posix_spawnattr_setsigdefault: New file.
15047         * lib/spawnattr_setdefault.c: New file, from GNU libc with
15048         modifications.
15049         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
15050         new module.
15051
15052         New module 'posix_spawnattr_getsigdefault'.
15053         * modules/posix_spawnattr_getsigdefault: New file.
15054         * lib/spawnattr_getdefault.c: New file, from GNU libc with
15055         modifications.
15056         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
15057         new module.
15058
15059         New module 'posix_spawnattr_setschedpolicy'.
15060         * modules/posix_spawnattr_setschedpolicy: New file.
15061         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
15062         modifications.
15063         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
15064         new module.
15065
15066         New module 'posix_spawnattr_getschedpolicy'.
15067         * modules/posix_spawnattr_getschedpolicy: New file.
15068         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
15069         modifications.
15070         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
15071         new module.
15072
15073         New module 'posix_spawnattr_setschedparam'.
15074         * modules/posix_spawnattr_setschedparam: New file.
15075         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
15076         modifications.
15077         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
15078         new module.
15079
15080         New module 'posix_spawnattr_getschedparam'.
15081         * modules/posix_spawnattr_getschedparam: New file.
15082         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
15083         modifications.
15084         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
15085         new module.
15086
15087         New module 'posix_spawnattr_setpgroup'.
15088         * modules/posix_spawnattr_setpgroup: New file.
15089         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
15090         modifications.
15091         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
15092         module.
15093
15094         New module 'posix_spawnattr_getpgroup'.
15095         * modules/posix_spawnattr_getpgroup: New file.
15096         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
15097         modifications.
15098         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
15099         module.
15100
15101         New module 'posix_spawnattr_setflags'.
15102         * modules/posix_spawnattr_setflags: New file.
15103         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
15104         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
15105         module.
15106
15107         New module 'posix_spawnattr_getflags'.
15108         * modules/posix_spawnattr_getflags: New file.
15109         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
15110         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
15111         module.
15112
15113         New module 'posix_spawnattr_init'.
15114         * modules/posix_spawnattr_init: New file.
15115         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
15116         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
15117         module.
15118
15119         New module 'posix_spawn_file_actions_destroy'.
15120         * modules/posix_spawn_file_actions_destroy: New file.
15121         * lib/spawn_faction_destroy.c: New file, from GNU libc with
15122         modifications.
15123         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
15124         the new module.
15125
15126         New module 'posix_spawn_file_actions_addopen'.
15127         * modules/posix_spawn_file_actions_addopen: New file.
15128         * lib/spawn_faction_addopen.c: New file, from GNU libc with
15129         modifications.
15130         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
15131         the new module.
15132
15133         New module 'posix_spawn_file_actions_adddup2'.
15134         * modules/posix_spawn_file_actions_adddup2: New file.
15135         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
15136         modifications.
15137         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
15138         the new module.
15139
15140         New module 'posix_spawn_file_actions_addclose'.
15141         * modules/posix_spawn_file_actions_addclose: New file.
15142         * lib/spawn_faction_addclose.c: New file, from GNU libc with
15143         modifications.
15144         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
15145         the new module.
15146
15147         New module 'posix_spawn_file_actions_init'.
15148         * modules/posix_spawn_file_actions_init: New file.
15149         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
15150         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
15151         new module.
15152
15153         New module 'posix_spawn-internal'.
15154         * modules/posix_spawn-internal: New file.
15155         * lib/spawn_int.h: New file, from GNU libc with modifications.
15156         * lib/spawni.c: New file, from GNU libc with modifications.
15157         * m4/posix_spawn.m4: New file.
15158
15159         New module 'spawn'.
15160         * modules/spawn: New file.
15161         * lib/spawn.in.h: New file, from GNU libc with modifications.
15162         * m4/spawn_h.m4: New file.
15163         * doc/posix-headers/spawn.texi: Mention the new module.
15164
15165 2008-09-28  Bruno Haible  <bruno@clisp.org>
15166
15167         * modules/sched-tests: New file.
15168         * tests/test-sched.c: New file.
15169
15170         New module 'sched'.
15171         * modules/sched: New file.
15172         * lib/sched.in.h: New file.
15173         * m4/sched_h.m4: New file.
15174         * doc/posix-headers/sched.texi: Mention the new module.
15175
15176 2008-09-27  Eric Blake  <ebb9@byu.net>
15177
15178         Fix previous patch, and tweak references to $0.
15179         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
15180         (func_version, func_gnulib_dir): Don't call this program
15181         gnulib-tool.
15182         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
15183         with using $0 in function.
15184         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
15185         (func_fatal_error): Reuse the name the user invoked us with.
15186
15187 2008-09-27  Bruno Haible  <bruno@clisp.org>
15188
15189         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
15190         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
15191         (gl_ICONV_H): Not here.
15192         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
15193         instead of assigning ICONV_H directly.
15194
15195         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
15196         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
15197         WCHAR_H directly.
15198
15199 2008-09-27  Bruno Haible  <bruno@clisp.org>
15200
15201         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
15202         * modules/arpa_inet (Depends-on): Add link-warning.
15203         (Makefile.am): Insert the definition of GL_LINK-WARNING.
15204         * modules/unistd (Makefile.am): Likewise.
15205
15206 2008-09-26  Bruno Haible  <bruno@clisp.org>
15207
15208         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
15209         variables.
15210         (func_version): Essentially copied from gnulib-tool.
15211         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
15212         func_readlink): Copied from gnulib-tool.
15213
15214 2008-09-26  Bruno Haible  <bruno@clisp.org>
15215
15216         * gnulib-tool (func_version): Change directory to $gnulib_dir before
15217         invoking git-version-gen.
15218
15219 2008-09-26  Bruno Haible  <bruno@clisp.org>
15220
15221         * posix-modules: Update to directory names changed on 2008-01-19.
15222         Remove commas in output before splitting into words. No more need to
15223         avoid 'ftruncate' since 2007-02-19.
15224
15225 2008-09-26  Bruno Haible  <bruno@clisp.org>
15226
15227         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
15228
15229 2008-09-26  Bruno Haible  <bruno@clisp.org>
15230
15231         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
15232         * modules/fwriteerror (Depends-on): Add errno.
15233
15234 2008-09-26  Bruno Haible  <bruno@clisp.org>
15235
15236         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
15237         * tests/test-vc-list-files-cvs.sh: Likewise.
15238
15239 2008-09-26  Bruno Haible  <bruno@clisp.org>
15240
15241         * doc/posix-headers/sys_resource.texi: Reorder items.
15242
15243 2008-09-26  Jim Meyering  <meyering@redhat.com>
15244
15245         fts: tweak inode comparison function
15246         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
15247         inode numbers, as documented.
15248
15249         fts: sort dirent entries on inode number before traversing
15250         This avoids a quadratic, seek-related performance penalty when
15251         operating on a directory containing many entries (measurable at 10k;
15252         3.5 hours at 2 million entries with a cold cache) on certain types
15253         of file systems, including ext3 and ext4, but not tmpfs.
15254         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
15255         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
15256         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
15257         (fs_handles_readdir_ordered_dirents_efficiently): New function.
15258         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
15259         (fts_build): Set the stat.st_ino member from D_INO.
15260         If it is likely to be useful, sort dirent entries on inode number.
15261
15262         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
15263         and the struct statfs.f_type member.
15264         * modules/fts (Depends-on): Add d-ino.
15265
15266 2008-09-26  Bruno Haible  <bruno@clisp.org>
15267
15268         * modules/sigpipe-die (Depends-on): Add sigpipe.
15269
15270         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
15271         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
15272         and GNULIB_STDIO_H_SIGPIPE are set.
15273         * lib/stdio-write.c: New file.
15274         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
15275         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15276         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15277         REPLACE_STDIO_WRITE_FUNCS.
15278         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
15279         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15280         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15281         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
15282         * modules/stdio (Files): Add lib/stdio-write.c.
15283         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
15284         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15285         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15286         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
15287         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
15288         REPLACE_FPRINTF_POSIX.
15289         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
15290         REPLACE_PRINTF_POSIX.
15291         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
15292         REPLACE_VFPRINTF_POSIX.
15293         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
15294         REPLACE_VPRINTF_POSIX.
15295         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
15296         SIGPIPE issue.
15297         * doc/posix-functions/fputc.texi: Likewise.
15298         * doc/posix-functions/fputs.texi: Likewise.
15299         * doc/posix-functions/fwrite.texi: Likewise.
15300         * doc/posix-functions/printf.texi: Likewise.
15301         * doc/posix-functions/putc.texi: Likewise.
15302         * doc/posix-functions/putchar.texi: Likewise.
15303         * doc/posix-functions/puts.texi: Likewise.
15304         * doc/posix-functions/vfprintf.texi: Likewise.
15305         * doc/posix-functions/vprintf.texi: Likewise.
15306
15307         * modules/safe-write (Depends-on): Add write.
15308
15309         * modules/sigpipe-tests: New file.
15310         * tests/test-sigpipe.c: New file.
15311         * tests/test-sigpipe.sh: New file.
15312
15313         * modules/write: New file.
15314         * lib/unistd.in.h: Include <sys/types.h>.
15315         (write): New declaration.
15316         * lib/write.c: New file.
15317         * m4/write.m4: New file.
15318         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
15319         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
15320         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
15321         GNULIB_WRITE, REPLACE_WRITE.
15322         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
15323         and the SIGPIPE issue.
15324
15325         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
15326         (raise): New declaration.
15327         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
15328         (ext_signal): New function.
15329         (rpl_raise): New function.
15330         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
15331         GNULIB_SIGNAL_H_SIGPIPE.
15332         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
15333         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
15334
15335         * modules/sigpipe: New file.
15336         * m4/sigpipe.m4: New file.
15337
15338 2008-09-25  Derek Price  <derek@ximbiot.com>
15339             Bruno Haible  <bruno@clisp.org>
15340
15341         * gnulib-tool (func_import): Report all license incompatibilities, not
15342         just the first one.
15343
15344 2008-09-25  Bruno Haible  <bruno@clisp.org>
15345
15346         * gnulib-tool (func_import): When computing the edits, consider not
15347         only the Makefile.ams that exist but also those that will be generated.
15348
15349 2008-09-25  Simon Josefsson  <simon@josefsson.org>
15350
15351         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
15352         fixes gnulib-tool --test warning about duplicate dependency.
15353
15354 2008-09-25  Bruno Haible  <bruno@clisp.org>
15355
15356         * gnulib-tool: Don't ask the user to perform edits in the generated
15357         Makefile.ams.
15358         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
15359         apply to the Makefile.am being generated.
15360         (func_emit_tests_Makefile_am): Execute edits that apply to the
15361         Makefile.am being generated.
15362         (func_import): Setup list of Makefile.am edits before emitting the
15363         Makefile.ams, not at the end.
15364         (func_create_testdir): Update.
15365         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15366
15367 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15368
15369         * gnulib-tool (func_import): Store the --tests-base option in the
15370         comment in gnulib-cache.m4.
15371
15372 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
15373
15374         * NEWS: Document increased portability that sys_select now provides.
15375
15376         * lib/sys_select.in.h: Install select wrapper.
15377         * lib/sys_socket.in.h: Use more descriptive name when there is no
15378         select wrapper.
15379         * lib/winsock-select.c: New.
15380         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
15381         Require gl_HEADER_SYS_SOCKET.
15382         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
15383         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
15384         * tests/test-sys_select.c: Add functional tests.
15385
15386 2008-09-24  Eric Blake  <ebb9@byu.net>
15387
15388         open, fopen: close fd leak in last patch
15389         * lib/open.c (rpl_open): Close fd before returning error.
15390         * lib/fopen.c (rpl_fopen): Close fd before returning error.
15391         * doc/posix-functions/open.texi (open): Document that Irix also
15392         has the bug.
15393         * doc/posix-functions/fopen.texi (fopen): Likewise.
15394         Reported by Paolo Bonzini.
15395
15396 2008-09-24  Bruno Haible  <bruno@clisp.org>
15397
15398         Ensure that a filename ending in a slash cannot be used to access a
15399         non-directory.
15400         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
15401         to check whether it's really a directory.
15402         * lib/fopen.c: Include fcntl.h, unistd.h.
15403         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
15404         and fdopen().
15405         * modules/fopen (Depends-on): Add unistd.
15406         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
15407         * tests/test-fopen.c (main): Likewise.
15408         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
15409         * doc/posix-functions/fopen.texi: Likewise.
15410         Reported by Eric Blake.
15411
15412 2008-09-23  Eric Blake  <ebb9@byu.net>
15413
15414         c-stack: avoid compiler optimizations when provoking overflow
15415         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
15416         recursion harder to optimize, to ensure a stack overflow occurs.
15417         * tests/test-c-stack.c (recurse): Likewise.
15418         Borrowed from libsigsegv.
15419
15420         c-stack: work around Irix sigaltstack bug
15421         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
15422         whether sigaltstack uses wrong end of stack_t (copied in part from
15423         libsigsegv).
15424         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
15425         Irix bug, without requiring an over-allocation.
15426         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
15427         bug.
15428
15429         fopen: document mingw bug on directories
15430         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
15431         not allowing a stream visiting a directory, even though reading
15432         from such a stream is not portable.
15433
15434 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15435
15436         * lib/poll.c: Rewrite.
15437         * modules/poll: Depend on alloca.
15438
15439 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15440
15441         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
15442         instead define prototypes for a full set of wrappers.  Ensure
15443         that Cygwin does not use the compatibility code, which is only
15444         for MinGW.
15445         * lib/winsock.c: New.
15446         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
15447         * modules/sys_socket: Add lib/winsock.c.
15448
15449         * modules/poll-tests: Add errno and perror.
15450         * tests/test-poll.c: Use ioctl, not ioctlsocket.
15451
15452 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15453
15454         * tests/test-poll.c: Downgrade minimum needed Winsock version.
15455
15456 2008-09-23  Bruno Haible  <bruno@clisp.org>
15457
15458         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
15459         * doc/glibc-functions/*: Likewise.
15460
15461 2008-09-23  Simon Josefsson  <simon@josefsson.org>
15462
15463         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
15464         success.
15465
15466 2008-09-22  Eric Blake  <ebb9@byu.net>
15467             Bruno Haible  <bruno@clisp.org>
15468
15469         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
15470         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
15471         supply %A but mishandle pseudo-NaN.
15472         Reported by Simon Josefsson.
15473
15474 2008-09-21  Bruno Haible  <bruno@clisp.org>
15475
15476         * tests/test-lock.c (main): Tweak skip message.
15477         * tests/test-tls.c (main): Likewise.
15478
15479 2008-09-21  Bruno Haible  <bruno@clisp.org>
15480
15481         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
15482         whether 'struct sigaction' has sa_sigaction here...
15483         (gl_PREREQ_SIG_HANDLER_H): ... not here.
15484         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
15485
15486 2008-09-21  Bruno Haible  <bruno@clisp.org>
15487
15488         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
15489         section.
15490         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
15491         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
15492         the new section.
15493         (Support for obsolete systems lacking POSIX:2001): New section.
15494         (String handling <string.h>): Move strdup to the new section.
15495         Suggested by Simon Josefsson and Paolo Bonzini.
15496
15497 2008-09-21  Bruno Haible  <bruno@clisp.org>
15498
15499         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
15500         exponents in %e and %g results on 'long double'. Needed for mingw's
15501         improved *printf functions.
15502         * tests/test-vasprintf-posix.c (test_function): Likewise.
15503         * tests/test-snprintf-posix.h (test_function): Likewise.
15504         * tests/test-sprintf-posix.h (test_function): Likewise.
15505         Reported by Eric Blake.
15506
15507 2008-09-21  Bruno Haible  <bruno@clisp.org>
15508
15509         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
15510         * tests/test-sprintf-posix.h (test_function): Likewise.
15511
15512 2008-09-21  Bruno Haible  <bruno@clisp.org>
15513
15514         * modules/getpass (Depends-on): Add strdup-posix.
15515
15516         New module 'strdup-posix'.
15517         * modules/strdup-posix: New file.
15518         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
15519         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
15520         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
15521         REPLACE_STRDUP.
15522         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
15523         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
15524         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15525         strdup-posix.
15526
15527         * modules/strdup (Depends-on): Remove malloc-posix.
15528
15529 2008-09-20  Bruno Haible  <bruno@clisp.org>
15530
15531         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
15532         Wildenhues.
15533
15534 2008-09-20  Bruno Haible  <bruno@clisp.org>
15535
15536         Ensure that wint_t gets defined on IRIX 5.3.
15537         * lib/wchar.in.h (wint_t): Define if not defined by the system.
15538         * lib/wctype.in.h (wint_t): Likewise.
15539         (__wctype_wint_t): Remove type.
15540         (isw*): Use wint_t instead of __wctype_wint_t.
15541         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
15542         * modules/wchar (Files): Add m4/wint_t.m4.
15543         (Makefile.am): Substitute HAVE_WINT_T.
15544         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
15545         * tests/test-wctype.c: Check that wint_t is defined.
15546         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
15547         * doc/posix-headers/wctype.texi: Likewise.
15548         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15549
15550 2008-09-18  Bruno Haible  <bruno@clisp.org>
15551
15552         * gnulib-tool (func_exit): Update comment.
15553
15554 2008-09-18  Simon Josefsson  <simon@josefsson.org>
15555
15556         * modules/getaddrinfo (Depends-on): Remove strdup, this module
15557         assumes strdup exists and does not depend on strdup to return
15558         ENOMEM on out of memory conditions.
15559
15560 2008-09-18  Bruno Haible  <bruno@clisp.org>
15561
15562         * lib/vasnprintf.c (VASNPRINTF): When printing ±0.0L in
15563         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
15564         digits for the exponent.
15565
15566 2008-09-18  Jim Meyering  <meyering@redhat.com>
15567             Bruno Haible  <bruno@clisp.org>
15568
15569         * lib/vasnprintf.c (decimal_point_char): Define also if
15570         NEED_PRINTF_INFINITE_LONG_DOUBLE.
15571
15572 2008-09-16  Bruno Haible  <bruno@clisp.org>
15573         and Eric Blake  <ebb9@byu.net>
15574
15575         vasnprintf: support Irix 5.3
15576         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
15577         that mishandle long double infinity.
15578         Reported by Tom G. Christensen.
15579
15580 2008-09-16  Bruno Haible  <bruno@clisp.org>
15581
15582         * doc/glibc-functions/scandir.texi: Mention the function is missing on
15583         Solaris 9.
15584         * doc/glibc-functions/alphasort.texi: Likewise.
15585         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
15586
15587 2008-09-16  Jim Meyering  <meyering@redhat.com>
15588
15589         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
15590         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
15591         a umask modification leak out of a subshell.  Otherwise, the
15592         opensolaris /bin/sh would be accepted and thus cause unwarranted
15593         failures in the coreutils test suite.
15594
15595 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
15596
15597         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
15598         to succeed.
15599
15600 2008-09-16  Jim Meyering  <meyering@redhat.com>
15601
15602         avoid spurious test failure when library is built without ACL support
15603         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
15604         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
15605         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
15606         * tests/test-copy-acl.sh: Likewise.
15607
15608 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15609
15610         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
15611         based on character occurrence counts.
15612
15613 2008-09-15  Eric Blake  <ebb9@byu.net>
15614
15615         tests: avoid some compiler warnings
15616         * tests/test-memchr.c (main): Pass NULL indirectly.
15617         * tests/test-closein.c (main): Avoid unused variable.
15618
15619 2008-09-15  Bruno Haible  <bruno@clisp.org>
15620
15621         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
15622         are missing on OpenBSD 4.0 individually.
15623         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15624
15625 2008-09-15  Bruno Haible  <bruno@clisp.org>
15626
15627         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
15628         * doc/posix-functions/strerror.texi: Mention also Cygwin.
15629         * doc/posix-functions/perror.texi: Likewise.
15630         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
15631         is missing.
15632         Reported by Eric Blake.
15633
15634         * lib/errno.in.h: Use replacement values >= 2000.
15635         Reported by Eric Blake.
15636
15637 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15638
15639         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
15640         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
15641         limit.
15642         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
15643         compareseq was aborted.
15644
15645 2008-09-14  Bruno Haible  <bruno@clisp.org>
15646
15647         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
15648         yvec_edit_count.
15649         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
15650         (fstrcmp_bounded): Simplify result computation accordingly.
15651
15652 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15653
15654         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
15655         (fstrcmp): Define in terms of fstrcmp_bounded.
15656         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
15657         lower_bound argument.
15658         Return quickly if the result is certainly < lower_bound.
15659         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
15660
15661 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15662
15663         * lib/diffseq.h (EARLY_ABORT): New macro.
15664         (compareseq): Change return type to bool. Return true when EARLY_ABORT
15665         evaluates to true.
15666
15667 2008-09-14  Bruno Haible  <bruno@clisp.org>
15668
15669         * modules/perror-tests: New file.
15670         * tests/test-perror.sh: New file.
15671         * tests/test-perror.c: New file.
15672
15673         New module 'perror'.
15674         * lib/stdio.in.h (perror): New declaration.
15675         * lib/perror.c: New file.
15676         * m4/perror.m4: New file.
15677         * modules/perror: New file.
15678         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
15679         * doc/posix-functions/perror.texi: Mention the perror module.
15680         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
15681         REPLACE_PERROR.
15682         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
15683         REPLACE_PERROR.
15684
15685 2008-09-14  Bruno Haible  <bruno@clisp.org>
15686
15687         * modules/stdio (Makefile.am): Reorder to match the order in
15688         lib/stdio.in.h.
15689         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
15690
15691 2008-09-13  Bruno Haible  <bruno@clisp.org>
15692
15693         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
15694
15695 2008-09-13  Bruno Haible  <bruno@clisp.org>
15696
15697         Extend strerror to cover the added errno values.
15698         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
15699         (rpl_strerror): Provide error messages for the added errno values and
15700         for the WSA* values.
15701         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
15702         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
15703         strerror.
15704         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
15705         * modules/strerror (Depends-on): Add errno.
15706         * doc/posix-functions/strerror.texi: Document the change.
15707         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
15708         and EOVERFLOW.
15709
15710 2008-09-13  Bruno Haible  <bruno@clisp.org>
15711
15712         * modules/EOVERFLOW: Remove file.
15713         * m4/eoverflow.m4: Remove file.
15714         * modules/EOVERFLOW-tests: Remove file.
15715         * tests/test-EOVERFLOW.c: Remove file.
15716         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
15717         * modules/ftell (Depends-on): Likewise.
15718         * modules/getdelim (Depends-on): Likewise.
15719         * modules/getugroups (Depends-on): Likewise.
15720         * modules/poll (Depends-on): Likewise.
15721         * modules/snprintf (Depends-on): Likewise.
15722         * modules/sprintf-posix (Depends-on): Likewise.
15723         * modules/vasnprintf (Depends-on): Likewise.
15724         * modules/vasprintf (Depends-on): Likewise.
15725         * modules/vfprintf-posix (Depends-on): Likewise.
15726         * modules/vsnprintf (Depends-on): Likewise.
15727         * modules/vsprintf-posix (Depends-on): Likewise.
15728         * modules/xvasprintf (Depends-on): Likewise.
15729         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
15730         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
15731         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
15732         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
15733         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
15734         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
15735         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
15736         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
15737         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
15738         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
15739         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
15740         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
15741         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
15742         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
15743         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
15744         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
15745         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
15746         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
15747         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
15748         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
15749         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
15750         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
15751         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
15752         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
15753         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
15754         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
15755         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
15756         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
15757         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
15758         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
15759         * MODULES.html.sh: Remove EOVERFLOW.
15760         * NEWS: Mention the change.
15761
15762 2008-09-13  Bruno Haible  <bruno@clisp.org>
15763
15764         * modules/errno-tests: New file.
15765         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
15766
15767         * lib/errno.in.h: New file.
15768         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
15769         * modules/errno: New file.
15770         * doc/posix-headers/errno.texi: Update documentation.
15771         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
15772
15773 2008-09-13  Bruno Haible  <bruno@clisp.org>
15774
15775         * tests/test-poll.c: Use #if for native Windows, rather than testing
15776         __MSVCRT__.
15777
15778 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15779             Bruno Haible  <bruno@clisp.org>
15780
15781         * lib/glob.c: Don't include <pwd.h> on native Windows.
15782         (WINDOWS32): New macro.
15783         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
15784
15785 2008-09-13  Bruno Haible  <bruno@clisp.org>
15786
15787         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
15788         (ETIMEDOUT): Remove macro.
15789         (glthread_cond_timedwait_multithreaded): New declaration.
15790         (glthread_cond_timedwait): Use it.
15791         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
15792         (glthread_cond_timedwait_multithreaded): New function.
15793
15794 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15795
15796         * modules/poll-tests: Do not check for io.h.
15797         * tests/test-poll.c: Check for __MSVCRT__ instead.
15798
15799 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15800
15801         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
15802         * modules/poll-tests: Add inet_pton, stdbool, sockets.
15803         * tests/test-poll.c: Use them.  Use _pipe on Windows.
15804
15805 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15806
15807         * modules/poll-tests: New.
15808         * tests/test-poll.c: New.
15809
15810 2008-09-12  Eric Blake  <ebb9@byu.net>
15811
15812         frexp: test for NetBSD failure on -0.0
15813         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
15814         not all, bugs from NetBSD 3.0 have been fixed.
15815         * doc/posix-functions/frexp.texi (frexp): Document bug.
15816         Reported by Thomas Klausner.
15817
15818         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
15819         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
15820         literal -0.0.
15821         Reported by Jonathan C. Patschke <jp@centtech.com>.
15822
15823 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15824
15825         * lib/glthread/cond.h: Use dummy implementation also if
15826         USE_WIN32_THREADS.
15827
15828 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15829
15830         * modules/fnmatch-posix (License): Change to LGPLv2+.
15831         * modules/fnmatch-gnu (License): Likewise.
15832
15833 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15834
15835         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
15836
15837 2008-09-11  Jim Meyering  <meyering@redhat.com>
15838
15839         * users.txt: Add gtk-vnc.
15840
15841 2008-09-08  Simon Josefsson  <simon@josefsson.org>
15842
15843         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
15844         rotate amounts.
15845
15846         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
15847         required for 16-bit and 8-bit rotates.
15848         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
15849         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
15850         UINT8_MAX instead of hard-coded constants.
15851         Suggested by Paul Eggert.
15852
15853 2008-09-07  Bruno Haible  <bruno@clisp.org>
15854
15855         * tests/test-striconveh.c (main): Check behaviour when converting from
15856         UTF-7.
15857
15858         Make striconveh work better with stateful encodings.
15859         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
15860         that iconv does not increment the inptr when returning -1/EINVAL.
15861
15862 2008-09-07  Bruno Haible  <bruno@clisp.org>
15863
15864         * build-aux/config.rpath: Update according to libtool-2.2.6.
15865         * build-aux/config.libpath: Likewise.
15866
15867 2008-09-06  Bruno Haible  <bruno@clisp.org>
15868
15869         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
15870         * lib/freadptr.c (freadptr): Likewise.
15871         * lib/freadseek.c (freadptrinc): Likewise.
15872         Reported by Simon Josefsson.
15873
15874 2008-09-06  Bruno Haible  <bruno@clisp.org>
15875
15876         * modules/freadptr (License): Change to LGPLv2+.
15877         * modules/freadseek (License): Likewise.
15878         Suggested by Eric Blake.
15879
15880         * modules/memchr2 (License): Change to LGPLv2+.
15881         Approved by Eric Blake.
15882
15883 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15884             Bruno Haible  <bruno@clisp.org>
15885
15886         Make gnulib-tool work with native 'sed' on AIX.
15887         * gnulib-tool (sed_noop): New variable.
15888         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
15889         func_add_or_update, func_create_testdir): Use it to initialize sed
15890         script variables.
15891         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
15892
15893 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
15894             Bruno Haible  <bruno@clisp.org>
15895
15896         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
15897         also works after #include directives.
15898
15899 2008-09-04  Ondřej Vašík  <ovasik@redhat.com>
15900
15901         getdate.y: reject an out-of-range timezone value
15902         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
15903         the range [-24...+24].  When specified with only one or two digits,
15904         * tests/test-getdate.c: Tests for the fix.
15905         * doc/getdate.texi: Document this change.
15906
15907 2008-09-03  Bruno Haible  <bruno@clisp.org>
15908
15909         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
15910
15911 2008-09-02  Simon Josefsson  <simon@josefsson.org>
15912
15913         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
15914         <bruce.korb@gmail.com> with ideas from Ben Pfaff
15915         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
15916         Blake <ebb9@byu.net>.
15917
15918         * tests/test-bitrotate.c: Add more test vectors.
15919
15920 2008-09-02  Eric Blake  <ebb9@byu.net>
15921
15922         vasnprintf-posix: handle large precision via %.*d
15923         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
15924         when handling it ourselves.
15925         * tests/test-vasnprintf-posix.c (test_function): Add test.
15926         * tests/test-snprintf-posix.h (test_function): Likewise.
15927         * tests/test-sprintf-posix.h (test_function): Likewise.
15928         * tests/test-vasprintf-posix.c (test_function): Likewise.
15929         Reported by Alain Guibert.
15930
15931 2008-09-01  Eric Blake  <ebb9@byu.net>
15932
15933         c-stack: make configure-time check more robust
15934         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
15935         successful sigaction call.
15936         Reported by Tom G. Christensen.
15937
15938 2008-09-01  Bruno Haible  <bruno@clisp.org>
15939
15940         New module 'findprog-lgpl'.
15941         * modules/findprog-lgpl: New file.
15942         * lib/findprog-lgpl.c: New file.
15943         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
15944         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
15945         to decide whether to use strdup or xstrdup, concatenated_filename or
15946         xconcatenated_filename.
15947
15948 2008-09-01  Bruno Haible  <bruno@clisp.org>
15949
15950         Split module 'concat-filename' into 'concat-filename' (LGPL) and
15951         'xconcat-filename' (GPL).
15952         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
15953         (License): Change to LGPLv2+.
15954         * modules/xconcat-filename: New file.
15955         * lib/concat-filename.h (concatenated_filename): Change specification.
15956         (xconcatenated_filename): New declaration.
15957         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
15958         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
15959         memory situations.
15960         * lib/xconcat-filename.c: New file.
15961         * NEWS: Mention the change.
15962         * lib/findprog.c: Include concat-filename.h, not filename.h.
15963         (find_in_path): Use xconcatenated_filename instead of
15964         concatenated_filename.
15965         * lib/javacomp.c: Include concat-filename.h, not filename.h.
15966         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
15967         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
15968         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
15969         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
15970         instead of concatenated_filename.
15971         * lib/javaexec.c: Include concat-filename.h, not filename.h.
15972         (execute_java_class): Use xconcatenated_filename instead of
15973         concatenated_filename.
15974         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
15975         * modules/javacomp (Depends-on): Likewise.
15976         * modules/javaexec (Depends-on): Likewise.
15977
15978 2008-09-01  Bruno Haible  <bruno@clisp.org>
15979
15980         Split module 'filename' into 'filename' and 'concat-filename'.
15981         * modules/filename: Keep only lib/filename.h.
15982         (License): Change to LGPLv2+.
15983         * modules/concat-filename: New file, extracted from modules/filename.
15984         * lib/filename.h (concatenated_filename): Remove declaration.
15985         * lib/concat-filename.h: New file, extracted from lib/filename.h.
15986         * lib/concat-filename.c: Include concat-filename.h.
15987         * NEWS: Mention the change.
15988
15989 2008-09-01  Simon Josefsson  <simon@josefsson.org>
15990
15991         * lib/bitrotate.h (rotl8, rotr8): Add.
15992
15993         * modules/bitrotate (configure.ac): Need
15994         AC_REQUIRE([AC_C_INLINE]).
15995         (Description): Mention stdint.h.  Reported by Bruno Haible
15996         <bruno@clisp.org>.
15997
15998         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
15999         Paolo Bonzini <bonzini@gnu.org>.
16000
16001 2008-08-31  Bruno Haible  <bruno@clisp.org>
16002
16003         Assume Solaris specific bi-arch conventions on Solaris systems.
16004         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
16005         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
16006         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
16007         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
16008         like acl_libdirstem.
16009         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
16010         acl_libdirstem.
16011         * NEWS: Mention the change.
16012         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
16013
16014 2008-08-31  Jim Meyering  <meyering@redhat.com>
16015
16016         * lib/strftime.h: Add comments describing the two added arguments.
16017
16018         remove duplicate #include directives
16019         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
16020         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
16021
16022 2008-08-31  Bruno Haible  <bruno@clisp.org>
16023
16024         New module 'sigpipe-die'.
16025         * modules/sigpipe-die: New file.
16026         * lib/sigpipe-die.h: New file.
16027         * lib/sigpipe-die.c: New file.
16028         * MODULES.html.sh (Signal handling): Add sigpipe-die.
16029
16030 2008-08-31  Bruno Haible  <bruno@clisp.org>
16031
16032         Don't override previously installed signal handlers.
16033         * lib/fatal-signal.c (saved_sigactions): New variable.
16034         (uninstall_handlers): Reset the signal to the saved handler, not
16035         to SIG_DFL (except when ignored).
16036         (install_handlers): Save the previous handlers.
16037
16038 2008-08-30  Bruno Haible  <bruno@clisp.org>
16039
16040         * gnulib-tool (func_reset_sigpipe): New function.
16041         (func_get_automake_snippet, func_modules_transitive_closure,
16042         func_import): Invoke it before a join command that reads from stdin,
16043         to avoid "echo: write error: Broken pipe" error messages on stderr.
16044         Reported by Sam Steingold <sds@gnu.org>.
16045
16046 2008-08-30  Bruno Haible  <bruno@clisp.org>
16047
16048         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
16049         Code copied from m4/open.m4.
16050         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
16051         access and the filename ends in a slash. Code copied from lib/open.c.
16052         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
16053         * tests/test-fopen.c (main): Check against bug with trailing slash.
16054
16055 2008-08-29  Bruno Haible  <bruno@clisp.org>
16056
16057         Avoid some "gcc -pedantic" warnings.
16058         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
16059         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
16060         * lib/dirent.in.h: Likewise.
16061         * lib/fcntl.in.h: Likewise.
16062         * lib/float.in.h: Likewise.
16063         * lib/iconv.in.h: Likewise.
16064         * lib/inttypes.in.h: Likewise.
16065         * lib/locale.in.h: Likewise.
16066         * lib/math.in.h: Likewise.
16067         * lib/netinet_in.in.h: Likewise.
16068         * lib/search.in.h: Likewise.
16069         * lib/signal.in.h: Likewise.
16070         * lib/stdarg.in.h: Likewise.
16071         * lib/stdint.in.h: Likewise.
16072         * lib/stdio.in.h: Likewise.
16073         * lib/stdlib.in.h: Likewise.
16074         * lib/string.in.h: Likewise.
16075         * lib/strings.in.h: Likewise.
16076         * lib/sys_select.in.h: Likewise.
16077         * lib/sys_socket.in.h: Likewise.
16078         * lib/sys_stat.in.h: Likewise.
16079         * lib/sys_time.in.h: Likewise.
16080         * lib/sysexits.in.h: Likewise.
16081         * lib/time.in.h: Likewise.
16082         * lib/unistd.in.h: Likewise.
16083         * lib/wchar.in.h: Likewise.
16084         * lib/wctype.in.h: Likewise.
16085         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
16086         * modules/fchdir (Makefile.am): Likewise.
16087         * modules/fcntl (Makefile.am): Likewise.
16088         * modules/float (Makefile.am): Likewise.
16089         * modules/iconv_open (Makefile.am): Likewise.
16090         * modules/inttypes (Makefile.am): Likewise.
16091         * modules/locale (Makefile.am): Likewise.
16092         * modules/math (Makefile.am): Likewise.
16093         * modules/netinet_in (Makefile.am): Likewise.
16094         * modules/search (Makefile.am): Likewise.
16095         * modules/signal (Makefile.am): Likewise.
16096         * modules/stdarg (Makefile.am): Likewise.
16097         * modules/stdint (Makefile.am): Likewise.
16098         * modules/stdio (Makefile.am): Likewise.
16099         * modules/stdlib (Makefile.am): Likewise.
16100         * modules/string (Makefile.am): Likewise.
16101         * modules/strings (Makefile.am): Likewise.
16102         * modules/sys_select (Makefile.am): Likewise.
16103         * modules/sys_socket (Makefile.am): Likewise.
16104         * modules/sys_stat (Makefile.am): Likewise.
16105         * modules/sys_time (Makefile.am): Likewise.
16106         * modules/sysexits (Makefile.am): Likewise.
16107         * modules/time (Makefile.am): Likewise.
16108         * modules/unistd (Makefile.am): Likewise.
16109         * modules/wchar (Makefile.am): Likewise.
16110         * modules/wctype (Makefile.am): Likewise.
16111         Reported by Reuben Thomas <rrt@sc3d.org>.
16112
16113 2008-08-29  Bruno Haible  <bruno@clisp.org>
16114
16115         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
16116         any more.
16117
16118 2008-08-29  Simon Josefsson  <simon@josefsson.org>
16119
16120         * MODULES.html.sh (Misc): Add bitrotate.
16121
16122         * modules/bitrotate: New file.
16123
16124         * lib/bitrotate.h: New file.
16125
16126         * modules/bitrotate-tests: New file.
16127
16128         * tests/test-bitrotate.c: New file.
16129
16130         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
16131         on the bitrotate module.
16132
16133         * lib/arctwo.c: Use new bitrotate module.
16134
16135 2008-08-29  Jim Meyering  <meyering@redhat.com>
16136
16137         bootstrap: merge changes from coreutils
16138         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
16139         of copied files.  Remove a kludge, now that this is fixed.
16140         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
16141         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
16142         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
16143
16144 2008-08-29  Bruno Haible  <bruno@clisp.org>
16145
16146         * MODULES.html.sh: Remove --cvs-urls option.
16147
16148 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
16149
16150         maint.mk: adjust to file name change
16151         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
16152
16153 2008-08-28  Jim Meyering  <meyering@redhat.com>
16154
16155         * modules/getndelim2 (License): Relicense to LGPLv2+.
16156         Approved by Richard Stallman for the version of 1995, and by
16157         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
16158
16159 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
16160
16161         * lib/getdelim.c (flockfile, funlockfile): Make all of them
16162         dummy if one is not available.  Do not touch them if
16163         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
16164         (getc_maybe_unlocked): New.
16165         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
16166
16167 2008-08-26  Eric Blake  <ebb9@byu.net>
16168
16169         doc/INSTALL: resync from autoconf
16170         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
16171         (INSTALL_PRELUDE): Delete; this is done more efficiently by
16172         moving...
16173         * install.texi [!autoconf]: ...here.  Resync from autoconf.
16174         * INSTALL: Regenerate.
16175         * INSTALL.ISO: New file.
16176         * INSTALL.UTF-8: Likewise.
16177
16178 2008-08-26  Jim Meyering  <meyering@redhat.com>
16179
16180         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
16181         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
16182         these definitions conditional, so that they may be overridden, too.
16183
16184 2008-08-26  Bruno Haible  <bruno@clisp.org>
16185
16186         Generate INSTALL file variants with prettier quotes.
16187         * doc/Makefile (INSTALL_PRELUDE): New macro.
16188         (INSTALL): Use it.
16189         (INSTALL.ISO, INSTALL.UTF-8): New rules.
16190
16191 2008-08-26  Bruno Haible  <bruno@clisp.org>
16192
16193         Run makeinfo in an English locale.
16194         * doc/Makefile (MAKEINFO): New variable.
16195
16196 2008-08-26  Bruno Haible  <bruno@clisp.org>
16197
16198         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
16199         Suggested by Eric Blake.
16200
16201 2008-08-25  Bruno Haible  <bruno@clisp.org>
16202
16203         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
16204
16205 2008-08-25  Eric Blake  <ebb9@byu.net>
16206
16207         c-stack: test that stack overflow can be caught
16208         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
16209         that platform allows handling stack overflow; at least OS/2 EMX
16210         has sigaltstack, but crashes before transferring control to
16211         handler on stack overflow.
16212         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
16213         check for HAVE_STACK_OVERFLOW_HANDLING.
16214         Reported by Elbert Pol.
16215
16216 2008-08-25  Bruno Haible  <bruno@clisp.org>
16217
16218         * doc/posix-functions/strftime.texi: Fix description of strftime
16219         module.
16220
16221 2008-08-24  Bruno Haible  <bruno@clisp.org>
16222
16223         * tests/uniwidth/test-uc_width2.c: New file.
16224         * tests/uniwidth/test-uc_width2.sh: New file.
16225         * modules/uniwidth/width-tests (Files): Add the new files.
16226         (TESTS): Add uniwidth/test-uc_width2.sh.
16227         (TESTS_ENVIRONMENT): New variable.
16228         (check_PROGRAMS): Add test-uc_width2.
16229         (test_uc_width2_SOURCES): New variable.
16230
16231         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
16232         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
16233         not 0x00AB.
16234         Reported by Alexander V. Lukyanov <lav@netis.ru>.
16235
16236 2008-08-22  Eric Blake  <ebb9@byu.net>
16237
16238         test-lock, test-tls: mention why a test is skipped
16239         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
16240         skipped.
16241         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
16242
16243         count-one-bits: relax license
16244         * modules/count-one-bits (License): Relicense to LGPLv2+.
16245         Suggested by Ludovic Courtès, approved by Ben Pfaff.
16246
16247 2008-08-22  Andreas Schwab  <schwab@suse.de>
16248
16249         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
16250         Remove spurious space in assignment.
16251
16252 2008-08-21  Simon Josefsson  <simon@josefsson.org>
16253
16254         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
16255         Paul Eggert <eggert@CS.UCLA.EDU>.
16256
16257 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
16258
16259         * modules/gettext: Add m4/threadlib.m4.
16260
16261 2008-08-19  Eric Blake  <ebb9@byu.net>
16262
16263         test-c-stack: fix compilation failure on FreeBSD 5.0
16264         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
16265         headers before <sys/resource.h>.
16266         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
16267         the bug.
16268         Reported by Nelson H. F. Beebe.
16269
16270         strverscmp: migrate from "strverscmp.h" to <string.h>
16271         * modules/string (Makefile.am): Add new hooks.
16272         * modules/strverscmp (Files): Remove strverscmp.h.
16273         (Depends-on): Add string.
16274         (configure.ac): Add indicator.
16275         (Include): Mention new header.
16276         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
16277         defaults.
16278         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
16279         results.
16280         * lib/strverscmp.h: Delete.
16281         * lib/string.in.h (strverscmp): Provide declaration, when needed.
16282         * tests/test-strverscmp.c (includes): Adjust client.
16283         * lib/check-version.c (includes): Likewise.
16284         * NEWS: Document the change.
16285
16286         strverscmp: add unit test
16287         * modules/strverscmp-tests: New file.
16288         * tests/test-strverscmp.c: Likewise.
16289
16290 2008-08-19  Simon Josefsson  <simon@josefsson.org>
16291
16292         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
16293         regarding Windows crypto stuff, from Mono.
16294
16295 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
16296
16297         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
16298         if present, for intel RND.  Return error on failures.
16299
16300 2008-08-18  Ben Pfaff  <blp@gnu.org>
16301
16302         gitlog-to-changelog: give better diagnostic for failed pipe-open
16303         * build-aux/gitlog-to-changelog: Improve error message: suggest
16304         that the version of Git may be too old.
16305
16306 2008-08-18  Simon Josefsson  <simon@josefsson.org>
16307
16308         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
16309         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
16310
16311 2008-08-18  Bruno Haible  <bruno@clisp.org>
16312
16313         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
16314         pthread_in_use().
16315
16316 2008-08-18  Bruno Haible  <bruno@clisp.org>
16317
16318         * lib/glthread/threadlib.c: Include <pthread.h>.
16319
16320 2008-08-18  Bruno Haible  <bruno@clisp.org>
16321
16322         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
16323         glthread_recursive_lock_* macros.
16324         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
16325         Fix syntax error.
16326
16327 2008-08-18  Bruno Haible  <bruno@clisp.org>
16328
16329         * lib/glthread/thread.c: Avoid forcing a context switch right after
16330         thread creation.
16331
16332 2008-08-17  Bruno Haible  <bruno@clisp.org>
16333
16334         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
16335         * lib/glthread/thread.h: Provide Win32 specific implementation.
16336         * modules/thread (Files): Add lib/glthread/thread.c.
16337         (Depends-on): Add lock.
16338         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
16339
16340 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16341
16342         New module 'yield'.
16343         * modules/yield: New file.
16344         * lib/glthread/yield.h: New file.
16345         * m4/yield.m4: New file.
16346         * MODULES.html.sh (Multithreading): Add yield.
16347
16348 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16349
16350         New module 'thread'.
16351         * modules/thread: New file.
16352         * lib/glthread/thread.h: New file.
16353         * m4/thread.m4: New file.
16354         * MODULES.html.sh (Multithreading): Add thread.
16355
16356 2008-08-17  Bruno Haible  <bruno@clisp.org>
16357
16358         * lib/glthread/lock.h: Include <stdlib.h> always.
16359         * lib/glthread/tls.h: Likewise.
16360         * lib/glthread/cond.h: Likewise.
16361
16362 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16363
16364         New module 'cond'.
16365         * modules/cond: New file.
16366         * lib/glthread/cond.h: New file.
16367         * lib/glthread/cond.c: New file.
16368         * m4/cond.m4: New file.
16369         * MODULES.html.sh (Multithreading): Add cond.
16370
16371 2008-08-16  Eric Blake  <ebb9@byu.net>
16372
16373         c-stack: fix regression on Irix 5.3 from 2008-06-21
16374         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
16375         sa_sigaction...
16376         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
16377         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
16378         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
16379         * modules/signal (Makefile.am): Use the value.
16380         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
16381         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
16382         * doc/posix-headers/signal.texi (signal.h): Document this
16383         portability issue.
16384         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
16385         Reported by Tom G. Christensen.
16386
16387 2008-08-17  Bruno Haible  <bruno@clisp.org>
16388
16389         New module 'threadlib'.
16390         * modules/threadlib: New file.
16391         * lib/glthread/threadlib.c: New file, extracted from
16392         lib/glthread/lock.c.
16393         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
16394         functions.
16395         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
16396         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
16397         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
16398         macros.
16399         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
16400         (gl_DISABLE_THREADS): Remove macro.
16401         * modules/lock (Files): Remove build-aux/config.rpath.
16402         (Depends-on): Remove havelib. Add threadlib.
16403         (configure.ac-early): Remove section.
16404         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
16405         * modules/tls (Depends-on): Remove lock. Add threadlib.
16406         (Link): New section, copied from threadlib.
16407         * MODULES.html.sh (Multithreading): Add threadlib.
16408
16409 2008-08-14  Bruno Haible  <bruno@clisp.org>
16410
16411         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
16412         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
16413         glthread_rwlock_unlock, glthread_rwlock_destroy,
16414         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
16415         glthread_recursive_lock_destroy): Define as macros always.
16416         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
16417         glthread_lock_lock.
16418         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
16419         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
16420         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
16421         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
16422         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
16423         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
16424         (glthread_recursive_lock_lock_func): Renamed from
16425         glthread_recursive_lock_lock.
16426         (glthread_recursive_lock_unlock_func): Renamed from
16427         glthread_recursive_lock_unlock.
16428         (glthread_recursive_lock_destroy_func): Renamed from
16429         glthread_recursive_lock_destroy.
16430
16431 2008-08-14  Bruno Haible  <bruno@clisp.org>
16432
16433         * lib/glthread/lock.h: Renamed from lib/lock.h.
16434         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
16435         * lib/glthread/tls.h: Renamed from lib/tls.h.
16436         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
16437         * lib/fstrcmp.c: Update includes.
16438         * lib/strsignal.c: Update includes.
16439         * modules/lock (Files, Makefile.am): Update.
16440         (Include): Change to "glthread/lock.h".
16441         * modules/tls (Files, Makefile.am): Update.
16442         (Include): Change to "glthread/tls.h".
16443         * tests/test-lock.c: Update includes.
16444         * tests/test-tls.c: Update includes.
16445         * NEWS: Mention the renamed header files.
16446
16447 2008-08-11  Jim Meyering  <meyering@redhat.com>
16448
16449         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
16450
16451 2008-08-11  Eric Blake  <ebb9@byu.net>
16452
16453         test-c-stack: avoid C99-ism
16454         * tests/test-c-stack.c (main): Fix whitespace, move declaration
16455         before statement.
16456         Reported by Alain Guibert.
16457
16458 2008-08-10  Jim Meyering  <meyering@redhat.com>
16459
16460         ensure that return value of uinttostr et al are not ignored
16461         * lib/inttostr.h (__GNUC_PREREQ): Define.
16462         (__attribute_warn_unused_result__): Define.
16463         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
16464
16465 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
16466
16467         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
16468         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
16469
16470 2008-08-07  Jim Meyering  <meyering@redhat.com>
16471
16472         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
16473
16474         * modules/mkstemp (License): Relicense under LGPLv2+.
16475         * modules/tempname (License): Likewise.
16476
16477 2008-08-06  Bruno Haible  <bruno@clisp.org>
16478
16479         * lib/poll.c (poll): Further micro-optimization.
16480
16481 2008-08-06  Jim Meyering  <meyering@redhat.com>
16482
16483         inet_pton.c: use locale-independent tolower
16484         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
16485         (inet_pton6): Use c_tolower rather than tolower.
16486         * modules/inet_pton (Depends-on): Add c-ctype.
16487
16488 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
16489
16490         * lib/poll.c (poll): Avoid division when timeout is 0, cache
16491         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
16492
16493 2008-08-06  Jim Meyering  <meyering@redhat.com>
16494
16495         * modules/inet_pton (License): Relicense under LGPLv2+.
16496
16497 2008-08-03  Bruno Haible  <bruno@clisp.org>
16498
16499         Additional non-aborting API for lock and tls.
16500         * lib/lock.h: Include <errno.h>.
16501         (glthread_lock_init): New macro/function.
16502         (gl_lock_init): Define as wrapper around glthread_lock_init.
16503         (glthread_lock_lock): New macro/function.
16504         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
16505         (glthread_lock_unlock): New macro/function.
16506         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
16507         (glthread_lock_destroy): New macro/function.
16508         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
16509         (glthread_rwlock_init): New macro/function.
16510         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
16511         (glthread_rwlock_rdlock): New macro/function.
16512         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
16513         (glthread_rwlock_wrlock): New macro/function.
16514         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
16515         (glthread_rwlock_unlock): New macro/function.
16516         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
16517         (glthread_rwlock_destroy): New macro/function.
16518         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
16519         (glthread_recursive_lock_init): New macro/function.
16520         (gl_recursive_lock_init): Define as wrapper around
16521         glthread_recursive_lock_init.
16522         (glthread_recursive_lock_lock): New macro/function.
16523         (gl_recursive_lock_lock): Define as wrapper around
16524         glthread_recursive_lock_lock.
16525         (glthread_recursive_lock_unlock): New macro/function.
16526         (gl_recursive_lock_unlock): Define as wrapper around
16527         glthread_recursive_lock_unlock.
16528         (glthread_recursive_lock_destroy): New macro/function.
16529         (gl_recursive_lock_destroy): Define as wrapper around
16530         glthread_recursive_lock_destroy.
16531         (glthread_once): New macro/function.
16532         (gl_once): Define as wrapper around glthread_once.
16533         Update function declarations.
16534         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
16535         glthread_rwlock_init. Return error code.
16536         (glthread_rwlock_rdlock_multithreaded): Renamed from
16537         glthread_rwlock_rdlock. Return error code.
16538         (glthread_rwlock_wrlock_multithreaded): Renamed from
16539         glthread_rwlock_wrlock. Return error code.
16540         (glthread_rwlock_unlock_multithreaded): Renamed from
16541         glthread_rwlock_unlock. Return error code.
16542         (glthread_rwlock_destroy_multithreaded): Renamed from
16543         glthread_rwlock_destroy. Return error code.
16544         (glthread_recursive_lock_init_multithreaded): Renamed from
16545         glthread_recursive_lock_init. Return error code.
16546         (glthread_recursive_lock_lock_multithreaded): Renamed from
16547         glthread_recursive_lock_lock. Return error code.
16548         (glthread_recursive_lock_unlock_multithreaded): Renamed from
16549         glthread_recursive_lock_unlock. Return error code.
16550         (glthread_recursive_lock_destroy_multithreaded): Renamed from
16551         glthread_recursive_lock_destroy. Return error code.
16552         (glthread_once_call): Make static.
16553         (glthread_once_multithreaded): Renamed from glthread_once.
16554         * lib/tls.h: Include <errno.h>.
16555         (glthread_tls_key_init): New macro/function.
16556         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
16557         (glthread_tls_set): New macro/function.
16558         (gl_tls_set): Define as wrapper around glthread_tls_set.
16559         (glthread_tls_key_destroy): New macro/function.
16560         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
16561         Update function declarations.
16562         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
16563         glthread_tls_get.
16564         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
16565
16566 2008-08-04  Eric Blake  <ebb9@byu.net>
16567
16568         gnumakefile: use space, not TAB, outside of targets
16569         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
16570
16571 2008-08-02  Jim Meyering  <meyering@redhat.com>
16572
16573         getdate.y: avoid locale-dependent date parsing failure
16574         In Turkish locales, getdate would fail to recognize keywords
16575         containing a lowercase "i".  The solution is not to rely on
16576         locale-sensitive case-conversion.
16577         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
16578         (lookup_word): Use c_toupper in place of toupper.
16579         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
16580         Reported by Vefa Bicakci <bicave@superonline.com> in
16581         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
16582         * modules/getdate (Depends-on): Add c-ctype.
16583
16584 2008-08-02  Bruno Haible  <bruno@clisp.org>
16585
16586         * gnulib-tool (func_import): When updating or creating a .gitignore
16587         file, prepend each added line with a slash, and ignore leading slashes
16588         from the existing lines.
16589         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
16590
16591 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16592
16593         Portability fix for GNU make 3.79.1.
16594         * top/GNUmakefile: Avoid 'else COND', which older GNU make
16595         versions do not understand.
16596
16597 2008-08-01  Bruno Haible  <bruno@clisp.org>
16598
16599         Work around bug of HP-UX 10.20 cc with -0.0 literal.
16600         * tests/test-isnanf.h (zero): New variable.
16601         (main): Avoid literal -0.0f.
16602         * tests/test-isnand.h (zero): New variable.
16603         (main): Avoid literal -0.0.
16604         * tests/test-isnanl.h (zero): New variable.
16605         (main): Avoid literal -0.0L.
16606         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
16607         (test_float, test_double, test_long_double): Avoid literals -0.0f,
16608         -0.0, -0.0L.
16609         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
16610         (test_signbitd): Avoid literal -0.0.
16611         (test_signbitl): Avoid literal -0.0L.
16612         * tests/test-ceilf1.c (zero): New variable.
16613         (main): Avoid literal -0.0f.
16614         * tests/test-ceill.c (zero): New variable.
16615         (main): Avoid literal -0.0L.
16616         * tests/test-floorf1.c (zero): New variable.
16617         (main): Avoid literal -0.0f.
16618         * tests/test-floorl.c (zero): New variable.
16619         (main): Avoid literal -0.0L.
16620         * tests/test-roundf1.c (zero): New variable.
16621         (main): Avoid literal -0.0f.
16622         * tests/test-round1.c (zero): New variable.
16623         (main): Avoid literal -0.0.
16624         * tests/test-roundl.c (zero): New variable.
16625         (main): Avoid literal -0.0L.
16626         * tests/test-truncf1.c (zero): New variable.
16627         (main): Avoid literal -0.0f.
16628         * tests/test-trunc1.c (zero): New variable.
16629         (main): Avoid literal -0.0.
16630         * tests/test-truncl.c (zero): New variable.
16631         (main): Avoid literal -0.0L.
16632         * tests/test-frexp.c (zero): New variable.
16633         (main): Avoid literal -0.0.
16634         * tests/test-frexpl.c (zero): New variable.
16635         (main): Avoid literal -0.0L.
16636         * tests/test-ldexpl.c (zero): New variable.
16637         (main): Avoid literal -0.0L.
16638         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
16639         (zerod, zerol): New variables.
16640         (test_function): Avoid literals -0.0, -0.0L.
16641         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
16642         (zerod, zerol): New variables.
16643         (test_function): Avoid literals -0.0, -0.0L.
16644         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
16645         (zerod, zerol): New variables.
16646         (test_function): Avoid literals -0.0, -0.0L.
16647         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
16648         (zerod, zerol): New variables.
16649         (test_function): Avoid literals -0.0, -0.0L.
16650         * tests/test-strtod.c (zero): New variable.
16651         (main): Avoid literal -0.0.
16652         Reported by Jonathan C. Patschke <jp@centtech.com>.
16653
16654 2008-07-31  Jim Meyering  <meyering@redhat.com>
16655
16656         sha256.h: correct definition of SHA224_DIGEST_SIZE
16657         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
16658         Reported by Paulie Pena IV <paulie4@gmail.com>.
16659         Define as 224 / 8, rather than as a literal.
16660         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
16661         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
16662         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
16663
16664 2008-07-31  Bruno Haible  <bruno@clisp.org>
16665
16666         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
16667         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
16668         Reported by Jonathan Patschke <jp@centtech.com>.
16669
16670 2008-07-31  Bruno Haible  <bruno@clisp.org>
16671
16672         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
16673         Reported by Paolo Bonzini <bonzini@gnu.org>.
16674
16675 2008-07-30  Eric Blake  <ebb9@byu.net>
16676
16677         test-strtod: allow compilation without -lm
16678         * tests/test-strtod.c (main): Avoid link dependence on fabs.
16679         Reported by Dennis Clarke <blastwave@gmail.com>.
16680
16681 2008-07-28  Jim Meyering  <meyering@redhat.com>
16682
16683         bootstrap: work also when there are no .po files in po/
16684         * build-aux/bootstrap (update_po_files): Complete the change
16685         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
16686
16687 2008-07-27  Jim Meyering  <meyering@redhat.com>
16688
16689         * users.txt: Add zile.
16690
16691 2008-07-26  Ben Pfaff  <blp@gnu.org>
16692
16693         Add missing dependencies on new m4/exponent[fdl].m4 files.
16694         * modules/isnanf-nolibm: Add m4/exponentf.m4.
16695         * modules/isnand-nolibm: Add m4/exponentd.m4.
16696         * modules/isnanl-nolibm: Add m4/exponentl.m4.
16697         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
16698         m4/isnan[fdl].m4, because the macros actually used moved.
16699         Reported by Jim Meyering.
16700
16701 2008-07-14  Ben Pfaff  <blp@gnu.org>
16702
16703         Add isinf module.
16704         * lib/isinf.c: New file.
16705         * lib/math.in.h: Define isinf macro if we have decided to replace
16706         it.
16707         * m4/isinf.m4: New file.
16708         * m4/math_h.m4: Initialize and substitute variables for isinf
16709         module.
16710         * modules/isinf: New file.
16711         * modules/isinf-tests: New file.
16712         * modules/math: Add substitutions for new module.
16713         * tests/test-isinf.c: New file.
16714         * doc/posix-functions/isinf.texi: Mention new module.
16715         * MODULES.html.sh: Mention new module.
16716
16717 2008-07-14  Ben Pfaff  <blp@gnu.org>
16718
16719         Factor out some macros for use by additional modules.
16720         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
16721         exponentf.m4.
16722         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
16723         exponentd.m4.
16724         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
16725         file exponentl.m4.
16726         * m4/exponentf.m4: New file.
16727         * m4/exponentd.m4: New file.
16728         * m4/exponentl.m4: New file.
16729         * modules/isnanf: Use new file m4/exponentf.m4.
16730         * modules/isnand: Use new file m4/exponentd.m4.
16731         * modules/isnanl: Use new file m4/exponentl.m4.
16732
16733 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
16734
16735         mktime.c: normalize tp->tm_isdst value to -1/0/1.
16736         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
16737         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
16738         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
16739
16740         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
16741         readlink on platforms without PATH_MAX.
16742
16743 2008-07-21  Eric Blake  <ebb9@byu.net>
16744
16745         Warn, not fail, on stale version.
16746         * top/GNUmakefile (_curr-ver): Tone down previous patch.
16747
16748         Don't allow installation with stale devel version number.
16749         * top/GNUmakefile (_is-install-target): New macro.
16750         (_curr-ver): Forbid installation with stale version number.
16751
16752 2008-07-20  Bruno Haible  <bruno@clisp.org>
16753
16754         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
16755         TESTS_ENVIRONMENT.
16756         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
16757
16758 2008-07-20  Bruno Haible  <bruno@clisp.org>
16759
16760         * lib/c-stack.h (c_stack_action): Add documentation.
16761         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
16762
16763 2008-07-20  Bruno Haible  <bruno@clisp.org>
16764
16765         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
16766         * modules/readlink (License): Likewise.
16767
16768 2008-07-17  Eric Blake  <ebb9@byu.net>
16769
16770         * modules/c-stack (Link): Fix typo.
16771
16772         Make c-stack use libsigsegv, when available.
16773         * modules/c-stack (Depends-on): Add libsigsegv.
16774         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
16775         needed.
16776         * lib/c-stack.c (SIGSTKSZ): Define fallback.
16777         (segv_handler, overflow_handler, c_stack_action)
16778         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
16779         implementation when libsigsegv is available, but only when using
16780         the library is necessary.
16781         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
16782         comment, explaining why XSI check fails on Linux.
16783         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
16784         * tests/test-c-stack2.sh: Tweak skip message.
16785         * NEWS: Document new link-time requirements.
16786
16787 2008-07-16  Eric Blake  <ebb9@byu.net>
16788
16789         c-stack: Expose false positives when not using libsigsegv.
16790         * modules/c-stack-tests (Files): Expand test.
16791         * tests/test-c-stack.c (main): Add means to conditionally trigger
16792         non-overflow SIGSEGV.
16793         * tests/test-c-stack2.sh: New file.
16794
16795 2008-07-14  Bruno Haible  <bruno@clisp.org>
16796
16797         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
16798         Reported by Eric Blake.
16799
16800 2008-07-14  Sam Steingold  <sds@gnu.org>
16801             Bruno Haible  <bruno@clisp.org>
16802
16803         New module libsigsegv.
16804         * modules/libsigsegv: New file.
16805         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
16806         modifications.
16807         * MODULES.html.sh (Signal handling): New section.
16808
16809 2008-07-14  Bruno Haible  <bruno@clisp.org>
16810
16811         * modules/unictype/ctype-* (Description): Add the word "function".
16812         Improves the resulting doc in MODULES.html.
16813
16814 2008-07-12  Ben Pfaff  <blp@gnu.org>
16815
16816         Add longlong module.
16817         * modules/longlong: New file.
16818
16819 2008-07-12  Bruno Haible  <bruno@clisp.org>
16820
16821         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
16822         to empty.
16823
16824 2008-07-10  Ben Pfaff  <blp@gnu.org>
16825
16826         Add isnan module.
16827         * doc/posix-functions/isnan.texi: Mention new module.
16828         * lib/math.in.h: Define isnan macro if we have decided to replace
16829         it.
16830         * m4/isnan.m4: New file.
16831         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
16832         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
16833         also.
16834         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
16835         redundancy.
16836         * m4/math_h.m4: Initialize and substitute variables for isnan
16837         module.
16838         * modules/isnan: New file.
16839         * modules/isnan-tests: New file.
16840         * modules/math: Add substitutions for new module.
16841         * tests/test-isnan.c: New file.
16842         * MODULES.html.sh: Mention new module.
16843
16844 2008-07-10  Ben Pfaff  <blp@gnu.org>
16845
16846         Add isnanf module.
16847         * lib/isnanf.m4: New file.
16848         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
16849         (gl_HAVE_ISNANF_IN_LIBM): New macro.
16850         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
16851         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
16852         * modules/isnanf: New file.
16853         * modules/isnanf-tests: New file.
16854         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
16855         files.
16856         * tests/test-isnanf-nolibm.c: factored most of its contents into
16857         new file tests/test-isnanf.h.
16858         * tests/test-isnanf.h: New file.
16859         * tests/test-isnanf.c: New file.
16860         * MODULES.html.sh: Mention new module.
16861         * doc/glibc-functions/isnanf.texi: Mention new module.
16862
16863 2008-07-10  Ben Pfaff  <blp@gnu.org>
16864
16865         Add isnand module.
16866         * lib/isnand.h: New file.
16867         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
16868         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
16869         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
16870         functionality also.
16871         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
16872         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
16873         (gl_HAVE_ISNAND_IN_LIBM): New macro.
16874         * modules/isnand: New file.
16875         * modules/isnand-tests: New file.
16876         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
16877         files.
16878         * tests/test-isnand-nolibm.c: factored most of its contents into
16879         new file tests/test-isnand.h.
16880         * tests/test-isnand.h: New file.
16881         * tests/test-isnand.c: New file.
16882         * MODULES.html.sh: Mention new module.
16883
16884 2008-07-10  Ben Pfaff  <blp@gnu.org>
16885
16886         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
16887         * lib/isnand.h: Rename lib/isnand-nolibm.h.
16888         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
16889         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
16890         * modules/isnanf-nolibm: Update references to renamed files.
16891         * modules/isnand-nolibm: Likewise.
16892         * modules/isnanf-nolibm-tests: Likewise.
16893         * modules/isnand-nolibm-tests: Likewise.
16894         * lib/frexp.c: Likewise.
16895         * lib/isfinite.c: Likewise.
16896         * lib/signbitd.c: Likewise.
16897         * lib/signbitf.c: Likewise.
16898         * lib/vasnprintf.c: Likewise.
16899         * tests/test-ceilf1.c: Likewise.
16900         * tests/test-ceilf2.c: Likewise.
16901         * tests/test-floorf1.c: Likewise.
16902         * tests/test-floorf2.c: Likewise.
16903         * tests/test-frexp.c: Likewise.
16904         * tests/test-round1.c: Likewise.
16905         * tests/test-round2.c: Likewise.
16906         * tests/test-roundf1.c: Likewise.
16907         * tests/test-strtod.c: Likewise.
16908         * tests/test-trunc1.c: Likewise.
16909         * tests/test-trunc2.c: Likewise.
16910         * tests/test-truncf1.c: Likewise.
16911         * tests/test-truncf2.c: Likewise.
16912         * NEWS: Mention the renamed header files.
16913
16914 2008-07-11  Jim Meyering  <meyering@redhat.com>
16915
16916         vc-list-files: make the last-resort awk code more portable
16917         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
16918         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
16919         does not support it.
16920
16921 2008-07-10  Eric Blake  <ebb9@byu.net>
16922
16923         Work with tar's bootstrap.
16924         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
16925         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
16926         an m4 comment.
16927
16928 2008-07-09  Jim Meyering  <meyering@redhat.com>
16929
16930         posix-shell.m4: fix typo that made this test malfunction
16931         * m4/posix-shell.m4: Remove capitalization in variable name.
16932
16933 2008-07-08  Bruno Haible  <bruno@clisp.org>
16934
16935         * m4/onceonly.m4: Update comments.
16936         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16937
16938 2008-07-04  Jim Meyering  <meyering@redhat.com>
16939
16940         * users.txt: Add vc-dwim.
16941         (bison, coreutils): Use the gitweb URL.
16942
16943 2008-07-03  Jim Meyering  <meyering@redhat.com>
16944
16945         * users.txt: Add libffcall.  From Sam Steingold.
16946
16947 2008-07-03  Ondřej Vašík  <ovasik@redhat.com>
16948
16949         getdate.y: do not ignore TZ with relative day, month or year offset
16950         * lib/getdate.y (get_date): Move the tz-handling block to follow the
16951         relative-date-handling, since otherwise, the latter would clobber the
16952         sole output (an updated Start value) of the tz-handling block.
16953         * tests/test-getdate.c: Tests for the fix
16954
16955 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16956
16957         Recognize 'foo_LIBRARIES += libgnu.a'.
16958         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
16959         makefile snippet has already specified an installation location,
16960         also using '+='.
16961
16962 2008-07-02  Ondřej Vašík  <ovasik@redhat.com>
16963
16964         getdate.y: factor out common actions
16965         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
16966         Use them in place of open-coded actions.
16967
16968 2008-07-01  Simon Josefsson  <simon@josefsson.org>
16969
16970         Add self-test for getdate module.
16971         * modules/getdate-tests: New file.
16972         * tests/test-getdate.c: New file.
16973
16974 2008-06-29  Bruno Haible  <bruno@clisp.org>
16975
16976         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
16977         .gitignore.
16978         Reported by Sylvain Beucler <beuc@beuc.net>.
16979
16980 2008-06-29  Bruno Haible  <bruno@clisp.org>
16981
16982         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
16983         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
16984
16985 2008-06-29  Bruno Haible  <bruno@clisp.org>
16986
16987         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
16988         EXTRA_DIST.
16989         Reported by Sylvain Beucler <beuc@beuc.net>.
16990
16991 2008-06-26  Jim Meyering  <meyering@redhat.com>
16992
16993         make several modules depend on the "open" module
16994         This provides slightly increased consistency when opening-for-write
16995         the name of a non-directory spelled with a trailing slash.
16996         * modules/chdir-safer: Likewise.
16997         * modules/chown: Likewise.
16998         * modules/clean-temp: Likewise.
16999         * modules/copy-file: Likewise.
17000         * modules/fchdir: Likewise.
17001         * modules/fcntl-safer: Likewise.
17002         * modules/pipe: Likewise.
17003         * modules/utime: Likewise.
17004         Prompted by Eric Blake and Bruno Haible.
17005
17006 2008-06-24  Andreas Schwab  <schwab@suse.de>
17007
17008         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
17009         literals can be used as initializers for global variables.
17010
17011 2008-06-23  Eric Blake  <ebb9@byu.net>
17012
17013         Make gnulib-cache.m4 easier to diff.
17014         * gnulib-tool (func_import): Allow newlines when reading cached
17015         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
17016
17017 2008-06-23  Bruno Haible  <bruno@clisp.org>
17018
17019         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
17020         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
17021         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
17022         m4/signalblocking.m4.
17023         (gl_PREREQ_SIGACTION): Don't invoke it.
17024         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
17025         gl_PREREQ_SIG_HANDLER_H.
17026         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
17027         Don't check for sigaction here.
17028
17029 2008-06-23  Bruno Haible  <bruno@clisp.org>
17030
17031         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
17032         (install_handlers): Don't set the SA_RESETHAND flag.
17033
17034 2008-06-23  Bruno Haible  <bruno@clisp.org>
17035
17036         * m4/sigaction.m4: Comment fixes.
17037         * lib/signal.in.h: Likewise.
17038
17039 2008-06-23  Eric Blake  <ebb9@byu.net>
17040
17041         Fix typo.
17042         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
17043
17044         Avoid SA_ namespace.
17045         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
17046         Reported by Ralf Wildenhues.
17047
17048         Avoid test failure due to SA_RESTORER.
17049         * tests/test-sigaction.c (SA_MASK): New macro.
17050         (main): Avoid failing due to extension flags being set.
17051         Reported by Jim Meyering.
17052
17053         Revert use of sig-handler.h in sigprocmask.c.
17054         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
17055         it requires the existence of struct sigaction.
17056         * lib/sigprocmask.c (handler_t): Restore typedef.
17057         (rpl_signal, old_handlers): Use local type.
17058
17059 2008-06-22  Bruno Haible  <bruno@clisp.org>
17060
17061         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
17062         conditionally.
17063         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17064
17065 2008-06-22  Bruno Haible  <bruno@clisp.org>
17066
17067         * doc/posix-functions/siginterrupt.texi: Move note.
17068
17069         * lib/signal.in.h (SA_RESTART): New macro.
17070         * lib/sigaction.c: Update comment.
17071
17072         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
17073
17074         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
17075         (gl_PREREQ_SIGPROCMASK): Invoke it.
17076         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
17077
17078         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
17079
17080         * lib/sigprocmask.c: Update a comment.
17081
17082 2008-06-21  Eric Blake  <ebb9@byu.net>
17083
17084         Use sigaction module rather than signal().
17085         * modules/c-stack (Depends-on): Add sigaction.
17086         * modules/fatal-signal (Depends-on): Likewise.
17087         * modules/nanosleep (Depends-on): Likewise.
17088         * modules/sigprocmask (Files): Add sig-handler.h.
17089         * modules/sigaction (Files): Likewise.
17090         * lib/sig-handler.h (get_handler): New file, suggested by Paul
17091         Eggert.
17092         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
17093         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
17094         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
17095         (init_fatal_signals): Likewise.
17096         * lib/nanosleep.c (rpl_nanosleep): Likewise.
17097         (siginterrupt): Delete fallback.
17098         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
17099         instead.
17100         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
17101         siginterrupt.
17102
17103         New module sigaction, for mingw.
17104         * modules/sigaction: New module...
17105         * modules/sigaction-tests: ...and its test.
17106         * m4/sigaction.m4: New file.
17107         * lib/sigaction.c: Likewise.
17108         * tests/test-sigaction.c: Likewise.
17109         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
17110         * modules/signal (Makefile.am): Likewise.
17111         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
17112         needed.
17113         * doc/posix-headers/signal.texi (signal.h): Mention provided
17114         types.
17115         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
17116         that sigaction is preferable.
17117         * doc/posix-functions/sigaction.texi (sigaction): Mention new
17118         module.
17119         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17120         sigaction.
17121
17122         Improve robustness of sigprocmask by overriding signal.
17123         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
17124         is in use.
17125         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
17126         (SIGKILL, SIGSTOP): Provide fallbacks.
17127         (rpl_signal): Implement.
17128         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
17129         signal can be called inside handlers.
17130
17131         Fix nanosleep module on mingw.
17132         * modules/nanosleep (Depends-on): Add sys_select.
17133         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
17134
17135         Fix licensing of sigprocmask.
17136         * modules/raise (License): Relicense as LGPL.
17137
17138 2008-06-21  Bruno Haible  <bruno@clisp.org>
17139
17140         * lib/propername.c (proper_name_utf8): Don't use the transliterated
17141         result if it contains question marks.
17142         Reported by Michael Geng <linux@michaelgeng.de>.
17143
17144 2008-06-19  Bruno Haible  <bruno@clisp.org>
17145
17146         Fix CVS-ism.
17147         * doc/gnulib.texi: Include updated-stamp.texi.
17148         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
17149         (updated-stamp.texi): New rule.
17150         (gnulib.info): Depend on it.
17151         * doc/.gitignore: Add updated-stamp.texi.
17152         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
17153
17154 2008-06-19  Bruno Haible  <bruno@clisp.org>
17155
17156         * doc/Makefile (gnulib.info): Update and simplify dependencies.
17157         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
17158
17159 2008-06-19  Eric Blake  <ebb9@byu.net>
17160
17161         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
17162         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
17163         Reported by Stepan Kasal.
17164
17165 2008-06-18  Bruno Haible  <bruno@clisp.org>
17166
17167         * lib/fatal-signal.c (init_fatal_signals): Add comment.
17168         Reported by Eric Blake.
17169
17170 2008-06-18  Eric Blake  <ebb9@byu.net>
17171
17172         Work around cygwin 1.5.25 strsignal bug.
17173         * tests/test-strsignal.c: Allow for const char *.
17174         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
17175
17176 2008-06-18  Simon Josefsson  <simon@josefsson.org>
17177
17178         * users.txt: Update URL to article and add author/date
17179         information.
17180
17181 2008-06-17  Bruno Haible  <bruno@clisp.org>
17182
17183         New macro gl_DISABLE_THREADS.
17184         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
17185         if the user did not pass --enable-threads or --disable-threads option.
17186         (gl_DISABLE_THREADS): New macro.
17187         Reported by Eric Blake <ebb9@byu.net>.
17188
17189 2008-06-17  Bruno Haible  <bruno@clisp.org>
17190
17191         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
17192         when the macro ignores it.
17193         Based on a patch by Eric Blake <ebb9@byu.net>.
17194
17195 2008-06-17  Bruno Haible  <bruno@clisp.org>
17196
17197         * modules/tls (License): Change to LGPLv2+.
17198         Reported by Eric Blake.
17199
17200 2008-06-17  Eric Blake  <ebb9@byu.net>
17201
17202         Simplify c-stack prerequisites.
17203         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
17204         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
17205         no longer requires <ucontext.h> to exist.  Optimize setrlimit
17206         check.
17207         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
17208         <sys/resource.h>.
17209
17210         Move c-stack test into testsuite.
17211         * modules/c-stack-tests: New file.
17212         * lib/c-stack.c [DEBUG]: Move test program...
17213         * tests/test-c-stack.c: ...into this new file.  Skip rather than
17214         fail test if sigaltstack is lacking.
17215         * tests/test-c-stack.sh: New driver file.
17216
17217 2008-06-16  Eric Blake  <ebb9@byu.net>
17218
17219         Use raise module consistently.
17220         * modules/fatal-signal (Depends-on): Add raise.
17221         * modules/sigprocmask (Depends-on): Likewise.
17222         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
17223         * lib/sigprocmask.c (sigprocmask): Likewise.
17224         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
17225         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
17226
17227         Fix compliance bug in sigpending.
17228         * lib/sigprocmask.c (sigpending): Return pending array via
17229         parameter, not return value.
17230
17231 2008-06-14  Eric Blake  <ebb9@byu.net>
17232
17233         Improve obstack-printf test code.
17234         * tests/test-obstack-printf.c (test_function): Fix comment, and
17235         simplify usage of obstack_* in macros.  Add a test for coverage.
17236         Reported by Bruno Haible.
17237
17238 2008-06-14  Bruno Haible  <bruno@clisp.org>
17239
17240         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
17241         array size as a constant, not as a const variable.
17242         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
17243         AC_USE_SYSTEM_EXTENSIONS.
17244         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
17245         Test whether the obstack_printf function actually exists.
17246         * modules/obstack-printf (Depends-on): Add extensions.
17247         (Include): Remove obstack.h.
17248         * modules/obstack-printf-posix (Depends-on): Add extensions.
17249         (Include): Remove obstack.h.
17250
17251 2008-06-13  Eric Blake  <ebb9@byu.net>
17252
17253         Add obstack-printf and obstack-printf-posix modules.
17254         * modules/obstack-printf: New file.
17255         * modules/obstack-printf-posix: Likewise.
17256         * MODULES.html.sh (Misc): Mention them.
17257         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
17258         Likewise.
17259         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
17260         Likewise.
17261         * modules/stdio (Makefile.am): Accomodate new modules.
17262         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
17263         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
17264         Declare.
17265         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
17266         functions.
17267         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
17268         (gl_REPLACE_OBSTACK_PRINTF): New macros
17269         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
17270         * tests/test-obstack-printf.c: New file.
17271         * modules/obstack-printf-tests: Likewise.
17272         * modules/obstack-printf-posix-tests: Likewise.
17273
17274 2008-06-11  Bruno Haible  <bruno@clisp.org>
17275
17276         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
17277         * lib/open.c: Include errno.h.
17278         (open): Fail when attempting to write to a file that has a trailing
17279         slash.
17280         * tests/test-open.c (main): Test against trailing slash bug.
17281         * doc/posix-functions/open.texi: Mention the trailing slash bug.
17282
17283 2008-06-10  Bruno Haible  <bruno@clisp.org>
17284
17285         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
17286         for $? to work inside the trap command, with various /bin/sh-s.
17287         * tests/test-vc-list-files-cvs.sh: Likewise.
17288
17289 2008-06-10  Bruno Haible  <bruno@clisp.org>
17290
17291         * lib/acl-internal.h: Don't include gettext.h here.
17292         * lib/set-mode-acl.c: Include gettext.h here.
17293         * lib/copy-acl.c: Likewise.
17294
17295 2008-06-10  Bruno Haible  <bruno@clisp.org>
17296
17297         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
17298         * lib/wait-process.c (wait_subprocess): Likewise.
17299         * lib/execute.h (execute): Add termsigp argument.
17300         * lib/execute.c (execute): Likewise.
17301         * lib/csharpcomp.c (compile_csharp_using_pnet,
17302         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
17303         * lib/csharpexec.c (execute_csharp_using_pnet,
17304         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
17305         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
17306         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
17307         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
17308         is_jikes_present): Update.
17309         * lib/javaexec.c (execute_java_class): Update.
17310         * lib/javaversion.c (execute_and_read_line): Update.
17311         * NEWS: Document the changes.
17312         Reported by Eric Blake.
17313
17314 2008-06-10  Eric Blake  <ebb9@byu.net>
17315
17316         Add missing include.
17317         * tests/test-strstr.c (includes): Add <signal.h>.
17318         * tests/test-strcasestr.c (includes): Likewise.
17319         * tests/test-memmem.c (includes): Likewise.
17320
17321 2008-06-10  Bruno Haible  <bruno@clisp.org>
17322
17323         * lib/wait-process.c (wait_subprocess): Add an assertion.
17324
17325 2008-06-10  Bruno Haible  <bruno@clisp.org>
17326
17327         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
17328
17329 2008-06-10  Bruno Haible  <bruno@clisp.org>
17330
17331         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
17332         using alarm().
17333         * tests/test-strcasestr.c (main): Likewise.
17334         * tests/test-strstr.c (main): Likewise.
17335
17336 2008-06-09  Bruno Haible  <bruno@clisp.org>
17337
17338         Work around the Solaris 10 ACE ACLs ABI change.
17339         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
17340         declare if ACL_NO_TRIVIAL is present.
17341         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
17342         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
17343         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
17344         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
17345         define if ACL_NO_TRIVIAL is present.
17346         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
17347         and use the current ABI.
17348         (file_has_acl): Use same #if condition as elsewhere.
17349         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
17350         in use, and use the current ABI.
17351         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
17352         Reported by Jim Meyering.
17353
17354 2008-06-09  Eric Blake  <ebb9@byu.net>
17355
17356         Work around environments that (stupidly) ignore SIGALRM.
17357         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
17358         before using alarm().
17359         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17360         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
17361         Reported by Ian Beckwith <ianb@erislabs.net>.
17362
17363         Produce autobuild blurb earlier in log.
17364         * modules/autobuild (configure.ac-early): Move AB_INIT here.
17365
17366 2008-06-09  Jim Meyering  <meyering@redhat.com>
17367         and Ondřej Vašík  <ovasik@redhat.com>
17368
17369         utimens.c: correct kernel bug work-around
17370         Ondřej Vašík found that the invalid return value of 280 indicates
17371         failure, not success, and the kernel bug we're trying to work
17372         around affects not just the utimensat call, but also the fallback
17373         futimens call.
17374         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
17375         not success.
17376         [HAVE_FUTIMENS]: Use the same work-around, here.
17377
17378 2008-06-09  Jim Meyering  <meyering@redhat.com>
17379
17380         add more guards around definition of ACE_-related code
17381         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
17382         ALLOW and ACE_OWNER are also defined.
17383
17384 2008-06-08  Bruno Haible  <bruno@clisp.org>
17385
17386         * lib/acl-internal.h: Add me as co-author.
17387         * lib/file-has-acl.c: Likewise.
17388         * lib/set-mode-acl.c: Likewise.
17389         * lib/copy-acl.c: Likewise.
17390
17391 2008-06-08  Bruno Haible  <bruno@clisp.org>
17392
17393         Add support for AIX ACLs.
17394         * lib/acl-internal.h (acl_nontrivial): New declaration.
17395         * lib/file-has-acl.c (acl_nontrivial): New function.
17396         (file_has_acl): Add implementation using AIX 4 ACL API.
17397         * lib/set-mode-acl.c (qset_acl): Likewise.
17398         * lib/copy-acl.c (qcopy_acl): Likewise.
17399
17400 2008-06-08  Bruno Haible  <bruno@clisp.org>
17401
17402         Add support for HP-UX ACLs.
17403         * lib/acl-internal.h (acl_nontrivial): New declaration.
17404         * lib/file-has-acl.c (acl_nontrivial): New function.
17405         (file_has_acl): Add implementation using HP-UX 11 ACL API.
17406         * lib/set-mode-acl.c (qset_acl): Likewise.
17407         * lib/copy-acl.c (qcopy_acl): Likewise.
17408
17409 2008-06-08  Bruno Haible  <bruno@clisp.org>
17410
17411         Add support for Cygwin ACLs.
17412         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
17413         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
17414         the chmod_or_fchmod call.
17415         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
17416
17417 2008-06-08  Bruno Haible  <bruno@clisp.org>
17418
17419         Fix bug with setuid modes in Solaris 10+ code.
17420         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
17421         succeeded, when the mode contains some special bits.
17422
17423 2008-06-08  Bruno Haible  <bruno@clisp.org>
17424
17425         Add support for Solaris 7..10 ACLs.
17426         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
17427         declarations.
17428         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
17429         functions.
17430         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
17431         * lib/set-mode-acl.c (qset_acl): Likewise.
17432         * lib/copy-acl.c (qcopy_acl): Likewise.
17433
17434 2008-06-08  Bruno Haible  <bruno@clisp.org>
17435
17436         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
17437         declaration.
17438         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
17439         (acl_access_nontrivial): Remove MacOS X case.
17440         (file_has_acl): Use acl_extended_nontrivial.
17441         * lib/copy-acl.c (qcopy_acl): Likewise.
17442
17443 2008-06-08  Bruno Haible  <bruno@clisp.org>
17444
17445         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
17446
17447 2008-06-08  Jim Meyering  <meyering@redhat.com>
17448
17449         * modules/acl (Maintainer): Add Bruno Haible.
17450
17451 2008-06-07  Bruno Haible  <bruno@clisp.org>
17452
17453         Improve support for Tru64 ACLs.
17454         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
17455         ACL on OSF/1.
17456
17457 2008-06-07  Bruno Haible  <bruno@clisp.org>
17458
17459         Add support for MacOS X ACLs.
17460         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
17461         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
17462         * lib/set-mode-acl.c (qset_acl): Likewise.
17463         * lib/copy-acl.c (qcopy_acl): Likewise.
17464
17465 2008-06-07  Bruno Haible  <bruno@clisp.org>
17466
17467         Fix memory leak introduced on 2008-05-22.
17468         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
17469         use.
17470
17471 2008-06-07  Bruno Haible  <bruno@clisp.org>
17472
17473         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
17474         to construct an empty ACL.
17475
17476 2008-06-07  Bruno Haible  <bruno@clisp.org>
17477
17478         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
17479         precisely.
17480         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
17481
17482 2008-06-07  Bruno Haible  <bruno@clisp.org>
17483
17484         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
17485         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
17486
17487 2008-06-07  Bruno Haible  <bruno@clisp.org>
17488
17489         * doc/posix-functions/_setjmp.texi: Explain the use of this function
17490         regardless of POSIX.
17491         * doc/posix-functions/_longjmp.texi: Likewise.
17492         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
17493         SystemV platform in this case.
17494
17495 2008-06-06  Eric Blake  <ebb9@byu.net>
17496
17497         Document abort() bugs.
17498         * doc/posix-functions/abort.texi (abort): Mention anomalies.
17499
17500         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
17501         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
17502         sigsetjmp.
17503         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
17504         siglongjmp, but only as a macro.
17505         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
17506         is obsolete.
17507         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
17508
17509         Tweak documentation to cover cygwin argz bugs.
17510         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
17511         argz bug fix; no code change needed since no cygwin releases
17512         occurred between the last fix and the bug being tested.
17513         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
17514         module and recently fixed cygwin bugs.
17515         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
17516         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
17517         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
17518         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
17519         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
17520         Likewise.
17521         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
17522         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
17523         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
17524         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
17525         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
17526         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
17527         Likewise.
17528
17529         Avoid gcc warning on cygwin.
17530         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
17531         !ACL_NO_TRIVIAL]: Avoid unused variable.
17532
17533 2008-06-05  Eric Blake  <ebb9@byu.net>
17534
17535         Be tolerant of UNKNOWN version in gnulib-tool test dir.
17536         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
17537         git-version-gen fails to come up with a version.
17538         Reported by Simon Josefsson.
17539
17540 2008-06-05  Jim Meyering  <meyering@redhat.com>
17541             Paul Eggert  <eggert@cs.ucla.edu>
17542
17543         utimens.c: work around a probable Linux kernel bug
17544         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
17545         appears to be a kernel bug that causes utimensat to return 280
17546         instead of 0, indicating success.
17547
17548 2008-06-04  Bruno Haible  <bruno@clisp.org>
17549
17550         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
17551         2008-06-01 commit.
17552
17553 2008-06-04  Bruno Haible  <bruno@clisp.org>
17554
17555         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
17556         * lib/file-has-acl.c (acl_access_nontrivial): New function.
17557         (file_has_acl): Use it. Save errno afterwards.
17558         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
17559
17560 2008-06-03  Bruno Haible  <bruno@clisp.org>
17561
17562         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
17563         draft code. Simplify #ifs.
17564         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
17565         Put Solaris code after POSIX-draft code. Fix comments regarding
17566         Solaris 10, HP-UX. Mention Cygwin.
17567         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
17568
17569 2008-06-03  Eric Blake  <ebb9@byu.net>
17570
17571         Provide fallback for older kernels.
17572         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
17573         Provide runtime fallback if kernel lacks support.
17574         Reported by Mike Frysinger.
17575
17576 2008-06-02  Bruno Haible  <bruno@clisp.org>
17577
17578         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
17579         it exists.
17580
17581 2008-06-02  Bruno Haible  <bruno@clisp.org>
17582
17583         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
17584         * lib/copy-acl.c (qcopy_acl): Update comment.
17585
17586 2008-06-02  Bruno Haible  <bruno@clisp.org>
17587
17588         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
17589         like ACL APIs.
17590
17591 2008-06-02  Bruno Haible  <bruno@clisp.org>
17592
17593         * tests/test-file-has-acl.sh: Use different code for Cygwin.
17594         * tests/test-set-mode-acl.sh: Likewise.
17595         * tests/test-copy-acl.sh: Likewise.
17596         * tests/test-copy-file.sh: Likewise.
17597
17598 2008-06-02  Bruno Haible  <bruno@clisp.org>
17599
17600         * tests/test-file-has-acl.sh: Remove unused code.
17601
17602 2008-06-01  Bruno Haible  <bruno@clisp.org>
17603
17604         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
17605         (copy_acl): Just a wrapper around qcopy_acl that emits the error
17606         messages.
17607         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
17608
17609 2008-06-01  Bruno Haible  <bruno@clisp.org>
17610
17611         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
17612         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
17613         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
17614         APIs.
17615         * modules/acl-tests (configure.ac): Remove tests now contained in
17616         m4/acl.m4.
17617
17618 2008-06-02  Jim Meyering  <meyering@redhat.com>
17619
17620         announce-gen: use a better key-server host name
17621         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
17622         it may be more consistently reliable.  Suggested by Werner Koch
17623         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
17624
17625 2008-06-01  Bruno Haible  <bruno@clisp.org>
17626
17627         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
17628         Reported by Voroskoi Andras <voroskoi@gmail.com>.
17629
17630 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
17631
17632         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
17633
17634 2008-06-01  Bruno Haible  <bruno@clisp.org>
17635
17636         New ACL tests.
17637         * tests/test-file-has-acl.sh: New file.
17638         * tests/test-file-has-acl.c: New file.
17639         * tests/test-set-mode-acl.sh: New file.
17640         * tests/test-set-mode-acl.c: New file.
17641         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
17642         * tests/test-copy-acl.c: New file.
17643         * modules/acl-tests: New file, based on modules/copy-file-tests.
17644         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
17645         (Depends-on): Add acl-tests.
17646         (configure.ac): Remove checks.
17647         (Makefile.am): Don't create test-sameacls program here any more.
17648
17649 2008-06-01  Bruno Haible  <bruno@clisp.org>
17650
17651         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
17652         * tests/test-sameacls.c: Include progname.h.
17653         (main): Invoke set_program_name. Portability fixes for MacOS X,
17654         Solaris, HP-UX.
17655
17656 2008-06-01  Bruno Haible  <bruno@clisp.org>
17657
17658         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
17659         function.
17660         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
17661
17662 2008-06-01  Bruno Haible  <bruno@clisp.org>
17663
17664         * modules/rpmatch (Depends-on): Add strdup.
17665
17666 2008-06-01  Bruno Haible  <bruno@clisp.org>
17667
17668         * lib/pipe.c: Include unistd-safer.h.
17669         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
17670         * modules/pipe (Depends-on): Add unistd-safer.
17671
17672 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17673
17674         * modules/autobuild (configure.ac): Call AB_INIT.
17675
17676 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17677
17678         * tests/test-getaddrinfo.c: Don't print debug messages by default.
17679         Suggested by Bruno Haible <bruno@clisp.org>.
17680
17681 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17682
17683         * tests/test-base64.c: Cast size_t to unsigned long when invoking
17684         printf.  Use %lu instead of %d.  Reported by Bruno Haible
17685         <bruno@clisp.org>.
17686
17687 2008-05-29  Eric Blake  <ebb9@byu.net>
17688
17689         Prefer new POSIX 200x interfaces over futimesat.
17690         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
17691         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
17692         when available.
17693         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
17694
17695 2008-05-28  Bruno Haible  <bruno@clisp.org>
17696
17697         * modules/stpcpy (License): Change to LGPLv2+.
17698         Requested by David Lutterkort <dlutter@redhat.com>.
17699
17700 2008-05-27  Bruno Haible  <bruno@clisp.org>
17701
17702         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
17703         current mingw.
17704         Reported by Jose E. Marchesi <jemarch@gnu.org>.
17705
17706 2008-05-27  Bruno Haible  <bruno@clisp.org>
17707
17708         * modules/iconv_open (Link): New section, from module 'iconv'.
17709         * modules/striconv (Link): Likewise.
17710         * modules/striconveh (Link): Likewise.
17711         * modules/xstriconv (Link): Likewise.
17712         * modules/unicodeio (Link): Likewise.
17713         * modules/propername (Link): Likewise.
17714         Reported by Jim Meyering.
17715
17716 2008-05-26  Jim Meyering  <meyering@redhat.com>
17717
17718         sha256: do not artificially restrict buffer length to be < 2^32
17719         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
17720         uint32_t to size_t.
17721         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
17722         to match.
17723
17724         avoid unaligned access errors, e.g., on sparc
17725         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
17726         direct access through a possibly-unaligned uint64* pointer.
17727         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
17728         direct access through a possibly-unaligned uint32* pointer.
17729         Prompted by this patch from Tom "spot" Callaway:
17730         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
17731
17732         sha512.c: fix typo in comment
17733         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
17734
17735 2008-05-25  Bruno Haible  <bruno@clisp.org>
17736
17737         * lib/set-mode-acl.c: Renamed from lib/acl.c.
17738         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
17739         (Makefile.am): Update lib_SOURCES.
17740
17741 2008-05-25  Bruno Haible  <bruno@clisp.org>
17742
17743         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
17744
17745 2008-05-25  Jim Meyering  <meyering@redhat.com>
17746
17747         useless-if-before-free: freed expr may have white-space differences
17748         * build-aux/useless-if-before-free: Recognize cases in which the
17749         freed expression differs from the tested one in embedded white
17750         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
17751         $1 was used, so we can't make any regexp shy.  Improved tests now
17752         detect this.
17753
17754         useless-if-before-free: accept white space in the expression.
17755         * build-aux/useless-if-before-free: For now, any white space
17756         in the expression must be identical in the free argument.
17757
17758         useless-if-before-free: efficiency tweak
17759         * build-aux/useless-if-before-free: Make the expression-matching
17760         regexp "shy".
17761         Make the *outer* regexp shy, not the expr-matching one.
17762
17763         update code-in-comment to accept cast of free arg
17764         * build-aux/useless-if-before-free: Update regexp.
17765
17766 2008-05-25  Bruno Haible  <bruno@clisp.org>
17767
17768         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
17769         * modules/copy-file-tests (Files, Makefile.am): Update.
17770         * tests/test-copy-file.c (func_test_copy): Update.
17771
17772 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
17773
17774         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
17775
17776 2008-05-23  Bruno Haible  <bruno@clisp.org>
17777
17778         Improve support for ACLs on OSF/1.
17779         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
17780         Remove fallback for unknown flavors of ACLs.
17781
17782 2008-05-22  Bruno Haible  <bruno@clisp.org>
17783
17784         Add support for ACLs on OSF/1.
17785         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
17786         replacements.
17787         (acl_free_text): New macro fallback.
17788         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
17789         acl_free.
17790         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
17791         acl_free_text function. Require AC_C_INLINE.
17792
17793 2008-05-22  Bruno Haible  <bruno@clisp.org>
17794
17795         Make copy_acl work on MacOS X 10.5.
17796         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
17797         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
17798         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
17799         If MODE_INSIDE_ACL, don't assume that every system has the same text
17800         representation for ACLs as FreeBSD.
17801         * lib/copy-acl.c (copy_acl): Add support for platforms with
17802         !MODE_INSIDE_ACL.
17803         * lib/file-has-acl.c (file_has_acl): Likewise.
17804         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
17805         FreeBSD, MacOS X, or IRIX, respectively.
17806
17807 2008-05-22  Bruno Haible  <bruno@clisp.org>
17808
17809         * lib/acl.h: Don't include <sys/acl.h>.
17810         (GETACLCNT): Move fallback to lib/acl-internal.h.
17811         * lib/acl-internal.h: Include <sys/acl.h> here.
17812         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
17813
17814 2008-05-22  Bruno Haible  <bruno@clisp.org>
17815
17816         Split off copy_acl function to separate file.
17817         * lib/copy-acl.c: New file, extracted from lib/acl.c.
17818         * lib/acl.c (copy_acl): Moved function to separate file.
17819         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
17820         * modules/acl (Files): Add lib/copy-acl.c.
17821         (Makefiles.am): Augment lib_SOURCES.
17822
17823 2008-05-22  Bruno Haible  <bruno@clisp.org>
17824
17825         * modules/copy-file-tests: New file.
17826         * tests/test-copy-file.sh: New file.
17827         * tests/test-copy-file.c: New file.
17828         * tests/test-copy-file-sameacls.c: New file.
17829
17830 2008-05-22  Eric Blake  <ebb9@byu.net>
17831
17832         Avoid gcc warning.
17833         * tests/test-memcmp.c (main): Pass NULL indirectly.
17834
17835 2008-05-21  Bruno Haible  <bruno@clisp.org>
17836
17837         Add reference doc about ACLs.
17838         * doc/acl-resources.txt: New file.
17839         * doc/acl-cygwin.txt: New file.
17840
17841 2008-05-21  Bruno Haible  <bruno@clisp.org>
17842
17843         Avoid one more warning from gcc.
17844         * lib/vasnprintf.c (IF_LINT): Update comments.
17845         (VASNPRINTF): Use it also for the 'prefix' array initializer.
17846
17847 2008-05-21  Jim Meyering  <meyering@redhat.com>
17848
17849         avoid a warning from gcc
17850         * lib/vasnprintf.c (IF_LINT): Define.
17851         (scale10_round_decimal_long_double):
17852         Use it to avoid a "may be used uninitialized" warning.
17853         (scale10_round_decimal_double): Likewise.
17854
17855 2008-05-21  Simon Josefsson  <simon@josefsson.org>
17856
17857         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
17858         declared.
17859
17860 2008-05-20  Bruno Haible  <bruno@clisp.org>
17861
17862         * tests/test-memcmp.c (main): Test also the sign of the result. Test
17863         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
17864
17865 2008-05-20  Simon Josefsson  <simon@josefsson.org>
17866
17867         * modules/memcmp-tests: New file.
17868         * tests/test-memcmp.c: New file.
17869
17870 2008-05-19  Bruno Haible  <bruno@clisp.org>
17871
17872         * modules/propername (Notice, configure.ac): Put quoted "..." into
17873         --keyword option.
17874         * lib/propername.h: Update comments accordingly.
17875         Reported by Eric Blake.
17876
17877 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
17878
17879         * modules/getpass-gnu (Depends-on): Add fseeko.
17880
17881 2008-05-19  Simon Josefsson  <simon@josefsson.org>
17882
17883         * modules/base64-tests: New file.
17884
17885 2008-05-19  Bo Borgerson <gigabo@gmail.com>
17886
17887         * lib/base64.c (base64_decode_ctx): If a decode context structure
17888         was passed in use it to ignore newlines.  If a context structure
17889         was _not_ passed in, continue to treat newlines as garbage (this
17890         is the historical behavior).  Formerly base64_decode.
17891         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
17892         takes a decode context structure.
17893         * lib/base64.h (base64_decode): Macro for four-argument calls.
17894         (base64_decode_alloc): Likewise.
17895         * lib/base64.c (base64_decode_ctx): If a decode context structure
17896         was passed in use it to ignore newlines.  If a context structure
17897         was _not_ passed in, continue to treat newlines as garbage (this
17898         is the historical behavior).  Formerly base64_decode.
17899         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
17900         takes a decode context structure.
17901         * lib/base64.h (base64_decode): Macro for four-argument calls.
17902         (base64_decode_alloc): Likewise.
17903
17904 2008-05-19  Jim Meyering  <meyering@redhat.com>
17905
17906         avoid a warning from gcc
17907         * lib/trim.c (IF_LINT): Define.
17908         (trim2): Use it to avoid a "may be used uninitialized" warning.
17909
17910         Fix doc typo.
17911         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
17912
17913 2008-05-19  Bruno Haible  <bruno@clisp.org>
17914
17915         * doc/glibc-functions/getpass.texi: Document limits of other
17916         implementations.
17917
17918 2008-05-19  Simon Josefsson  <simon@josefsson.org>
17919             Bruno Haible <bruno@clisp.org>
17920
17921         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
17922
17923 2008-05-18  Bruno Haible  <bruno@clisp.org>
17924
17925         * modules/propername: New file, from GNU gettext.
17926         * lib/propername.h: New file, from GNU gettext.
17927         * lib/propername.c: New file, from GNU gettext.
17928         * MODULES.html.sh (Internationalization functions): Add propername.
17929
17930 2008-05-16  Jim Meyering  <meyering@redhat.com>
17931             Bruno Haible  <bruno@clisp.org>
17932
17933         Avoid some warnings from "gcc -Wshadow".
17934         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
17935
17936 2008-05-15  Eric Blake  <ebb9@byu.net>
17937
17938         Extend previous patch to cygwin 1.7.0.
17939         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
17940         fast implementation in cygwin >= 1.7.0.
17941         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17942         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17943
17944 2008-05-15  Bruno Haible  <bruno@clisp.org>
17945
17946         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
17947         implementation in glibc >= 2.9.
17948         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17949         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17950
17951 2008-05-15  Bruno Haible  <bruno@clisp.org>
17952
17953         * MODULES.html.sh (Internationalization functions): Remove linebreak.
17954         (Unicode string functions): Add unilbrk/*.
17955         Reported by Karl Berry.
17956
17957 2008-05-15  Eric Blake  <ebb9@byu.net>
17958
17959         Fix violation of <stdbool.h> replacement in regex.
17960         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
17961         * lib/regexec.c (re_search_internal): Likewise.
17962         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
17963
17964 2008-05-15  Jim Meyering  <meyering@redhat.com>
17965
17966         avoid distracting test output when git or cvs is not found
17967         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
17968         * tests/test-vc-list-files-git.sh: Likewise.
17969
17970 2008-05-15  Eric Blake  <ebb9@byu.net>
17971
17972         Glibc finally accepted the memmem speedup code, bugzilla #5514.
17973         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
17974         glibc version.
17975         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
17976         * doc/posix-functions/strstr.texi (strstr): Likewise.
17977         * lib/str-two-way.h (MAX): Sychronize with glibc.
17978
17979 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
17980
17981         * lib/regcomp.c (optimize_utf8): Add a note on why we test
17982         opr.ctx_type.
17983         (calc_first): Initialize constraint field.
17984         (duplicate_node_closure): Use it instead of special casing ANCHORS.
17985         Fix grammar.
17986         (duplicate_node): Merge constraint field for all node types.
17987         (calc_eclosure_iter): Look at constraint field for all node types.
17988         * lib/regex_internal.c (create_cd_newstate): Don't look at
17989         opr.ctx_type.
17990
17991 2008-05-14  Bruno Haible  <bruno@clisp.org>
17992
17993         Help GCC to do better code generation.
17994         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
17995         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
17996         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
17997         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
17998         Declare with attribute 'malloc' if supported.
17999
18000 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
18001
18002         use "echo STR|wc -c" rather than unportable "expr length STR"
18003         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
18004         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
18005
18006 2008-05-14  Jim Meyering  <meyering@redhat.com>
18007
18008         use dd ibs=$n count=1 ... rather than less-portable head -c$n
18009         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
18010         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
18011         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
18012         via Collin Lasse.
18013
18014 2008-05-14  Eric Blake  <ebb9@byu.net>
18015
18016         Avoid quadratic growth in gl_LIBSOURCES.
18017         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
18018         Suggested by Bruno Haible.
18019
18020         Test xmemdup0.
18021         * modules/xmemdup0-tests: New file.
18022         * tests/test-xmemdup0.c: Likewise.
18023
18024 2008-05-13  Eric Blake  <ebb9@byu.net>
18025
18026         Split xmemdup0 into its own module.
18027         * modules/xmemdup0: New file.
18028         * lib/xmemdup0.h: Likewise.
18029         * lib/xmemdup0.c: Likewise.
18030         * MODULES.html.sh (Memory management functions): Add xmemdup0.
18031         * lib/xalloc.h (xmemdup0): Remove.
18032         * lib/xmalloc.c (xmemdup0): Likewise.
18033
18034 2008-05-13  Eric Blake  <ebb9@byu.net>
18035             Bruno Haible  <bruno@clisp.org>
18036
18037         Reduce number of forks required during autoconf.
18038         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
18039         and gl_LIBSOURCES_DIR.
18040         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
18041         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
18042         m4_syscmd per file.
18043         <m4_foreach_w>: Move...
18044         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
18045
18046 2008-05-13  Eric Blake  <ebb9@byu.net>
18047
18048         * gnulib-tool: Fix various comment typos.
18049
18050 2008-05-12  Bruno Haible  <bruno@clisp.org>
18051
18052         Tailor the linebreaking algorithm.
18053         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
18054
18055 2008-05-12  Bruno Haible  <bruno@clisp.org>
18056
18057         Update to Unicode 5.0.0.
18058         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
18059         LBP_JV, LBP_JT. Redistribute values.
18060         (unilbrk_table): Change size.
18061         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
18062         Unicode TR#14 rev. 22.
18063         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
18064         LBP_JV, LBP_JT. Redistribute values.
18065         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
18066         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
18067         Update.
18068         * lib/unilbrk/lbrkprop1.h: Regenerated.
18069         * lib/unilbrk/lbrkprop2.h: Regenerated.
18070         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
18071         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
18072         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
18073         Likewise.
18074         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
18075         Likewise.
18076         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
18077         result.
18078         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
18079         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
18080         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
18081         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
18082         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
18083         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
18084
18085 2008-05-11  Bruno Haible  <bruno@clisp.org>
18086
18087         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
18088
18089 2008-05-11  Bruno Haible  <bruno@clisp.org>
18090
18091         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
18092         * modules/unilbrk/gen-lbrk: New file.
18093
18094 2008-05-11  Bruno Haible  <bruno@clisp.org>
18095
18096         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
18097         * m4/sha512.m4 (gl_SHA512): Likewise.
18098
18099 2008-05-11  Jim Meyering  <meyering@redhat.com>
18100
18101         New modules: crypto/sha256, crypto/sha512 (from coreutils)
18102         * modules/crypto/sha256: New file.
18103         * modules/crypto/sha512: Likewise.
18104         * lib/sha256.c: Likewise.
18105         * lib/sha256.h: Likewise.
18106         * lib/sha512.c: Likewise.
18107         * lib/sha512.h: Likewise.
18108         * lib/u64.h: Likewise.
18109         * m4/sha256.m4: Likewise.
18110         * m4/sha512.m4: Likewise.
18111         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
18112
18113 2008-05-10  Bruno Haible  <bruno@clisp.org>
18114
18115         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
18116         (Input/Output <stdio.h>): Add xprintf.
18117         (Signal handling <signal.h>): Add strsignal.
18118         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
18119         (Core language properties): Add func.
18120         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
18121         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
18122         strings.
18123         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
18124         (Input/output): New section.
18125         (File system functions): Add openat-die, stat-macros.
18126         (Networking functions): Add sockets.
18127         (Unicode string functions): Add unictype/*.
18128         (Support for building libraries and executables): Add gperf.
18129         (Support for building documentation): Add agpl-3.0.
18130         (Misc): Add nocrash.
18131
18132 2008-05-10  Bruno Haible  <bruno@clisp.org>
18133
18134         * modules/unictype/gen-ctype: New file.
18135
18136 2008-05-10  Jim Meyering  <meyering@redhat.com>
18137
18138         Make chdir-safer.c more efficient on a system with no symlinks.
18139         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
18140         also if ELOOP is zero.  Suggested by Bruno Haible.
18141
18142         Make chdir-safer.c slightly safer.
18143         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
18144         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
18145
18146         Avoid compile failure on systems without ELOOP (like mingw).
18147         * lib/chdir-safer.c (ELOOP): Define if not already defined.
18148         Reported by Bruno Haible.
18149
18150 2008-05-10  Bruno Haible  <bruno@clisp.org>
18151
18152         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
18153         (is_utf8_encoding): Use a case-insensitive comparison.
18154         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
18155         streq.
18156
18157 2008-05-10  Bruno Haible  <bruno@clisp.org>
18158
18159         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
18160         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
18161         * lib/unilbrk/ulc-common.h (iconv_string_length,
18162         iconv_string_keeping_offsets): Remove declarations.
18163         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
18164         Don't include <iconv.h>, streq.h, xsize.h.
18165         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
18166         conversion.
18167         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
18168         <iconv.h>, streq.h, xsize.h.
18169         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
18170         conversion.
18171         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
18172         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
18173         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
18174         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
18175
18176 2008-05-10  Bruno Haible  <bruno@clisp.org>
18177
18178         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
18179         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
18180
18181         * modules/unilbrk/u32-width-linebreaks-tests: New file.
18182         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
18183
18184         * modules/unilbrk/u16-width-linebreaks-tests: New file.
18185         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
18186
18187         * modules/unilbrk/u8-width-linebreaks-tests: New file.
18188         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
18189
18190         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
18191         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
18192
18193         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
18194         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
18195
18196         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
18197         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
18198
18199         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
18200         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
18201
18202 2008-05-10  Bruno Haible  <bruno@clisp.org>
18203
18204         Split up 'linebreak' module.
18205         * lib/unilbrk.h: New file, based on lib/linebreak.h.
18206         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
18207         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
18208         modifications.
18209         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
18210         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
18211         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
18212         lib/linebreak.c.
18213         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
18214         lib/linebreak.c.
18215         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
18216         lib/linebreak.c.
18217         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
18218         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
18219         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
18220         lib/linebreak.c.
18221         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
18222         lib/linebreak.c.
18223         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
18224         lib/linebreak.c.
18225         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
18226         lib/linebreak.c.
18227         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
18228         lib/linebreak.c.
18229         * modules/unilbrk/base: New file.
18230         * modules/unilbrk/tables: New file.
18231         * modules/unilbrk/u8-possible-linebreaks: New file.
18232         * modules/unilbrk/u16-possible-linebreaks: New file.
18233         * modules/unilbrk/u32-possible-linebreaks: New file.
18234         * modules/unilbrk/ulc-common: New file.
18235         * modules/unilbrk/ulc-possible-linebreaks: New file.
18236         * modules/unilbrk/u8-width-linebreaks: New file.
18237         * modules/unilbrk/u16-width-linebreaks: New file.
18238         * modules/unilbrk/u32-width-linebreaks: New file.
18239         * modules/unilbrk/ulc-width-linebreaks: New file.
18240         * lib/linebreak.h: Remove file.
18241         * lib/linebreak.c: Remove file.
18242         * m4/linebreak.m4: Remove file.
18243         * modules/linebreak: Remove file.
18244         * NEWS: Mention the changes.
18245
18246 2008-05-09  Eric Blake  <ebb9@byu.net>
18247
18248         Add xmemdup0.
18249         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
18250         implementation.
18251         * lib/xmalloc.c (xmemdup0): New C implementation.
18252
18253 2008-05-08  Bruno Haible  <bruno@clisp.org>
18254
18255         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
18256
18257 2008-05-07  Eric Blake  <ebb9@byu.net>
18258
18259         Support cross-compilation of <wctype.h>.
18260         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
18261         AC_CACHE_CHECK.
18262
18263 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
18264
18265         * build-aux/vc-list-files: Add support for bzr.
18266
18267 2008-05-03  Jim Meyering  <meyering@redhat.com>
18268
18269         avoid failed assertion with tight malloc
18270         * tests/test-getndelim2.c: Correct an off-by-one assertion.
18271
18272 2008-05-03  Simon Josefsson  <simon@josefsson.org>
18273
18274         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
18275         are needed from arpa/inet.h.
18276         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
18277         Reported by Bruno Haible.
18278
18279 2008-05-02  Jim Meyering  <meyering@redhat.com>
18280
18281         avoid compilation error on FreeBSD 6
18282         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
18283
18284 2008-05-01  Jim Meyering  <meyering@redhat.com>
18285
18286         useless-if-before-free: correct --help's exit status description
18287         * build-aux/useless-if-before-free (usage): Like grep, exit 0
18288         for one or more matches, etc.  Reported by Bruno Haible.
18289
18290         vc-list-files: make the stand-alone gnulib test work
18291         * modules/vc-list-files-tests (configure.ac):
18292         Define and AC_SUBST abs_aux_dir.
18293         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
18294         $(abs_top_srcdir) to each script and having each of them
18295         duplicate the work of setting PATH, set PATH here, using
18296         the new variable, abs_aux_dir instead.
18297         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
18298         * tests/test-vc-list-files-git.sh: Likewise.
18299         Reported by Bruno Haible.
18300
18301 2008-05-01  Bruno Haible  <bruno@clisp.org>
18302
18303         * lib/getndelim2.c (getndelim2): Fix newsize computation during
18304         reallocation. Rename 'done' to 'found_delimiter'.
18305
18306 2008-05-01  Jim Meyering  <meyering@redhat.com>
18307
18308         vc-list-files: accommodate /bin/sh like the one from Solaris 10
18309         * build-aux/vc-list-files: Use `...`, not $(...).
18310
18311 2008-04-30  Jim Meyering  <meyering@redhat.com>
18312
18313         add tests for vc-list-files
18314         * modules/vc-list-files-tests: New module.
18315         * tests/test-vc-list-files-cvs.sh: New file.
18316         * tests/test-vc-list-files-git.sh: New file.
18317
18318         avoid a warning from gcc
18319         * lib/getndelim2.c (IF_LINT): Define.
18320         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
18321
18322         vc-list-files: work properly with build-aux/cvsu, too
18323         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
18324         to all cvs-based clauses.
18325
18326         vc-list-files: work properly in the CVS+awk case, too
18327         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
18328
18329         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
18330         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
18331         take more than one file argument, so .  Add quotes, just in case $dir
18332         ever contains a shell meta-character.  Prompted by Soren Hansen in
18333         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
18334
18335 2008-04-29  Eric Blake  <ebb9@byu.net>
18336
18337         Optimize getndelim2 to use block operations when possible.
18338         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
18339         freadseek, and memchr2.
18340         * lib/getndelim2.c (getndelim2): Use them for block reads.
18341
18342 2008-04-29  Bruno Haible  <bruno@clisp.org>
18343
18344         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
18345         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
18346         * modules/inet_ntop (Depends-on): Add extensions.
18347         * modules/inet_pton (Depends-on): Likewise.
18348         Reported by Simon Josefsson.
18349
18350 2008-04-29  Jim Meyering  <meyering@redhat.com>
18351
18352         When the is more than one match in a block, match all of them.
18353         * build-aux/useless-if-before-free: Iterate through each block
18354         until there are no more matches.
18355
18356         Fix broken useless-if-before-free script.
18357         * build-aux/useless-if-before-free: Fix typo: missing "?" after
18358         the expression to match cast of argument to free-like function.
18359
18360 2008-04-29  Eric Blake  <ebb9@byu.net>
18361
18362         Use new header.
18363         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
18364
18365 2008-04-29  Jim Meyering  <meyering@redhat.com>
18366
18367         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
18368         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
18369         by gnulib to exist and to declare e.g., inet_ntop.
18370         Don't include "inet_ntop.h", now removed.
18371
18372         * m4/arpa_inet_h.m4: Remove trailing blanks.
18373
18374 2008-04-29  Eric Blake  <ebb9@byu.net>
18375
18376         Silence valgrind on safe reads beyond potential array bounds.
18377         * lib/rawmemchr.valgrind: New file.
18378         * lib/strchrnul.valgrind: Likewise.
18379         * modules/rawmemchr (Files): Distribute new file.
18380         * modules/strchrnul (Files): Likewise.
18381         Suggested by Bruno Haible.
18382
18383 2008-04-29  Bruno Haible  <bruno@clisp.org>
18384
18385         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
18386         (inet_ntop, inet_pton): Change portability warning's wording.
18387         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
18388         Invoke gl_CHECK_NEXT_HEADERS.
18389         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
18390         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
18391         set ARPA_INET_H.
18392         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
18393         * modules/arpa_inet (Description): No longer only for systems that
18394         lack it.
18395         (Depends-on): Add include_next.
18396         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
18397         HAVE_ARPA_INET_H.
18398
18399 2008-04-29  Jim Meyering  <meyering@redhat.com>
18400
18401         * modules/mkdir (License): Re-license as LGPLv2+.
18402
18403 2008-04-29  Bruno Haible  <bruno@clisp.org>
18404
18405         * modules/rawmemchr (Maintainer): Set to Eric.
18406         * modules/strchrnul (Maintainer): Likewise.
18407
18408 2008-04-29  Simon Josefsson  <simon@josefsson.org>
18409
18410         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
18411         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
18412
18413         * modules/arpa_inet (arpa/inet.h): Use them.
18414
18415 2008-04-28  Eric Blake  <ebb9@byu.net>
18416
18417         Test getndelim2.
18418         * modules/getndelim2-tests: New file.
18419         * tests/test-getndelim2.c: Likewise.
18420         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
18421         stream.
18422         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
18423
18424         * MODULES.html.sh: Document new module.
18425
18426 2008-04-20  Bruno Haible  <bruno@clisp.org>
18427
18428         * lib/c-stack.c (die): Use raise.
18429         * modules/c-stack (Depends-on): Add raise.
18430
18431 2008-04-28  Bruno Haible  <bruno@clisp.org>
18432
18433         Expect rpmatch to be declared.
18434         * lib/yesno.c (rpmatch): Remove declaration.
18435
18436         Declare rpmatch.
18437         * lib/stdlib.in.h (rpmatch): New declaration.
18438         * lib/rpmatch.c: Include <stdlib.h> first.
18439         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
18440         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
18441         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
18442         HAVE_RPMATCH.
18443         * modules/rpmatch (Depends-on): Add stdlib, extensions.
18444         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
18445         (Include): Set to <stdlib.h>.
18446         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
18447         HAVE_RPMATCH.
18448         * NEWS: Document the change.
18449
18450 2008-04-28  Bruno Haible  <bruno@clisp.org>
18451
18452         Change rpmatch to use nl_langinfo when appropriate.
18453         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
18454         (N_): New macro.
18455         (localized_pattern): New function/macro.
18456         (try): Remove match, nomatch arguments. Copy the pattern into safe
18457         memory before caching it.
18458         (rpmatch): Use localized_pattern. Add translator comments.
18459         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
18460         Suggested by Eric Blake.
18461         * modules/rpmatch (Depends-on): Add stdbool.
18462
18463 2008-04-28  Eric Blake  <ebb9@byu.net>
18464
18465         Add rawmemchr module, matching glibc.
18466         * modules/string (Makefile.am): New indicator.
18467         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
18468         * lib/string.in.h (rawmemchr): Declare when appropriate.
18469         * modules/rawmemchr: New file.
18470         * m4/rawmemchr.m4: Likewise.
18471         * lib/rawmemchr.c: Likewise.
18472         * modules/rawmemchr-tests: Likewise.
18473         * tests/test-rawmemchr.c: Likewise.
18474         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
18475         module.
18476         * modules/strchrnul (Depends-on): Add rawmemchr.
18477         * lib/strchrnul.c (strchrnul): Optimize a corner case.
18478
18479         Whitespace cleanup.
18480         * tests/test-strchrnul.c: Reindent.
18481         * lib/strchrnul.c: Likewise.
18482
18483         Optimize and test strchrnul.
18484         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
18485         * modules/strchrnul-tests: New file.
18486         * tests/test-strchrnul.c: Likewise.
18487
18488         Remove intprops dependency.
18489         * modules/memchr (Depends-on): Remove intprops.
18490         * modules/memrchr (Depends-on): Likewise.
18491         * modules/memchr2 (Depends-on): Likewise.
18492         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
18493         * lib/memrchr.c (__memrchr): Likewise.
18494         * lib/memrchr2.c (memchr2): Likewise.
18495         Reported by Simon Josefsson.
18496
18497 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18498
18499         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
18500         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18501
18502 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18503
18504         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
18505
18506         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
18507
18508         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
18509
18510         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
18511         declarations.
18512         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
18513
18514         * m4/inet_pton.m4: Don't check for header files.
18515
18516         * m4/inet_ntop.m4: Don't check for header files.
18517
18518 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18519
18520         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
18521         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
18522         trigger for cygwin).
18523         Reported by Bruno Haible  <bruno@clisp.org>.
18524
18525 2008-04-28  Bruno Haible  <bruno@clisp.org>
18526
18527         * doc/posix-functions/strdup.texi: Mention mingw problem.
18528
18529 2008-04-27  Bruno Haible  <bruno@clisp.org>
18530
18531         * modules/stat-time-tests (Depends-on): Add sleep.
18532         * tests/test-stat-time.c (force_unlink): New function.
18533         (cleanup): Use it.
18534         (test_mtime): Remove the ctime related tests.
18535         (test_ctime): New function, containing the ctime related tests.
18536         (main): Call test_ctime, except on native Windows platforms.
18537
18538 2008-04-27  Bruno Haible  <bruno@clisp.org>
18539
18540         * lib/rpmatch.c (rpmatch): Add some comments.
18541         Reported by James Youngman <jay@gnu.org>.
18542
18543 2008-04-27  Bruno Haible  <bruno@clisp.org>
18544
18545         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
18546         quiet NaNs.
18547
18548 2008-04-27  Bruno Haible  <bruno@clisp.org>
18549
18550         Make test-yesno.sh work on mingw.
18551         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
18552         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
18553         (main): Set stdin to binary mode.
18554         * modules/yesno-tests (Depends-on): Add binary-io.
18555
18556 2008-04-27  Bruno Haible  <bruno@clisp.org>
18557
18558         Fix 'isfinite' on x86, x86_64, ia64 platforms.
18559         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
18560         argument that lie outside the IEEE 854 domain.
18561         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
18562         (gl_ISFINITE): Use it.
18563         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
18564
18565 2008-04-27  Bruno Haible  <bruno@clisp.org>
18566
18567         Allow local renaming in config.h.
18568         * lib/memrchr.c (memrchr): Don't undefine outside libc.
18569
18570 2008-04-27  Bruno Haible  <bruno@clisp.org>
18571
18572         * lib/memchr.c (__memchr): Change type of 'i'.
18573         * lib/memchr2.c (memchr2): Likewise.
18574
18575 2008-04-26  Eric Blake  <ebb9@byu.net>
18576         and Bruno Haible  <bruno@clisp.org>
18577
18578         Optimize and test memrchr.
18579         * modules/memrchr (Depends-on): Add intprops.
18580         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
18581         * modules/memrchr-tests: New file.
18582         * tests/test-memrchr.c: New file.
18583
18584 2008-04-26  Bruno Haible  <bruno@clisp.org>
18585
18586         Add tentative support for DragonFly BSD.
18587         * lib/stdio-impl.h: Add macros for DragonFly BSD.
18588         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
18589         fp.
18590         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
18591         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
18592         * lib/fpurge.c (fpurge): Likewise.
18593         * lib/freadable.c (freaadable): Likewise.
18594         * lib/freadahead.c (freadahead): Likewise.
18595         * lib/freading.c (freading): Likewise.
18596         * lib/freadptr.c (freadptr): Likewise.
18597         * lib/freadseek.c (freadptrinc): Likewise.
18598         * lib/fseeko.c (fseeko): Likewise.
18599         * lib/fseterr.c (fseterr): Likewise.
18600         * lib/fwritable.c (fwritable): Likewise.
18601         * lib/fwriting.c (fwriting): Likewise.
18602
18603 2008-04-26  Bruno Haible  <bruno@clisp.org>
18604
18605         * lib/stdio-impl.h: New file.
18606         * lib/fbufmode.c: Include stdio-impl.h.
18607         (fbufmode): Use fp_, remove redundant #defines.
18608         * lib/fflush.c: Include stdio-impl.h.
18609         (clear_ungetc_buffer): Remove redundant #defines.
18610         * lib/fpurge.c: Include stdio-impl.h.
18611         (fpurge): Remove redundant #defines.
18612         * lib/freadable.c: Include stdio-impl.h.
18613         (freadable): Remove redundant #defines.
18614         * lib/freadahead.c: Include stdio-impl.h.
18615         (freadahead): Remove redundant #defines.
18616         * lib/freading.c: Include stdio-impl.h.
18617         (freading): Remove redundant #defines.
18618         * lib/freadptr.c: Include stdio-impl.h.
18619         (freadptr): Remove redundant #defines.
18620         * lib/freadseek.c: Include stdio-impl.h.
18621         (freadptrinc): Remove redundant #defines.
18622         * lib/fseeko.c: Include stdio-impl.h.
18623         (rpl_fseeko): Remove redundant #defines.
18624         * lib/fseterr.c: Include stdio-impl.h.
18625         (fseterr): Remove redundant #defines.
18626         * lib/fwritable.c: Include stdio-impl.h.
18627         (fwritable: Remove redundant #defines.
18628         * lib/fwriting.c: Include stdio-impl.h.
18629         (fwriting): Remove redundant #defines.
18630         * modules/fbufmode (Files): Add lib/stdio-impl.h.
18631         * modules/fflush (Files): Likewise.
18632         * modules/fpurge (Files): Likewise.
18633         * modules/freadable (Files): Likewise.
18634         * modules/freadahead (Files): Likewise.
18635         * modules/freading (Files): Likewise.
18636         * modules/freadptr (Files): Likewise.
18637         * modules/freadseek (Files): Likewise.
18638         * modules/fseeko (Files): Likewise.
18639         * modules/fseterr (Files): Likewise.
18640         * modules/fwritable (Files): Likewise.
18641         * modules/fwriting (Files): Likewise.
18642
18643 2008-04-26  Bruno Haible  <bruno@clisp.org>
18644
18645         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
18646         restore_seek_optimization, update_fpos_cache): New functions, extracted
18647         from rpl_fflush.
18648         (rpl_fflush): Use them.
18649         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
18650         (gl_REPLACE_FFLUSH): Use it.
18651
18652 2008-04-26  Bruno Haible  <bruno@clisp.org>
18653
18654         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
18655         on Solaris.
18656         * tests/test-xstrtoimax.sh: Likewise.
18657         * tests/test-xstrtoumax.sh: Likewise.
18658         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18659
18660 2008-04-26  Bruno Haible  <bruno@clisp.org>
18661
18662         * modules/memchr-tests: New file.
18663         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
18664
18665 2008-04-26  Eric Blake  <ebb9@byu.net>
18666             Bruno Haible  <bruno@clisp.org>
18667
18668         * lib/memchr.c: Include intprops.h.
18669         (__memchr): Optimize parallel detection of matching bytes. Rename local
18670         variables. Add explanatory comments.
18671
18672 2008-04-26  Bruno Haible  <bruno@clisp.org>
18673
18674         Fix module 'memchr', broken since 2000-10-28.
18675         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
18676
18677 2008-04-26  Bruno Haible  <bruno@clisp.org>
18678
18679         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
18680         comments.
18681
18682 2008-04-25  Eric Blake  <ebb9@byu.net>
18683
18684         Use native fstatat on cygwin 1.7.0.
18685         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
18686         first.
18687
18688 2008-04-23  Eric Blake  <ebb9@byu.net>
18689
18690         Improve memchr2 performance.
18691         * lib/memchr2.c (memchr2): Further optimize parallel detection of
18692         NUL bytes.
18693         * modules/memchr2 (Depends-on): Use intprops.h.
18694
18695 2008-04-23  Simon Josefsson  <simon@josefsson.org>
18696
18697         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
18698         an inline function instead of a CPP macro.  Patch by Ben Pfaff
18699         <blp@cs.stanford.edu>.
18700
18701 2008-04-23  Simon Josefsson  <simon@josefsson.org>
18702
18703         * lib/arpa_inet.in.h: New file.
18704
18705         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
18706         (Makefile.am): Sed in substitute header file.
18707
18708         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
18709         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
18710
18711         * modules/inet_ntop (configure.ac): Use
18712         gl_ARPA_INET_MODULE_INDICATOR.
18713
18714         * modules/inet_pton (configure.ac): Use
18715         gl_ARPA_INET_MODULE_INDICATOR.
18716
18717 2008-04-22  Jim Meyering  <meyering@redhat.com>
18718
18719         * modules/verify (License): Re-license as LGPLv2+.
18720
18721 2008-04-22  Simon Josefsson  <simon@josefsson.org>
18722
18723         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
18724         parameter to void* as per POSIX standard (MinGW uses char*).
18725
18726 2008-04-21  Bruno Haible  <bruno@clisp.org>
18727
18728         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
18729         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
18730         Define to replacements if REPLACE_ISWCNTRL is 1.
18731         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
18732         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
18733         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
18734         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
18735         what it fixes.
18736         * doc/posix-functions/iswalpha.texi: Likewise.
18737         * doc/posix-functions/iswblank.texi: Likewise.
18738         * doc/posix-functions/iswcntrl.texi: Likewise.
18739         * doc/posix-functions/iswdigit.texi: Likewise.
18740         * doc/posix-functions/iswgraph.texi: Likewise.
18741         * doc/posix-functions/iswlower.texi: Likewise.
18742         * doc/posix-functions/iswprint.texi: Likewise.
18743         * doc/posix-functions/iswpunct.texi: Likewise.
18744         * doc/posix-functions/iswspace.texi: Likewise.
18745         * doc/posix-functions/iswupper.texi: Likewise.
18746         * doc/posix-functions/iswxdigit.texi: Likewise.
18747         Reported by Alain Guibert.
18748
18749 2008-04-21  Bruno Haible  <bruno@clisp.org>
18750
18751         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
18752         Patch by Alain Guibert.
18753
18754 2008-04-21  Bruno Haible  <bruno@clisp.org>
18755
18756         Fix test failures on mingw.
18757         * tests/test-xstrtol.c (print_no_progname): New function.
18758         (main): Install it in error_print_progname hook.
18759         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
18760         * tests/test-xstrtoimax.sh: Likewise.
18761         * tests/test-xstrtoumax.sh: Likewise.
18762
18763 2008-04-21  Bruno Haible  <bruno@clisp.org>
18764
18765         Fix test failure on mingw.
18766         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
18767
18768 2008-04-21  Bruno Haible  <bruno@clisp.org>
18769
18770         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
18771         Actually assign a value.
18772
18773 2008-04-20  Bruno Haible  <bruno@clisp.org>
18774
18775         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
18776         take 2.
18777         * lib/canonicalize.c (canonicalize_file_name): Elide if the
18778         'canonicalize-lgpl' module is also used.
18779         * lib/canonicalize-lgpl.c: Undo last change.
18780         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
18781
18782 2008-04-20  Bruno Haible  <bruno@clisp.org>
18783
18784         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
18785         config.h. Provide _mkdir based fallback for mingw.
18786         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
18787         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
18788         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
18789         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
18790         rather than defining mkdir in config.h.
18791         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
18792         (gl_SYS_STAT_H_DEFAULTS): New macro.
18793         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
18794         HAVE_IO_H any more.
18795         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
18796         HAVE_DECL_MKDIR and HAVE_IO_H.
18797
18798 2008-04-20  Bruno Haible  <bruno@clisp.org>
18799
18800         * lib/isapipe.c: Port to native Windows platforms.
18801
18802 2008-04-20  Bruno Haible  <bruno@clisp.org>
18803
18804         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
18805
18806 2008-04-21  Eric Blake  <ebb9@byu.net>
18807
18808         Work around preprocessors that don't handle UINTMAX_MAX.
18809         * lib/memchr2.c (memchr2): Avoid embedded #if.
18810         Reported by Alain Guibert, fix suggested by Bruno Haible.
18811
18812 2008-04-21  Simon Josefsson  <simon@josefsson.org>
18813
18814         * doc/posix-functions/strftime.texi (strftime): Explain better
18815         Windows incompatibility.  Suggested by Micah Cowan
18816         <micah@cowan.name>.
18817
18818 2008-04-20  Bruno Haible  <bruno@clisp.org>
18819
18820         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
18821         unistr/u8-mblen.
18822
18823 2008-04-20  Bruno Haible  <bruno@clisp.org>
18824
18825         Fix test failure on platforms with non-GNU iconv.
18826         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
18827         (U_TO_U8): Use it, rather than u16_to_u8.
18828         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
18829         units at the end of the input string.
18830         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
18831
18832 2008-04-20  Bruno Haible  <bruno@clisp.org>
18833
18834         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
18835         when the resulting length is 0.
18836         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
18837
18838 2008-04-20  Bruno Haible  <bruno@clisp.org>
18839
18840         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
18841         works.
18842         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
18843
18844 2008-04-20  Bruno Haible  <bruno@clisp.org>
18845
18846         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
18847         * modules/tsearch-tests (configure.ac): Test for initstate function.
18848
18849 2008-04-20  Bruno Haible  <bruno@clisp.org>
18850
18851         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
18852         for nlink_t if missing.
18853         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
18854
18855 2008-04-19  Bruno Haible  <bruno@clisp.org>
18856
18857         Work around snprintf bug on Linux libc5.
18858         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
18859         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
18860         gl_SNPRINTF_SIZE1.
18861         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
18862         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
18863         that test failed.
18864         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
18865         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
18866         * modules/snprintf (Files): Add m4/printf.m4.
18867         * modules/vsnprintf (Files): Likewise.
18868         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
18869         * doc/posix-functions/vsnprintf.texi: Likewise.
18870
18871 2008-04-19  Bruno Haible  <bruno@clisp.org>
18872
18873         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
18874         from 0.0058 to less than 10^-7.
18875
18876 2008-04-19  Bruno Haible  <bruno@clisp.org>
18877
18878         Fix rounding when a precision is given.
18879         * lib/vasnprintf.c (is_borderline): New function.
18880         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
18881         9...9x.
18882         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
18883         %e, %g.
18884         * tests/test-vasprintf-posix.c (test_function): Likewise.
18885         * tests/test-snprintf-posix.h (test_function): Likewise.
18886         * tests/test-sprintf-posix.h (test_function): Likewise.
18887         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
18888         * tests/test-printf-posix.h (test_function): Likewise.
18889         * tests/test-printf-posix.output: Update.
18890         Reported by John Darrington <john@darrington.wattle.id.au> via
18891         Ben Pfaff <blp@cs.stanford.edu>.
18892
18893 2008-04-18  Simon Josefsson  <simon@josefsson.org>
18894
18895         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
18896         Suggested by Bruno Haible <bruno@clisp.org>.
18897
18898 2008-04-17  Bruno Haible  <bruno@clisp.org>
18899
18900         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
18901         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
18902         implementation.
18903         Patch by Bruce Merry <bmerry@gmail.com>.
18904
18905 2008-04-17  Simon Josefsson  <simon@josefsson.org>
18906
18907         * doc/posix-functions/strftime.texi (strftime): Mention that %e
18908         doesn't work under Windows.
18909
18910 2008-04-16  Bruno Haible  <bruno@clisp.org>
18911
18912         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
18913         New macros.
18914         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
18915         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
18916         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
18917         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
18918         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
18919         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
18920         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
18921         macros.
18922         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
18923         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
18924         Northern Sotho, Uighur.
18925
18926 2008-04-16  Bruno Haible  <bruno@clisp.org>
18927
18928         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
18929         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
18930         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
18931         Reported by Daniel Bergström <daniel@octocode.com>.
18932
18933 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
18934             Bruno Haible  <bruno@clisp.org>
18935
18936         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
18937         function.
18938         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
18939         New functions, mostly extracted from gl_locale_name_default.
18940         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
18941
18942 2008-04-16  Eric Blake  <ebb9@byu.net>
18943
18944         Adjust strtod detection to catch glibc 2.7 bug.
18945         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
18946         Reported by John Gatewood Ham.
18947
18948 2008-04-16  Bruno Haible  <bruno@clisp.org>
18949
18950         Add tentative support for Linux libc5.
18951         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
18952         * lib/fpurge.c (fpurge): Likewise.
18953         * lib/freadable.c (freadable): Likewise.
18954         * lib/freadahead.c (freadahead): Likewise.
18955         * lib/freading.c (freading): Likewise.
18956         * lib/freadptr.c (freadptr): Likewise.
18957         * lib/freadseek.c (freadptrinc): Likewise.
18958         * lib/fseeko.c (rpl_fseeko): Likewise.
18959         * lib/fseterr.c (fseterr): Likewise.
18960         * lib/fwritable.c (fwritable): Likewise.
18961         * lib/fwriting.c (fwriting): Likewise.
18962         Reported by Alain Guibert <alguibert+bts@free.fr>.
18963
18964 2008-04-15  Bruno Haible  <bruno@clisp.org>
18965
18966         * modules/mathl (configure.ac): Define module indicator.
18967
18968 2008-04-15  Bruno Haible  <bruno@clisp.org>
18969
18970         * lib/logl.c (logl): Remove unused variables.
18971
18972 2008-04-15  Bruno Haible  <bruno@clisp.org>
18973
18974         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
18975         fails.
18976
18977 2008-04-15  Bruno Haible  <bruno@clisp.org>
18978
18979         * lib/trim.c (trim2): Fix argument of isspace() macro.
18980
18981 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
18982
18983         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
18984         to 0.
18985         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
18986
18987 2008-04-14  Bruno Haible  <bruno@clisp.org>
18988
18989         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
18990         AC_LANG_PROGRAM argument.
18991         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
18992         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
18993         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
18994         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
18995         * m4/math_h.m4 (gl_MATH_H): Likewise.
18996         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
18997         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
18998         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
18999         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
19000         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
19001         * m4/regex.m4 (gl_REGEX): Likewise.
19002         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
19003         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
19004         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
19005         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
19006         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
19007         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
19008         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
19009         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
19010
19011 2008-04-14  Jim Meyering  <meyering@redhat.com>
19012
19013         test-strtod: fix typos: s/abs/fabs/
19014         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
19015
19016 2008-04-13  Bruno Haible  <bruno@clisp.org>
19017
19018         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
19019         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
19020         module is also used and while not building the reloc-wrapper.
19021
19022 2008-04-13  Bruno Haible  <bruno@clisp.org>
19023
19024         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
19025
19026 2008-04-13  Bruno Haible  <bruno@clisp.org>
19027
19028         Fix AIX compilation failure introduced on 2008-04-02.
19029         * tests/test-frexp.c (exp): Undefine before redefining.
19030         * tests/test-frexpl.c (exp): Likewise.
19031
19032 2008-04-13  Bruno Haible  <bruno@clisp.org>
19033
19034         Work around a HP-UX stdio bug.
19035         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
19036         * tests/test-ftello.c (main): Likewise.
19037         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
19038         * doc/posix-functions/ftello.texi: Likewise.
19039
19040 2008-04-13  Bruno Haible  <bruno@clisp.org>
19041
19042         Make test-signbit pass on HP-UX/hppa.
19043         * tests/test-signbit.c (minus_zerol): New variable.
19044         (test_signbitl): Use it.
19045
19046 2008-04-13  Bruno Haible  <bruno@clisp.org>
19047
19048         Make truncl work on OSF/1 4.0.
19049         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
19050         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
19051         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
19052         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
19053         HAVE_DECL_TRUNCL.
19054         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
19055         HAVE_DECL_TRUNCL.
19056         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
19057
19058 2008-04-13  Bruno Haible  <bruno@clisp.org>
19059
19060         * lib/unictype.h: Remove trailing comma from enumeration definitions.
19061
19062 2008-04-13  Bruno Haible  <bruno@clisp.org>
19063
19064         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
19065         expression, so as to avoid HP-UX 11 cc compiler bug.
19066
19067 2008-04-13  Bruno Haible  <bruno@clisp.org>
19068
19069         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
19070
19071 2008-04-13  Bruno Haible  <bruno@clisp.org>
19072
19073         * lib/git-merge-changelog.c: Remove empty declaration outside of
19074         functions.
19075
19076 2008-04-13  Bruno Haible  <bruno@clisp.org>
19077
19078         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
19079
19080 2008-04-13  Bruno Haible  <bruno@clisp.org>
19081
19082         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
19083         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
19084         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
19085         also if it exists but lacks definitions of the SHUT_* macros.
19086         * modules/sys_socket (Description): Update.
19087         Reported by Elbert Pol <e.pol@chello.nl>.
19088
19089 2008-04-13  Bruno Haible  <bruno@clisp.org>
19090
19091         * lib/localcharset.c (OS2): Don't redefine if already defined.
19092         Reported by Elbert Pol <e.pol@chello.nl>.
19093
19094 2008-04-13  Bruno Haible  <bruno@clisp.org>
19095
19096         * lib/binary-io.h [__EMX__]: Include <io.h>.
19097         Reported by Elbert Pol <e.pol@chello.nl>.
19098
19099 2008-04-12  Bruno Haible  <bruno@clisp.org>
19100
19101         * lib/fpucw.h: Enable the definitions also for x86_64.
19102         Needed for NetBSD/x86_64.
19103         Reported by Thomas Klausner <tk@giga.or.at>.
19104
19105 2008-04-12  Bruno Haible  <bruno@clisp.org>
19106
19107         * tests/test-strtod.c: Include isnand.h.
19108         (main): Use isnand instead of isnan.
19109         Reported by Jim Meyering.
19110
19111 2008-04-12  Bruno Haible  <bruno@clisp.org>
19112
19113         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
19114         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
19115
19116 2008-04-12  Jim Meyering  <meyering@redhat.com>
19117
19118         * m4/math_h.m4 (gl_MATH_H): Fix typos.
19119
19120 2008-04-12  Bruno Haible  <bruno@clisp.org>
19121
19122         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
19123         Reported by Elbert Pol <e.pol@chello.nl>.
19124
19125 2008-04-12  Eric Blake  <ebb9@byu.net>
19126
19127         Work around Solaris 10 math.h bug.
19128         * m4/math_h.m4 (gl_MATH_H): Check for bug.
19129         (gl_MATH_H_DEFAULTS): Set up default.
19130         * modules/math (Makefile.am): Replace new indicators.
19131         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
19132         * tests/test-math.c (main): Test this.
19133         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
19134         * doc/posix-headers/math.texi (math.h): Mention bug.
19135         Reported by Nelson H. F. Beebe and Jim Meyering.
19136
19137 2008-04-11  Bruno Haible  <bruno@clisp.org>
19138
19139         Adapt to future versions of Apple GCC.
19140         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
19141         Reported by Peter O'Gorman <peter@pogma.com>.
19142
19143 2008-04-11  Bruno Haible  <bruno@clisp.org>
19144
19145         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
19146
19147 2008-04-11  Bruno Haible  <bruno@clisp.org>
19148
19149         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
19150
19151         * modules/getaddrinfo-tests (Makefile.am): Define
19152         test_getaddrinfo_LDADD.
19153
19154 2008-04-11  Bruno Haible  <bruno@clisp.org>
19155
19156         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
19157         (init): Fix syntax error.
19158         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
19159         is declared.
19160
19161 2008-04-11  Bruno Haible  <bruno@clisp.org>
19162
19163         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
19164         * modules/glob (Depends-on): Add stdbool.
19165
19166 2008-04-11  Bruno Haible  <bruno@clisp.org>
19167
19168         * lib/trim.c: Include <string.h>.
19169
19170 2008-04-11  Eric Blake  <ebb9@byu.net>
19171
19172         Avoid compile failure on OS/2.
19173         * lib/regex_internal.h (internal_function): Disable optimization
19174         on OS/2 (__EMX__), where it caused compiler error.
19175         Reported by Elbert Pol.
19176
19177 2008-04-11  Bruno Haible  <bruno@clisp.org>
19178
19179         Flush the standard error stream before aborting. Needed on mingw.
19180         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
19181         * tests/test-array_list.c (ASSERT): Likewise.
19182         * tests/test-array_oset.c (ASSERT): Likewise.
19183         * tests/test-avltree_list.c (ASSERT): Likewise.
19184         * tests/test-avltree_oset.c (ASSERT): Likewise.
19185         * tests/test-avltreehash_list.c (ASSERT): Likewise.
19186         * tests/test-binary-io.c (ASSERT): Likewise.
19187         * tests/test-byteswap.c (ASSERT): Likewise.
19188         * tests/test-c-ctype.c (ASSERT): Likewise.
19189         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
19190         * tests/test-c-strcasestr.c (ASSERT): Likewise.
19191         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
19192         * tests/test-c-strstr.c (ASSERT): Likewise.
19193         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
19194         * tests/test-canonicalize.c (ASSERT): Likewise.
19195         * tests/test-carray_list.c (ASSERT): Likewise.
19196         * tests/test-ceilf1.c (ASSERT): Likewise.
19197         * tests/test-ceilf2.c (ASSERT): Likewise.
19198         * tests/test-ceill.c (ASSERT): Likewise.
19199         * tests/test-count-one-bits.c (ASSERT): Likewise.
19200         * tests/test-fbufmode.c (ASSERT): Likewise.
19201         * tests/test-fflush2.c (ASSERT): Likewise.
19202         * tests/test-floorf1.c (ASSERT): Likewise.
19203         * tests/test-floorf2.c (ASSERT): Likewise.
19204         * tests/test-floorl.c (ASSERT): Likewise.
19205         * tests/test-fopen.c (ASSERT): Likewise.
19206         * tests/test-fpending.c (ASSERT): Likewise.
19207         * tests/test-fprintf-posix.c (ASSERT): Likewise.
19208         * tests/test-fpurge.c (ASSERT): Likewise.
19209         * tests/test-freadable.c (ASSERT): Likewise.
19210         * tests/test-freadahead.c (ASSERT): Likewise.
19211         * tests/test-freading.c (ASSERT): Likewise.
19212         * tests/test-freadptr.c (ASSERT): Likewise.
19213         * tests/test-freadptr2.c (ASSERT): Likewise.
19214         * tests/test-freadseek.c (ASSERT): Likewise.
19215         * tests/test-freopen.c (ASSERT): Likewise.
19216         * tests/test-frexp.c (ASSERT): Likewise.
19217         * tests/test-frexpl.c (ASSERT): Likewise.
19218         * tests/test-fseek.c (ASSERT): Likewise.
19219         * tests/test-fseeko.c (ASSERT): Likewise.
19220         * tests/test-fstrcmp.c (ASSERT): Likewise.
19221         * tests/test-ftell.c (ASSERT): Likewise.
19222         * tests/test-ftello.c (ASSERT): Likewise.
19223         * tests/test-func.c (ASSERT): Likewise.
19224         * tests/test-fwritable.c (ASSERT): Likewise.
19225         * tests/test-fwriting.c (ASSERT): Likewise.
19226         * tests/test-getdelim.c (ASSERT): Likewise.
19227         * tests/test-getline.c (ASSERT): Likewise.
19228         * tests/test-i-ring.c (ASSERT): Likewise.
19229         * tests/test-iconv-utf.c (ASSERT): Likewise.
19230         * tests/test-iconv.c (ASSERT): Likewise.
19231         * tests/test-isfinite.c (ASSERT): Likewise.
19232         * tests/test-isnand.c (ASSERT): Likewise.
19233         * tests/test-isnanf.c (ASSERT): Likewise.
19234         * tests/test-isnanl.h (ASSERT): Likewise.
19235         * tests/test-ldexpl.c (ASSERT): Likewise.
19236         * tests/test-linked_list.c (ASSERT): Likewise.
19237         * tests/test-linkedhash_list.c (ASSERT): Likewise.
19238         * tests/test-localename.c (ASSERT): Likewise.
19239         * tests/test-lseek.c (ASSERT): Likewise.
19240         * tests/test-mbscasecmp.c (ASSERT): Likewise.
19241         * tests/test-mbscasestr1.c (ASSERT): Likewise.
19242         * tests/test-mbscasestr2.c (ASSERT): Likewise.
19243         * tests/test-mbscasestr3.c (ASSERT): Likewise.
19244         * tests/test-mbscasestr4.c (ASSERT): Likewise.
19245         * tests/test-mbschr.c (ASSERT): Likewise.
19246         * tests/test-mbscspn.c (ASSERT): Likewise.
19247         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
19248         * tests/test-mbspbrk.c (ASSERT): Likewise.
19249         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
19250         * tests/test-mbsrchr.c (ASSERT): Likewise.
19251         * tests/test-mbsspn.c (ASSERT): Likewise.
19252         * tests/test-mbsstr1.c (ASSERT): Likewise.
19253         * tests/test-mbsstr2.c (ASSERT): Likewise.
19254         * tests/test-mbsstr3.c (ASSERT): Likewise.
19255         * tests/test-memchr2.c (ASSERT): Likewise.
19256         * tests/test-memmem.c (ASSERT): Likewise.
19257         * tests/test-open.c (ASSERT): Likewise.
19258         * tests/test-printf-frexp.c (ASSERT): Likewise.
19259         * tests/test-printf-frexpl.c (ASSERT): Likewise.
19260         * tests/test-printf-posix.c (ASSERT): Likewise.
19261         * tests/test-quotearg.c (ASSERT): Likewise.
19262         * tests/test-rbtree_list.c (ASSERT): Likewise.
19263         * tests/test-rbtree_oset.c (ASSERT): Likewise.
19264         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
19265         * tests/test-round1.c (ASSERT): Likewise.
19266         * tests/test-roundf1.c (ASSERT): Likewise.
19267         * tests/test-roundl.c (ASSERT): Likewise.
19268         * tests/test-signbit.c (ASSERT): Likewise.
19269         * tests/test-sleep.c (ASSERT): Likewise.
19270         * tests/test-snprintf-posix.c (ASSERT): Likewise.
19271         * tests/test-snprintf.c (ASSERT): Likewise.
19272         * tests/test-sprintf-posix.c (ASSERT): Likewise.
19273         * tests/test-stat-time.c (ASSERT): Likewise.
19274         * tests/test-strcasestr.c (ASSERT): Likewise.
19275         * tests/test-strerror.c (ASSERT): Likewise.
19276         * tests/test-striconv.c (ASSERT): Likewise.
19277         * tests/test-striconveh.c (ASSERT): Likewise.
19278         * tests/test-striconveha.c (ASSERT): Likewise.
19279         * tests/test-strsignal.c (ASSERT): Likewise.
19280         * tests/test-strstr.c (ASSERT): Likewise.
19281         * tests/test-strtod.c (ASSERT): Likewise.
19282         * tests/test-trunc1.c (ASSERT): Likewise.
19283         * tests/test-trunc2.c (ASSERT): Likewise.
19284         * tests/test-truncf1.c (ASSERT): Likewise.
19285         * tests/test-truncf2.c (ASSERT): Likewise.
19286         * tests/test-truncl.c (ASSERT): Likewise.
19287         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
19288         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
19289         * tests/test-vasnprintf.c (ASSERT): Likewise.
19290         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
19291         * tests/test-vasprintf.c (ASSERT): Likewise.
19292         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
19293         * tests/test-vprintf-posix.c (ASSERT): Likewise.
19294         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
19295         * tests/test-vsnprintf.c (ASSERT): Likewise.
19296         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
19297         * tests/test-wcwidth.c (ASSERT): Likewise.
19298         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
19299         * tests/test-xprintf-posix.c (ASSERT): Likewise.
19300         * tests/test-xvasprintf.c (ASSERT): Likewise.
19301         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
19302         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
19303         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
19304         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
19305         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
19306         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
19307         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
19308         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
19309         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
19310         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
19311         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
19312         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
19313         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
19314         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
19315         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
19316         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
19317         * tests/unictype/test-block_list.c (ASSERT): Likewise.
19318         * tests/unictype/test-block_of.c (ASSERT): Likewise.
19319         * tests/unictype/test-block_test.c (ASSERT): Likewise.
19320         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
19321         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
19322         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
19323         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
19324         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
19325         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
19326         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
19327         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
19328         * tests/unictype/test-combining.c (ASSERT): Likewise.
19329         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
19330         * tests/unictype/test-digit.c (ASSERT): Likewise.
19331         * tests/unictype/test-mirror.c (ASSERT): Likewise.
19332         * tests/unictype/test-numeric.c (ASSERT): Likewise.
19333         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
19334         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
19335         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
19336         * tests/unictype/test-scripts.c (ASSERT): Likewise.
19337         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
19338         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
19339         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
19340         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
19341         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
19342         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
19343         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
19344         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
19345         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
19346         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
19347         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
19348         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
19349         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
19350         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
19351         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
19352         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
19353         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
19354         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
19355         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
19356         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
19357         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
19358         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
19359         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
19360         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
19361         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
19362         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
19363         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
19364         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
19365         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
19366         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
19367         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
19368         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
19369         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
19370         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
19371         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
19372         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
19373         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
19374         Reported by Eric Blake.
19375
19376 2008-04-11  Bruno Haible  <bruno@clisp.org>
19377
19378         * lib/wchar.in.h: Tweak comment.
19379
19380 2008-04-11  Bruno Haible  <bruno@clisp.org>
19381
19382         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
19383         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
19384         gl_COMMON.
19385         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
19386
19387 2008-04-11  Bruno Haible  <bruno@clisp.org>
19388
19389         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
19390
19391 2008-04-11  Simon Josefsson  <simon@josefsson.org>
19392
19393         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
19394         of attempting to use non-existing /dev/*random.  Based on patch
19395         from Adam Strzelecki <ono@java.pl> in
19396         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
19397
19398 2008-04-08  Bruno Haible  <bruno@clisp.org>
19399
19400         Add tentative support for emx+gcc.
19401         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
19402         * lib/fpurge.c (fpurge): Likewise.
19403         * lib/freadable.c (freadable): Likewise.
19404         * lib/freadahead.c (freadahead): Likewise.
19405         * lib/freading.c (freading): Likewise.
19406         * lib/freadptr.c (freadptr): Likewise.
19407         * lib/freadseek.c (freadptrinc): Likewise.
19408         * lib/fseeko.c (rpl_fseeko): Likewise.
19409         * lib/fseterr.c (fseterr): Likewise.
19410         * lib/fwritable.c (fwritable): Likewise.
19411         * lib/fwriting.c (fwriting): Likewise.
19412         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
19413
19414 2008-04-09  Eric Blake  <ebb9@byu.net>
19415
19416         Avoid some autoconf warnings.
19417         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
19418         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
19419         * m4/afs.m4 (gl_AFS): Likewise.
19420         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
19421         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
19422         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19423         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
19424         (gl_INTEGER_TYPE_SUFFIX): Likewise.
19425         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
19426         (AC_CHECK_DECLS_ONCE): Likewise.
19427         Rename file...
19428         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
19429         gnulib-tool requires autoconf 2.59 or better.
19430         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
19431
19432 2008-04-08  Eric Blake  <ebb9@byu.net>
19433
19434         Use 'git describe --match' if present (added in git 1.5.5).
19435         * build-aux/git-version-gen: Limit result to tags that match 'v*'
19436         if possible.
19437
19438 2008-04-08  Bruno Haible  <bruno@clisp.org>
19439
19440         Add tentative support for OpenServer.
19441         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
19442         _ptr, _cnt.
19443         * lib/fpurge.c (fpurge): Likewise.
19444         * lib/freadable.c (freadable): Likewise.
19445         * lib/freadahead.c (freadahead): Likewise.
19446         * lib/freading.c (freading): Likewise.
19447         * lib/freadptr.c (freadptr): Likewise.
19448         * lib/freadseek.c (freadptrinc): Likewise.
19449         * lib/fseeko.c (rpl_fseeko): Likewise.
19450         * lib/fseterr.c (fseterr): Likewise.
19451         * lib/fwritable.c (fwritable): Likewise.
19452         * lib/fwriting.c (fwriting): Likewise.
19453         Reported by Roger Cornelius <rac@tenzing.org> and
19454         Brian K. White <brian@aljex.com>.
19455
19456 2008-04-06  Jim Meyering  <meyering@redhat.com>
19457
19458         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
19459
19460 2008-04-06  Bruno Haible  <bruno@clisp.org>
19461
19462         Avoid possible error with non-ASCII bytes in UTF-8 locales.
19463         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
19464         * tests/test-printf-posix.sh: Likewise.
19465         * tests/test-vfprintf-posix.sh: Likewise.
19466         * tests/test-vprintf-posix.sh: Likewise.
19467         * tests/test-xprintf-posix.sh: Likewise.
19468
19469 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19470
19471         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
19472         hide error from 'ls', needed on OS/2.
19473         Report by Elbert Pol <elbert.pol@gmail.com>.
19474
19475 2008-04-04  Eric Blake  <ebb9@byu.net>
19476
19477         Make test-fseeko.c failures meaningful.
19478         * tests/test-fseeko.c: Print line number on failure.
19479         * tests/test-fseek.c: Likewise.
19480         Reported by Nelson H. F. Beebe.
19481
19482         Improve strtod bug detection check.
19483         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
19484         required for Solaris 10.
19485         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
19486
19487 2008-04-04  Bruno Haible  <bruno@clisp.org>
19488
19489         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
19490         by m4/setenv.m4.
19491
19492 2008-04-03  Eric Blake  <ebb9@byu.net>
19493
19494         Ensure sane .version contents.
19495         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
19496         version string.
19497         * build-aux/git-version-gen: Improve documentation.
19498
19499         Make GNU make output nicer.
19500         * top/GNUmakefile [!_have-Makefile]: Add dependency on
19501         MAKECMDGOALS to enforce message for all command line targets.  Set
19502         srcdir for use in maint.mk.
19503
19504         Another maintainer tweak.
19505         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
19506         a target that regenerates version.
19507
19508 2008-04-03  Jim Meyering  <meyering@redhat.com>
19509
19510         vc-list-files: don't cause coreutils "make po-check" failure
19511         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
19512
19513 2008-04-03  Eric Blake  <ebb9@byu.net>
19514
19515         Allow VPATH usage of vc-list-files.
19516         * build-aux/vc-list-files (scriptversion): Add timestamp.
19517         (options): Add --help, --version, -C.
19518         (CVS): Support installed cvsu.
19519
19520 2008-04-02  Bruno Haible  <bruno@clisp.org>
19521
19522         Avoid some "statement with no effect" warnings from gcc.
19523         * tests/test-wctype.c (main): Explicitly ignore unused values.
19524         Reported by Jim Meyering.
19525
19526 2008-04-02  Jim Meyering  <meyering@redhat.com>
19527
19528         Avoid some warnings from "gcc -Wshadow".
19529         * tests/test-frexp.c (exp): Define to a different identifier.
19530         * tests/test-frexpl.c (exp): Likewise.
19531
19532 2008-04-03  Jim Meyering  <meyering@redhat.com>
19533
19534         bootstrap: remove dangling *.[ch] symlinks from lib
19535         * build-aux/bootstrap [dangling symlink removal]: Move find's
19536         -depth option to precede all others, to avoid a warning.
19537         Remove *.[ch] files too, and from "$source_base" (usually lib/).
19538
19539 2008-04-02  Bruno Haible  <bruno@clisp.org>
19540
19541         Avoid some warnings from "gcc -Wshadow".
19542         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
19543         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
19544         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
19545         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
19546         Reported by Jim Meyering.
19547
19548 2008-04-01  Bruno Haible  <bruno@clisp.org>
19549
19550         Fix test to work on IRIX 6.5 with cc.
19551         * tests/test-math.c (numeric_equal): New function.
19552         (main): Use it.
19553
19554 2008-04-01  Bruno Haible  <bruno@clisp.org>
19555
19556         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
19557
19558 2008-04-01  Bruno Haible  <bruno@clisp.org>
19559
19560         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
19561         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19562         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
19563         (Depends-on): Remove math.
19564
19565         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
19566         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19567         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
19568         (Depends-on): Remove math.
19569
19570         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
19571         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19572         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
19573         (Depends-on): Remove math.
19574         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
19575         (Depends-on): Remove math.
19576
19577         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
19578         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19579         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
19580         (Depends-on): Remove math.
19581         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
19582         (Depends-on): Remove math.
19583
19584         * tests/test-round1.c: Include nan.h.
19585         (main): Use NaNd instead of NAN.
19586         * modules/round-tests (Files): Add tests/nan.h.
19587
19588         * tests/test-trunc1.c: Include nan.h.
19589         (main): Use NaNd instead of NAN.
19590         * modules/trunc-tests (Files): Add tests/nan.h.
19591
19592         * tests/test-roundf1.c: Include nan.h.
19593         (main): Use NaNf instead of NAN.
19594         * modules/roundf-tests (Files): Add tests/nan.h.
19595
19596         * tests/test-truncf1.c: Include nan.h.
19597         (main): Use NaNf instead of NAN.
19598         * modules/truncf-tests (Files): Add tests/nan.h.
19599
19600         * tests/test-ceilf1.c: Include nan.h.
19601         (main): Use NaNf instead of NAN.
19602         * modules/ceilf-tests (Files): Add tests/nan.h.
19603
19604         * tests/test-floorf1.c: Include nan.h.
19605         (main): Use NaNf instead of NAN.
19606         * modules/floorf-tests (Files): Add tests/nan.h.
19607
19608         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
19609         (main): Use NaNf instead of NAN.
19610         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
19611
19612         * tests/test-isnand.c: Include nan.h instead of <math.h>.
19613         (main): Use NaNd instead of NAN.
19614         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
19615
19616         * tests/test-frexp.c: Include nan.h.
19617         (main): Use NaNd instead of NAN.
19618         * modules/frexp-tests (Files): Add tests/nan.h.
19619
19620         * lib/isnan.c: Don't include <math.h>.
19621         (FUNC): Don't use NAN macro.
19622         * modules/isnand-nolibm (Depends-on): Remove math.
19623         * modules/isnanf-nolibm (Depends-on): Remove math.
19624         * modules/isnanl (Depends-on): Remove math.
19625         * modules/isnanl-nolibm (Depends-on): Remove math.
19626
19627         * tests/nan.h: New file.
19628
19629 2008-04-01  Eric Blake  <ebb9@byu.net>
19630
19631         Fix typos.
19632         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
19633         values to be the right type.
19634
19635         For now, cater to gnulib strtod inaccuracies.
19636         * tests/test-strtod.c (main): Allow 1-ulp error on expected
19637         fractional results.  While not as nice from a QoI perspective, it
19638         is a quicker patch than correctly implementing decimal to binary
19639         rounding.
19640
19641 2008-03-31  Eric Blake  <ebb9@byu.net>
19642
19643         Guarantee a definition of NAN.
19644         * lib/math.in.h (NAN): Define if missing.
19645         * tests/test-math.c (main): Test it.
19646         * doc/posix-headers/math.texi (math.h): Document this.
19647         * lib/isnan.c (rpl_isnand): Use it.
19648         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
19649         * tests/test-floorf1.c (NaN): Likewise.
19650         * tests/test-frexp.c (NaN): Likewise.
19651         * tests/test-isnand.c (NaN): Likewise.
19652         * tests/test-isnanf.c (NaN): Likewise.
19653         * tests/test-round1.c (NaN): Likewise.
19654         * tests/test-roundf1.c (NaN): Likewise.
19655         * tests/test-snprintf-posix.h (NaN): Likewise.
19656         * tests/test-sprintf-posix.h (NaN): Likewise.
19657         * tests/test-trunc1.c (NaN): Likewise.
19658         * tests/test-truncf1.c (NaN): Likewise.
19659         * tests/test-vasnprintf-posix.c (NaN): Likewise.
19660         * tests/test-vasprintf-posix.c (NaN): Likewise.
19661         * modules/isnand-nolibm (Depends-on): Add math.
19662         * modules/isnanf-nolibm (Depends-on): Likewise.
19663         * modules/isnanl (Depends-on): Likewise.
19664         * modules/isnanl-nolibm (Depends-on): Likewise.
19665         * modules/snprintf-posix-tests (Depends-on): Likewise.
19666         * modules/sprintf-posix-tests (Depends-on): Likewise.
19667         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
19668         * modules/vsprintf-posix-tests (Depends-on): Likewise.
19669         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
19670         * modules/vasprintf-posix-tests (Depends-on): Likewise.
19671
19672 2008-03-31  Bruno Haible  <bruno@clisp.org>
19673
19674         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
19675         * doc/posix-functions/strtod.texi: Likewise.
19676
19677 2008-03-31  Bruno Haible  <bruno@clisp.org>
19678
19679         * tests/test-strtod.c (main): Don't use C99 syntax.
19680
19681 2008-03-31  Bruno Haible  <bruno@clisp.org>
19682
19683         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
19684         Reported by Eric Blake.
19685
19686 2008-03-31  Jim Meyering  <meyering@redhat.com>
19687
19688         Don't compare actual signbit return values.
19689         * tests/test-strtod.c (main): Rather, compare only their
19690         zero/non-zero nature.
19691
19692 2008-03-31  Eric Blake  <ebb9@byu.net>
19693
19694         More strtod documentation.
19695         * doc/posix-functions/strtod.texi (strtod): Interpret more test
19696         failures as distinct bugs.
19697
19698 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
19699
19700         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
19701         Problem reported by Erik Benada in
19702         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
19703
19704 2008-03-30  Bruno Haible  <bruno@clisp.org>
19705
19706         * tests/test-strtod.c: Add comments about which assertion fails on which
19707         platform.
19708         * doc/posix-functions/strtod.texi: Add info about many more platforms.
19709
19710 2008-03-30  Eric Blake  <ebb9@byu.net>
19711
19712         Test signbit behavior on zeros.
19713         * tests/test-signbit.c (test_signbitf): Add tests for zero.
19714         (test_signbitd, test_signbitl): Likewise.
19715
19716         More strtod touchups.
19717         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
19718         sign of negative underflow, for now.  Use .5, not .1.
19719         * doc/posix-functions/strtod.texi (strtod): Mention these
19720         limitations.
19721         Reported by Jim Meyering.
19722
19723 2008-03-30  Bruno Haible  <bruno@clisp.org>
19724
19725         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
19726         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
19727
19728 2008-03-30  Bruno Haible  <bruno@clisp.org>
19729
19730         Avoid failure when attempting to return empty iconv results on some
19731         platforms.
19732         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
19733         allocation, don't report ENOMEM when the resulting string is empty.
19734
19735 2008-03-30  Bruno Haible  <bruno@clisp.org>
19736
19737         Fix buffer overrun.
19738         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
19739         Don't consider the width for tmp_length. Check count against tmp_length
19740         before doing the padding. Ensure enough allocation during padding.
19741
19742 2008-03-30  Eric Blake  <ebb9@byu.net>
19743
19744         strtod touchups.
19745         * lib/strtod.c (strtod): Avoid compiler warnings.
19746         Reported by Jim Meyering.
19747
19748 2008-03-30  Bruno Haible  <bruno@clisp.org>
19749
19750         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
19751         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
19752         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
19753         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
19754         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
19755         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
19756         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
19757         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
19758
19759         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
19760         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
19761         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
19762         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
19763         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
19764         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
19765         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
19766         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
19767
19768         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
19769         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
19770         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
19771         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
19772         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
19773         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
19774         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
19775         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
19776
19777         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
19778         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
19779
19780         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
19781         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
19782
19783         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
19784         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
19785
19786         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
19787         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
19788         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
19789
19790         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
19791         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
19792         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
19793
19794         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
19795         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
19796         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
19797
19798         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
19799         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
19800         * modules/vasprintf (Depends-on): Add EOVERFLOW.
19801
19802         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
19803         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
19804         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
19805         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
19806         (Depends-on): Add EOVERFLOW.
19807         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
19808         (Depends-on): Add EOVERFLOW.
19809         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
19810         (Depends-on): Add EOVERFLOW.
19811         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
19812         (Depends-on): Add EOVERFLOW.
19813         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
19814         (Depends-on): Add EOVERFLOW.
19815         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
19816         (Depends-on): Add EOVERFLOW.
19817         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
19818         (Depends-on): Add EOVERFLOW.
19819         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
19820         (Depends-on): Add EOVERFLOW.
19821
19822         * lib/sprintf.c (EOVERFLOW): Remove fallback.
19823         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
19824         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
19825
19826         * lib/snprintf.c (EOVERFLOW): Remove fallback.
19827         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
19828         * modules/snprintf (Depends-on): Add EOVERFLOW.
19829
19830         * lib/poll.c (EOVERFLOW): Remove fallback.
19831         * modules/poll (Depends-on): Add EOVERFLOW.
19832
19833         * lib/getugroups.c (EOVERFLOW): Remove fallback.
19834         * modules/getugroups (Depends-on): Add EOVERFLOW.
19835
19836         * lib/getdelim.c (EOVERFLOW): Remove fallback.
19837         * modules/getdelim (Depends-on): Add EOVERFLOW.
19838
19839         * lib/ftell.c (EOVERFLOW): Remove fallback.
19840         * modules/ftell (Depends-on): Add EOVERFLOW.
19841
19842         * lib/fprintf.c (EOVERFLOW): Remove fallback.
19843         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
19844         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
19845
19846         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
19847
19848         * modules/EOVERFLOW-tests: New file.
19849         * tests/test-EOVERFLOW.c: New file.
19850
19851         * modules/EOVERFLOW: New file.
19852         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
19853
19854 2008-03-30  Bruno Haible  <bruno@clisp.org>
19855
19856         Fix bug introduced on 2007-06-10.
19857         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
19858         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
19859
19860 2008-03-30  Bruno Haible  <bruno@clisp.org>
19861
19862         Improve freadseek's efficiency after ungetc.
19863         * lib/freadseek.c: Include freadahead.h.
19864         (freadptrinc): New function, extracted from freadseek.
19865         (freadseek): Use it in a loop. Use freadahead to determine the number
19866         of loop iterations.
19867         * modules/freadseek (Depends-on): Add freadahead.
19868         (configure.ac): Require AC_C_INLINE.
19869
19870 2008-03-30  Bruno Haible  <bruno@clisp.org>
19871
19872         * lib/freadseek.c (freadseek): Don't ignore the return value of
19873         freadptr.
19874
19875 2008-03-29  Eric Blake  <ebb9@byu.net>
19876
19877         Add hex float support.
19878         * modules/strtod (Depends-on): Add c-ctype.
19879         (Link): Mention POW_LIB.
19880         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
19881         whitespace between 'e' and exponent.
19882         * tests/test-strtod.c (main): Enable hex float tests.
19883         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
19884         now provides.
19885
19886         Document various strtod bugs, with some fixes.
19887         * doc/posix-functions/strtod.texi (strtod): Document bugs with
19888         "-0x", "inf", "nan", and hex constants.
19889         * doc/posix-functions/atof.texi (atof): Likewise.
19890         * modules/stdlib (Makefile.am): Support strtod.
19891         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
19892         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
19893         detect additional strtod bugs.
19894         * lib/stdlib.in.h (rpl_strtod): Add declarations.
19895         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
19896         bool where appropriate.  Parse 'inf' and 'nan'.
19897         * tests/test-strtod.c: New file.
19898         * modules/strtod (Depends-on): Add stdbool, stdlib.
19899         (configure.ac): Turn on module indicator.
19900         * modules/strtod-tests: New module.
19901
19902 2008-03-29  Eric Blake  <ebb9@byu.net>
19903
19904         Fix ftell on mingw.
19905         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
19906         * modules/ftell-tests (Depends-on): Add binary-io.
19907         * modules/ftello-tests (Depends-on): Likewise.
19908         * tests/test-ftell.c (main): Enhance test to cover behavior after
19909         ungetc.  Enforce binary mode.
19910         * tests/test-ftello.c (main): Likewise.
19911
19912         Pass test-freadseek on cygwin.
19913         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
19914         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
19915         ungetc buffer.
19916
19917         * tests/test-fflush2.c (main): Fix typo.
19918
19919 2008-03-29  Bruno Haible  <bruno@clisp.org>
19920
19921         * tests/test-fflush2.c (main): Temporarily disable the contents of
19922         this test.
19923         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
19924         Reported by Eric Blake.
19925
19926 2008-03-28  Simon Josefsson  <simon@josefsson.org>
19927
19928         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
19929         (GC_SHA224_DIGEST_SIZE): Add.
19930
19931         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
19932         (gc_hash_digest_length): Likewise.
19933         (gc_hash_buffer): Likewise.
19934
19935 2008-03-25  Bruno Haible  <bruno@clisp.org>
19936
19937         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
19938         detail which gettext release to use.
19939         Reported by Simon Josefsson.
19940
19941 2008-03-26  Jim Meyering  <meyering@redhat.com>
19942
19943         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
19944         * modules/gnumakefile (clean-GNUmakefile): Also, use
19945         test ... && ... || : syntax rather than if-then ... fi.
19946
19947         gnumakefile: Don't double-quote-expand $(VPATH) value.
19948         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
19949
19950 2008-03-24  Eric Blake  <ebb9@byu.net>
19951
19952         Alter GNUmakefile to install into top directory.
19953         * modules/maintainer-makefile: Split, and add dependency...
19954         * modules/gnumakefile: to this new module.
19955         * build-aux/GNUmakefile: Move...
19956         * top/GNUmakefile: ...here.
19957         * build-aux/maint.mk: Move...
19958         * top/maint.mk: ...here.
19959         * MODULES.html.sh (Support for maintaining...): Document new
19960         module.
19961
19962 2008-03-23  Bruno Haible  <bruno@clisp.org>
19963
19964         * gnulib-tool: New options --vc-files, --no-vc-files.
19965         (func_usage): Document them.
19966         (vc_files): New variable.
19967         (func_import): Consider vc_files.
19968         (func_create_testdir): Set vc_files to empty.
19969         Suggested by Jim Meyering and Karl Berry.
19970
19971 2008-03-23  Bruno Haible  <bruno@clisp.org>
19972
19973         Fix regex compilation error on HP-UX 11.
19974         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
19975         * modules/regex (Files): Add m4/mbstate_t.m4.
19976         Reported by Ton Voon <ton.voon@altinity.com>.
19977
19978 2008-03-23  Bruno Haible  <bruno@clisp.org>
19979
19980         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
19981
19982 2008-03-23  Eric Blake  <ebb9@byu.net>
19983             Bruno Haible  <bruno@clisp.org>
19984
19985         Install files from top/ in the destination directory.
19986         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
19987         augmentation also for the files from top/.
19988         (func_import, func_create_testdir): Rewrite file names:
19989         top/filename -> filename.
19990
19991 2008-03-23  Bruno Haible  <bruno@clisp.org>
19992
19993         Tweak "gnulib --version" output.
19994         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
19995
19996 2008-03-23  Bruno Haible  <bruno@clisp.org>
19997
19998         Tweak "gnulib --version" output.
19999         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
20000         rather than contents of ChangeLog, when possible.
20001
20002 2008-03-21  Eric Blake  <ebb9@byu.net>
20003
20004         More --version tweaks.
20005         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
20006         date of last ChangeLog entry.
20007
20008 2008-03-21  Jim Meyering  <meyering@redhat.com>
20009
20010         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
20011
20012 2008-03-20  Eric Blake  <ebb9@byu.net>
20013
20014         VPATH fix.
20015         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
20016
20017 2008-03-20  Simon Josefsson  <simon@josefsson.org>
20018
20019         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
20020         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
20021
20022 2008-03-20  Eric Blake  <ebb9@byu.net>
20023
20024         Sync GNUmakefile with coreutils.
20025         * build-aux/GNUmakefile (have-Makefile): Rename...
20026         (_have-Makefile): ...to this, for namespace consideration.
20027         (GNUmakefile.cfg): Include, if present.
20028         (_autoreconf): Define a default.
20029         (_is-dist-target): New rule for rebuilds to pick up intra-release
20030         version.
20031         (maint-cfg.mk): Rename...
20032         (cfg.mk): ...to this.
20033
20034 2008-03-18  Jim Meyering  <meyering@redhat.com>
20035
20036         New script and module: mktempd
20037         * MODULES.html.sh (maint+release support): Add mktempd.
20038         * build-aux/mktempd: New file.
20039         * modules/mktempd: New file.
20040
20041 2008-03-15  Jim Meyering  <meyering@redhat.com>
20042
20043         Undo last change.
20044         * lib/sha1.c, lib/md5.c: 63 != ~63.
20045         Reported by Andreas Schwab.
20046
20047         sha1.c, md5.c: Hoist a redundant expression.
20048         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
20049         "ctx->buflen" only once, before calling *_process_block.
20050         * lib/md5.c (md5_process_bytes): Likewise.
20051
20052 2008-03-14  Eric Blake  <ebb9@byu.net>
20053
20054         Bump copyright year in files generated by gnulib-tool.
20055         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
20056         gnulib-tool, rather than hard-coding it.
20057
20058         Fix 'gnulib-tool --version' output to work with git.
20059         * gnulib-tool (func_gnulib_dir): New function, extracted from...
20060         (startup): ...here.
20061         (func_version): Use it to invoke git-version-gen, rather than
20062         relying on CVS keyword expansion.  Modernize wording.
20063         (cvsdatestamp, last_checkin_date, version): Kill unused
20064         variables.
20065
20066 2008-03-12  Jim Meyering  <meyering@redhat.com>
20067
20068         Recognize optional cast of the argument to free.
20069         * build-aux/useless-if-before-free: Update regexps.
20070
20071         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
20072
20073 2008-03-11  Bruno Haible  <bruno@clisp.org>
20074
20075         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
20076         by a single package.
20077         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
20078         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
20079         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
20080         Reported by Sam Steingold <sds@gnu.org>.
20081
20082 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
20083
20084         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
20085         repositories.
20086
20087 2008-03-11  Bruno Haible  <bruno@clisp.org>
20088
20089         Avoid conflicts between local macro definitions.
20090         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
20091         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
20092
20093 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
20094             Bruno Haible  <bruno@clisp.org>
20095
20096         Make va_copy work with some version of xlc on AIX 5.1.
20097         * lib/stdarg.in.h: New file.
20098         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
20099         On AIX, use a <stdarg.h> file substitute.
20100         * modules/stdarg (Files): Add lib/stdarg.in.h.
20101         (Depends-on): Add include_next.
20102         (Makefile.am): Build a stdarg.h substitute if requested.
20103         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
20104
20105 2008-03-10  Bruno Haible  <bruno@clisp.org>
20106
20107         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
20108         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
20109         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
20110
20111 2008-03-10  Bruno Haible  <bruno@clisp.org>
20112
20113         * modules/stdlib (Depends-on): Add include_next, remove
20114         absolute-header.
20115
20116 2008-03-09  Bruno Haible  <bruno@clisp.org>
20117
20118         * lib/freadahead.h (freadahead): Document more precisely.
20119         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
20120         the sum of both buffer sizes.
20121         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
20122         * NEWS: Document the change.
20123
20124 2008-03-09  Bruno Haible  <bruno@clisp.org>
20125
20126         Extend freadptr to return also the buffer size.
20127         * lib/freadptr.h (freadptr): Add sizep argument.
20128         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
20129         (freadptr): Add sizep argument. Determine buffer size like freadahead
20130         does.
20131         * tests/test-freadptr.c: Don't include freadahead.h.
20132         (main): Adapt for new calling convention of freadptr.
20133         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
20134         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
20135         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
20136         tests/test-freadptr2.sh.
20137         (Depends): Remove freadahead.
20138         (TESTS): Add test-freadptr2.sh.
20139         (check_PROGRAMS): Add test-freadptr2.
20140
20141 2008-03-09  Bruno Haible  <bruno@clisp.org>
20142
20143         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
20144         Report and solution by Simon Josefsson.
20145
20146 2008-03-06  Bruno Haible  <bruno@clisp.org>
20147
20148         Make fflush after ungetc work on BSD platforms.
20149         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
20150         * tests/test-fflush2.c: New file.
20151         * tests/test-fflush2.sh: New file.
20152         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
20153         tests/test-fflush2.c.
20154         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
20155         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
20156
20157 2008-03-06  Eric Blake  <ebb9@byu.net>
20158
20159         Likewise for ftello.
20160         * modules/ftello (Dependencies): Add extensions.
20161         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
20162
20163 2008-03-06  Bruno Haible  <bruno@clisp.org>
20164
20165         * modules/fseeko (Dependencies): Add extensions.
20166         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
20167         Needed on glibc systems.
20168
20169 2008-03-06  Bruno Haible  <bruno@clisp.org>
20170
20171         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
20172         email address.
20173         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
20174
20175 2008-03-06  Bruno Haible  <bruno@clisp.org>
20176
20177         * users.txt: Add libgnupdf.
20178
20179 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
20180
20181         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
20182         (Header File Substitutes, Function Substitutes,
20183         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
20184         (Build robot for gnulib): Fix typo.
20185
20186 2008-03-06  Bruno Haible  <bruno@clisp.org>
20187
20188         * doc/gnulib-tool.texi (VCS Issues): Small updates.
20189         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
20190
20191 2008-03-06  Bruno Haible  <bruno@clisp.org>
20192
20193         * doc/func.texi: New file, extracted from doc/gnulib.texi.
20194         * doc/gnulib.texi: Include it.
20195
20196 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20197
20198         * modules/func (License): Change license to unlimited; there was
20199         no LGPL parts in the module anyway.
20200
20201 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20202
20203         * modules/__func__: Renamed to modules/func.
20204         * modules/__func__-tests: Renamed to modules/func-tests.
20205         * tests/test-__func__.c: Renamed to tests/test-func.c.
20206         * m4/__func__.m4: Renamed to m4/func.m4.
20207         * doc/gnulib.texi (__func__): Section renamed to func.
20208         Suggested by Eric Blake <ebb9@byu.net>.
20209
20210 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20211
20212         * doc/gnulib.texi (__func__): Use C99 terminology when talking
20213         about __func__.  Make example self-contained.  Suggested by Eric
20214         Blake <ebb9@byu.net>.
20215
20216         * tests/test-__func__.c (main): Avoid extraneous () around __func.
20217         Suggested by Eric Blake <ebb9@byu.net>.
20218
20219 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20220
20221         * modules/__func__: New file.
20222         * modules/__func__-tests: New file.
20223         * tests/test-__func__.c: New file.
20224         * m4/__func__.m4: New file.
20225         * doc/gnulib.texi (__func__): Document __func__ module.
20226
20227 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20228
20229         * modules/byteswap (License): Re-license as LGPLv2+.
20230
20231 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20232
20233         * doc/Makefile: Add pdf target.
20234
20235 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20236
20237         * modules/inline (License): Use 'unlimited', since there are only
20238         *.m4 files in this module.
20239
20240 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
20241             Bruno Haible  <bruno@clisp.org>
20242
20243         Add support for HP C 7.1 on OpenVMS 8.3.
20244         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
20245
20246 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
20247
20248         Update VMS specifics.
20249         * lib/getopt.c [VMS]: Remove include of unixlib.h.
20250
20251 2008-03-02  Jim Meyering  <meyering@redhat.com>
20252
20253         Remove the last dependency on the "free" module.
20254         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
20255         Reported by Bob Proulx.
20256
20257         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
20258
20259         Remove useless "if" tests before free.  Deprecate "free" module.
20260         * doc/posix-functions/free.texi: Mention that this
20261         module is no longer useful.
20262         * modules/free (Notice): Say this module is obsolete.
20263         * modules/readutmp (Depends-on): Remove free.
20264         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
20265         * lib/putenv.c (putenv): Likewise.
20266         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
20267         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
20268         * tests/test-c-strcasestr.c (main): Likewise.
20269         * tests/test-c-strstr.c (main): Likewise.
20270         * tests/test-mbscasestr1.c (main): Likewise.
20271         * tests/test-mbscasestr2.c (main): Likewise.
20272         * tests/test-mbsstr1.c (main): Likewise.
20273         * tests/test-mbsstr2.c (main): Likewise.
20274         * tests/test-memmem.c (main): Likewise.
20275         * tests/test-strcasestr.c (main): Likewise.
20276         * tests/test-striconv.c (main): Likewise.
20277         * tests/test-striconveh.c (main): Likewise.
20278         * tests/test-striconveha.c (main): Likewise.
20279         * tests/test-strstr.c (main): Likewise.
20280
20281         * build-aux/git-version-gen: Adjust a comment and the Usage string.
20282
20283         bootstrap: sync from coreutils again
20284         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
20285
20286 2008-03-01  Jim Meyering  <meyering@redhat.com>
20287
20288         bootstrap: sync from coreutils
20289         * build-aux/bootstrap (update_po_files): Copy a .po file into place
20290         also when the target doesn't exist.
20291
20292 2008-03-01  Eric Blake  <ebb9@byu.net>
20293
20294         Fix bugs in last patch.
20295         * lib/memchr2.c (memchr2): Fix typo.
20296         * tests/test-memchr2.c: Test previous bug, and don't use GNU
20297         extension.
20298         Reported by Bruce Korb.
20299
20300         New module 'memchr2'.
20301         * modules/memchr2: New file.
20302         * modules/memchr2-tests: Likewise.
20303         * lib/memchr2.h: Likewise.
20304         * lib/memchr2.c: Likewise, based on memchr.c.
20305         * tests/test-memchr2.c: New test.
20306         * MODULES.html.sh (String handling): Add memchr2.
20307
20308 2008-02-29  Bruno Haible  <bruno@clisp.org>
20309
20310         * modules/freadseek-tests: New file.
20311         * tests/test-freadseek.sh: New file.
20312         * tests/test-freadseek.c: New file.
20313
20314         New module 'freadseek'.
20315         * modules/freadseek: New file.
20316         * lib/freadseek.h: New file.
20317         * lib/freadseek.c: New file.
20318         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
20319
20320 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
20321
20322         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
20323         wydawca.
20324
20325         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
20326         program_invocation_name and program_invocation_short_name are
20327         present.
20328
20329 2008-02-28  Bruno Haible  <bruno@clisp.org>
20330
20331         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
20332         * tests/test-freadptr.sh: Also test non-seekable stdin.
20333
20334 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
20335
20336         * build-aux/bootstrap (source_base, m4_base)
20337         (doc_base, tests_base): New variables.
20338         (gnulib_tool_options): Do not hardcode base directories, use
20339         the above variables instead.
20340
20341 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
20342
20343         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
20344
20345 2008-02-28  Bruno Haible  <bruno@clisp.org>
20346
20347         * modules/freadptr-tests: New file.
20348         * tests/test-freadptr.sh: New file.
20349         * tests/test-freadptr.c: New file.
20350
20351         New module 'freadptr'.
20352         * modules/freadptr: New file.
20353         * lib/freadptr.h: New file.
20354         * lib/freadptr.c: New file.
20355         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
20356
20357 2008-02-26  Karl Berry  <karl@freefriends.org>
20358
20359         Sync from Libtool:
20360         * libltdl/argz.c (argz_add, argz_count): New functions.
20361         * libltdl/argz.in.h: Declare them.
20362         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
20363
20364 2008-02-22  Bruno Haible  <bruno@clisp.org>
20365
20366         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
20367         is a pointer type.  Needed for HP-UX 10.
20368         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
20369         * doc/posix-functions/gmtime_r.texi: Likewise.
20370         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
20371
20372 2008-02-24  Bruno Haible  <bruno@clisp.org>
20373
20374         * modules/environ-tests: New file.
20375         * tests/test-environ.c: New file.
20376
20377         New module 'environ'.
20378         * modules/environ: New file.
20379         * lib/unistd.in.h (environ): New declaration.
20380         * m4/environ.m4: New file.
20381         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
20382         after use.
20383         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
20384         HAVE_DECL_ENVIRON.
20385         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
20386         HAVE_DECL_ENVIRON.
20387         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
20388         wrong claim that 'environ' is missing on some systems.
20389         * modules/execute (Depends-on): Add environ.
20390         * lib/execute.c (environ): Remove fallback declaration.
20391         * modules/pipe (Depends-on): Add environ.
20392         * lib/pipe.c (environ): Remove fallback declaration.
20393         * modules/setenv (Depends-on): Add environ.
20394         * lib/setenv.c (environ): Remove fallback declaration.
20395         * modules/unsetenv (Depends-on): Add environ.
20396         * lib/unsetenv.c (environ): Remove fallback declaration.
20397         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
20398         m4/environ.m4.
20399         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
20400         (gl_PREREQ_UNSETENV): Likewise.
20401
20402 2008-02-24  Bruno Haible  <bruno@clisp.org>
20403
20404         * doc/posix-functions/environ.texi: Document the MacOS X problem.
20405
20406 2008-02-20  Bob Proulx  <bob@proulx.com>
20407
20408         Enable use of older two part flavor 'git describe'.
20409         * build-aux/git-version-gen: If using the older two part flavor of
20410         git version then recreate the third part now present in the
20411         newer three part flavor of git describe.
20412
20413 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
20414
20415         * lib/fts.c (fts_build): Typo correction to comment.
20416
20417 2008-02-17  Bruno Haible  <bruno@clisp.org>
20418
20419         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
20420         generating no-op conflicts.
20421
20422 2008-02-17  Bruno Haible  <bruno@clisp.org>
20423
20424         Speed up by 10%.
20425         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
20426         result_entries, rather than an index-based loop.
20427
20428 2008-02-17  Bruno Haible  <bruno@clisp.org>
20429
20430         Speed up by 25%.
20431         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
20432         'hashcode_cached'.
20433         (entry_create): New function.
20434         (entry_hashcode): Use the cached hashcode if possible.
20435         (read_changelog_file, try_split_merged_entry): Use entry_create.
20436
20437 2008-02-17  Bruno Haible  <bruno@clisp.org>
20438
20439         Speed up from O(n^2) to O(n) for long ChangeLog files.
20440         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
20441         (read_changelog_file): Change implementation of entries_reversed list
20442         to rbtreehash.
20443         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
20444
20445 2008-02-17  Bruno Haible  <bruno@clisp.org>
20446
20447         New option --split-merged-entry.
20448         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
20449         (find_paragraph_end, try_split_merged_entry): New functions.
20450         (long_options): Add option --split-merged-entry.
20451         (usage): Document option --split-merged-entry.
20452         (main): Implement option --split-merged-entry.
20453         Reported by Eric Blake.
20454
20455 2008-02-17  Bruno Haible  <bruno@clisp.org>
20456
20457         * lib/git-merge-changelog.c: Include c-strstr.h.
20458         (main): Support the "git pull --rebase" situation.
20459         * modules/git-merge-changelog (Depends-on): Add c-strstr.
20460         Reported by Eric Blake.
20461
20462 2008-02-16  Eric Blake  <ebb9@byu.net>
20463
20464         Avoid doubling \ in common case of "c-maybe" quoting style.
20465         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
20466         eliding outer quotes.
20467         * lib/quotearg.h: Document this.
20468         * tests/test-quotearg.c (result_strings, inputs, results_g)
20469         (flag_results, locale_results): Test it by adding a new string to
20470         each test group.
20471         (compare_strings): Test new string.
20472
20473 2008-02-13  Eric Blake  <ebb9@byu.net>
20474
20475         Avoid trigraph quoting in default output.
20476         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
20477         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
20478         unless explicitly requested.
20479         * tests/test-quotearg.c (flag_results, main): Add additional tests.
20480
20481 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
20482
20483         Don't rely on signed integer overflowing to negative value.
20484         * lib/getugroups.c (getugroups): Include <limits.h>.
20485         Instead, compare against INT_MAX, and increment only if the test passes.
20486
20487 2008-02-13  Jim Meyering  <meyering@redhat.com>
20488         and Eric Blake  <ebb9@byu.net>
20489
20490         Avoid shadowing warning and compile errors on Linux.
20491         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
20492         forwarding macros on Linux.
20493         (dcgettext): Define a stub, for Linux.
20494         (results_g, main): Avoid warnings.
20495
20496 2008-02-12  Eric Blake  <ebb9@byu.net>
20497
20498         Silence warning in last patch.
20499         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
20500
20501         Quotearg part 4: add tests, fix c-maybe colon quoting.
20502         * lib/quotearg.h: Improve documentation.
20503         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
20504         escapes when adding outer quotes.  When quoting trigraphs, use
20505         valid C notation.  When quoting NUL, omit extra characters if next
20506         character is not digit.  Alter prototype.
20507         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
20508         callers.
20509         * modules/quotearg-tests: New module.
20510         * tests/test-quotearg.c: New test.
20511
20512 2008-02-07  Eric Blake  <ebb9@byu.net>
20513
20514         Quotearg part 3: add flag to control outer quote elision.
20515         * lib/quotearg.h (c_maybe_quoting_style): New style.
20516         (enum quoting_flags): Better documentation of flags.
20517         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
20518         c-maybe style.
20519         (quotearg_buffer_restyled): Handle new flag to elide outer
20520         quotes.
20521
20522         Quotearg part 2: add flag that can control NUL elision.
20523         * lib/quotearg.h (set_quoting_flags): New prototype.
20524         * lib/quotearg.c (struct quoting_options): Add flag field.
20525         (set_quoting_flags): New function.
20526         (quotearg_buffer_restyled): Add flags parameter.
20527         (quotearg_alloc_mem): Set the flag if length cannot be returned.
20528         (quotearg_n_options): Set the flag, since length cannot be
20529         returned.
20530         (quoting_options_from_style): Default flags correctly.
20531
20532         Quotearg part 1: more wrappers, restore quotearg_char state.
20533         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
20534         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
20535         (quotearg_colon_mem): New wrappers.
20536         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
20537         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
20538         functions.
20539         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
20540         (quotearg_colon_mem): New functions.
20541
20542 2008-02-11  Bruno Haible  <bruno@clisp.org>
20543
20544         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
20545         library in the current directory: it does not work with parallel make.
20546         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20547
20548 2008-02-11  Bruno Haible  <bruno@clisp.org>
20549
20550         * .gitattributes: New file.
20551
20552 2008-02-11  Jim Meyering  <meyering@redhat.com>
20553
20554         useless-if-before-free: Fix reversed exit values.
20555         * build-aux/useless-if-before-free: Use correct values
20556         for EXIT_MATCH and EXIT_NO_MATCH.
20557
20558         * build-aux/useless-if-before-free: Close stdout carefully.
20559
20560 2008-02-10  Bruno Haible  <bruno@clisp.org>
20561
20562         New module 'git-merge-changelog'.
20563         * modules/git-merge-changelog: New file.
20564         * lib/git-merge-changelog.c: New file.
20565
20566 2008-02-10  Jim Meyering  <meyering@redhat.com>
20567
20568         useless-if-before-free: New option: --list (-l).
20569
20570         useless-if-before-free: Don't exit immediately upon open failure.
20571         * build-aux/useless-if-before-free: Exit 2 for errors.
20572         Upon failure to open a file, don't exit immediately.
20573         Rather, just warn and continue with any remaining files.
20574
20575 2008-02-10  Bruno Haible  <bruno@clisp.org>
20576
20577         New abstract list operation 'node_set_value'.
20578         * lib/gl_list.h (gl_list_node_set_value): New function.
20579         (struct gl_list_implementation): New field node_set_value.
20580         * lib/gl_list.c (gl_list_node_set_value): New function.
20581         * lib/gl_array_list.c (gl_array_node_set_value): New function.
20582         (gl_array_list_implementation): Update.
20583         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
20584         (gl_carray_list_implementation): Update.
20585         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
20586         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
20587         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
20588         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
20589         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
20590         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
20591         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
20592         Update.
20593         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
20594         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
20595         (gl_sublist_list_implementation): Update.
20596
20597 2008-02-10  Bruno Haible  <bruno@clisp.org>
20598
20599         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
20600         Needed when ELEMENT is #defined to 'some_type *'.
20601
20602 2008-02-10  Jim Meyering  <meyering@redhat.com>
20603
20604         New script and module: useless-if-before-free
20605         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
20606         * build-aux/useless-if-before-free: New file.
20607         * modules/useless-if-before-free: New file.
20608
20609         * build-aux/gitlog-to-changelog: Use committer date, not author date.
20610
20611         xstrtol_error: Fix typo.
20612         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
20613         s/exit_failure/exit_status/.
20614
20615 2008-02-09  Jim Meyering  <meyering@redhat.com>
20616
20617         New script and module: gitlog-to-changelog
20618         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
20619         * modules/gitlog-to-changelog: New file.
20620         * build-aux/gitlog-to-changelog: New file.
20621
20622 2008-02-08  Jim Meyering  <meyering@redhat.com>
20623
20624         Avoid two "parameter unused" warnings.
20625         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
20626         Mark "st" as used.
20627
20628         Use "git COMMAND", not "git-COMMAND".
20629         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
20630         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
20631         * build-aux/git-version-gen: Use "git status", not "git-status".
20632
20633 2008-02-07  Bruno Haible  <bruno@clisp.org>
20634
20635         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
20636         Avoids a crash on Windows Vista.
20637         Reported by Adam Strzelecki <ono@java.pl> via
20638         Simon Josefsson <simon@josefsson.org>.
20639
20640 2008-02-06  Bruno Haible  <bruno@clisp.org>
20641
20642         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
20643         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
20644         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
20645         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
20646         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
20647         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
20648         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
20649         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
20650         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
20651         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20652         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20653         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20654         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20655         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20656         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20657         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
20658         left-adjust flag.
20659         * tests/test-snprintf-posix.h (test_function): Likewise.
20660         * tests/test-sprintf-posix.h (test_function): Likewise.
20661         * tests/test-vasprintf-posix.c (test_function): Likewise.
20662         * doc/posix-functions/fprintf.texi: Update.
20663         * doc/posix-functions/printf.texi: Update.
20664         * doc/posix-functions/snprintf.texi: Update.
20665         * doc/posix-functions/sprintf.texi: Update.
20666         * doc/posix-functions/vfprintf.texi: Update.
20667         * doc/posix-functions/vprintf.texi: Update.
20668         * doc/posix-functions/vsnprintf.texi: Update.
20669         * doc/posix-functions/vsprintf.texi: Update.
20670         Reported by Peter Fales <psfales@alcatel-lucent.com>.
20671
20672 2008-02-06  Bruno Haible  <bruno@clisp.org>
20673
20674         Fix bug introduced on 2008-01-26.
20675         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
20676
20677 2008-02-06  Bruno Haible  <bruno@clisp.org>
20678
20679         Fix bug introduced on 2007-06-10.
20680         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
20681         !NEED_PRINTF_FLAG_ZERO.
20682
20683 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
20684
20685         getloadavg: use libperfstat on AIX5
20686         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
20687
20688 2008-02-03  Bruno Haible  <bruno@clisp.org>
20689
20690         * lib/diffseq.h: Add comments about required #includes.
20691         Reported by Michael Biggs <gnulib@doubleplum.net>.
20692
20693 2008-02-01  Bruno Haible  <bruno@clisp.org>
20694
20695         * users.txt: Add gnuit.
20696
20697 2008-01-31  Bruno Haible  <bruno@clisp.org>
20698
20699         * lib/md4.c (set_uint32): Mark as inline.
20700         * lib/md5.c (set_uint32): Likewise.
20701         * lib/sha1.c (set_uint32): Likewise.
20702         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
20703         * m4/md5.m4 (gl_MD5): Likewise.
20704         * m4/sha1.m4 (gl_SHA1): Likewise.
20705
20706 2008-01-31  Jim Meyering  <meyering@redhat.com>
20707
20708         Use "sizeof VAR", rather than a literal "4".
20709         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
20710         * lib/md4.c (md4_read_ctx): Likewise.
20711         * lib/sha1.c (sha1_read_ctx): Likewise.
20712
20713 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20714
20715         * tests/test-sha1.c: New file, based on test-md5.c.
20716
20717         * modules/crypto/sha1-tests: New file.
20718
20719 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20720
20721         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
20722
20723 2008-01-31  Jim Meyering  <meyering@redhat.com>
20724
20725         Prefer "sizeof v" over the equivalent "4".
20726         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
20727         * lib/md5.c (set_uint32): Likewise.
20728         * lib/sha1.c (set_uint32): Likewise.
20729
20730 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20731
20732         * lib/sha1.c (set_uint32): Mark function as static.
20733
20734 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20735
20736         md2: clarify comments to say that alignment is not required.
20737         * lib/md2.h: Remove warning about alignment in comment.
20738         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
20739         never been required.
20740
20741 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20742
20743         md4: adapt alignment constraint fix from sha1.
20744         * lib/md4.c (set_uint32): New function, from sha1.c
20745         (md4_read_ctx): Use it.
20746         (md4_finish_ctx): Doc fix.
20747         * lib/md4.h: Doc fix.
20748
20749 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20750
20751         md5: adapt alignment constraint fix from sha1.
20752         * lib/md5.c (set_uint32): New function, from sha1.c
20753         (md5_read_ctx): Use it.
20754         (md5_finish_ctx): Doc fix.
20755         * lib/md5.h: Doc fix.
20756
20757 2008-01-30  Peter Palfrader  <weasel@debian.org>
20758
20759         sha1: remove the result buffer alignment constraint
20760         * lib/sha1.c (set_uint32): New function.
20761         (sha1_read_ctx): Rewrite to remove the result buffer alignment
20762         constraint.
20763         (sha1_finish_ctx): Remove comment warning about alignment constraint.
20764         * lib/sha1.h: Likewise.
20765
20766 2008-01-30  Andreas Schwab  <schwab@suse.de>
20767             Bruno Haible  <bruno@clisp.org>
20768
20769         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
20770         correct definition of LDBL_MIN_EXP.
20771
20772 2008-01-30  Karl Berry  <karl@gnu.org>
20773
20774         * config/srclist-update: try to preserve x bit on updates.
20775         * config/srclistvars.sh: update for karl.
20776
20777 2008-01-29  Jim Meyering  <meyering@redhat.com>
20778
20779         vasnprintf.c: Avoid warning about unused label
20780         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
20781         "overflow" label definition and associated code with the
20782         same cpp condition that guards the sole use of that label.
20783
20784 2008-01-26  Bruno Haible  <bruno@clisp.org>
20785
20786         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
20787         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
20788         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
20789         * lib/isnanl-nolibm.h (isnanl): Likewise.
20790         Reported by Paul Eggert <eggert@cs.ucla.edu>.
20791
20792 2008-01-26  Bruno Haible  <bruno@clisp.org>
20793
20794         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
20795         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
20796
20797 2008-01-26  Bruno Haible  <bruno@clisp.org>
20798
20799         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
20800         GCC >= 4.0 built-in.
20801         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
20802
20803 2008-01-26  Bruno Haible  <bruno@clisp.org>
20804
20805         Rename isnan, applicable to 'double' only, to isnand.
20806         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
20807         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
20808         (configure.ac): Update.
20809         (Include): Replace "isnan.h" with "isnand.h".
20810         * m4/isnand.m4: Renamed from m4/isnan.m4.
20811         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
20812         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
20813         instead of isnan.c.
20814         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
20815         instead of HAVE_ISNAN_IN_LIBC.
20816         (isnand): Renamed from isnan.
20817         * lib/isnand.c: New file.
20818         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
20819         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
20820         (Makefile.am): Update.
20821         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
20822         Include isnand.h instead of isnan.h.
20823         (main): Test isnand instead of isnan.
20824         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
20825         isnan-nolibm.
20826         * modules/frexp (Depends-on): Likewise.
20827         * modules/frexp-tests (Depends-on): Likewise.
20828         * modules/frexp-nolibm (Depends-on): Likewise.
20829         * modules/frexp-nolibm-tests (Depends-on): Likewise.
20830         * modules/isfinite (Depends-on): Likewise.
20831         * modules/round-tests (Depends-on): Likewise.
20832         * modules/signbit (Depends-on): Likewise.
20833         * modules/signbit-tests (Depends-on): Likewise.
20834         * modules/snprintf-posix (Depends-on): Likewise.
20835         * modules/sprintf-posix (Depends-on): Likewise.
20836         * modules/trunc-tests (Depends-on): Likewise.
20837         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
20838         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
20839         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
20840         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
20841         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
20842         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
20843         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
20844         * modules/vasnprintf-posix (Depends-on): Likewise.
20845         * modules/vasprintf-posix (Depends-on): Likewise.
20846         * modules/vfprintf-posix (Depends-on): Likewise.
20847         * modules/vsnprintf-posix (Depends-on): Likewise.
20848         * modules/vsprintf-posix (Depends-on): Likewise.
20849         * lib/frexp.c: Include isnand.h instead of isnan.h.
20850         (ISNAN): Set to isnand instead of isnan.
20851         * lib/isfinite.c: Include isnand.h instead of isnan.h.
20852         (gl_isfinited): Use isnand instead of isnan.
20853         * lib/signbitd.c: Include isnand.h instead of isnan.h.
20854         (gl_signbitd): Use isnand instead of isnan.
20855         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
20856         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
20857         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
20858         (main): Use isnand instead of isnan.
20859         * tests/test-round1.c: Include isnand.h.
20860         (main): Use isnand instead of isnan.
20861         * tests/test-round2.c: Include isnand.h instead of isnan.h.
20862         (ISNAN): Set to isnand instead of isnan.
20863         * tests/test-trunc1.c: Include isnand.h.
20864         (main): Use isnand instead of isnan.
20865         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
20866         (equal): Use isnand instead of isnan.
20867         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
20868         isnand-nolibm.
20869         * NEWS: Mention the change.
20870
20871 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
20872             Bruno Haible  <bruno@clisp.org>
20873
20874         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
20875         the GCC builtins for signbits are present and set
20876         REPLACE_SIGNBIT_USING_GCC if so.
20877         * lib/math.in.h (signbit): Define using GCC builtins if
20878         REPLACE_SIGNBIT_USING_GCC is set.
20879         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
20880         REPLACE_SIGNBIT_USING_GCC.
20881         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
20882
20883 2008-01-25  Jim Meyering  <meyering@redhat.com>
20884
20885         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
20886         * lib/poll.c: Include <config.h>, not "config.h".
20887         * tests/test-getaddrinfo.c: Likewise.
20888
20889 2008-01-25  Simon Josefsson  <simon@josefsson.org>
20890
20891         * modules/sockets-tests: New file.
20892
20893 2008-01-24  Simon Josefsson  <simon@josefsson.org>
20894
20895         * modules/sockets: New module, can be used to call WSA_Startup and
20896         WSA_Cleanup when needed.
20897
20898         * lib/sockets.h, lib/sockets.c: New files.
20899
20900         * m4/sockets.m4: New file.
20901
20902         * tests/test-sockets.c: New file.
20903
20904 2008-01-19  Bruno Haible  <bruno@clisp.org>
20905
20906         * doc/posix-headers: Renamed from doc/headers.
20907         * doc/posix-functions: Renamed from doc/functions.
20908         * doc/gnulib.texi: Update.
20909
20910 2008-01-19  Bruno Haible  <bruno@clisp.org>
20911
20912         * doc/glibc-functions/strcasestr.texi: Include contents of
20913         doc/functions/strcasestr.texi, fixing the list of platforms.
20914         * doc/functions/strcasestr.texi: Remove file.
20915
20916 2008-01-19  Bruno Haible  <bruno@clisp.org>
20917
20918         * doc/glibc-functions/memmem.texi: Include contents of
20919         doc/functions/memmem.texi.
20920         * doc/functions/memmem.texi: Remove file.
20921
20922 2008-01-18  Bruno Haible  <bruno@clisp.org>
20923
20924         * doc/glibc-functions/*.texi: New files.
20925         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
20926         to use the new files.
20927
20928 2008-01-17  Bruno Haible  <bruno@clisp.org>
20929
20930         * tests/test-gethostname.c (main): Fix printf statement.
20931
20932 2008-01-17  Simon Josefsson  <simon@josefsson.org>
20933
20934         * modules/gethostname-tests: New file.
20935
20936         * tests/test-gethostname.c: New file.
20937
20938 2008-01-17  Simon Josefsson  <simon@josefsson.org>
20939
20940         * lib/gethostname.c: Include string.h unconditionally, strncpy is
20941         used by the UNAME case.  Reported by Bruno Haible
20942         <bruno@clisp.org>.
20943
20944 2008-01-17  Eric Blake  <ebb9@byu.net>
20945
20946         Convert c-strcasestr to be more efficient.
20947         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
20948         (Depends-on): Add c-strcase, remove malloca, strnlen.
20949         * tests/test-c-strcasestr.c (main): Enhance test.
20950         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
20951
20952 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
20953
20954         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
20955         Use it in creating po/Makevars.
20956
20957 2008-01-15  Simon Josefsson  <simon@josefsson.org>
20958
20959         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
20960         Applications that requires it should initialize libgcrypt
20961         manually.
20962
20963 2008-01-16  Simon Josefsson  <simon@josefsson.org>
20964
20965         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
20966
20967 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
20968
20969         Fix problem with getdate on mingw32 reported by Simon Josefsson
20970         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
20971         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
20972         tzname", when deciding whether to declare tzname.
20973         * lib/strftime.c (tzname): Likewise.
20974
20975 2008-01-15  Bruno Haible  <bruno@clisp.org>
20976
20977         Work around a MacOS X 10.5 bug in frexpl().
20978         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
20979         * doc/functions/frexpl.texi: Document the bug.
20980         Reported by Elias Pipping <pipping@gentoo.org>.
20981
20982 2008-01-14  Eric Blake  <ebb9@byu.net>
20983
20984         Touch up previous patch.
20985         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
20986         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
20987
20988         Convert strcasestr module to use Two-Way algorithm.
20989         * modules/strcasestr-simple: New module, based on the old
20990         strcasestr, but with Two-Way rather than KMP.
20991         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
20992         * lib/string.in.h (rpl_strcasestr): Declare.
20993         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
20994         performance.
20995         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
20996         * modules/string (Makefile.am): Support strcasestr.
20997         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
20998         * modules/strcasestr-tests (Depends-on): Check for alarm.
20999         * tests/test-strcasestr.c: Augment test.
21000         * lib/str-two-way.h: Clean up stray macro.
21001         * NEWS: Document new module.
21002         * MODULES.html.sh (string handling): Likewise.
21003         * doc/functions/strcasestr.texi: New file.
21004         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
21005         here, since it is not a POSIX function.
21006
21007 2008-01-14  Colin Watson  <cjwatson@debian.org>
21008             Bruno Haible  <bruno@clisp.org>
21009
21010         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
21011         works fine; if not, set REPLACE_STRSIGNAL.
21012         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
21013         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21014         REPLACE_STRSIGNAL.
21015         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
21016         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
21017         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
21018
21019 2008-01-14  Bruno Haible  <bruno@clisp.org>
21020
21021         * modules/strsignal (Include): Change to <string.h>.
21022
21023 2008-01-14  Colin Watson  <cjwatson@debian.org>
21024
21025         * modules/argp (Notice): Add a notice recommending to change
21026         XGETTEXT_OPTIONS.
21027         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
21028
21029 2008-01-13  Colin Watson  <cjwatson@debian.org>
21030
21031         * modules/strsignal-tests: New file.
21032         * tests/test-strsignal.c: New file.
21033
21034         * lib/strsignal.c: New file, from glibc with modifications.
21035         * lib/siglist.h: New file, from glibc with modifications.
21036         * lib/string.in.h (strsignal): New declaration.
21037         * m4/strsignal.m4: New file.
21038         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21039         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
21040         * modules/strsignal: New file.
21041         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
21042         HAVE_DECL_STRSIGNAL.
21043
21044 2008-01-13  Bruno Haible  <bruno@clisp.org>
21045
21046         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
21047         locale encoding is not ASCII. Needed for OpenBSD 4.0.
21048         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
21049         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
21050
21051 2008-01-13  Bruno Haible  <bruno@clisp.org>
21052
21053         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
21054         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
21055         * lib/argp.h (__attribute__): Likewise.
21056         * lib/c-stack.c (__attribute__): Likewise.
21057         * lib/error.h (__attribute__): Likewise.
21058         * lib/fts.c (__attribute__): Likewise.
21059         * lib/openat.h (__attribute__): Likewise.
21060         * lib/stdio.in.h (__attribute__): Likewise.
21061         * lib/string.in.h (__attribute__): Likewise.
21062         * lib/utimens.c (__attribute__): Likewise.
21063         * lib/vasnprintf.h (__attribute__): Likewise.
21064         * lib/xalloc.h (__attribute__): Likewise.
21065         * lib/xprintf.h (__attribute__): Likewise.
21066         * lib/xstrtol.h (__attribute__): Likewise.
21067         * lib/xvasprintf.h (__attribute__): Likewise.
21068
21069 2008-01-12  Bruno Haible  <bruno@clisp.org>
21070
21071         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
21072         * doc/glibc-headers/a.out.texi: New file.
21073         * doc/glibc-headers/aliases.texi: New file.
21074         * doc/glibc-headers/alloca.texi: New file.
21075         * doc/glibc-headers/ar.texi: New file.
21076         * doc/glibc-headers/argp.texi: New file.
21077         * doc/glibc-headers/argz.texi: New file.
21078         * doc/glibc-headers/byteswap.texi: New file.
21079         * doc/glibc-headers/crypt.texi: New file.
21080         * doc/glibc-headers/endian.texi: New file.
21081         * doc/glibc-headers/envz.texi: New file.
21082         * doc/glibc-headers/err.texi: New file.
21083         * doc/glibc-headers/error.texi: New file.
21084         * doc/glibc-headers/execinfo.texi: New file.
21085         * doc/glibc-headers/fpu_control.texi: New file.
21086         * doc/glibc-headers/fstab.texi: New file.
21087         * doc/glibc-headers/fts.texi: New file.
21088         * doc/glibc-headers/getopt.texi: New file.
21089         * doc/glibc-headers/ieee754.texi: New file.
21090         * doc/glibc-headers/ifaddrs.texi: New file.
21091         * doc/glibc-headers/libintl.texi: New file.
21092         * doc/glibc-headers/mcheck.texi: New file.
21093         * doc/glibc-headers/mntent.texi: New file.
21094         * doc/glibc-headers/obstack.texi: New file.
21095         * doc/glibc-headers/paths.texi: New file.
21096         * doc/glibc-headers/printf.texi: New file.
21097         * doc/glibc-headers/pty.texi: New file.
21098         * doc/glibc-headers/resolv.texi: New file.
21099         * doc/glibc-headers/shadow.texi: New file.
21100         * doc/glibc-headers/sysexits.texi: New file.
21101         * doc/glibc-headers/ttyent.texi: New file.
21102
21103 2008-01-12  Jim Meyering  <meyering@redhat.com>
21104
21105         announce-gen: emit Gnulib's git-based version string.
21106         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
21107         New option --gnulib-version=V, where V is expected to be
21108         the output of running git describe in the gnulib directory.
21109         (get_tool_versions): Request feedback on xdelta.  I suspect it's
21110         not useful, and plan to stop publishing an xdelta file with each
21111         coreutils release.
21112
21113         * build-aux/announce-gen: Also check for lzma-compressed files.
21114
21115 2008-01-11  Bruno Haible  <bruno@clisp.org>
21116
21117         * tests/test-memmem.c (main): Increase maximum allowed time.
21118         * tests/test-strstr.c (main): Likewise.
21119
21120 2008-01-11  Bruno Haible  <bruno@clisp.org>
21121
21122         * doc/functions/memmem.texi: Add more precisions about platforms.
21123         * doc/functions/strstr.texi: Likewise.
21124
21125 2008-01-10  Eric Blake  <ebb9@byu.net>
21126
21127         * m4/strstr.m4: Delete cruft from copy-n-paste.
21128         Reported by Bruno Haible.
21129
21130 2008-01-10  Bruno Haible  <bruno@clisp.org>
21131
21132         Make c-strstr rely on strstr.
21133         * lib/c-strstr.c: Don't include str-kmp.h.
21134         (c_strstr): Define in terms of strstr.
21135         * modules/c-strstr (Files): Remove lib/str-kmp.h.
21136         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
21137
21138 2008-01-10  Bruno Haible  <bruno@clisp.org>
21139
21140         * doc/gnulib.texi (String Functions in C Locale): New section.
21141         * doc/c-ctype.texi: New file.
21142         * doc/c-strcase.texi: New file.
21143         * doc/c-strcaseeq.texi: New file.
21144         * doc/c-strcasestr.texi: New file.
21145         * doc/c-strstr.texi: New file.
21146         * doc/c-strtod.texi: New file.
21147         * doc/c-strtold.texi: New file.
21148
21149 2008-01-10  Eric Blake  <ebb9@byu.net>
21150
21151         * lib/relocatable.h: Fix a comment.
21152
21153 2008-01-10  Eric Blake  <ebb9@byu.net>
21154
21155         Share two-way algorithm.
21156         * lib/str-two-way.h: New file, merged from...
21157         * lib/memmem.c: ...here...
21158         * lib/strstr.c: ...and here.
21159         * modules/memmem (Files): Use it.
21160         * modules/strstr (Files): Likewise.
21161
21162         Avoid quadratic strstr implementations.
21163         * lib/strstr.c: New file.
21164         * m4/strstr.m4: Likewise.
21165         * modules/strstr: Likewise.
21166         * modules/strstr-tests: Likewise.
21167         * tests/test-strstr.c: Likewise.
21168         * lib/string.in.h (rpl_strstr): Declare.
21169         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
21170         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
21171         * modules/string (Makefile.am): Likewise.
21172         * MODULES.html.sh (string handling): Mention new module.
21173         * doc/functions/strstr.texi (strstr): Document the bug.
21174
21175 2008-01-10  Bruno Haible  <bruno@clisp.org>
21176
21177         * lib/relocatable.h (relocate): State whether result is freshly
21178         allocated or not.
21179         * lib/relocatable.c (relocate): Return a freshly allocated string
21180         instead of a pointer to a privately held string.
21181         Reported by Sylvain Beucler <beuc@gnu.org>.
21182
21183 2008-01-10  Colin Watson  <cjwatson@debian.org>
21184
21185         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
21186         s/S_ISNLK/S_ISLNK/.
21187
21188 2008-01-09  Bruno Haible  <bruno@clisp.org>
21189
21190         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
21191         and other files.
21192         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
21193         if it's only a guess.
21194         * modules/memmem: Simplify by depending on memmem-simple.
21195
21196 2008-01-09  Bruno Haible  <bruno@clisp.org>
21197
21198         Work around OpenBSD 4.0 tdelete() bug.
21199         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
21200         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
21201         macros and don't redefine the enum values.
21202         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
21203         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
21204         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
21205
21206 2008-01-09  Bruno Haible  <bruno@clisp.org>
21207
21208         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
21209         (main): Don't perform the tests if setlocale did not install a UTF-8
21210         locale. Needed on OpenBSD 4.0.
21211         * modules/wcwidth-tests (Depends-on): Add localcharset.
21212
21213 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
21214
21215         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
21216         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
21217         * NEWS: announce this.
21218         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
21219
21220 2008-01-09  Simon Josefsson  <simon@josefsson.org>
21221         and Eric Blake  <ebb9@byu.net>
21222
21223         Add memmem-simple module.
21224         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
21225         (gl_FUNC_MEMMEM): Separate performance from presence checks.
21226         * modules/memmem-simple: New file.
21227         * modules/memmem (Description): Tweak.
21228         * MODULES.html.sh (string handling): Mention new module.
21229         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
21230         addressed by memmem-simple.
21231         * NEWS: Document the difference.
21232
21233 2008-01-09  Eric Blake  <ebb9@byu.net>
21234
21235         Give gcc some memmem optimization hints.
21236         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
21237         (strcasestr): Declare as pure.
21238         * modules/memmem (Maintainer): Claim my implementation.
21239
21240 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21241
21242         Support AIX 6.1 and higher.
21243         * build-aux/config.libpath: Likewise.
21244         * build-aux/config.rpath: Likewise.
21245
21246 2008-01-08  Jim Meyering  <meyering@redhat.com>
21247             Bruno Haible  <bruno@clisp.org>
21248
21249         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
21250         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
21251         Reported by Peter Fales in
21252         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
21253
21254 2008-01-08  Bruno Haible  <bruno@clisp.org>
21255
21256         * modules/unictype/category-of (Depends-on): Add
21257         unictype/category-none.
21258         * modules/unictype/category-and-tests (Depends-on): Add
21259         unictype/category-{L,N,Lu,Nd}.
21260         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
21261         * modules/unictype/category-or-tests (Depends-on): Add
21262         unictype/category-{L,N}.
21263         * modules/unictype/category-name-tests (Depends-on): Add
21264         unictype/category-{Z,Nl}.
21265         Reported by Simon Josefsson.
21266
21267 2008-01-08  Bruno Haible  <bruno@clisp.org>
21268
21269         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
21270         convention better.
21271         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
21272         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
21273         Reported by Peter Miller <millerp@canb.auug.org.au>.
21274
21275 2008-01-08  Eric Blake  <ebb9@byu.net>
21276
21277         Rewrite memmem to guarantee linear complexity without malloc.
21278         * lib/memmem.c (memmem): Use Two-Way rather than
21279         Knuth-Morris-Pratt, to allow O(1) space usage.
21280         (critical_factorization, two_way_short_needle)
21281         (two_way_long_needle): New functions.
21282         (knuth_morris_pratt): Delete.
21283         * modules/memmem (Depends-on): No longer need malloca or stdbool.
21284         Add stdint.
21285         * tests/test-memmem.c (main): Add tests for periodic needle and
21286         sublinear performance.
21287         * doc/functions/memmem.texi (memmem): Document other deficiencies
21288         in cygwin and older glibc.
21289
21290 2008-01-08  Bruno Haible  <bruno@clisp.org>
21291
21292         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
21293         augmentation.
21294
21295 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
21296
21297         Add a configure time option: --disable-acl.
21298         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
21299         AC_ARG_ENABLE(acl).
21300
21301 2008-01-06  Simon Josefsson  <simon@josefsson.org>
21302
21303         * tests/test-localename.c: Don't include obsolete "setenv.h".
21304
21305         * modules/localename-tests (Depends-on): Need unsetenv.
21306
21307 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21308
21309         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
21310
21311 2008-01-06  Colin Watson  <cjwatson@debian.org>
21312
21313         * users.txt: Add man-db.
21314
21315 2008-01-07  Bruno Haible  <bruno@clisp.org>
21316
21317         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
21318         previous section name.
21319
21320 2008-01-07  Bruno Haible  <bruno@clisp.org>
21321
21322         * lib/progname.c (set_program_name): Don't strip off a leading
21323         "lt-" prefix outside a .libs directory.
21324         Suggested by Paul Eggert.
21325
21326 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
21327             Bruno Haible  <bruno@clisp.org>
21328
21329         Improve memory cleanup in 'relocatable' module.
21330         * lib/relocatable.h (compute_curr_prefix): Change return type to
21331         'char *'.
21332         * lib/relocatable.c (compute_curr_prefix): Change return type to
21333         'char *'. Free curr_installdir after use.
21334         (relocate): Free curr_prefix_better after use.
21335         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
21336
21337 2008-01-01  Bruno Haible  <bruno@clisp.org>
21338
21339         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
21340         failure on older glibc systems.
21341         Reported by Peter Fales <psfales@alcatel-lucent.com>.
21342
21343 2008-01-05  Eric Blake  <ebb9@byu.net>
21344
21345         Avoid quadratic system memmem.
21346         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
21347         Reported by Ralf Wildenhues.
21348
21349         Fix memmem test for mingw.
21350         * modules/memmem-tests (configure.ac): Check for alarm.
21351         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
21352         it.
21353         * doc/functions/memmem.texi: New file.
21354         * doc/gnulib.texi (Function Substitutes): Add memmem.
21355         Reported by Bruno Haible.
21356
21357 2008-01-04  Bruno Haible  <bruno@clisp.org>
21358
21359         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
21360         Require gl_HEADER_STRINGS_H_DEFAULTS, not
21361         gl_HEADER_STRING_H_DEFAULTS.
21362
21363 2008-01-04  Eric Blake  <ebb9@byu.net>
21364
21365         Shorten duration of memmem test.
21366         * tests/test-memmem.c (main): Use alarm to declare failure if test
21367         is taking too long.
21368         Reported by Ralf Wildenhues.
21369
21370 2007-12-21  Simon Josefsson  <simon@josefsson.org>
21371
21372         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
21373         string, needed by strerror.
21374
21375 2008-01-03  Colin Watson  <cjwatson@debian.org>
21376             Bruno Haible  <bruno@clisp.org>
21377
21378         * doc/gnulib-tool.texi (Localization): New section.
21379
21380 2008-01-02  Bruno Haible  <bruno@clisp.org>
21381
21382         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
21383         variables to 'unsigned char *' type.
21384         Reported by Paul Eggert.
21385
21386 2008-01-02  Jim Meyering  <jim@meyering.net>
21387
21388         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
21389
21390 2007-12-31  Jim Meyering  <jim@meyering.net>
21391
21392         Avoid use of private FTS type name.
21393         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
21394
21395 2007-12-30  Karl Berry  <karl@gnu.org>
21396
21397         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
21398         work around defect in Texinfo and/or the standalone Info browser.
21399
21400 2007-12-30  Bruno Haible  <bruno@clisp.org>
21401
21402         Unify 5 copies of the KMP code.
21403         * lib/str-kmp.h: New file.
21404         * lib/c-strcasestr.c: Include str-kmp.h.
21405         (knuth_morris_pratt): Remove function.
21406         (c_strcasestr): Update.
21407         * lib/c-strstr.c: Include str-kmp.h.
21408         (knuth_morris_pratt): Remove function.
21409         (c_strcasestr): Update.
21410         * lib/mbscasestr.c: Include str-kmp.h.
21411         (knuth_morris_pratt_unibyte): Remove function.
21412         * lib/mbsstr.c: Include str-kmp.h.
21413         (knuth_morris_pratt_unibyte): Remove function.
21414         * lib/strcasestr.c: Include str-kmp.h.
21415         (knuth_morris_pratt): Remove function.
21416         (strcasestr): Update.
21417         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
21418         * modules/c-strstr (Files): Likewise.
21419         * modules/mbscasestr (Files): Likewise.
21420         * modules/mbsstr (Files): Likewise.
21421         * modules/strcasestr (Files): Likewise.
21422         Suggested by Paul Eggert.
21423
21424 2007-12-30  Bruno Haible  <bruno@clisp.org>
21425
21426         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
21427         defined.
21428
21429 2007-12-30  Bruno Haible  <bruno@clisp.org>
21430
21431         * lib/xmalloca.h: Include xalloc.h.
21432         (xnmalloca): New macro.
21433
21434 2007-12-30  Bruno Haible  <bruno@clisp.org>
21435
21436         * lib/malloca.h (nmalloca): New macro.
21437         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
21438         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
21439         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
21440         knuth_morris_pratt_multibyte): Likewise.
21441         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
21442         knuth_morris_pratt_multibyte): Likewise.
21443         * lib/memmem.c (knuth_morris_pratt): Likewise.
21444         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
21445
21446 2007-12-25  Bruno Haible  <bruno@clisp.org>
21447
21448         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
21449         * lib/glob.c: Don't include openat.h.
21450         (link_exists2_p): Add back the code that deals with the
21451         !GLOB_ALTDIRFUNC case.
21452         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
21453         let it do the filename concatenation.
21454         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
21455         * modules/glob (Depends-on): Remove openat.
21456
21457 2007-12-31  Bruno Haible  <bruno@clisp.org>
21458
21459         * modules/dirfd (License): Change to LGPLv2+.
21460         Approved by Jim Meyering.
21461
21462 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
21463
21464         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
21465         when multiplying M by sizeof (size_t).
21466
21467 2007-12-10  Martin Lambers  <marlam@marlam.de>
21468
21469         Override getpagesize on mingw.
21470         * lib/getpagesize.c: New file.
21471         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
21472         * modules/getpagesize (Files): Add lib/getpagesize.c.
21473         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
21474         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21475         REPLACE_GETPAGESIZE.
21476         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
21477
21478 2007-12-25  Bruno Haible  <bruno@clisp.org>
21479
21480         * modules/localcharset (Notice): New field.
21481         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
21482         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
21483
21484 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
21485             Bruno Haible  <bruno@clisp.org>
21486
21487         Avoid using the syntax symbol() in formatted documentation.
21488         * MODULES.html.sh (func_module): When replacing symbol() with a
21489         hyperlink, remove the parentheses. Show an error if some remain.
21490         Recognize and render the '...' syntax.
21491         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
21492         Rework. Add paragraph about GCC's inlining.
21493         * doc/alloca.texi: Likewise.
21494         * doc/error.texi: Remove parentheses from symbol reference.
21495         * doc/gnulib-intro.texi: Likewise.
21496         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
21497         * modules/fnmatch (Description): Reword to say "the ... function".
21498         * modules/full-read (Description): Likewise.
21499         * modules/full-write (Description): Likewise.
21500         * modules/safe-read (Description): Likewise.
21501         * modules/safe-write (Description): Likewise.
21502         * modules/strchrnul (Description): Likewise.
21503         * modules/trim (Description): Likewise.
21504         * modules/error (Description): Remove parentheses from symbol
21505         references.
21506         * modules/verror (Description): Likewise.
21507         Reported by Karl Berry.
21508
21509 2007-12-25  Bruno Haible  <bruno@clisp.org>
21510
21511         Fixup after 2007-10-16 commit.
21512         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
21513
21514 2007-12-24  Bruno Haible  <bruno@clisp.org>
21515
21516         Make --enable-relocatable work with DESTDIR.
21517         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
21518         to compute installdir from destprog.
21519         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
21520         also set the RELOC_DESTDIR variable.
21521         Reported by Левашев Иван <octagram@bluebottle.com>.
21522
21523 2007-12-24  Bruno Haible  <bruno@clisp.org>
21524
21525         Fix link error due to xalloc_die().
21526         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
21527         of xreadlink.
21528         * lib/relocwrapper.c: Update comments.
21529         * build-aux/install-reloc: Remove xreadlink.c from file list.
21530         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
21531         xreadlink.c.
21532         Reported by Левашев Иван <octagram@bluebottle.com>.
21533
21534 2007-12-24  Bruno Haible  <bruno@clisp.org>
21535
21536         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
21537         * lib/setenv.h: Remove file.
21538         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
21539         lib/setenv.h.
21540         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
21541         (Depends-on): Add stdlib.
21542         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
21543         gl_FUNC_UNSETENV.
21544         (Include): Replace setenv.h with <stdlib.h>.
21545         * modules/unsetenv: New file.
21546         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
21547         * lib/unsetenv.c: Include <stdlib.h> first.
21548         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
21549         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
21550         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
21551         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
21552         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
21553         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
21554         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
21555         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
21556         * doc/functions/unsetenv.texi: Update.
21557         * modules/xsetenv (Depends-on): Add unsetenv.
21558         * modules/getdate (Depends-on): Likewise.
21559         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
21560         * lib/xsetenv.c: Don't include setenv.h.
21561         * lib/getdate.y: Likewise.
21562         * lib/relocwrapper.c: Likewise.
21563         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
21564         (Depends-on): Add stdlib.
21565         * NEWS: Mention the changes.
21566         Reported by Левашев Иван <octagram@bluebottle.com>.
21567
21568 2007-12-23  Bruno Haible  <bruno@clisp.org>
21569
21570         * lib/memmem.c (memmem): Use lowercase variable names. Tab
21571         indentation.
21572
21573 2007-12-23  Bruno Haible  <bruno@clisp.org>
21574
21575         * lib/c-strcasestr.c: Add more comments.
21576         * lib/c-strstr.c: Likewise.
21577         * lib/mbscasestr.c: Likewise.
21578         * lib/mbsstr.c: Likewise.
21579         * lib/strcasestr.c: Likewise.
21580         * lib/memmem.c: Likewise.
21581
21582 2007-12-23  Bruno Haible  <bruno@clisp.org>
21583
21584         * tests/test-memmem.c: Include <string.h> first.
21585
21586 2007-12-22  Bruno Haible  <bruno@clisp.org>
21587
21588         * gnulib-tool (func_create_testdir): Change $auxdir while generating
21589         the contents of $testsbase.
21590         Reported by Ralf Wildenhues.
21591
21592 2007-12-22  Bruno Haible  <bruno@clisp.org>
21593
21594         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
21595         two variables local_ldadd_before, local_ldadd_last.
21596
21597 2007-12-20  Eric Blake  <ebb9@byu.net>
21598
21599         Work around circular library issue when cross-compiling.
21600         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
21601         that progname.o does not need to pull in rpl_memcmp.
21602
21603 2007-12-19  Eric Blake  <ebb9@byu.net>
21604
21605         Fix memmem to avoid O(n^2) worst-case complexity.
21606         * lib/memmem.c (knuth_morris_pratt): New function.
21607         (memmem): Use it if first few naive iterations fail.
21608         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
21609         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
21610         * modules/memchr (License): Likewise.
21611         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
21612         malloca.
21613         * tests/test-memmem.c: Rewrite, borrowing ideas from
21614         test-mbsstr1.c; the old version wouldn't even compile!
21615         * modules/memmem-tests: New file.
21616         * lib/string.in.h (rpl_memmem): Add declaration.
21617         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
21618         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
21619         REPLACE_MEMMEM.
21620
21621 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
21622
21623         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
21624         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
21625         before any system include files, and undef after them all.  This
21626         should fix a problem on VMS reported by John E. Malmberg in
21627         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
21628
21629 2007-12-17  Eric Blake  <ebb9@byu.net>
21630
21631         Revert addition of verify, for BSD/OS.
21632         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
21633         can't handle large files, for the sake of obsolete platforms.
21634         * modules/fseeko (Depends-on): Remove verify.
21635         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
21636         * doc/functions/ftello.texi (ftello): Likewise.
21637         * doc/functions/fgetpos.texi (fgetpos): Likewise.
21638         Reported by Larry Jones.
21639
21640 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
21641
21642         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
21643         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
21644
21645 2007-12-17  Jim Meyering  <meyering@redhat.com>
21646
21647         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
21648         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
21649         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
21650         * modules/getcwd (Depends-on): Add openat.
21651         Reported by Petr Salinger.
21652
21653 2007-12-17  Bruno Haible  <bruno@clisp.org>
21654
21655         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
21656         avoid a segmentation fault of the configure test on x86_64 systems.
21657
21658 2007-12-15  Jim Meyering  <meyering@redhat.com>
21659
21660         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
21661
21662 2007-12-13  Eric Blake  <ebb9@byu.net>
21663
21664         Another fseek test.
21665         * tests/test-fseek.c (main): Also test ungetc handling.
21666         * tests/test-fseeko.c (main): Likewise.
21667         * modules/fseeko (Depends-on): Add verify.
21668         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
21669         large.
21670         Reported by Larry Jones.
21671
21672         Fix fseeko on mingw.
21673         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
21674         seek.
21675
21676         Beef up fseek tests.
21677         * tests/test-fseek.c (main): Also test eof handling.
21678         * tests/test-fseeko.c (main): Likewise.
21679         Reported by Larry Jones.
21680
21681 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
21682
21683         Fix fseeko on BSD-based platforms.
21684         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
21685         successful seek.
21686
21687 2007-12-12  Eric Blake  <ebb9@byu.net>
21688
21689         Allow circular dependency of separate libtests.a
21690         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
21691         when use_libtests.
21692
21693 2007-12-11  Eric Blake  <ebb9@byu.net>
21694
21695         Fix bug with -0.0L in previous patch.
21696         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
21697         * tests/test-isnan.c (main): Also test on zeroes.
21698         * tests/test-isnanf.c (main): Likewise.
21699         * tests/test-isnanl.h (main): Likewise.
21700
21701         Detect pseudo-denormals on x86 even when cross-compiling.
21702         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
21703         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
21704         invalid bit patterns that happen to satisfy ==.
21705
21706         Avoid link failures with separate libtests.a.
21707         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
21708         last, to satisfy circular dependencies.
21709
21710 2007-12-11  Eric Blake  <ebb9@byu.net>
21711         and Bruno Haible  <bruno@clisp.org>
21712
21713         Fix OpenBSD 4.0 <float.h> handling of long double.
21714         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
21715         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
21716         * doc/headers/float.texi (float.h): Document OpenBSD bug.
21717
21718 2007-12-11  Jim Meyering  <meyering@redhat.com>
21719
21720         * users.txt: Add libvirt.
21721
21722         Support versions of autoconf prior to 2.59c.
21723         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
21724         if it is not already defined.
21725
21726 2007-12-09  Bruno Haible  <bruno@clisp.org>
21727
21728         Let 'gnulib-tool --import' collect sources needed for the tests in
21729         tests/ rather than in lib/.
21730         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
21731         argument. If true, add rules to generate libtests.a, and put libtests.a
21732         into $(LDADD). Consider source files in subdirectories and set
21733         uses_subdirs.
21734         (func_emit_initmacro_start, func_emit_initmacro_end,
21735         func_emit_initmacro_done): Pass all arguments explicitly.
21736         (func_import): Determine two module lists main_modules,
21737         testsrelated_modules. Determine use_libtests. Determine two variables
21738         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
21739         instead of just sed_transform_lib_file. Determine two variables
21740         main_files and testsrelated_files. Compute 'files' as the union of
21741         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
21742         func_add_or_update. In the generated gnulib-comp.m4, collect the
21743         object files for tests/ in different variables than those for lib/.
21744         Substitute LIBTESTS_LIBDEPS.
21745         (func_create_testdir): Combine the uses_subdirs results from
21746         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
21747
21748 2007-12-09  Bruno Haible  <bruno@clisp.org>
21749
21750         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
21751         the build-aux directory.
21752
21753 2007-12-09  Bruno Haible  <bruno@clisp.org>
21754
21755         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
21756         introduced on 2006-09-09.
21757
21758 2007-12-07  Jim Meyering  <meyering@redhat.com>
21759
21760         Let these macros work also with autoconf-2.59.
21761         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
21762         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
21763         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
21764
21765 2007-12-06  Jim Meyering  <meyering@redhat.com>
21766
21767         Avoid a configure-time syntax error in gl_FUNC_ACL.
21768         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
21769         function in each branch, before testing the cache variable.
21770
21771 2007-12-04  Eric Blake  <ebb9@byu.net>
21772
21773         Make scripts executable.
21774         * build-aux/config.guess: Add execute permissions.
21775         * build-aux/config.sub: Likewise.
21776         * build-aux/gendocs.sh: Likewise.
21777
21778         Fix frexp on mingw.
21779         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
21780         cross-compiling.
21781         * doc/functions/frexp.texi (frexp): Document the bug.
21782
21783         Make cygwin fseeko check more reliable.
21784         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
21785         version numbers, rather than unrelated feature check.
21786         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
21787         * doc/functions/ftello.texi (ftello): Likewise.
21788         Reported by Bruno Haible.
21789
21790         * m4/strerror.m4: Bump version number.
21791
21792 2007-12-03  Bruno Haible  <bruno@clisp.org>
21793
21794         * doc/functions/mprotect.texi: Mention the mingw problem.
21795
21796 2007-12-03  Eric Blake  <ebb9@byu.net>
21797
21798         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
21799         REPLACE_STRERROR is initialized before this macro.
21800
21801 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
21802
21803         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
21804         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
21805         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
21806         put -lsec in even for programs other than 'ls'.  This fixes a problem
21807         for gettext reported by Bruno Haible in
21808         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
21809         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
21810         Add support for Solaris 10.  This isn't efficient, but should get the
21811         job done for now.
21812
21813 2007-12-03  James Youngman  <jay@gnu.org>
21814
21815         * doc/regexprops-generic.texi: change "an close-group" to "a
21816         close-group" and "illegal" to "not allowed".
21817
21818 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21819
21820         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
21821         pr_byname.h. Needed for the rare case when the maintainer has done
21822         "make maintainer-clean" in the source directory and then attempts a
21823         build outside the source directory.
21824         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
21825         scripts_byname.h.
21826
21827 2007-12-02  Martin Lambers <marlam@marlam.de>
21828             Bruno Haible  <bruno@clisp.org>
21829
21830         * lib/getpagesize.h: Remove file.
21831         * lib/unistd.in.h: Include declaration of getpagesize here.
21832         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
21833         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
21834         HAVE_SYS_PARAM_H.
21835         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
21836         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
21837         * modules/getpagesize (Files): Remove lib/getpagesize.h.
21838         (Depends-on): Add unistd.
21839         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21840         (Include): Use <unistd.h> instead of getpagesize.h.
21841         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
21842         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
21843         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
21844         gl_GETPAGESIZE invocation, already handled by module dependency.
21845         * lib/pagealign_alloc.c: Don't include getpagesize.h.
21846
21847 2007-12-02  Bruno Haible  <bruno@clisp.org>
21848
21849         * modules/strings-tests: New file.
21850         * tests/test-strings.c: New file.
21851
21852         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
21853         * lib/strings.in.h: New file.
21854         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
21855         * m4/strings_h.m4: New file.
21856         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
21857         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
21858         * modules/strings: New file.
21859         * modules/string (Makefile.am): Update.
21860         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
21861         Reported by Karl Berry.
21862
21863 2007-12-01  Eric Blake  <ebb9@byu.net>
21864
21865         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
21866         accomodate fix in cygwin 1.5.25.
21867
21868 2007-12-01  Jim Meyering  <meyering@redhat.com>
21869
21870         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
21871         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
21872         that would inhibit utf8-optimization of a regexp containing line-
21873         or buffer-anchors, e.g., `^', `$'.
21874
21875 2007-11-30  Bruno Haible  <bruno@clisp.org>
21876
21877         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
21878         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
21879         glthread_recursive_lock_init.
21880         * lib/lock.c (glthread_recursive_lock_init)
21881         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
21882         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21883
21884 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
21885
21886         New function qset_acl, like set_acl but with syscall semantics.
21887         * lib/acl.h (qset_acl): New decl.
21888         * lib/acl.c (qset_acl): New function.
21889         (set_acl): Use new function.  Use more-consistent diagnostics.
21890
21891 2007-11-28  Jim Meyering  <meyering@redhat.com>
21892
21893         * modules/physmem (License): Change from GPL to LGPLv2+.
21894
21895 2007-11-26  Bruno Haible  <bruno@clisp.org>
21896
21897         * lib/vasnprintf.c (decode_long_double): Don't abort if the
21898         'long double' type has excess precision.
21899         Reported by Jim Meyering in
21900         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
21901
21902 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21903
21904         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
21905         Sync from <http://gnu.org/licenses>.
21906         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
21907         with license text from same location.
21908         * doc/maintain.texi, doc/standards.texi:  Sync from
21909         <http://savannah.gnu.org/projects/gnustandards>.
21910
21911 2007-11-22  Ondřej Vašík  <ovasik@redhat.com>
21912         and Jim Meyering  <meyering@redhat.com>
21913
21914         Adjust getdate' grammar to accept a slightly more regular language.
21915         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
21916         Before, the former was rejected.
21917         * lib/getdate.y (digits_to_date_time): New function, factored
21918         out of ...
21919         (number): ...here.  Just call digits_to_date_time.
21920         (hybrid): New non-terminal to handle an <unsigned number,
21921         signed relative offset> sequence consistently.
21922
21923 2007-11-18  Jim Meyering  <meyering@redhat.com>
21924
21925         Pull my changes from coreutils:
21926         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
21927         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
21928         use of $gnulib_tool_option_extras, so that it's separated from the
21929         preceding argument.
21930
21931         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
21932         * build-aux/bootstrap (cp_mark_as_generated): Create any required
21933         parent destination directories before copying a file into place.
21934
21935 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
21936
21937         bootstrap: work also with 4-argument variant of AC_INIT
21938         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
21939
21940 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21941
21942         Port test-getaddrinfo to Solaris.
21943         Problem reported by Bruno Haible in
21944         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
21945         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
21946         explanation of setting 'hints'.
21947         Don't reject an implementation merely because it returns EAI_SERVICE.
21948         (EAI_SERVICE): Define to 0 if not defined.
21949
21950 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
21951
21952         The license of gnu-make and posix-shell is now "GPLed build tool".
21953         * modules/gnu-make (License): Likewise.
21954         * modules/posix-shell (License): Likewise.
21955
21956         New module posix-shell, for determining a POSIX shell
21957         or perhaps something that is close enough to a POSIX shell.
21958         * m4/posix-shell.m4: New file.
21959         * modules/posix-shell: New file.
21960
21961         * MODULES.html.sh: Mention new module.
21962
21963         New module gnu-make, for determining whether we're using GNU Make.
21964         * m4/gnu-make.m4: New file.
21965         * modules/gnu-make: New file.
21966         * MODULES.html.sh: Mention new module.
21967
21968 2007-11-14  Jim Meyering  <meyering@redhat.com>
21969
21970         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
21971         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
21972         use this macro to create a function _definition_.
21973         Remove useless "#undef ARGMATCH_DIE".
21974
21975 2007-11-14  Bruno Haible  <bruno@clisp.org>
21976
21977         * lib/config.charset: Update for OpenBSD 4.1.
21978         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
21979
21980 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
21981
21982         Document 64-bit #if problems in stdint.texi.
21983         * doc/headers/stdint.texi (stdint.h): Mention problems with
21984         64-bit-#if, and how to work around them.
21985
21986         Don't insist on 'long long int' support in the preprocessor.  It
21987         breaks too many things.  For example, PRIdMAX still uses a 'long
21988         long int' format with the latest Sun compiler, even though
21989         HAVE_LONG_LONG_INT isn't defined due to that compiler's
21990         preprocessor problem.  This causes the latest coreutils to dump
21991         core on Solaris 10 sparc with the Sun C compiler.
21992         Instead, fix the 2007-10-16 problem in a different way, by evaluating
21993         the troublesome expressions at configure-time, not at #if-time.
21994         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
21995         preprocessor.
21996         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
21997         compile-time C checks, done at 'configure'-time.
21998         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
21999         * modules/inttypes (Makefile): Substitute the new symbols that
22000         gl_INTTYPES_H now generates.
22001         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
22002
22003 2007-11-12  Bruno Haible  <bruno@clisp.org>
22004
22005         Tests for Unicode character classification functions.
22006
22007         * modules/unictype/bidicategory-byname-tests: New file.
22008         * modules/unictype/bidicategory-name-tests: New file.
22009         * modules/unictype/bidicategory-of-tests: New file.
22010         * modules/unictype/bidicategory-test-tests: New file.
22011         * modules/unictype/block-list-tests: New file.
22012         * modules/unictype/block-of-tests: New file.
22013         * modules/unictype/block-test-tests: New file.
22014         * modules/unictype/category-C-tests: New file.
22015         * modules/unictype/category-Cc-tests: New file.
22016         * modules/unictype/category-Cf-tests: New file.
22017         * modules/unictype/category-Cn-tests: New file.
22018         * modules/unictype/category-Co-tests: New file.
22019         * modules/unictype/category-Cs-tests: New file.
22020         * modules/unictype/category-L-tests: New file.
22021         * modules/unictype/category-Ll-tests: New file.
22022         * modules/unictype/category-Lm-tests: New file.
22023         * modules/unictype/category-Lo-tests: New file.
22024         * modules/unictype/category-Lt-tests: New file.
22025         * modules/unictype/category-Lu-tests: New file.
22026         * modules/unictype/category-M-tests: New file.
22027         * modules/unictype/category-Mc-tests: New file.
22028         * modules/unictype/category-Me-tests: New file.
22029         * modules/unictype/category-Mn-tests: New file.
22030         * modules/unictype/category-N-tests: New file.
22031         * modules/unictype/category-Nd-tests: New file.
22032         * modules/unictype/category-Nl-tests: New file.
22033         * modules/unictype/category-No-tests: New file.
22034         * modules/unictype/category-P-tests: New file.
22035         * modules/unictype/category-Pc-tests: New file.
22036         * modules/unictype/category-Pd-tests: New file.
22037         * modules/unictype/category-Pe-tests: New file.
22038         * modules/unictype/category-Pf-tests: New file.
22039         * modules/unictype/category-Pi-tests: New file.
22040         * modules/unictype/category-Po-tests: New file.
22041         * modules/unictype/category-Ps-tests: New file.
22042         * modules/unictype/category-S-tests: New file.
22043         * modules/unictype/category-Sc-tests: New file.
22044         * modules/unictype/category-Sk-tests: New file.
22045         * modules/unictype/category-Sm-tests: New file.
22046         * modules/unictype/category-So-tests: New file.
22047         * modules/unictype/category-Z-tests: New file.
22048         * modules/unictype/category-Zl-tests: New file.
22049         * modules/unictype/category-Zp-tests: New file.
22050         * modules/unictype/category-Zs-tests: New file.
22051         * modules/unictype/category-and-not-tests: New file.
22052         * modules/unictype/category-and-tests: New file.
22053         * modules/unictype/category-byname-tests: New file.
22054         * modules/unictype/category-name-tests: New file.
22055         * modules/unictype/category-none-tests: New file.
22056         * modules/unictype/category-of-tests: New file.
22057         * modules/unictype/category-or-tests: New file.
22058         * modules/unictype/category-test-withtable-tests: New file.
22059         * modules/unictype/combining-class-tests: New file.
22060         * modules/unictype/ctype-alnum-tests: New file.
22061         * modules/unictype/ctype-alpha-tests: New file.
22062         * modules/unictype/ctype-blank-tests: New file.
22063         * modules/unictype/ctype-cntrl-tests: New file.
22064         * modules/unictype/ctype-digit-tests: New file.
22065         * modules/unictype/ctype-graph-tests: New file.
22066         * modules/unictype/ctype-lower-tests: New file.
22067         * modules/unictype/ctype-print-tests: New file.
22068         * modules/unictype/ctype-punct-tests: New file.
22069         * modules/unictype/ctype-space-tests: New file.
22070         * modules/unictype/ctype-upper-tests: New file.
22071         * modules/unictype/ctype-xdigit-tests: New file.
22072         * modules/unictype/decimal-digit-tests: New file.
22073         * modules/unictype/digit-tests: New file.
22074         * modules/unictype/mirror-tests: New file.
22075         * modules/unictype/numeric-tests: New file.
22076         * modules/unictype/property-alphabetic-tests: New file.
22077         * modules/unictype/property-ascii-hex-digit-tests: New file.
22078         * modules/unictype/property-bidi-arabic-digit-tests: New file.
22079         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
22080         * modules/unictype/property-bidi-block-separator-tests: New file.
22081         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
22082         * modules/unictype/property-bidi-common-separator-tests: New file.
22083         * modules/unictype/property-bidi-control-tests: New file.
22084         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
22085         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
22086         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
22087         * modules/unictype/property-bidi-european-digit-tests: New file.
22088         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
22089         * modules/unictype/property-bidi-left-to-right-tests: New file.
22090         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
22091         * modules/unictype/property-bidi-other-neutral-tests: New file.
22092         * modules/unictype/property-bidi-pdf-tests: New file.
22093         * modules/unictype/property-bidi-segment-separator-tests: New file.
22094         * modules/unictype/property-bidi-whitespace-tests: New file.
22095         * modules/unictype/property-byname-tests: New file.
22096         * modules/unictype/property-combining-tests: New file.
22097         * modules/unictype/property-composite-tests: New file.
22098         * modules/unictype/property-currency-symbol-tests: New file.
22099         * modules/unictype/property-dash-tests: New file.
22100         * modules/unictype/property-decimal-digit-tests: New file.
22101         * modules/unictype/property-default-ignorable-code-point-tests: New file.
22102         * modules/unictype/property-deprecated-tests: New file.
22103         * modules/unictype/property-diacritic-tests: New file.
22104         * modules/unictype/property-extender-tests: New file.
22105         * modules/unictype/property-format-control-tests: New file.
22106         * modules/unictype/property-grapheme-base-tests: New file.
22107         * modules/unictype/property-grapheme-extend-tests: New file.
22108         * modules/unictype/property-grapheme-link-tests: New file.
22109         * modules/unictype/property-hex-digit-tests: New file.
22110         * modules/unictype/property-hyphen-tests: New file.
22111         * modules/unictype/property-id-continue-tests: New file.
22112         * modules/unictype/property-id-start-tests: New file.
22113         * modules/unictype/property-ideographic-tests: New file.
22114         * modules/unictype/property-ids-binary-operator-tests: New file.
22115         * modules/unictype/property-ids-trinary-operator-tests: New file.
22116         * modules/unictype/property-ignorable-control-tests: New file.
22117         * modules/unictype/property-iso-control-tests: New file.
22118         * modules/unictype/property-join-control-tests: New file.
22119         * modules/unictype/property-left-of-pair-tests: New file.
22120         * modules/unictype/property-line-separator-tests: New file.
22121         * modules/unictype/property-logical-order-exception-tests: New file.
22122         * modules/unictype/property-lowercase-tests: New file.
22123         * modules/unictype/property-math-tests: New file.
22124         * modules/unictype/property-non-break-tests: New file.
22125         * modules/unictype/property-not-a-character-tests: New file.
22126         * modules/unictype/property-numeric-tests: New file.
22127         * modules/unictype/property-other-alphabetic-tests: New file.
22128         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
22129         * modules/unictype/property-other-grapheme-extend-tests: New file.
22130         * modules/unictype/property-other-id-continue-tests: New file.
22131         * modules/unictype/property-other-id-start-tests: New file.
22132         * modules/unictype/property-other-lowercase-tests: New file.
22133         * modules/unictype/property-other-math-tests: New file.
22134         * modules/unictype/property-other-uppercase-tests: New file.
22135         * modules/unictype/property-paired-punctuation-tests: New file.
22136         * modules/unictype/property-paragraph-separator-tests: New file.
22137         * modules/unictype/property-pattern-syntax-tests: New file.
22138         * modules/unictype/property-pattern-white-space-tests: New file.
22139         * modules/unictype/property-private-use-tests: New file.
22140         * modules/unictype/property-punctuation-tests: New file.
22141         * modules/unictype/property-quotation-mark-tests: New file.
22142         * modules/unictype/property-radical-tests: New file.
22143         * modules/unictype/property-sentence-terminal-tests: New file.
22144         * modules/unictype/property-soft-dotted-tests: New file.
22145         * modules/unictype/property-space-tests: New file.
22146         * modules/unictype/property-terminal-punctuation-tests: New file.
22147         * modules/unictype/property-test-tests: New file.
22148         * modules/unictype/property-titlecase-tests: New file.
22149         * modules/unictype/property-unassigned-code-value-tests: New file.
22150         * modules/unictype/property-unified-ideograph-tests: New file.
22151         * modules/unictype/property-uppercase-tests: New file.
22152         * modules/unictype/property-variation-selector-tests: New file.
22153         * modules/unictype/property-white-space-tests: New file.
22154         * modules/unictype/property-xid-continue-tests: New file.
22155         * modules/unictype/property-xid-start-tests: New file.
22156         * modules/unictype/property-zero-width-tests: New file.
22157         * modules/unictype/scripts-tests: New file.
22158         * modules/unictype/syntax-c-ident-tests: New file.
22159         * modules/unictype/syntax-c-whitespace-tests: New file.
22160         * modules/unictype/syntax-java-ident-tests: New file.
22161         * modules/unictype/syntax-java-whitespace-tests: New file.
22162         * tests/unictype/test-bidi_byname.c: New file.
22163         * tests/unictype/test-bidi_name.c: New file.
22164         * tests/unictype/test-bidi_of.c: New file.
22165         * tests/unictype/test-bidi_test.c: New file.
22166         * tests/unictype/test-block_list.c: New file.
22167         * tests/unictype/test-block_of.c: New file.
22168         * tests/unictype/test-block_test.c: New file.
22169         * tests/unictype/test-categ_and.c: New file.
22170         * tests/unictype/test-categ_and_not.c: New file.
22171         * tests/unictype/test-categ_byname.c: New file.
22172         * tests/unictype/test-categ_name.c: New file.
22173         * tests/unictype/test-categ_none.c: New file.
22174         * tests/unictype/test-categ_of.c: New file.
22175         * tests/unictype/test-categ_or.c: New file.
22176         * tests/unictype/test-categ_test_withtable.c: New file.
22177         * tests/unictype/test-combining.c: New file.
22178         * tests/unictype/test-decdigit.c: New file.
22179         * tests/unictype/test-digit.c: New file.
22180         * tests/unictype/test-mirror.c: New file.
22181         * tests/unictype/test-numeric.c: New file.
22182         * tests/unictype/test-pr_byname.c: New file.
22183         * tests/unictype/test-pr_test.c: New file.
22184         * tests/unictype/test-predicate-part1.h: New file.
22185         * tests/unictype/test-predicate-part2.h: New file.
22186         * tests/unictype/test-scripts.c: New file.
22187         * tests/unictype/test-sy_c_ident.c: New file.
22188         * tests/unictype/test-sy_java_ident.c: New file.
22189
22190         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
22191         for Unicode 5.0.0.
22192         * tests/unictype/test-categ_Cc.c: Likewise.
22193         * tests/unictype/test-categ_Cf.c: Likewise.
22194         * tests/unictype/test-categ_Cn.c: Likewise.
22195         * tests/unictype/test-categ_Co.c: Likewise.
22196         * tests/unictype/test-categ_Cs.c: Likewise.
22197         * tests/unictype/test-categ_L.c: Likewise.
22198         * tests/unictype/test-categ_Ll.c: Likewise.
22199         * tests/unictype/test-categ_Lm.c: Likewise.
22200         * tests/unictype/test-categ_Lo.c: Likewise.
22201         * tests/unictype/test-categ_Lt.c: Likewise.
22202         * tests/unictype/test-categ_Lu.c: Likewise.
22203         * tests/unictype/test-categ_M.c: Likewise.
22204         * tests/unictype/test-categ_Mc.c: Likewise.
22205         * tests/unictype/test-categ_Me.c: Likewise.
22206         * tests/unictype/test-categ_Mn.c: Likewise.
22207         * tests/unictype/test-categ_N.c: Likewise.
22208         * tests/unictype/test-categ_Nd.c: Likewise.
22209         * tests/unictype/test-categ_Nl.c: Likewise.
22210         * tests/unictype/test-categ_No.c: Likewise.
22211         * tests/unictype/test-categ_P.c: Likewise.
22212         * tests/unictype/test-categ_Pc.c: Likewise.
22213         * tests/unictype/test-categ_Pd.c: Likewise.
22214         * tests/unictype/test-categ_Pe.c: Likewise.
22215         * tests/unictype/test-categ_Pf.c: Likewise.
22216         * tests/unictype/test-categ_Pi.c: Likewise.
22217         * tests/unictype/test-categ_Po.c: Likewise.
22218         * tests/unictype/test-categ_Ps.c: Likewise.
22219         * tests/unictype/test-categ_S.c: Likewise.
22220         * tests/unictype/test-categ_Sc.c: Likewise.
22221         * tests/unictype/test-categ_Sk.c: Likewise.
22222         * tests/unictype/test-categ_Sm.c: Likewise.
22223         * tests/unictype/test-categ_So.c: Likewise.
22224         * tests/unictype/test-categ_Z.c: Likewise.
22225         * tests/unictype/test-categ_Zl.c: Likewise.
22226         * tests/unictype/test-categ_Zp.c: Likewise.
22227         * tests/unictype/test-categ_Zs.c: Likewise.
22228         * tests/unictype/test-ctype_alnum.c: Likewise.
22229         * tests/unictype/test-ctype_alpha.c: Likewise.
22230         * tests/unictype/test-ctype_blank.c: Likewise.
22231         * tests/unictype/test-ctype_cntrl.c: Likewise.
22232         * tests/unictype/test-ctype_digit.c: Likewise.
22233         * tests/unictype/test-ctype_graph.c: Likewise.
22234         * tests/unictype/test-ctype_lower.c: Likewise.
22235         * tests/unictype/test-ctype_print.c: Likewise.
22236         * tests/unictype/test-ctype_punct.c: Likewise.
22237         * tests/unictype/test-ctype_space.c: Likewise.
22238         * tests/unictype/test-ctype_upper.c: Likewise.
22239         * tests/unictype/test-ctype_xdigit.c: Likewise.
22240         * tests/unictype/test-decdigit.h: Likewise.
22241         * tests/unictype/test-digit.h: Likewise.
22242         * tests/unictype/test-numeric.h: Likewise.
22243         * tests/unictype/test-pr_alphabetic.c: Likewise.
22244         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
22245         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
22246         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
22247         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
22248         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
22249         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
22250         * tests/unictype/test-pr_bidi_control.c: Likewise.
22251         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
22252         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
22253         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
22254         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
22255         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
22256         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
22257         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
22258         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
22259         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
22260         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
22261         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
22262         * tests/unictype/test-pr_combining.c: Likewise.
22263         * tests/unictype/test-pr_composite.c: Likewise.
22264         * tests/unictype/test-pr_currency_symbol.c: Likewise.
22265         * tests/unictype/test-pr_dash.c: Likewise.
22266         * tests/unictype/test-pr_decimal_digit.c: Likewise.
22267         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
22268         * tests/unictype/test-pr_deprecated.c: Likewise.
22269         * tests/unictype/test-pr_diacritic.c: Likewise.
22270         * tests/unictype/test-pr_extender.c: Likewise.
22271         * tests/unictype/test-pr_format_control.c: Likewise.
22272         * tests/unictype/test-pr_grapheme_base.c: Likewise.
22273         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
22274         * tests/unictype/test-pr_grapheme_link.c: Likewise.
22275         * tests/unictype/test-pr_hex_digit.c: Likewise.
22276         * tests/unictype/test-pr_hyphen.c: Likewise.
22277         * tests/unictype/test-pr_id_continue.c: Likewise.
22278         * tests/unictype/test-pr_id_start.c: Likewise.
22279         * tests/unictype/test-pr_ideographic.c: Likewise.
22280         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
22281         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
22282         * tests/unictype/test-pr_ignorable_control.c: Likewise.
22283         * tests/unictype/test-pr_iso_control.c: Likewise.
22284         * tests/unictype/test-pr_join_control.c: Likewise.
22285         * tests/unictype/test-pr_left_of_pair.c: Likewise.
22286         * tests/unictype/test-pr_line_separator.c: Likewise.
22287         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
22288         * tests/unictype/test-pr_lowercase.c: Likewise.
22289         * tests/unictype/test-pr_math.c: Likewise.
22290         * tests/unictype/test-pr_non_break.c: Likewise.
22291         * tests/unictype/test-pr_not_a_character.c: Likewise.
22292         * tests/unictype/test-pr_numeric.c: Likewise.
22293         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
22294         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
22295         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
22296         * tests/unictype/test-pr_other_id_continue.c: Likewise.
22297         * tests/unictype/test-pr_other_id_start.c: Likewise.
22298         * tests/unictype/test-pr_other_lowercase.c: Likewise.
22299         * tests/unictype/test-pr_other_math.c: Likewise.
22300         * tests/unictype/test-pr_other_uppercase.c: Likewise.
22301         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
22302         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
22303         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
22304         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
22305         * tests/unictype/test-pr_private_use.c: Likewise.
22306         * tests/unictype/test-pr_punctuation.c: Likewise.
22307         * tests/unictype/test-pr_quotation_mark.c: Likewise.
22308         * tests/unictype/test-pr_radical.c: Likewise.
22309         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
22310         * tests/unictype/test-pr_soft_dotted.c: Likewise.
22311         * tests/unictype/test-pr_space.c: Likewise.
22312         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
22313         * tests/unictype/test-pr_titlecase.c: Likewise.
22314         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
22315         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
22316         * tests/unictype/test-pr_uppercase.c: Likewise.
22317         * tests/unictype/test-pr_variation_selector.c: Likewise.
22318         * tests/unictype/test-pr_white_space.c: Likewise.
22319         * tests/unictype/test-pr_xid_continue.c: Likewise.
22320         * tests/unictype/test-pr_xid_start.c: Likewise.
22321         * tests/unictype/test-pr_zero_width.c: Likewise.
22322         * tests/unictype/test-sy_c_whitespace.c: Likewise.
22323         * tests/unictype/test-sy_java_whitespace.c: Likewise.
22324
22325 2007-11-12  Bruno Haible  <bruno@clisp.org>
22326
22327         Unicode character classification functions.
22328         * lib/unictype.h: New file.
22329         * modules/unictype/base: New file.
22330         * modules/unictype/category-L: New file.
22331         * modules/unictype/category-Lu: New file.
22332         * modules/unictype/category-Ll: New file.
22333         * modules/unictype/category-Lt: New file.
22334         * modules/unictype/category-Lm: New file.
22335         * modules/unictype/category-Lo: New file.
22336         * modules/unictype/category-M: New file.
22337         * modules/unictype/category-Mn: New file.
22338         * modules/unictype/category-Mc: New file.
22339         * modules/unictype/category-Me: New file.
22340         * modules/unictype/category-N: New file.
22341         * modules/unictype/category-Nd: New file.
22342         * modules/unictype/category-Nl: New file.
22343         * modules/unictype/category-No: New file.
22344         * modules/unictype/category-P: New file.
22345         * modules/unictype/category-Pc: New file.
22346         * modules/unictype/category-Pd: New file.
22347         * modules/unictype/category-Ps: New file.
22348         * modules/unictype/category-Pe: New file.
22349         * modules/unictype/category-Pi: New file.
22350         * modules/unictype/category-Pf: New file.
22351         * modules/unictype/category-Po: New file.
22352         * modules/unictype/category-S: New file.
22353         * modules/unictype/category-Sm: New file.
22354         * modules/unictype/category-Sc: New file.
22355         * modules/unictype/category-Sk: New file.
22356         * modules/unictype/category-So: New file.
22357         * modules/unictype/category-Z: New file.
22358         * modules/unictype/category-Zs: New file.
22359         * modules/unictype/category-Zl: New file.
22360         * modules/unictype/category-Zp: New file.
22361         * modules/unictype/category-C: New file.
22362         * modules/unictype/category-Cc: New file.
22363         * modules/unictype/category-Cf: New file.
22364         * modules/unictype/category-Cs: New file.
22365         * modules/unictype/category-Co: New file.
22366         * modules/unictype/category-Cn: New file.
22367         * modules/unictype/category-or: New file.
22368         * modules/unictype/category-of: New file.
22369         * modules/unictype/category-test: New file.
22370         * modules/unictype/category-test-withtable: New file.
22371         * modules/unictype/category-byname: New file.
22372         * modules/unictype/category-none: New file.
22373         * modules/unictype/category-and: New file.
22374         * modules/unictype/category-and-not: New file.
22375         * modules/unictype/category-name: New file.
22376         * modules/unictype/combining-class: New file.
22377         * modules/unictype/category-all: New file.
22378         * modules/unictype/bidicategory-all: New file.
22379         * modules/unictype/bidicategory-byname: New file.
22380         * modules/unictype/bidicategory-name: New file.
22381         * modules/unictype/bidicategory-of: New file.
22382         * modules/unictype/bidicategory-test: New file.
22383         * modules/unictype/decimal-digit: New file.
22384         * modules/unictype/digit: New file.
22385         * modules/unictype/numeric: New file.
22386         * modules/unictype/mirror: New file.
22387         * modules/unictype/property-white-space: New file.
22388         * modules/unictype/property-alphabetic: New file.
22389         * modules/unictype/property-other-alphabetic: New file.
22390         * modules/unictype/property-not-a-character: New file.
22391         * modules/unictype/property-default-ignorable-code-point: New file.
22392         * modules/unictype/property-other-default-ignorable-code-point: New
22393         file.
22394         * modules/unictype/property-deprecated: New file.
22395         * modules/unictype/property-logical-order-exception: New file.
22396         * modules/unictype/property-variation-selector: New file.
22397         * modules/unictype/property-private-use: New file.
22398         * modules/unictype/property-unassigned-code-value: New file.
22399         * modules/unictype/property-uppercase: New file.
22400         * modules/unictype/property-other-uppercase: New file.
22401         * modules/unictype/property-lowercase: New file.
22402         * modules/unictype/property-other-lowercase: New file.
22403         * modules/unictype/property-titlecase: New file.
22404         * modules/unictype/property-soft-dotted: New file.
22405         * modules/unictype/property-id-start: New file.
22406         * modules/unictype/property-other-id-start: New file.
22407         * modules/unictype/property-id-continue: New file.
22408         * modules/unictype/property-other-id-continue: New file.
22409         * modules/unictype/property-xid-start: New file.
22410         * modules/unictype/property-xid-continue: New file.
22411         * modules/unictype/property-pattern-white-space: New file.
22412         * modules/unictype/property-pattern-syntax: New file.
22413         * modules/unictype/property-join-control: New file.
22414         * modules/unictype/property-grapheme-base: New file.
22415         * modules/unictype/property-grapheme-extend: New file.
22416         * modules/unictype/property-other-grapheme-extend: New file.
22417         * modules/unictype/property-grapheme-link: New file.
22418         * modules/unictype/property-bidi-control: New file.
22419         * modules/unictype/property-bidi-left-to-right: New file.
22420         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
22421         * modules/unictype/property-bidi-arabic-right-to-left: New file.
22422         * modules/unictype/property-bidi-european-digit: New file.
22423         * modules/unictype/property-bidi-eur-num-separator: New file.
22424         * modules/unictype/property-bidi-eur-num-terminator: New file.
22425         * modules/unictype/property-bidi-arabic-digit: New file.
22426         * modules/unictype/property-bidi-common-separator: New file.
22427         * modules/unictype/property-bidi-block-separator: New file.
22428         * modules/unictype/property-bidi-segment-separator: New file.
22429         * modules/unictype/property-bidi-whitespace: New file.
22430         * modules/unictype/property-bidi-non-spacing-mark: New file.
22431         * modules/unictype/property-bidi-boundary-neutral: New file.
22432         * modules/unictype/property-bidi-pdf: New file.
22433         * modules/unictype/property-bidi-embedding-or-override: New file.
22434         * modules/unictype/property-bidi-other-neutral: New file.
22435         * modules/unictype/property-hex-digit: New file.
22436         * modules/unictype/property-ascii-hex-digit: New file.
22437         * modules/unictype/property-ideographic: New file.
22438         * modules/unictype/property-unified-ideograph: New file.
22439         * modules/unictype/property-radical: New file.
22440         * modules/unictype/property-ids-binary-operator: New file.
22441         * modules/unictype/property-ids-trinary-operator: New file.
22442         * modules/unictype/property-zero-width: New file.
22443         * modules/unictype/property-space: New file.
22444         * modules/unictype/property-non-break: New file.
22445         * modules/unictype/property-iso-control: New file.
22446         * modules/unictype/property-format-control: New file.
22447         * modules/unictype/property-dash: New file.
22448         * modules/unictype/property-hyphen: New file.
22449         * modules/unictype/property-punctuation: New file.
22450         * modules/unictype/property-line-separator: New file.
22451         * modules/unictype/property-paragraph-separator: New file.
22452         * modules/unictype/property-quotation-mark: New file.
22453         * modules/unictype/property-sentence-terminal: New file.
22454         * modules/unictype/property-terminal-punctuation: New file.
22455         * modules/unictype/property-currency-symbol: New file.
22456         * modules/unictype/property-math: New file.
22457         * modules/unictype/property-other-math: New file.
22458         * modules/unictype/property-paired-punctuation: New file.
22459         * modules/unictype/property-left-of-pair: New file.
22460         * modules/unictype/property-combining: New file.
22461         * modules/unictype/property-composite: New file.
22462         * modules/unictype/property-decimal-digit: New file.
22463         * modules/unictype/property-numeric: New file.
22464         * modules/unictype/property-diacritic: New file.
22465         * modules/unictype/property-extender: New file.
22466         * modules/unictype/property-ignorable-control: New file.
22467         * modules/unictype/property-test: New file.
22468         * modules/unictype/property-byname: New file.
22469         * modules/unictype/property-all: New file.
22470         * modules/unictype/scripts: New file.
22471         * modules/unictype/scripts-all: New file.
22472         * modules/unictype/block-of: New file.
22473         * modules/unictype/block-test: New file.
22474         * modules/unictype/block-list: New file.
22475         * modules/unictype/block-all: New file.
22476         * modules/unictype/syntax-c-whitespace: New file.
22477         * modules/unictype/syntax-java-whitespace: New file.
22478         * modules/unictype/syntax-c-ident: New file.
22479         * modules/unictype/syntax-java-ident: New file.
22480         * modules/unictype/ctype-alnum: New file.
22481         * modules/unictype/ctype-alpha: New file.
22482         * modules/unictype/ctype-cntrl: New file.
22483         * modules/unictype/ctype-digit: New file.
22484         * modules/unictype/ctype-graph: New file.
22485         * modules/unictype/ctype-lower: New file.
22486         * modules/unictype/ctype-print: New file.
22487         * modules/unictype/ctype-punct: New file.
22488         * modules/unictype/ctype-space: New file.
22489         * modules/unictype/ctype-upper: New file.
22490         * modules/unictype/ctype-xdigit: New file.
22491         * modules/unictype/ctype-blank: New file.
22492         * lib/unictype/bidi_byname.c: New file.
22493         * lib/unictype/bidi_name.c: New file.
22494         * lib/unictype/bidi_of.c: New file.
22495         * lib/unictype/bidi_test.c: New file.
22496         * lib/unictype/bitmap.h: New file.
22497         * lib/unictype/block_test.c: New file.
22498         * lib/unictype/blocks.c: New file.
22499         * lib/unictype/categ_C.c: New file.
22500         * lib/unictype/categ_Cc.c: New file.
22501         * lib/unictype/categ_Cf.c: New file.
22502         * lib/unictype/categ_Cn.c: New file.
22503         * lib/unictype/categ_Co.c: New file.
22504         * lib/unictype/categ_Cs.c: New file.
22505         * lib/unictype/categ_L.c: New file.
22506         * lib/unictype/categ_Ll.c: New file.
22507         * lib/unictype/categ_Lm.c: New file.
22508         * lib/unictype/categ_Lo.c: New file.
22509         * lib/unictype/categ_Lt.c: New file.
22510         * lib/unictype/categ_Lu.c: New file.
22511         * lib/unictype/categ_M.c: New file.
22512         * lib/unictype/categ_Mc.c: New file.
22513         * lib/unictype/categ_Me.c: New file.
22514         * lib/unictype/categ_Mn.c: New file.
22515         * lib/unictype/categ_N.c: New file.
22516         * lib/unictype/categ_Nd.c: New file.
22517         * lib/unictype/categ_Nl.c: New file.
22518         * lib/unictype/categ_No.c: New file.
22519         * lib/unictype/categ_P.c: New file.
22520         * lib/unictype/categ_Pc.c: New file.
22521         * lib/unictype/categ_Pd.c: New file.
22522         * lib/unictype/categ_Pe.c: New file.
22523         * lib/unictype/categ_Pf.c: New file.
22524         * lib/unictype/categ_Pi.c: New file.
22525         * lib/unictype/categ_Po.c: New file.
22526         * lib/unictype/categ_Ps.c: New file.
22527         * lib/unictype/categ_S.c: New file.
22528         * lib/unictype/categ_Sc.c: New file.
22529         * lib/unictype/categ_Sk.c: New file.
22530         * lib/unictype/categ_Sm.c: New file.
22531         * lib/unictype/categ_So.c: New file.
22532         * lib/unictype/categ_Z.c: New file.
22533         * lib/unictype/categ_Zl.c: New file.
22534         * lib/unictype/categ_Zp.c: New file.
22535         * lib/unictype/categ_Zs.c: New file.
22536         * lib/unictype/categ_and.c: New file.
22537         * lib/unictype/categ_and_not.c: New file.
22538         * lib/unictype/categ_byname.c: New file.
22539         * lib/unictype/categ_name.c: New file.
22540         * lib/unictype/categ_none.c: New file.
22541         * lib/unictype/categ_of.c: New file.
22542         * lib/unictype/categ_or.c: New file.
22543         * lib/unictype/categ_test.c: New file.
22544         * lib/unictype/combining.c: New file.
22545         * lib/unictype/ctype_alnum.c: New file.
22546         * lib/unictype/ctype_alpha.c: New file.
22547         * lib/unictype/ctype_blank.c: New file.
22548         * lib/unictype/ctype_cntrl.c: New file.
22549         * lib/unictype/ctype_digit.c: New file.
22550         * lib/unictype/ctype_graph.c: New file.
22551         * lib/unictype/ctype_lower.c: New file.
22552         * lib/unictype/ctype_print.c: New file.
22553         * lib/unictype/ctype_punct.c: New file.
22554         * lib/unictype/ctype_space.c: New file.
22555         * lib/unictype/ctype_upper.c: New file.
22556         * lib/unictype/ctype_xdigit.c: New file.
22557         * lib/unictype/decdigit.c: New file.
22558         * lib/unictype/digit.c: New file.
22559         * lib/unictype/identsyntaxmap.h: New file.
22560         * lib/unictype/mirror.c: New file.
22561         * lib/unictype/numeric.c: New file.
22562         * lib/unictype/pr_alphabetic.c: New file.
22563         * lib/unictype/pr_ascii_hex_digit.c: New file.
22564         * lib/unictype/pr_bidi_arabic_digit.c: New file.
22565         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
22566         * lib/unictype/pr_bidi_block_separator.c: New file.
22567         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
22568         * lib/unictype/pr_bidi_common_separator.c: New file.
22569         * lib/unictype/pr_bidi_control.c: New file.
22570         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
22571         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
22572         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
22573         * lib/unictype/pr_bidi_european_digit.c: New file.
22574         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
22575         * lib/unictype/pr_bidi_left_to_right.c: New file.
22576         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
22577         * lib/unictype/pr_bidi_other_neutral.c: New file.
22578         * lib/unictype/pr_bidi_pdf.c: New file.
22579         * lib/unictype/pr_bidi_segment_separator.c: New file.
22580         * lib/unictype/pr_bidi_whitespace.c: New file.
22581         * lib/unictype/pr_byname.c: New file.
22582         * lib/unictype/pr_byname.gperf: New file.
22583         * lib/unictype/pr_combining.c: New file.
22584         * lib/unictype/pr_composite.c: New file.
22585         * lib/unictype/pr_currency_symbol.c: New file.
22586         * lib/unictype/pr_dash.c: New file.
22587         * lib/unictype/pr_decimal_digit.c: New file.
22588         * lib/unictype/pr_default_ignorable_code_point.c: New file.
22589         * lib/unictype/pr_deprecated.c: New file.
22590         * lib/unictype/pr_diacritic.c: New file.
22591         * lib/unictype/pr_extender.c: New file.
22592         * lib/unictype/pr_format_control.c: New file.
22593         * lib/unictype/pr_grapheme_base.c: New file.
22594         * lib/unictype/pr_grapheme_extend.c: New file.
22595         * lib/unictype/pr_grapheme_link.c: New file.
22596         * lib/unictype/pr_hex_digit.c: New file.
22597         * lib/unictype/pr_hyphen.c: New file.
22598         * lib/unictype/pr_id_continue.c: New file.
22599         * lib/unictype/pr_id_start.c: New file.
22600         * lib/unictype/pr_ideographic.c: New file.
22601         * lib/unictype/pr_ids_binary_operator.c: New file.
22602         * lib/unictype/pr_ids_trinary_operator.c: New file.
22603         * lib/unictype/pr_ignorable_control.c: New file.
22604         * lib/unictype/pr_iso_control.c: New file.
22605         * lib/unictype/pr_join_control.c: New file.
22606         * lib/unictype/pr_left_of_pair.c: New file.
22607         * lib/unictype/pr_line_separator.c: New file.
22608         * lib/unictype/pr_logical_order_exception.c: New file.
22609         * lib/unictype/pr_lowercase.c: New file.
22610         * lib/unictype/pr_math.c: New file.
22611         * lib/unictype/pr_non_break.c: New file.
22612         * lib/unictype/pr_not_a_character.c: New file.
22613         * lib/unictype/pr_numeric.c: New file.
22614         * lib/unictype/pr_other_alphabetic.c: New file.
22615         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
22616         * lib/unictype/pr_other_grapheme_extend.c: New file.
22617         * lib/unictype/pr_other_id_continue.c: New file.
22618         * lib/unictype/pr_other_id_start.c: New file.
22619         * lib/unictype/pr_other_lowercase.c: New file.
22620         * lib/unictype/pr_other_math.c: New file.
22621         * lib/unictype/pr_other_uppercase.c: New file.
22622         * lib/unictype/pr_paired_punctuation.c: New file.
22623         * lib/unictype/pr_paragraph_separator.c: New file.
22624         * lib/unictype/pr_pattern_syntax.c: New file.
22625         * lib/unictype/pr_pattern_white_space.c: New file.
22626         * lib/unictype/pr_private_use.c: New file.
22627         * lib/unictype/pr_punctuation.c: New file.
22628         * lib/unictype/pr_quotation_mark.c: New file.
22629         * lib/unictype/pr_radical.c: New file.
22630         * lib/unictype/pr_sentence_terminal.c: New file.
22631         * lib/unictype/pr_soft_dotted.c: New file.
22632         * lib/unictype/pr_space.c: New file.
22633         * lib/unictype/pr_terminal_punctuation.c: New file.
22634         * lib/unictype/pr_test.c: New file.
22635         * lib/unictype/pr_titlecase.c: New file.
22636         * lib/unictype/pr_unassigned_code_value.c: New file.
22637         * lib/unictype/pr_unified_ideograph.c: New file.
22638         * lib/unictype/pr_uppercase.c: New file.
22639         * lib/unictype/pr_variation_selector.c: New file.
22640         * lib/unictype/pr_white_space.c: New file.
22641         * lib/unictype/pr_xid_continue.c: New file.
22642         * lib/unictype/pr_xid_start.c: New file.
22643         * lib/unictype/pr_zero_width.c: New file.
22644         * lib/unictype/scripts.c: New file.
22645         * lib/unictype/sy_c_ident.c: New file.
22646         * lib/unictype/sy_c_whitespace.c: New file.
22647         * lib/unictype/sy_java_ident.c: New file.
22648         * lib/unictype/sy_java_whitespace.c: New file.
22649
22650         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
22651         Unicode 5.0.0.
22652         * lib/unictype/blocks.h: Likewise.
22653         * lib/unictype/categ_C.h: Likewise.
22654         * lib/unictype/categ_Cc.h: Likewise.
22655         * lib/unictype/categ_Cf.h: Likewise.
22656         * lib/unictype/categ_Cn.h: Likewise.
22657         * lib/unictype/categ_Co.h: Likewise.
22658         * lib/unictype/categ_Cs.h: Likewise.
22659         * lib/unictype/categ_L.h: Likewise.
22660         * lib/unictype/categ_Ll.h: Likewise.
22661         * lib/unictype/categ_Lm.h: Likewise.
22662         * lib/unictype/categ_Lo.h: Likewise.
22663         * lib/unictype/categ_Lt.h: Likewise.
22664         * lib/unictype/categ_Lu.h: Likewise.
22665         * lib/unictype/categ_M.h: Likewise.
22666         * lib/unictype/categ_Mc.h: Likewise.
22667         * lib/unictype/categ_Me.h: Likewise.
22668         * lib/unictype/categ_Mn.h: Likewise.
22669         * lib/unictype/categ_N.h: Likewise.
22670         * lib/unictype/categ_Nd.h: Likewise.
22671         * lib/unictype/categ_Nl.h: Likewise.
22672         * lib/unictype/categ_No.h: Likewise.
22673         * lib/unictype/categ_P.h: Likewise.
22674         * lib/unictype/categ_Pc.h: Likewise.
22675         * lib/unictype/categ_Pd.h: Likewise.
22676         * lib/unictype/categ_Pe.h: Likewise.
22677         * lib/unictype/categ_Pf.h: Likewise.
22678         * lib/unictype/categ_Pi.h: Likewise.
22679         * lib/unictype/categ_Po.h: Likewise.
22680         * lib/unictype/categ_Ps.h: Likewise.
22681         * lib/unictype/categ_S.h: Likewise.
22682         * lib/unictype/categ_Sc.h: Likewise.
22683         * lib/unictype/categ_Sk.h: Likewise.
22684         * lib/unictype/categ_Sm.h: Likewise.
22685         * lib/unictype/categ_So.h: Likewise.
22686         * lib/unictype/categ_Z.h: Likewise.
22687         * lib/unictype/categ_Zl.h: Likewise.
22688         * lib/unictype/categ_Zp.h: Likewise.
22689         * lib/unictype/categ_Zs.h: Likewise.
22690         * lib/unictype/categ_of.h: Likewise.
22691         * lib/unictype/combining.h: Likewise.
22692         * lib/unictype/ctype_alnum.h: Likewise.
22693         * lib/unictype/ctype_alpha.h: Likewise.
22694         * lib/unictype/ctype_blank.h: Likewise.
22695         * lib/unictype/ctype_cntrl.h: Likewise.
22696         * lib/unictype/ctype_digit.h: Likewise.
22697         * lib/unictype/ctype_graph.h: Likewise.
22698         * lib/unictype/ctype_lower.h: Likewise.
22699         * lib/unictype/ctype_print.h: Likewise.
22700         * lib/unictype/ctype_punct.h: Likewise.
22701         * lib/unictype/ctype_space.h: Likewise.
22702         * lib/unictype/ctype_upper.h: Likewise.
22703         * lib/unictype/ctype_xdigit.h: Likewise.
22704         * lib/unictype/decdigit.h: Likewise.
22705         * lib/unictype/digit.h: Likewise.
22706         * lib/unictype/mirror.h: Likewise.
22707         * lib/unictype/numeric.h: Likewise.
22708         * lib/unictype/pr_alphabetic.h: Likewise.
22709         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
22710         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
22711         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
22712         * lib/unictype/pr_bidi_block_separator.h: Likewise.
22713         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
22714         * lib/unictype/pr_bidi_common_separator.h: Likewise.
22715         * lib/unictype/pr_bidi_control.h: Likewise.
22716         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
22717         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
22718         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
22719         * lib/unictype/pr_bidi_european_digit.h: Likewise.
22720         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
22721         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
22722         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
22723         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
22724         * lib/unictype/pr_bidi_pdf.h: Likewise.
22725         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
22726         * lib/unictype/pr_bidi_whitespace.h: Likewise.
22727         * lib/unictype/pr_combining.h: Likewise.
22728         * lib/unictype/pr_composite.h: Likewise.
22729         * lib/unictype/pr_currency_symbol.h: Likewise.
22730         * lib/unictype/pr_dash.h: Likewise.
22731         * lib/unictype/pr_decimal_digit.h: Likewise.
22732         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
22733         * lib/unictype/pr_deprecated.h: Likewise.
22734         * lib/unictype/pr_diacritic.h: Likewise.
22735         * lib/unictype/pr_extender.h: Likewise.
22736         * lib/unictype/pr_format_control.h: Likewise.
22737         * lib/unictype/pr_grapheme_base.h: Likewise.
22738         * lib/unictype/pr_grapheme_extend.h: Likewise.
22739         * lib/unictype/pr_grapheme_link.h: Likewise.
22740         * lib/unictype/pr_hex_digit.h: Likewise.
22741         * lib/unictype/pr_hyphen.h: Likewise.
22742         * lib/unictype/pr_id_continue.h: Likewise.
22743         * lib/unictype/pr_id_start.h: Likewise.
22744         * lib/unictype/pr_ideographic.h: Likewise.
22745         * lib/unictype/pr_ids_binary_operator.h: Likewise.
22746         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
22747         * lib/unictype/pr_ignorable_control.h: Likewise.
22748         * lib/unictype/pr_iso_control.h: Likewise.
22749         * lib/unictype/pr_join_control.h: Likewise.
22750         * lib/unictype/pr_left_of_pair.h: Likewise.
22751         * lib/unictype/pr_line_separator.h: Likewise.
22752         * lib/unictype/pr_logical_order_exception.h: Likewise.
22753         * lib/unictype/pr_lowercase.h: Likewise.
22754         * lib/unictype/pr_math.h: Likewise.
22755         * lib/unictype/pr_non_break.h: Likewise.
22756         * lib/unictype/pr_not_a_character.h: Likewise.
22757         * lib/unictype/pr_numeric.h: Likewise.
22758         * lib/unictype/pr_other_alphabetic.h: Likewise.
22759         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
22760         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
22761         * lib/unictype/pr_other_id_continue.h: Likewise.
22762         * lib/unictype/pr_other_id_start.h: Likewise.
22763         * lib/unictype/pr_other_lowercase.h: Likewise.
22764         * lib/unictype/pr_other_math.h: Likewise.
22765         * lib/unictype/pr_other_uppercase.h: Likewise.
22766         * lib/unictype/pr_paired_punctuation.h: Likewise.
22767         * lib/unictype/pr_paragraph_separator.h: Likewise.
22768         * lib/unictype/pr_pattern_syntax.h: Likewise.
22769         * lib/unictype/pr_pattern_white_space.h: Likewise.
22770         * lib/unictype/pr_private_use.h: Likewise.
22771         * lib/unictype/pr_punctuation.h: Likewise.
22772         * lib/unictype/pr_quotation_mark.h: Likewise.
22773         * lib/unictype/pr_radical.h: Likewise.
22774         * lib/unictype/pr_sentence_terminal.h: Likewise.
22775         * lib/unictype/pr_soft_dotted.h: Likewise.
22776         * lib/unictype/pr_space.h: Likewise.
22777         * lib/unictype/pr_terminal_punctuation.h: Likewise.
22778         * lib/unictype/pr_titlecase.h: Likewise.
22779         * lib/unictype/pr_unassigned_code_value.h: Likewise.
22780         * lib/unictype/pr_unified_ideograph.h: Likewise.
22781         * lib/unictype/pr_uppercase.h: Likewise.
22782         * lib/unictype/pr_variation_selector.h: Likewise.
22783         * lib/unictype/pr_white_space.h: Likewise.
22784         * lib/unictype/pr_xid_continue.h: Likewise.
22785         * lib/unictype/pr_xid_start.h: Likewise.
22786         * lib/unictype/pr_zero_width.h: Likewise.
22787         * lib/unictype/scripts.h: Likewise.
22788         * lib/unictype/scripts_byname.gperf: Likewise.
22789         * lib/unictype/sy_c_ident.h: Likewise.
22790         * lib/unictype/sy_c_whitespace.h: Likewise.
22791         * lib/unictype/sy_java_ident.h: Likewise.
22792         * lib/unictype/sy_java_whitespace.h: Likewise.
22793
22794         * lib/unictype/Makefile: New file.
22795         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
22796         glibc.
22797         * lib/unictype/3level.h: New file, copied from glibc.
22798         * lib/unictype/3levelbit.h: New file.
22799
22800 2007-11-11  Bruno Haible  <bruno@clisp.org>
22801
22802         * modules/gperf: New file.
22803         * modules/iconv_open (Depends-on): Add it.
22804         (Makefile.am): Remove the GPERF definition.
22805
22806 2007-11-11  Bruno Haible  <bruno@clisp.org>
22807
22808         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
22809         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
22810
22811 2007-11-11  Bruno Haible  <bruno@clisp.org>
22812
22813         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
22814         (usage): Remove function.
22815
22816 2007-11-11  Bruno Haible  <bruno@clisp.org>
22817
22818         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
22819         gl_FUNC_CEILF_LIBS.
22820         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
22821         gl_FUNC_CEIL_LIBS.
22822         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
22823         gl_FUNC_CEILL_LIBS.
22824         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
22825         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
22826         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
22827
22828 2007-11-11  Bruno Haible  <bruno@clisp.org>
22829
22830         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
22831         roundf were declared but do not exist on functions.
22832         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
22833         roundl were declared but do not exist on functions.
22834         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
22835         HAVE_FLOORL_AND_CEILL, respectively.
22836         Needed for Sun C on Solaris 10.
22837
22838 2007-11-11  Bruno Haible  <bruno@clisp.org>
22839
22840         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
22841         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
22842         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
22843         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
22844         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
22845         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
22846         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
22847         HAVE_DECL_ROUNDF.
22848         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
22849         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
22850         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
22851         of HAVE_DECL_ROUND*.
22852         * modules/math (Makefile.am): Update.
22853
22854 2007-11-10  Bruno Haible  <bruno@clisp.org>
22855
22856         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
22857         ptrdiff_t as m4/intl.m4.
22858
22859 2007-11-10  Jim Meyering  <meyering@redhat.com>
22860
22861         Avoid link failure for the argmatch test.
22862         * tests/test-argmatch.c (usage): Define function to avoid a link
22863         failure: argmatch_die requires a usage function.
22864
22865 2007-11-09  Bruno Haible  <bruno@clisp.org>
22866
22867         * doc/functions/snprintf.texi: Mention BeOS deficiency.
22868         * doc/functions/vsnprintf.texi: Likewise.
22869         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
22870         with a size argument < 2.
22871
22872 2007-11-09  Bruno Haible  <bruno@clisp.org>
22873
22874         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
22875         buffer. Fixes an inefficiency introduced on 2007-11-03.
22876
22877 2007-11-09  Bruno Haible  <bruno@clisp.org>
22878
22879         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
22880         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
22881
22882 2007-11-08  Jim Meyering  <meyering@redhat.com>
22883
22884         Change cache variable name prefix "jm_" to "gl_" everywhere.
22885         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
22886         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
22887         * m4/uptime.m4: s/gl_/jm_/
22888
22889 2007-11-07  Bruno Haible  <bruno@clisp.org>
22890
22891         Update to GNU gettext 0.17.
22892         * m4/intl.m4: Update to GNU gettext 0.17.
22893         * m4/po.m4: Likewise.
22894         * modules/gettext (Files): Remove m4/ulonglong.m4.
22895         (configure.ac): Require gettext infrastructure from version 0.17.
22896
22897 2007-11-06  Bruno Haible  <bruno@clisp.org>
22898
22899         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
22900         symbolic values are not defined in a public header.
22901         * lib/freadable.c (freadable) [QNX]: Likewise.
22902         * lib/freadahead.c (freadahead) [QNX]: Likewise.
22903         * lib/freading.c (freading) [QNX]: Likewise.
22904         * lib/fseterr.c (fseterr) [QNX]: Likewise.
22905         * lib/fwritable.c (fwritable) [QNX]: Likewise.
22906         * lib/fwriting.c (fwriting) [QNX]: Likewise.
22907         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
22908         Reported by Alain Magloire.
22909
22910         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
22911
22912 2007-11-05  Bruno Haible  <bruno@clisp.org>
22913
22914         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
22915         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
22916         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
22917         Reported by Eric Blake.
22918
22919 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22920             Bruno Haible  <bruno@clisp.org>
22921
22922         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
22923         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
22924         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
22925         (malloc): Undefine also before including <stdlib.h>.
22926         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
22927         Needed on OSF/1 4.0.
22928
22929 2007-11-05  Jim Meyering  <meyering@redhat.com>
22930
22931         git-version-gen: sync from coreutils.
22932         * build-aux/git-version-gen: Add comments.
22933         Change the first '-' to '.' in the snapshot version string,
22934         e.g., 6.9-377-08144 -> 6.9.377-08144
22935         Remove first parameter.
22936         Don't declare a version "-dirty" merely because a time
22937         stamp has changed.
22938
22939 2007-11-04  Bruno Haible  <bruno@clisp.org>
22940
22941         * lib/lock.h: Protect all macro definitions containing an 'if'
22942         statement through a "do { ... } while (0)".
22943         * lib/tls.h: Likewise.
22944
22945 2007-11-04  Bruno Haible  <bruno@clisp.org>
22946
22947         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
22948
22949 2007-11-04  Bruno Haible  <bruno@clisp.org>
22950
22951         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
22952         * modules/fprintf-posix (Depends-on): Add nocrash.
22953         * modules/snprintf-posix (Depends-on): Likewise.
22954         * modules/sprintf-posix (Depends-on): Likewise.
22955         * modules/vasnprintf-posix (Depends-on): Likewise.
22956         * modules/vasprintf-posix (Depends-on): Likewise.
22957         * modules/vfprintf-posix (Depends-on): Likewise.
22958         * modules/vsnprintf-posix (Depends-on): Likewise.
22959         * modules/vsprintf-posix (Depends-on): Likewise.
22960         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
22961         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
22962         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
22963         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
22964         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
22965         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
22966         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
22967
22968 2007-11-04  Bruno Haible  <bruno@clisp.org>
22969
22970         * modules/nocrash: New file.
22971         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
22972         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
22973
22974 2007-11-04  Bruno Haible  <bruno@clisp.org>
22975
22976         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
22977         precision handling.
22978         * tests/test-vasprintf-posix.c (test_function): Likewise.
22979         * tests/test-snprintf-posix.h (test_function): Likewise.
22980         * tests/test-sprintf-posix.h (test_function): Likewise.
22981
22982         Fix *printf behaviour for large precisions on mingw and BeOS.
22983         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
22984         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
22985         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
22986         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
22987         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
22988         gl_PRINTF_PRECISION and test its result. Invoke
22989         gl_PREREQ_VASNPRINTF_PRECISION.
22990         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
22991         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22992         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22993         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22994         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22995         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22996         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22997         * doc/functions/fprintf.texi: Update.
22998         * doc/functions/printf.texi: Update.
22999         * doc/functions/snprintf.texi: Update.
23000         * doc/functions/sprintf.texi: Update.
23001         * doc/functions/vfprintf.texi: Update.
23002         * doc/functions/vprintf.texi: Update.
23003         * doc/functions/vsnprintf.texi: Update.
23004         * doc/functions/vsprintf.texi: Update.
23005
23006 2007-11-04  Bruno Haible  <bruno@clisp.org>
23007
23008         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
23009
23010 2007-11-04  Bruno Haible  <bruno@clisp.org>
23011
23012         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
23013         Reported by Sylvain Beucler <beuc@gnu.org>.
23014
23015 2007-11-03  Bruno Haible  <bruno@clisp.org>
23016
23017         * tests/test-fprintf-posix2.sh: New file.
23018         * tests/test-fprintf-posix2.c: New file.
23019         * modules/fprintf-posix-tests (Files): Add them.
23020         (TESTS): Add test-fprintf-posix2.sh.
23021         (configure.ac): Check for getrlimit and setrlimit.
23022         (check_PROGRAMS): Add test-fprintf-posix2.
23023
23024         * tests/test-printf-posix2.sh: New file.
23025         * tests/test-printf-posix2.c: New file.
23026         * modules/printf-posix-tests (Files): Add them.
23027         (TESTS): Add test-printf-posix2.sh.
23028         (configure.ac): Check for getrlimit and setrlimit.
23029         (check_PROGRAMS): Add test-printf-posix2.
23030
23031         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
23032         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
23033         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
23034         (decode_double): New function, copied from decode_long_double.
23035         (scale10_round_decimal_decoded): New function, extracted from
23036         scale10_round_decimal_long_double.
23037         (scale10_round_decimal_long_double): Use it.
23038         (scale10_round_decimal_double): New function.
23039         (floorlog10): New function.
23040         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
23041         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
23042         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
23043         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
23044         gl_PRINTF_ENOMEM and test its result. Invoke
23045         gl_PREREQ_VASNPRINTF_ENOMEM.
23046         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
23047         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
23048         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
23049         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
23050         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
23051         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
23052         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
23053         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
23054         * modules/snprintf-posix (Depends-on): Likewise.
23055         * modules/sprintf-posix (Depends-on): Likewise.
23056         * modules/vasnprintf-posix (Depends-on): Likewise.
23057         * modules/vasprintf-posix (Depends-on): Likewise.
23058         * modules/vfprintf-posix (Depends-on): Likewise.
23059         * modules/vsnprintf-posix (Depends-on): Likewise.
23060         * modules/vsprintf-posix (Depends-on): Likewise.
23061         * doc/functions/fprintf.texi: Update.
23062         * doc/functions/printf.texi: Update.
23063         * doc/functions/snprintf.texi: Update.
23064         * doc/functions/sprintf.texi: Update.
23065         * doc/functions/vfprintf.texi: Update.
23066         * doc/functions/vprintf.texi: Update.
23067         * doc/functions/vsnprintf.texi: Update.
23068         * doc/functions/vsprintf.texi: Update.
23069
23070 2007-11-03  Bruno Haible  <bruno@clisp.org>
23071
23072         * modules/frexp-nolibm-tests: New file.
23073
23074         * modules/frexp-nolibm: New file.
23075         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
23076
23077 2007-11-03  Bruno Haible  <bruno@clisp.org>
23078
23079         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
23080         value is C99 compliant.
23081         Needed for OSF/1 5.1.
23082
23083 2007-11-03  Bruno Haible  <bruno@clisp.org>
23084
23085         Fix out-of-memory handling of vasnprintf.
23086         * lib/printf-parse.c: Include <errno.h>.
23087         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
23088         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
23089         is already set.
23090
23091 2007-11-02  Eric Blake  <ebb9@byu.net>
23092
23093         Fix tests on cygwin.
23094         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
23095
23096 2007-11-01  Bruno Haible  <bruno@clisp.org>
23097
23098         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
23099         warning.
23100         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
23101         needed for POSIX compatibility.
23102
23103 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
23104
23105         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
23106         for compatibility with GNU.
23107
23108 2007-11-01  Bruno Haible  <bruno@clisp.org>
23109
23110         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
23111         (putenv): Renamed from rpl_putenv. Change argument type from
23112         'const char *' to 'char *'.
23113         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
23114         of defining putenv in config.h, just set REPLACE_PUTENV.
23115         * modules/putenv (Depends-on): Add stdlib.
23116         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
23117         (Include): Use <stdlib.h>.
23118         * lib/stdlib.in.h (putenv): New declaration.
23119         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
23120         REPLACE_PUTENV.
23121         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
23122         REPLACE_PUTENV.
23123         Needed for MacOS X 10.5.0.
23124         Reported by Peter O'Gorman <peter@pogma.com>.
23125
23126 2007-11-01  Jim Meyering  <meyering@redhat.com>
23127
23128         Treat an empty date string exactly like "0".
23129         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
23130         if the remaining date string (to be parsed) is empty, use "0".
23131         Reported by Mischa Molhoek and discussed in this thread:
23132         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
23133
23134 2007-10-31  Bruno Haible  <bruno@clisp.org>
23135
23136         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
23137         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
23138         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
23139         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
23140         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
23141         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
23142
23143 2007-10-31  Bruno Haible  <bruno@clisp.org>
23144
23145         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
23146         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
23147         (AC_TYPE_LONG_LONG_INT): Use it.
23148         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
23149         it as well.
23150         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
23151         to m4/longlong.m4.
23152         * modules/stdint (Files): Remove m4/ulonglong.m4.
23153         * modules/strtoull (Files): Use m4/longlong.m4 instead of
23154         m4/ulonglong.m4.
23155         * modules/strtoumax (Files): Likewise.
23156
23157 2007-10-30  Bruno Haible  <bruno@clisp.org>
23158
23159         * modules/xvasprintf-posix: New file.
23160         Suggested by Eric Blake.
23161
23162 2007-10-30  Bruno Haible  <bruno@clisp.org>
23163
23164         * modules/xprintf-posix-tests: New file.
23165         * tests/test-xprintf-posix.sh: New file.
23166         * tests/test-xprintf-posix.c: New file.
23167         * tests/test-xfprintf-posix.c: New file.
23168
23169         * modules/xprintf-posix: New file.
23170
23171 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23172
23173         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
23174         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
23175         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
23176
23177 2007-10-29  Bruno Haible  <bruno@clisp.org>
23178
23179         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
23180         contain the special marker '_cv_'.
23181         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
23182         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
23183         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
23184         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
23185         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
23186         Reported by Ralf Wildenhues.
23187
23188 2007-10-29  Bruno Haible  <bruno@clisp.org>
23189
23190         * gnulib-tool (func_import): When --lgpl is not specified, set
23191         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
23192         GPLv3.
23193         Reported by Simon Josefsson.
23194
23195 2007-10-28  Bruno Haible  <bruno@clisp.org>
23196
23197         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
23198         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
23199         HAVE_DECL_ISFINITE.
23200         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
23201         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
23202         HAVE_DECL_ISFINITE.
23203
23204 2007-10-28  Bruno Haible  <bruno@clisp.org>
23205
23206         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
23207         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
23208
23209 2007-10-28  Bruno Haible  <bruno@clisp.org>
23210
23211         Fix link errors with Sun C 5.0 on Solaris 10.
23212         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
23213         function is declared but not present in the compiler's libm.
23214         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
23215         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
23216         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
23217         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
23218         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
23219         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
23220         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
23221         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
23222         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
23223         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
23224         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
23225         HAVE_DECL_FLOORL.
23226
23227 2007-10-28  Bruno Haible  <bruno@clisp.org>
23228
23229         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
23230         gl_FUNC_FLOORL. Cache the result.
23231         (gl_FUNC_FLOORL): Use it.
23232         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
23233         gl_FUNC_CEILL. Cache the result.
23234         (gl_FUNC_CEILL): Use it.
23235
23236         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
23237         gl_FUNC_FLOOR. Cache the result.
23238         (gl_FUNC_FLOOR): Use it.
23239         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
23240         gl_FUNC_CEIL. Cache the result.
23241         (gl_FUNC_CEIL): Use it.
23242
23243         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
23244         gl_FUNC_FLOORF. Cache the result.
23245         (gl_FUNC_FLOORF): Use it.
23246         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
23247         gl_FUNC_CEILF. Cache the result.
23248         (gl_FUNC_CEILF): Use it.
23249
23250 2007-10-28  Bruno Haible  <bruno@clisp.org>
23251
23252         * gnulib-tool: Allow specifying the LGPL version number through
23253         --lgpl=2 or --lgpl=3.
23254         (func_usage): Document --lgpl with argument.
23255         Handle --lgpl=... arguments.
23256         (func_import): Recognize also gl_LGPL calls with an argument. When
23257         --lgpl=2 is used and the module's license is just LGPL, report an
23258         error. Set sed_transform_lib_file according to the lgpl variable. In
23259         the generated files, use --lgpl or gl_LGPL invocations with argument,
23260         if necessary.
23261         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
23262         an LGPv2+ license.
23263         * doc/gnulib-tool.texi (Modified imports): Update explanation of
23264         gl_LGPL macro.
23265
23266 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23267             Bruno Haible  <bruno@clisp.org>
23268
23269         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
23270         (u16_uctomb_aux): Likewise.
23271         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
23272         !HAVE_INLINE.
23273         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
23274
23275 2007-10-28  Bruno Haible  <bruno@clisp.org>
23276
23277         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
23278         Invoke AM_GETTEXT_OPTION if it exists.
23279         * modules/vasprintf: Likewise.
23280         * modules/verror: Likewise.
23281         * modules/xprintf: Likewise.
23282         * modules/xvasprintf: Likewise.
23283
23284 2007-10-27  Ben Pfaff  <blp@gnu.org>
23285
23286         * lib/math.in.h: Define isfinite macro and prototypes for
23287         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
23288         implementations.
23289         * m4/math_h.m4: New substitutions for isfinite module.
23290         * lib/isfinite.c: New file.
23291         * m4/isfinite.m4: New file.
23292         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
23293         * modules/isfinite: New file.
23294         * modules/isfinite-tests: New file.
23295         * tests/tests-isfinite.c: New file.
23296         * doc/functions/isfinite.texi: Mention isfinite module.
23297         * MODULES.html.sh: Mention new module.
23298
23299 2007-10-27  Ben Pfaff  <blp@gnu.org>
23300
23301         Ralf Wildenhues reported that Tru64 4.0D declares the round
23302         functions but does not have definitions.
23303         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
23304         cannot be found in any library, set the output variable to
23305         "missing" instead of "".
23306         * m4/round.m4: Also use our substitute if we cannot find round in
23307         any library, even if it is declared.
23308         * m4/roundf.m4: Likewise for roundf.
23309         * m4/roundl.m4: Likewise for roundl.
23310         * lib/math.in.h: Undefine roundf, round, roundl before defining
23311         their replacements, to allow for hypothetical systems where these
23312         may be defined as macros but not available in libraries.
23313
23314 2007-10-27  Bruno Haible  <bruno@clisp.org>
23315
23316         * doc/gnulib.texi: Invoke @firstparagraphindent.
23317         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
23318         changes in gnulib.
23319         (Source changes): New section.
23320
23321 2007-10-26  Bruno Haible  <bruno@clisp.org>
23322
23323         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
23324         borrowed from autoconf.
23325
23326 2007-10-26  Bruno Haible  <bruno@clisp.org>
23327
23328         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
23329         strerror returned the empty string. Needed on HP-UX 11.00.
23330
23331 2007-10-24  Micah Cowan  <micah@cowan.name>
23332
23333         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
23334         * build-aux/bootstrap: Remove support for now-unnecessary option,
23335         --cvs-user, and envvars CVS_USER, CVS_RSH.
23336
23337 2007-10-24  Jim Meyering  <meyering@redhat.com>
23338
23339         Avoid diagnostics from sha1sum when there is no cached checksum.
23340         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
23341         if the po.s1 file hasn't been created yet.
23342
23343         * build-aux/bootstrap: Sync from coreutils:
23344         2007-10-24  Jim Meyering  <meyering@redhat.com>
23345         Get gnulib from the git repository, not from an obsolete cvs one.
23346         * build-aux/bootstrap: Suggestion from Micah Cowan.
23347         2007-10-04  Jim Meyering  <jim@meyering.net>
23348         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
23349         (update_po_files): Work also when there are no .po files in po/.
23350
23351 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
23352
23353         * README: Append ".git" to git and cg examples.
23354         Problem reported by Benoit Sigoure.
23355
23356 2007-10-23  Micah Cowan  <micah@cowan.name>
23357
23358         * users.txt: Add wget.
23359
23360 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23361
23362         Fix linking of some unistdio tests on FreeBSD.
23363         * modules/unistdio/u16-vsnprintf-tests
23364         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
23365         * modules/unistdio/u16-vsprintf-tests
23366         (test_u16_vsnprintf1_LDADD): Likewise.
23367         * modules/unistdio/u32-vsnprintf-tests
23368         (test_u32_vsnprintf1_LDADD): Likewise.
23369         * modules/unistdio/u32-vsprintf-tests
23370         (test_u32_vsprintf1_LDADD): Likewise.
23371         * modules/unistdio/u8-vsnprintf-tests
23372         (test_u8_vsnprintf1_LDADD): Likewise.
23373         * modules/unistdio/u8-vsprintf-tests
23374         (test_u8_vsprintf1_LDADD): Likewise.
23375         * modules/unistdio/ulc-vsnprintf-tests
23376         (test_ulc_vsnprintf1_LDADD): Likewise.
23377         * modules/unistdio/ulc-vsprintf-tests
23378         (test_ulc_vsprintf1_LDADD): Likewise.
23379
23380         Fix linking of some uniconv tests on FreeBSD.
23381         * modules/uniconv/u16-conv-from-enc-tests
23382         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
23383         * modules/uniconv/u16-conv-to-enc-tests
23384         (test_u16_conv_to_enc_LDADD): Likewise.
23385         * modules/uniconv/u16-strconv-from-enc-tests
23386         (test_u16_strconv_from_enc_LDADD): Likewise.
23387         * modules/uniconv/u16-strconv-to-enc-tests
23388         (test_u16_strconv_to_enc_LDADD): Likewise.
23389         * modules/uniconv/u32-conv-from-enc-tests
23390         (test_u32_conv_from_enc_LDADD): Likewise.
23391         * modules/uniconv/u32-conv-to-enc-tests
23392         (test_u32_conv_to_enc_LDADD): Likewise.
23393         * modules/uniconv/u32-strconv-from-enc-tests
23394         (test_u32_strconv_from_enc_LDADD): Likewise.
23395         * modules/uniconv/u32-strconv-to-enc-tests
23396         (test_u32_strconv_to_enc_LDADD): Likewise.
23397         * modules/uniconv/u8-conv-from-enc-tests
23398         (test_u8_conv_from_enc_LDADD): Likewise.
23399         * modules/uniconv/u8-conv-to-enc-tests
23400         (test_u8_conv_to_enc_LDADD): Likewise.
23401         * modules/uniconv/u8-strconv-from-enc-tests
23402         (test_u8_strconv_from_enc_LDADD): Likewise.
23403         * modules/uniconv/u8-strconv-to-enc-tests
23404         (test_u8_strconv_to_enc_LDADD): Likewise.
23405
23406 2007-10-22  Bruno Haible  <bruno@clisp.org>
23407
23408         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
23409         size.
23410
23411 2007-10-22  Eric Blake  <ebb9@byu.net>
23412
23413         Tweak x*printf documentation.
23414         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
23415         variable name and comments.
23416         Suggested by Bruno Haible.
23417
23418 2007-10-22  Bruno Haible  <bruno@clisp.org>
23419
23420         * lib/acl.c (copy_acl): Fix file name in comment.
23421
23422 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
23423
23424         Fix Tru64 problem with stdbool.h.
23425         * lib/stdbool.in.h (false, true):
23426         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
23427         Don't declare as an enum in this situation; it runs afoul of Tru64.
23428         Problem reported by Steven M. Schweda in
23429         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
23430
23431 2007-10-22  Eric Blake  <ebb9@byu.net>
23432
23433         Also wrap vf?printf.
23434         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
23435         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
23436         (xvprintf, xvfprintf): New functions.
23437
23438 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23439
23440         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
23441         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
23442
23443         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
23444         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
23445
23446 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
23447
23448         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
23449         by Bruno Haible.
23450
23451 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23452
23453         * lib/getloadavg.c
23454         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
23455         Undef `sys' after including sys/table.h, for Tru64 4.0D.
23456
23457         * tests/test-i-ring.c: Work for C89.
23458
23459 2007-10-22  Bruno Haible  <bruno@clisp.org>
23460
23461         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
23462         -1u, in preprocessor expression, so that we don't test for the bug
23463         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
23464         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
23465
23466 2007-10-22  Eric Blake  <ebb9@byu.net>
23467
23468         * tests/test-yesno.sh: Silence stderr during test.
23469
23470 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23471
23472         * modules/crypto/gc-camellia: New file.
23473
23474         * m4/gc-camellia.m4: New file.
23475
23476         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
23477
23478         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
23479
23480 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23481
23482         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
23483         --help to stdout.  Reported by sms@antinode.org (Steven
23484         M. Schweda).
23485
23486 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23487
23488         * users.txt: Fix link to libksba.
23489
23490 2007-10-21  Ben Pfaff  <blp@gnu.org>
23491
23492         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
23493         round.c roundf implementation that depends on floorf and ceilf to
23494         be tested unconditionally.
23495
23496 2007-10-21  Ben Pfaff  <blp@gnu.org>
23497
23498         * m4/check-libm-func.m4: Removed.
23499         * m4/check-math-lib.m4: New file.
23500         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
23501         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
23502         definition and lack of AC_LIBOBJ([roundf]).
23503         * m4/roundl.m4: Ditto, and similarly for roundl.
23504         * modules/round: Reference new m4 file.
23505         * modules/roundf: Ditto.
23506         * modules/roundl: Ditto.
23507         * tests/test-round2.c (main): Use ROUND instead of round.
23508         Bug report from Bruno Haible.
23509
23510 2007-10-21  Bruno Haible  <bruno@clisp.org>
23511
23512         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
23513         context.
23514
23515 2007-10-21  Bruno Haible  <bruno@clisp.org>
23516
23517         * tests/test-wcwidth.c (main): Allow negative result for some control
23518         characters.
23519
23520         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
23521         Needed on OSF/1 5.1.
23522
23523 2007-10-21  Bruno Haible  <bruno@clisp.org>
23524
23525         * tests/test-floorf1.c: Include isnanf.h.
23526         (main): Use isnanf() instead of isnan().
23527         * tests/test-ceilf1.c: Include isnanf.h.
23528         (main): Use isnanf() instead of isnan().
23529         * tests/test-truncf1.c: Include isnanf.h.
23530         (main): Use isnanf() instead of isnan().
23531         * tests/test-roundf1.c: Include isnanf.h.
23532         (main): Use isnanf() instead of isnan().
23533
23534 2007-10-21  Eric Blake  <ebb9@byu.net>
23535
23536         * users.txt: Update URL for m4.
23537
23538 2007-10-21  Bruno Haible  <bruno@clisp.org>
23539
23540         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
23541
23542 2007-10-21  Bruno Haible  <bruno@clisp.org>
23543
23544         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
23545         Git's management files if the CVS files are not present.
23546
23547 2007-10-20  Bruno Haible  <bruno@clisp.org>
23548
23549         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
23550         gcc-3.4.x.
23551
23552 2007-10-20  Ben Pfaff  <blp@gnu.org>
23553
23554         * lib/math.in.h: Declare round, roundf, roundl if we are providing
23555         implementations.
23556         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
23557         * lib/round.c: New file.
23558         * lib/roundf.c: New file.
23559         * lib/roundl.c: New file.
23560         * m4/round.m4: New file.
23561         * m4/roundf.m4: New file.
23562         * m4/roundl.m4: New file.
23563         * m4/check-libm-func-m4: New file.
23564         * modules/math: Replace round, roundf, roundl related @VARS@ in
23565         math.in.h.
23566         * modules/round: New file.
23567         * modules/round-tests: New file.
23568         * modules/roundf: New file.
23569         * modules/roundf-tests: New file.
23570         * modules/roundl: New file.
23571         * modules/roundl-tests: New file.
23572         * tests/test-round1.c: New file.
23573         * tests/test-round2.c: New file.
23574         * tests/test-roundf1.c: New file.
23575         * tests/test-roundf2.c: New file.
23576         * tests/test-roundl.c: New file.
23577         * doc/functions/round.texi: Mention round module.
23578         * doc/functions/roundf.texi: Mention roundf module.
23579         * doc/functions/roundl.texi: Mention roundl module.
23580         * MODULES.html.sh: Mention new modules.
23581         Thanks to Bruno Haible for suggestions.
23582
23583 2007-10-20  Jim Meyering  <meyering@redhat.com>
23584
23585         * lib/xprintf.c: Include <config.h> unconditionally.
23586
23587         Change xprintf's license to GPL.
23588         * modules/xprintf (License): s/LGPL/GPL/, since this module
23589         depends on modules (exit and exitfail) which are GPL.
23590         Suggestion from Bruno Haible.
23591
23592         xprintf fixes.
23593         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
23594         Use a clearer diagnostic.
23595         Patch from Bruno Haible.
23596
23597 2007-10-20  Bruno Haible  <bruno@clisp.org>
23598
23599         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
23600         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
23601         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23602
23603 2007-10-20  Bruno Haible  <bruno@clisp.org>
23604
23605         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
23606         precision in the comparison result > x - 1 or similar.
23607         * tests/test-ceilf2.c (correct_result_p): Likewise.
23608         * tests/test-truncf2.c (correct_result_p): Likewise.
23609         * tests/test-trunc2.c (correct_result_p): Likewise.
23610         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23611
23612 2007-10-20  Bruno Haible  <bruno@clisp.org>
23613
23614         * modules/ceil: New file.
23615         * m4/ceil.m4: New file.
23616         * doc/functions/ceil.texi: Mention the 'ceil' module.
23617
23618 2007-10-20  Bruno Haible  <bruno@clisp.org>
23619
23620         * modules/floor: New file.
23621         * m4/floor.m4: New file.
23622         * doc/functions/floor.texi: Mention the 'floor' module.
23623
23624 2007-10-20  Bruno Haible  <bruno@clisp.org>
23625
23626         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
23627         of %a.
23628         * modules/floorf-tests (Depends-on): Likewise.
23629         * modules/truncf-tests (Depends-on): Likewise.
23630         * modules/trunc-tests (Depends-on): Likewise.
23631         Reported by Ben Pfaff.
23632
23633 2007-10-19  Jim Meyering  <meyering@redhat.com>
23634
23635         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
23636         Don't bother testing specific errno values.  Just test ferror.
23637
23638         New module: xprintf
23639         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
23640
23641 2007-10-19  Bruno Haible  <bruno@clisp.org>
23642
23643         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
23644         syntax.
23645         * modules/javaexec (Makefile.am): Likewise.
23646         * modules/relocatable-prog (Makefile.am): Likewise.
23647         Suggested by Jim Meyering.
23648
23649 2007-10-18  Bruno Haible  <bruno@clisp.org>
23650
23651         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
23652         Reported by Jim Meyering.
23653
23654 2007-10-18  Eric Blake  <ebb9@byu.net>
23655
23656         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
23657
23658 2007-10-18  Bruno Haible  <bruno@clisp.org>
23659
23660         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
23661         the format string into writable memory. Needed in Fortify conditions.
23662
23663 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
23664             Bruno Haible  <bruno@clisp.org>
23665
23666         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
23667         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
23668         * modules/trim (Depends-on): Add mbchar.
23669         (configure.ac): Add gl_FUNC_MBRTOWC.
23670         (Makefile.am): Augment lib_SOURCES.
23671
23672 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
23673
23674         Modify glob.c to use fstatat and dirfd, to simplify it.
23675         Suggested by Eric Blake.
23676         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
23677         Don't include <stdbool.h>; not used.
23678         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
23679         (link_exists_p): Simplify implementation, since we can now assume
23680         dirfd and fstatat.
23681         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
23682
23683 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23684
23685         * gnulib-tool (func_get_dependencies): Fix sed script to
23686         match only tests.
23687
23688 2007-10-17  Bruno Haible  <bruno@clisp.org>
23689
23690         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
23691         allow locale names without encoding suffix.
23692         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
23693         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
23694
23695 2007-10-16  Bruno Haible  <bruno@clisp.org>
23696
23697         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
23698         * lib/getgroups.c (getgroups): Likewise.
23699         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
23700
23701 2007-10-16  Bruno Haible  <bruno@clisp.org>
23702
23703         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
23704         * modules/malloc-posix (License): Likewise.
23705         * modules/realloc-posix (License): Likewise.
23706         * modules/calloc-posix (License): Likewise.
23707         * modules/intprops (License): Change from GPL to LGPL, with
23708         Paul Eggert's approval.
23709
23710 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
23711
23712         Merge glibc changes into lib/glob.c.
23713
23714         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
23715         2007-10-15 04:59:03 UTC.  Here are the changes:
23716
23717         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
23718
23719         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
23720
23721         * lib/glob.c: Add some branch prediction throughout.
23722
23723         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
23724
23725         [BZ #5103]
23726         * lib/glob.c (glob): Recognize patterns starting \/.
23727
23728         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
23729
23730         [BZ #3996]
23731         * lib/glob.c (attribute_hidden): Define if not defined.
23732         (glob): Unescape dirname, filename or username when needed and not
23733         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
23734         is NULL.  Handle unescaped [ in pattern without closing ].
23735         Don't pass GLOB_CHECK down to recursive glob for directories.
23736         (__glob_pattern_type): New function.
23737         (__glob_pattern_p): Implement using __glob_pattern_type.
23738         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
23739         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
23740         Remove unreachable code.
23741
23742         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
23743
23744         * lib/glob.c (glob_in_dir): Add some comments and asserts to
23745         explain why there are no leaks.
23746
23747         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
23748
23749         [BZ #3253]
23750         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
23751         time, rather allocate increasingly bigger arrays of pointers, if
23752         possible with alloca, if too large with malloc.
23753
23754 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
23755
23756         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
23757         Problem reported by H.Merijn Brand in
23758         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
23759         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
23760         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
23761
23762 2007-10-15  Bruno Haible  <bruno@clisp.org>
23763
23764         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
23765         with explicit rpl_ prefix.
23766         * lib/fopen.c (fopen): Likewise.
23767         * lib/freopen.c (freopen): Likewise.
23768         * lib/iconv.c (iconv): Likewise.
23769         * lib/iconv_close.c (iconv_close): Likewise.
23770
23771 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23772
23773         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
23774
23775 2007-10-15  Bruno Haible  <bruno@clisp.org>
23776
23777         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
23778         <stddef.h> instead of <stdlib.h> since we only need NULL.
23779         Reported by Ben Pfaff <blp@cs.stanford.edu>.
23780
23781 2007-10-15  Bruno Haible  <bruno@clisp.org>
23782
23783         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
23784         Replace paragraph talking about LIBOBJS.
23785         Reported by Colin Watson <cjwatson@debian.org>.
23786
23787 2007-10-15  Bruno Haible  <bruno@clisp.org>
23788
23789         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
23790         <stdlib.h> before using NULL.
23791
23792 2007-10-15  Simon Josefsson  <simon@josefsson.org>
23793
23794         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
23795         Reported by Albert Chin <china@thewrittenword.com>.
23796
23797 2007-10-14  Bruno Haible  <bruno@clisp.org>
23798
23799         * modules/iconv_open-utf-tests: New file.
23800         * tests/test-iconv-utf.c: New file.
23801
23802         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
23803         * modules/iconv_open-utf: New file.
23804         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
23805         (iconv, iconv_close): New declarations.
23806         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
23807         be defined.
23808         (iconv_open): Add special handling of conversion between UTF-8 and
23809         UTF-{16,32}{BE,LE}.
23810         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
23811         * lib/iconv_close.c: New file.
23812         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
23813         gl_FUNC_ICONV_OPEN.
23814         (gl_FUNC_ICONV_OPEN): Use it.
23815         (gl_FUNC_ICONV_OPEN_UTF): New macro.
23816         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
23817         and REPLACE_ICONV_UTF.
23818         * modules/iconv_open (Depends-on): Add c-strcase.
23819         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
23820         ICONV_CONST.
23821         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
23822
23823 2007-10-13  Albert Chin  <china@thewrittenword.com>
23824             Bruno Haible  <bruno@clisp.org>
23825
23826         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
23827         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
23828
23829 2007-10-13  Bruno Haible  <bruno@clisp.org>
23830
23831         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
23832         defined, use the ISO C99 inline semantics.
23833         * lib/argp.h (ARGP_EI): Likewise.
23834
23835 2007-10-13  Bruno Haible  <bruno@clisp.org>
23836
23837         Handle 'inline' change in gcc 4.3.0.
23838         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
23839         argp_fmtstream_write, argp_fmtstream_set_lmargin,
23840         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
23841         argp_fmtstream_point): Disable 'extern' declaration if the function
23842         definition is going to be provided inline.
23843         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
23844         semantics, not the ISO C99 inline semantics.
23845         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
23846         'extern' declaration if the function definition is going to be provided
23847         inline.
23848         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
23849         the GNU C inline semantics, not the ISO C99 inline semantics. With
23850         GCC 4.2, avoid a warning.
23851
23852 2007-10-13  Bruno Haible  <bruno@clisp.org>
23853
23854         * lib/freading.h (freading): Enable the use of __freading for
23855         glibc >= 2.7.
23856         * lib/freading.c (freading): Likewise.
23857
23858 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
23859
23860         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
23861         "warning: C99 inline functions are not supported; using GNU89".
23862
23863 2007-10-12  Bruno Haible  <bruno@clisp.org>
23864
23865         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
23866         of 2.
23867         * tests/test-ceilf2.c: New file.
23868         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
23869
23870         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
23871         * modules/ceilf-tests: Update.
23872
23873 2007-10-12  Bruno Haible  <bruno@clisp.org>
23874
23875         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
23876         of 2.
23877         * tests/test-floorf2.c: New file.
23878         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
23879
23880         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
23881         * modules/floorf-tests: Update.
23882
23883 2007-10-12  Bruno Haible  <bruno@clisp.org>
23884
23885         * tests/test-trunc2.c: New file.
23886         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
23887
23888         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
23889         * modules/trunc-tests: Update.
23890
23891 2007-10-12  Bruno Haible  <bruno@clisp.org>
23892
23893         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
23894         of 2.
23895         * tests/test-truncf2.c: New file.
23896         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
23897
23898         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
23899         * modules/truncf-tests: Update.
23900
23901 2007-10-11  Eric Blake  <ebb9@byu.net>
23902
23903         Don't claim strerror is broken on Interix.
23904         * doc/functions/strerror.texi (strerror): Known broken systems are
23905         now Solaris 8, and not Interix.
23906         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
23907         Interix on cross-compile.
23908         Reported by Martin Koeppe in
23909         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
23910
23911 2007-10-11  Bruno Haible  <bruno@clisp.org>
23912
23913         * modules/i-ring-tests: New file.
23914         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
23915         instead of assert.
23916
23917 2007-10-11  Bruno Haible  <bruno@clisp.org>
23918
23919         * modules/filenamecat-tests: New file.
23920         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
23921         * lib/filenamecat.c: Remove test code.
23922
23923 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
23924
23925         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
23926
23927         * lib/strerror.c: Include <string.h> always, to test interface,
23928         and to remove the need for the dummy.
23929         Include intprops.h to compute width instead of doing it ourselves
23930         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
23931         (strerror): Define it to return NULL if there's no system strerror.
23932         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
23933         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
23934         ancient pre-strerror Unix systems well any more.  Saying "unknown
23935         system error" is enough.
23936         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
23937         simpler strerror.c implementation.
23938         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
23939         Simplify the tests to reflect the simpler strerror implementation.
23940         * modules/strerror (Depends-on): Add intprops.
23941
23942 2007-10-09  Eric Blake  <ebb9@byu.net>
23943
23944         Silence test-fpending.
23945         * modules/fpending-tests (Files): Add wrapper script.
23946         * tests/test-fpending.sh: New file.
23947
23948 2007-10-09  Bruno Haible  <bruno@clisp.org>
23949
23950         * MODULES.html.sh (func_module): Don't create a hyperlink for
23951         function names like 'printf_frexp'.
23952         (Misc): Add crc, memxor.
23953         (Characteristics of floating types): New section.
23954         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
23955         isnanf-nolibm, signbit, trunc, truncf, truncl.
23956         (Enhancements for ISO C 99 functions): New subsection Input/output.
23957         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
23958         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
23959         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
23960         (Compatibility checks for POSIX:2001 functions): Add clock-time.
23961         (Enhancements for POSIX:2001 functions): Add chdir-long.
23962         (File system functions): Add areadlink, chdir-safer, read-file.
23963         Remove cycle-check.
23964         (File system as inode set): New section.
23965         (Date and time): Add gethrxtime.
23966         (Multithreading): Add openmp.
23967         (Internationalization functions): Add localename.
23968         (Unicode string functions): Add unistr/u*-mbsnlen.
23969         (Support for maintaining and releasing projects): Add git-version-gen.
23970         (Lone files): Remove directories.
23971
23972 2007-10-08  Ben Pfaff  <blp@gnu.org>
23973
23974         * lib/xmalloca.h: Fix typo in comment.
23975
23976 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
23977
23978         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
23979         when avoiding problems with integer overflow.  Use a portable test
23980         instead.
23981
23982 2007-10-08  Simon Josefsson  <simon@josefsson.org>
23983
23984         * modules/dummy (License): Change to LGPLv2+.
23985         * modules/float (License): Likewise
23986         * modules/realloc (License): Likewise
23987         * modules/stdlib (License): Likewise
23988
23989 2007-10-07  Bruno Haible  <bruno@clisp.org>
23990
23991         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
23992         * floor.c (TWO_MANT_DIG): Likewise.
23993         * ceil.c (TWO_MANT_DIG): Likewise.
23994         Reported by Ben Pfaff.
23995
23996 2007-10-07  Bruno Haible  <bruno@clisp.org>
23997
23998         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
23999         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
24000         * lib/frexp.c (FUNC): Likewise.
24001         * lib/printf-frexp.h (printf_frexp): Likewise.
24002         * lib/printf-frexpl.h (printf_frexpl): Likewise.
24003         * lib/printf-frexp.c (FUNC): Likewise.
24004         Suggested by Jim Meyering.
24005
24006 2007-10-07  Jim Meyering  <meyering@redhat.com>
24007
24008         Make xnanosleep's integer overflow test more robust.
24009         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
24010         so that gcc-4.3.0 doesn't optimize away this test for overflow.
24011
24012 2007-10-07  Bruno Haible  <bruno@clisp.org>
24013
24014         * NEWS: Mention the license change.
24015
24016         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
24017         abbreviations in the modules files.
24018
24019         Change copyright notice from GPLv2+ to GPLv3+.
24020         * README: Change copyright notice.
24021         * MODULES.html.sh: Likewise.
24022         * build-aux/bootstrap.conf: Likewise.
24023         * build-aux/config.libpath: Likewise.
24024         * build-aux/csharpcomp.sh.in: Likewise.
24025         * build-aux/csharpexec.sh.in: Likewise.
24026         * build-aux/install-reloc: Likewise.
24027         * build-aux/javacomp.sh.in: Likewise.
24028         * build-aux/javaexec.sh.in: Likewise.
24029         * build-aux/ldd.sh.in: Likewise.
24030         * build-aux/reloc-ldflags: Likewise.
24031         * build-aux/relocatable.sh.in: Likewise.
24032         * build-aux/x-to-1.in: Likewise.
24033         * check-module: Likewise.
24034         * config/srclistvars.sh: Likewise.
24035         * gnulib-tool: Likewise.
24036         * lib/acl-internal.h: Likewise.
24037         * lib/acl.c: Likewise.
24038         * lib/acl.h: Likewise.
24039         * lib/acl_entries.c: Likewise.
24040         * lib/areadlink-with-size.c: Likewise.
24041         * lib/areadlink.c: Likewise.
24042         * lib/areadlink.h: Likewise.
24043         * lib/argmatch.c: Likewise.
24044         * lib/argmatch.h: Likewise.
24045         * lib/argp-ba.c: Likewise.
24046         * lib/argp-eexst.c: Likewise.
24047         * lib/argp-fmtstream.c: Likewise.
24048         * lib/argp-fmtstream.h: Likewise.
24049         * lib/argp-fs-xinl.c: Likewise.
24050         * lib/argp-help.c: Likewise.
24051         * lib/argp-namefrob.h: Likewise.
24052         * lib/argp-parse.c: Likewise.
24053         * lib/argp-pin.c: Likewise.
24054         * lib/argp-pv.c: Likewise.
24055         * lib/argp-pvh.c: Likewise.
24056         * lib/argp-xinl.c: Likewise.
24057         * lib/argp.h: Likewise.
24058         * lib/at-func.c: Likewise.
24059         * lib/atanl.c: Likewise.
24060         * lib/backupfile.c: Likewise.
24061         * lib/backupfile.h: Likewise.
24062         * lib/basename.c: Likewise.
24063         * lib/binary-io.h: Likewise.
24064         * lib/byteswap.in.h: Likewise.
24065         * lib/c-stack.c: Likewise.
24066         * lib/c-stack.h: Likewise.
24067         * lib/c-strcasestr.c: Likewise.
24068         * lib/c-strcasestr.h: Likewise.
24069         * lib/c-strstr.c: Likewise.
24070         * lib/c-strstr.h: Likewise.
24071         * lib/c-strtod.c: Likewise.
24072         * lib/calloc.c: Likewise.
24073         * lib/canon-host.c: Likewise.
24074         * lib/canon-host.h: Likewise.
24075         * lib/canonicalize-lgpl.c: Likewise.
24076         * lib/canonicalize.c: Likewise.
24077         * lib/canonicalize.h: Likewise.
24078         * lib/ceil.c: Likewise.
24079         * lib/ceilf.c: Likewise.
24080         * lib/ceill.c: Likewise.
24081         * lib/chdir-long.c: Likewise.
24082         * lib/chdir-long.h: Likewise.
24083         * lib/chdir-safer.c: Likewise.
24084         * lib/chdir-safer.h: Likewise.
24085         * lib/chown.c: Likewise.
24086         * lib/classpath.c: Likewise.
24087         * lib/classpath.h: Likewise.
24088         * lib/clean-temp.c: Likewise.
24089         * lib/clean-temp.h: Likewise.
24090         * lib/cloexec.c: Likewise.
24091         * lib/close-stream.c: Likewise.
24092         * lib/closein.c: Likewise.
24093         * lib/closein.h: Likewise.
24094         * lib/closeout.c: Likewise.
24095         * lib/closeout.h: Likewise.
24096         * lib/concat-filename.c: Likewise.
24097         * lib/copy-file.c: Likewise.
24098         * lib/copy-file.h: Likewise.
24099         * lib/count-one-bits.h: Likewise.
24100         * lib/crc.c: Likewise.
24101         * lib/crc.h: Likewise.
24102         * lib/creat-safer.c: Likewise.
24103         * lib/csharpcomp.c: Likewise.
24104         * lib/csharpcomp.h: Likewise.
24105         * lib/csharpexec.c: Likewise.
24106         * lib/csharpexec.h: Likewise.
24107         * lib/cycle-check.c: Likewise.
24108         * lib/cycle-check.h: Likewise.
24109         * lib/diacrit.c: Likewise.
24110         * lib/diacrit.h: Likewise.
24111         * lib/diffseq.h: Likewise.
24112         * lib/dirchownmod.c: Likewise.
24113         * lib/dirent.in.h: Likewise.
24114         * lib/dirfd.c: Likewise.
24115         * lib/dirfd.h: Likewise.
24116         * lib/dirname.c: Likewise.
24117         * lib/dirname.h: Likewise.
24118         * lib/dummy.c: Likewise.
24119         * lib/dup-safer.c: Likewise.
24120         * lib/dup2.c: Likewise.
24121         * lib/eealloc.h: Likewise.
24122         * lib/error.c: Likewise.
24123         * lib/error.h: Likewise.
24124         * lib/euidaccess.c: Likewise.
24125         * lib/exclude.c: Likewise.
24126         * lib/exclude.h: Likewise.
24127         * lib/execute.c: Likewise.
24128         * lib/execute.h: Likewise.
24129         * lib/exitfail.c: Likewise.
24130         * lib/exitfail.h: Likewise.
24131         * lib/expl.c: Likewise.
24132         * lib/fatal-signal.c: Likewise.
24133         * lib/fatal-signal.h: Likewise.
24134         * lib/fbufmode.c: Likewise.
24135         * lib/fbufmode.h: Likewise.
24136         * lib/fchdir.c: Likewise.
24137         * lib/fchmodat.c: Likewise.
24138         * lib/fchownat.c: Likewise.
24139         * lib/fcntl--.h: Likewise.
24140         * lib/fcntl-safer.h: Likewise.
24141         * lib/fcntl.in.h: Likewise.
24142         * lib/fd-safer.c: Likewise.
24143         * lib/fflush.c: Likewise.
24144         * lib/file-has-acl.c: Likewise.
24145         * lib/file-set.c: Likewise.
24146         * lib/file-type.c: Likewise.
24147         * lib/file-type.h: Likewise.
24148         * lib/fileblocks.c: Likewise.
24149         * lib/filemode.c: Likewise.
24150         * lib/filemode.h: Likewise.
24151         * lib/filename.h: Likewise.
24152         * lib/filenamecat.c: Likewise.
24153         * lib/filenamecat.h: Likewise.
24154         * lib/findprog.c: Likewise.
24155         * lib/findprog.h: Likewise.
24156         * lib/float.in.h: Likewise.
24157         * lib/floor.c: Likewise.
24158         * lib/floorf.c: Likewise.
24159         * lib/floorl.c: Likewise.
24160         * lib/fopen-safer.c: Likewise.
24161         * lib/fopen.c: Likewise.
24162         * lib/fpending.c: Likewise.
24163         * lib/fpending.h: Likewise.
24164         * lib/fprintf.c: Likewise.
24165         * lib/fprintftime.h: Likewise.
24166         * lib/fpucw.h: Likewise.
24167         * lib/fpurge.c: Likewise.
24168         * lib/fpurge.h: Likewise.
24169         * lib/freadable.c: Likewise.
24170         * lib/freadable.h: Likewise.
24171         * lib/freadahead.c: Likewise.
24172         * lib/freadahead.h: Likewise.
24173         * lib/freading.c: Likewise.
24174         * lib/freading.h: Likewise.
24175         * lib/free.c: Likewise.
24176         * lib/freopen.c: Likewise.
24177         * lib/frexp.c: Likewise.
24178         * lib/frexpl.c: Likewise.
24179         * lib/fseek.c: Likewise.
24180         * lib/fseterr.c: Likewise.
24181         * lib/fseterr.h: Likewise.
24182         * lib/fstatat.c: Likewise.
24183         * lib/fstrcmp.c: Likewise.
24184         * lib/fstrcmp.h: Likewise.
24185         * lib/fsusage.c: Likewise.
24186         * lib/fsusage.h: Likewise.
24187         * lib/ftell.c: Likewise.
24188         * lib/ftello.c: Likewise.
24189         * lib/fts-cycle.c: Likewise.
24190         * lib/fts.c: Likewise.
24191         * lib/fts_.h: Likewise.
24192         * lib/full-read.c: Likewise.
24193         * lib/full-read.h: Likewise.
24194         * lib/full-write.c: Likewise.
24195         * lib/full-write.h: Likewise.
24196         * lib/fwritable.c: Likewise.
24197         * lib/fwritable.h: Likewise.
24198         * lib/fwriteerror.c: Likewise.
24199         * lib/fwriteerror.h: Likewise.
24200         * lib/fwriting.c: Likewise.
24201         * lib/fwriting.h: Likewise.
24202         * lib/gcd.c: Likewise.
24203         * lib/gcd.h: Likewise.
24204         * lib/getcwd.c: Likewise.
24205         * lib/getdate.h: Likewise.
24206         * lib/getdate.y: Likewise.
24207         * lib/getdomainname.c: Likewise.
24208         * lib/getdomainname.h: Likewise.
24209         * lib/getgroups.c: Likewise.
24210         * lib/gethostname.c: Likewise.
24211         * lib/gethrxtime.c: Likewise.
24212         * lib/gethrxtime.h: Likewise.
24213         * lib/getloadavg.c: Likewise.
24214         * lib/getndelim2.c: Likewise.
24215         * lib/getndelim2.h: Likewise.
24216         * lib/getnline.c: Likewise.
24217         * lib/getnline.h: Likewise.
24218         * lib/getopt.c: Likewise.
24219         * lib/getopt.in.h: Likewise.
24220         * lib/getopt1.c: Likewise.
24221         * lib/getopt_int.h: Likewise.
24222         * lib/getpagesize.h: Likewise.
24223         * lib/getsubopt.c: Likewise.
24224         * lib/gettime.c: Likewise.
24225         * lib/getugroups.c: Likewise.
24226         * lib/getugroups.h: Likewise.
24227         * lib/getusershell.c: Likewise.
24228         * lib/gl_anyavltree_list1.h: Likewise.
24229         * lib/gl_anyavltree_list2.h: Likewise.
24230         * lib/gl_anyhash_list1.h: Likewise.
24231         * lib/gl_anyhash_list2.h: Likewise.
24232         * lib/gl_anylinked_list1.h: Likewise.
24233         * lib/gl_anylinked_list2.h: Likewise.
24234         * lib/gl_anyrbtree_list1.h: Likewise.
24235         * lib/gl_anyrbtree_list2.h: Likewise.
24236         * lib/gl_anytree_list1.h: Likewise.
24237         * lib/gl_anytree_list2.h: Likewise.
24238         * lib/gl_anytree_oset.h: Likewise.
24239         * lib/gl_anytreehash_list1.h: Likewise.
24240         * lib/gl_anytreehash_list2.h: Likewise.
24241         * lib/gl_array_list.c: Likewise.
24242         * lib/gl_array_list.h: Likewise.
24243         * lib/gl_array_oset.c: Likewise.
24244         * lib/gl_array_oset.h: Likewise.
24245         * lib/gl_avltree_list.c: Likewise.
24246         * lib/gl_avltree_list.h: Likewise.
24247         * lib/gl_avltree_oset.c: Likewise.
24248         * lib/gl_avltree_oset.h: Likewise.
24249         * lib/gl_avltreehash_list.c: Likewise.
24250         * lib/gl_avltreehash_list.h: Likewise.
24251         * lib/gl_carray_list.c: Likewise.
24252         * lib/gl_carray_list.h: Likewise.
24253         * lib/gl_linked_list.c: Likewise.
24254         * lib/gl_linked_list.h: Likewise.
24255         * lib/gl_linkedhash_list.c: Likewise.
24256         * lib/gl_linkedhash_list.h: Likewise.
24257         * lib/gl_list.c: Likewise.
24258         * lib/gl_list.h: Likewise.
24259         * lib/gl_oset.c: Likewise.
24260         * lib/gl_oset.h: Likewise.
24261         * lib/gl_rbtree_list.c: Likewise.
24262         * lib/gl_rbtree_list.h: Likewise.
24263         * lib/gl_rbtree_oset.c: Likewise.
24264         * lib/gl_rbtree_oset.h: Likewise.
24265         * lib/gl_rbtreehash_list.c: Likewise.
24266         * lib/gl_rbtreehash_list.h: Likewise.
24267         * lib/gl_sublist.c: Likewise.
24268         * lib/gl_sublist.h: Likewise.
24269         * lib/group-member.c: Likewise.
24270         * lib/group-member.h: Likewise.
24271         * lib/hard-locale.c: Likewise.
24272         * lib/hard-locale.h: Likewise.
24273         * lib/hash-pjw.c: Likewise.
24274         * lib/hash-pjw.h: Likewise.
24275         * lib/hash-triple.c: Likewise.
24276         * lib/hash.c: Likewise.
24277         * lib/hash.h: Likewise.
24278         * lib/human.c: Likewise.
24279         * lib/human.h: Likewise.
24280         * lib/i-ring.c: Likewise.
24281         * lib/i-ring.h: Likewise.
24282         * lib/idcache.c: Likewise.
24283         * lib/imaxabs.c: Likewise.
24284         * lib/imaxdiv.c: Likewise.
24285         * lib/inet_pton.c: Likewise.
24286         * lib/inet_pton.h: Likewise.
24287         * lib/intprops.h: Likewise.
24288         * lib/inttostr.c: Likewise.
24289         * lib/inttostr.h: Likewise.
24290         * lib/inttypes.in.h: Likewise.
24291         * lib/isapipe.c: Likewise.
24292         * lib/isdir.c: Likewise.
24293         * lib/isnan.c: Likewise.
24294         * lib/isnan.h: Likewise.
24295         * lib/isnanf.c: Likewise.
24296         * lib/isnanf.h: Likewise.
24297         * lib/isnanl-nolibm.h: Likewise.
24298         * lib/isnanl.c: Likewise.
24299         * lib/isnanl.h: Likewise.
24300         * lib/javacomp.c: Likewise.
24301         * lib/javacomp.h: Likewise.
24302         * lib/javaexec.c: Likewise.
24303         * lib/javaexec.h: Likewise.
24304         * lib/javaversion.c: Likewise.
24305         * lib/javaversion.h: Likewise.
24306         * lib/javaversion.java: Likewise.
24307         * lib/lbrkprop.h: Likewise.
24308         * lib/lchmod.h: Likewise.
24309         * lib/lchown.c: Likewise.
24310         * lib/ldexpl.c: Likewise.
24311         * lib/linebreak.c: Likewise.
24312         * lib/linebreak.h: Likewise.
24313         * lib/linebuffer.c: Likewise.
24314         * lib/linebuffer.h: Likewise.
24315         * lib/locale.in.h: Likewise.
24316         * lib/logl.c: Likewise.
24317         * lib/long-options.c: Likewise.
24318         * lib/long-options.h: Likewise.
24319         * lib/lstat.c: Likewise.
24320         * lib/lstat.h: Likewise.
24321         * lib/math.in.h: Likewise.
24322         * lib/mbchar.c: Likewise.
24323         * lib/mbchar.h: Likewise.
24324         * lib/mbfile.h: Likewise.
24325         * lib/mbiter.h: Likewise.
24326         * lib/mbscasecmp.c: Likewise.
24327         * lib/mbscasestr.c: Likewise.
24328         * lib/mbschr.c: Likewise.
24329         * lib/mbscspn.c: Likewise.
24330         * lib/mbslen.c: Likewise.
24331         * lib/mbsncasecmp.c: Likewise.
24332         * lib/mbsnlen.c: Likewise.
24333         * lib/mbspbrk.c: Likewise.
24334         * lib/mbspcasecmp.c: Likewise.
24335         * lib/mbsrchr.c: Likewise.
24336         * lib/mbssep.c: Likewise.
24337         * lib/mbsspn.c: Likewise.
24338         * lib/mbsstr.c: Likewise.
24339         * lib/mbstok_r.c: Likewise.
24340         * lib/mbswidth.c: Likewise.
24341         * lib/mbswidth.h: Likewise.
24342         * lib/mbuiter.h: Likewise.
24343         * lib/memcasecmp.c: Likewise.
24344         * lib/memcasecmp.h: Likewise.
24345         * lib/memchr.c: Likewise.
24346         * lib/memcmp.c: Likewise.
24347         * lib/memcoll.c: Likewise.
24348         * lib/memcoll.h: Likewise.
24349         * lib/memcpy.c: Likewise.
24350         * lib/memrchr.c: Likewise.
24351         * lib/mkancesdirs.c: Likewise.
24352         * lib/mkdir-p.c: Likewise.
24353         * lib/mkdir-p.h: Likewise.
24354         * lib/mkdir.c: Likewise.
24355         * lib/mkdirat.c: Likewise.
24356         * lib/mkdtemp.c: Likewise.
24357         * lib/mkstemp-safer.c: Likewise.
24358         * lib/mkstemp.c: Likewise.
24359         * lib/modechange.c: Likewise.
24360         * lib/modechange.h: Likewise.
24361         * lib/mountlist.c: Likewise.
24362         * lib/mountlist.h: Likewise.
24363         * lib/mpsort.c: Likewise.
24364         * lib/nanosleep.c: Likewise.
24365         * lib/obstack.c: Likewise.
24366         * lib/obstack.h: Likewise.
24367         * lib/open-safer.c: Likewise.
24368         * lib/open.c: Likewise.
24369         * lib/openat-die.c: Likewise.
24370         * lib/openat-priv.h: Likewise.
24371         * lib/openat-proc.c: Likewise.
24372         * lib/openat.c: Likewise.
24373         * lib/openat.h: Likewise.
24374         * lib/pagealign_alloc.c: Likewise.
24375         * lib/pagealign_alloc.h: Likewise.
24376         * lib/physmem.c: Likewise.
24377         * lib/physmem.h: Likewise.
24378         * lib/pipe-safer.c: Likewise.
24379         * lib/pipe.c: Likewise.
24380         * lib/pipe.h: Likewise.
24381         * lib/posixtm.c: Likewise.
24382         * lib/posixtm.h: Likewise.
24383         * lib/posixver.c: Likewise.
24384         * lib/printf-frexp.c: Likewise.
24385         * lib/printf-frexp.h: Likewise.
24386         * lib/printf-frexpl.c: Likewise.
24387         * lib/printf-frexpl.h: Likewise.
24388         * lib/printf.c: Likewise.
24389         * lib/progname.c: Likewise.
24390         * lib/progname.h: Likewise.
24391         * lib/progreloc.c: Likewise.
24392         * lib/putenv.c: Likewise.
24393         * lib/quote.c: Likewise.
24394         * lib/quote.h: Likewise.
24395         * lib/quotearg.c: Likewise.
24396         * lib/quotearg.h: Likewise.
24397         * lib/raise.c: Likewise.
24398         * lib/readline.c: Likewise.
24399         * lib/readline.h: Likewise.
24400         * lib/readlink.c: Likewise.
24401         * lib/readtokens.c: Likewise.
24402         * lib/readtokens.h: Likewise.
24403         * lib/readtokens0.c: Likewise.
24404         * lib/readtokens0.h: Likewise.
24405         * lib/readutmp.c: Likewise.
24406         * lib/readutmp.h: Likewise.
24407         * lib/realloc.c: Likewise.
24408         * lib/relocwrapper.c: Likewise.
24409         * lib/rename-dest-slash.c: Likewise.
24410         * lib/rename.c: Likewise.
24411         * lib/rmdir.c: Likewise.
24412         * lib/rpmatch.c: Likewise.
24413         * lib/safe-read.c: Likewise.
24414         * lib/safe-read.h: Likewise.
24415         * lib/safe-write.c: Likewise.
24416         * lib/safe-write.h: Likewise.
24417         * lib/same-inode.h: Likewise.
24418         * lib/same.c: Likewise.
24419         * lib/same.h: Likewise.
24420         * lib/save-cwd.c: Likewise.
24421         * lib/save-cwd.h: Likewise.
24422         * lib/savedir.c: Likewise.
24423         * lib/savedir.h: Likewise.
24424         * lib/savewd.c: Likewise.
24425         * lib/savewd.h: Likewise.
24426         * lib/search.in.h: Likewise.
24427         * lib/setenv.c: Likewise.
24428         * lib/setenv.h: Likewise.
24429         * lib/settime.c: Likewise.
24430         * lib/sh-quote.c: Likewise.
24431         * lib/sh-quote.h: Likewise.
24432         * lib/sig2str.c: Likewise.
24433         * lib/sig2str.h: Likewise.
24434         * lib/signal.in.h: Likewise.
24435         * lib/signbitd.c: Likewise.
24436         * lib/signbitf.c: Likewise.
24437         * lib/signbitl.c: Likewise.
24438         * lib/sigprocmask.c: Likewise.
24439         * lib/sincosl.c: Likewise.
24440         * lib/sleep.c: Likewise.
24441         * lib/sprintf.c: Likewise.
24442         * lib/sqrtl.c: Likewise.
24443         * lib/stat-time.h: Likewise.
24444         * lib/stdio--.h: Likewise.
24445         * lib/stdio-safer.h: Likewise.
24446         * lib/stdlib--.h: Likewise.
24447         * lib/stdlib-safer.h: Likewise.
24448         * lib/stdlib.in.h: Likewise.
24449         * lib/stpcpy.c: Likewise.
24450         * lib/stpncpy.c: Likewise.
24451         * lib/strchrnul.c: Likewise.
24452         * lib/strcspn.c: Likewise.
24453         * lib/strerror.c: Likewise.
24454         * lib/strftime.c: Likewise.
24455         * lib/strftime.h: Likewise.
24456         * lib/striconveh.c: Likewise.
24457         * lib/striconveh.h: Likewise.
24458         * lib/striconveha.c: Likewise.
24459         * lib/striconveha.h: Likewise.
24460         * lib/stripslash.c: Likewise.
24461         * lib/strnlen1.c: Likewise.
24462         * lib/strnlen1.h: Likewise.
24463         * lib/strtod.c: Likewise.
24464         * lib/strtoimax.c: Likewise.
24465         * lib/strtok_r.c: Likewise.
24466         * lib/strtol.c: Likewise.
24467         * lib/strtoll.c: Likewise.
24468         * lib/strtoul.c: Likewise.
24469         * lib/strtoull.c: Likewise.
24470         * lib/sysexits.in.h: Likewise.
24471         * lib/tempname.c: Likewise.
24472         * lib/tempname.h: Likewise.
24473         * lib/timespec.h: Likewise.
24474         * lib/tls.c: Likewise.
24475         * lib/tls.h: Likewise.
24476         * lib/tmpdir.c: Likewise.
24477         * lib/tmpdir.h: Likewise.
24478         * lib/tmpfile-safer.c: Likewise.
24479         * lib/tmpfile.c: Likewise.
24480         * lib/trigl.c: Likewise.
24481         * lib/trigl.h: Likewise.
24482         * lib/trim.c: Likewise.
24483         * lib/trim.h: Likewise.
24484         * lib/trunc.c: Likewise.
24485         * lib/truncf.c: Likewise.
24486         * lib/truncl.c: Likewise.
24487         * lib/tsearch.c: Likewise.
24488         * lib/unicodeio.c: Likewise.
24489         * lib/unicodeio.h: Likewise.
24490         * lib/unistd--.h: Likewise.
24491         * lib/unistd-safer.h: Likewise.
24492         * lib/unistdio/ulc-fprintf.c: Likewise.
24493         * lib/unistdio/ulc-vfprintf.c: Likewise.
24494         * lib/unlinkdir.c: Likewise.
24495         * lib/unlinkdir.h: Likewise.
24496         * lib/unlocked-io.h: Likewise.
24497         * lib/unsetenv.c: Likewise.
24498         * lib/userspec.c: Likewise.
24499         * lib/utime.c: Likewise.
24500         * lib/utimecmp.c: Likewise.
24501         * lib/utimecmp.h: Likewise.
24502         * lib/utimens.c: Likewise.
24503         * lib/verify.h: Likewise.
24504         * lib/verror.c: Likewise.
24505         * lib/verror.h: Likewise.
24506         * lib/version-etc-fsf.c: Likewise.
24507         * lib/version-etc.c: Likewise.
24508         * lib/version-etc.h: Likewise.
24509         * lib/vfprintf.c: Likewise.
24510         * lib/vprintf.c: Likewise.
24511         * lib/vsprintf.c: Likewise.
24512         * lib/w32spawn.h: Likewise.
24513         * lib/wait-process.c: Likewise.
24514         * lib/wait-process.h: Likewise.
24515         * lib/wcwidth.c: Likewise.
24516         * lib/write-any-file.c: Likewise.
24517         * lib/xalloc-die.c: Likewise.
24518         * lib/xalloc.h: Likewise.
24519         * lib/xasprintf.c: Likewise.
24520         * lib/xgetcwd.c: Likewise.
24521         * lib/xgetcwd.h: Likewise.
24522         * lib/xgetdomainname.c: Likewise.
24523         * lib/xgetdomainname.h: Likewise.
24524         * lib/xgethostname.c: Likewise.
24525         * lib/xmalloc.c: Likewise.
24526         * lib/xmalloca.c: Likewise.
24527         * lib/xmalloca.h: Likewise.
24528         * lib/xmemcoll.c: Likewise.
24529         * lib/xnanosleep.c: Likewise.
24530         * lib/xreadlink.c: Likewise.
24531         * lib/xreadlink.h: Likewise.
24532         * lib/xsetenv.c: Likewise.
24533         * lib/xsetenv.h: Likewise.
24534         * lib/xstriconv.c: Likewise.
24535         * lib/xstriconv.h: Likewise.
24536         * lib/xstrndup.c: Likewise.
24537         * lib/xstrndup.h: Likewise.
24538         * lib/xstrtod.c: Likewise.
24539         * lib/xstrtod.h: Likewise.
24540         * lib/xstrtol-error.c: Likewise.
24541         * lib/xstrtol.c: Likewise.
24542         * lib/xstrtol.h: Likewise.
24543         * lib/xtime.h: Likewise.
24544         * lib/xvasprintf.c: Likewise.
24545         * lib/xvasprintf.h: Likewise.
24546         * lib/yesno.c: Likewise.
24547         * lib/yesno.h: Likewise.
24548         * posix-modules: Likewise.
24549         * tests/test-alloca-opt.c: Likewise.
24550         * tests/test-arcfour.c: Likewise.
24551         * tests/test-arctwo.c: Likewise.
24552         * tests/test-argmatch.c: Likewise.
24553         * tests/test-argp-2.sh: Likewise.
24554         * tests/test-argp.c: Likewise.
24555         * tests/test-arpa_inet.c: Likewise.
24556         * tests/test-array_list.c: Likewise.
24557         * tests/test-array_oset.c: Likewise.
24558         * tests/test-atexit.c: Likewise.
24559         * tests/test-avltree_list.c: Likewise.
24560         * tests/test-avltree_oset.c: Likewise.
24561         * tests/test-avltreehash_list.c: Likewise.
24562         * tests/test-base64.c: Likewise.
24563         * tests/test-binary-io.c: Likewise.
24564         * tests/test-byteswap.c: Likewise.
24565         * tests/test-c-ctype.c: Likewise.
24566         * tests/test-c-strcasecmp.c: Likewise.
24567         * tests/test-c-strcasestr.c: Likewise.
24568         * tests/test-c-strncasecmp.c: Likewise.
24569         * tests/test-c-strstr.c: Likewise.
24570         * tests/test-canonicalize-lgpl.c: Likewise.
24571         * tests/test-canonicalize.c: Likewise.
24572         * tests/test-carray_list.c: Likewise.
24573         * tests/test-ceilf.c: Likewise.
24574         * tests/test-ceill.c: Likewise.
24575         * tests/test-count-one-bits.c: Likewise.
24576         * tests/test-crc.c: Likewise.
24577         * tests/test-dirname.c: Likewise.
24578         * tests/test-fbufmode.c: Likewise.
24579         * tests/test-fcntl.c: Likewise.
24580         * tests/test-fflush.c: Likewise.
24581         * tests/test-floorf.c: Likewise.
24582         * tests/test-floorl.c: Likewise.
24583         * tests/test-fopen.c: Likewise.
24584         * tests/test-fprintf-posix.c: Likewise.
24585         * tests/test-fprintf-posix.h: Likewise.
24586         * tests/test-fpurge.c: Likewise.
24587         * tests/test-freadable.c: Likewise.
24588         * tests/test-freadahead.c: Likewise.
24589         * tests/test-freading.c: Likewise.
24590         * tests/test-freopen.c: Likewise.
24591         * tests/test-frexp.c: Likewise.
24592         * tests/test-frexpl.c: Likewise.
24593         * tests/test-fseek.c: Likewise.
24594         * tests/test-fseeko.c: Likewise.
24595         * tests/test-fseterr.c: Likewise.
24596         * tests/test-fstrcmp.c: Likewise.
24597         * tests/test-ftell.c: Likewise.
24598         * tests/test-ftello.c: Likewise.
24599         * tests/test-fwritable.c: Likewise.
24600         * tests/test-fwriting.c: Likewise.
24601         * tests/test-getaddrinfo.c: Likewise.
24602         * tests/test-getpass.c: Likewise.
24603         * tests/test-gettimeofday.c: Likewise.
24604         * tests/test-hmac-md5.c: Likewise.
24605         * tests/test-hmac-sha1.c: Likewise.
24606         * tests/test-iconv.c: Likewise.
24607         * tests/test-iconvme.c: Likewise.
24608         * tests/test-inttypes.c: Likewise.
24609         * tests/test-isnan.c: Likewise.
24610         * tests/test-isnanf.c: Likewise.
24611         * tests/test-isnanl-nolibm.c: Likewise.
24612         * tests/test-isnanl.c: Likewise.
24613         * tests/test-isnanl.h: Likewise.
24614         * tests/test-ldexpl.c: Likewise.
24615         * tests/test-linked_list.c: Likewise.
24616         * tests/test-linkedhash_list.c: Likewise.
24617         * tests/test-locale.c: Likewise.
24618         * tests/test-localename.c: Likewise.
24619         * tests/test-lock.c: Likewise.
24620         * tests/test-lseek.c: Likewise.
24621         * tests/test-malloca.c: Likewise.
24622         * tests/test-math.c: Likewise.
24623         * tests/test-mbscasecmp.c: Likewise.
24624         * tests/test-mbscasestr1.c: Likewise.
24625         * tests/test-mbscasestr2.c: Likewise.
24626         * tests/test-mbscasestr3.c: Likewise.
24627         * tests/test-mbscasestr4.c: Likewise.
24628         * tests/test-mbschr.c: Likewise.
24629         * tests/test-mbscspn.c: Likewise.
24630         * tests/test-mbsncasecmp.c: Likewise.
24631         * tests/test-mbspbrk.c: Likewise.
24632         * tests/test-mbspcasecmp.c: Likewise.
24633         * tests/test-mbsrchr.c: Likewise.
24634         * tests/test-mbsspn.c: Likewise.
24635         * tests/test-mbsstr1.c: Likewise.
24636         * tests/test-mbsstr2.c: Likewise.
24637         * tests/test-mbsstr3.c: Likewise.
24638         * tests/test-md5.c: Likewise.
24639         * tests/test-memmem.c: Likewise.
24640         * tests/test-netinet_in.c: Likewise.
24641         * tests/test-open.c: Likewise.
24642         * tests/test-printf-frexp.c: Likewise.
24643         * tests/test-printf-frexpl.c: Likewise.
24644         * tests/test-printf-posix.c: Likewise.
24645         * tests/test-printf-posix.h: Likewise.
24646         * tests/test-rbtree_list.c: Likewise.
24647         * tests/test-rbtree_oset.c: Likewise.
24648         * tests/test-rbtreehash_list.c: Likewise.
24649         * tests/test-read-file.c: Likewise.
24650         * tests/test-rijndael.c: Likewise.
24651         * tests/test-search.c: Likewise.
24652         * tests/test-signbit.c: Likewise.
24653         * tests/test-sleep.c: Likewise.
24654         * tests/test-snprintf-posix.c: Likewise.
24655         * tests/test-snprintf-posix.h: Likewise.
24656         * tests/test-snprintf.c: Likewise.
24657         * tests/test-sprintf-posix.c: Likewise.
24658         * tests/test-sprintf-posix.h: Likewise.
24659         * tests/test-stat-time.c: Likewise.
24660         * tests/test-stdbool.c: Likewise.
24661         * tests/test-stdint.c: Likewise.
24662         * tests/test-stdio.c: Likewise.
24663         * tests/test-stdlib.c: Likewise.
24664         * tests/test-stpncpy.c: Likewise.
24665         * tests/test-strcasestr.c: Likewise.
24666         * tests/test-striconv.c: Likewise.
24667         * tests/test-striconveh.c: Likewise.
24668         * tests/test-striconveha.c: Likewise.
24669         * tests/test-string.c: Likewise.
24670         * tests/test-sys_select.c: Likewise.
24671         * tests/test-sys_socket.c: Likewise.
24672         * tests/test-sys_stat.c: Likewise.
24673         * tests/test-sys_time.c: Likewise.
24674         * tests/test-sysexits.c: Likewise.
24675         * tests/test-time.c: Likewise.
24676         * tests/test-tls.c: Likewise.
24677         * tests/test-trunc.c: Likewise.
24678         * tests/test-truncf.c: Likewise.
24679         * tests/test-truncl.c: Likewise.
24680         * tests/test-unistd.c: Likewise.
24681         * tests/test-vasnprintf-posix.c: Likewise.
24682         * tests/test-vasnprintf-posix2.c: Likewise.
24683         * tests/test-vasnprintf.c: Likewise.
24684         * tests/test-vasprintf-posix.c: Likewise.
24685         * tests/test-vasprintf.c: Likewise.
24686         * tests/test-verify.c: Likewise.
24687         * tests/test-vfprintf-posix.c: Likewise.
24688         * tests/test-vprintf-posix.c: Likewise.
24689         * tests/test-vsnprintf-posix.c: Likewise.
24690         * tests/test-vsnprintf.c: Likewise.
24691         * tests/test-vsprintf-posix.c: Likewise.
24692         * tests/test-wchar.c: Likewise.
24693         * tests/test-wctype.c: Likewise.
24694         * tests/test-wcwidth.c: Likewise.
24695         * tests/test-xstrtol.c: Likewise.
24696         * tests/test-xvasprintf.c: Likewise.
24697         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
24698         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
24699         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
24700         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
24701         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
24702         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
24703         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
24704         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
24705         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
24706         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
24707         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
24708         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
24709         * tests/uniname/test-uninames.c: Likewise.
24710         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
24711         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
24712         * tests/unistdio/test-u16-printf1.h: Likewise.
24713         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
24714         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
24715         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
24716         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
24717         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
24718         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
24719         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
24720         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
24721         * tests/unistdio/test-u32-printf1.h: Likewise.
24722         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
24723         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
24724         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
24725         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
24726         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
24727         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
24728         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
24729         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
24730         * tests/unistdio/test-u8-printf1.h: Likewise.
24731         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
24732         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
24733         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
24734         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
24735         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
24736         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
24737         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
24738         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
24739         * tests/unistdio/test-ulc-printf1.h: Likewise.
24740         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
24741         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
24742         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
24743         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
24744         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
24745         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
24746         * tests/uniwidth/test-u16-strwidth.c: Likewise.
24747         * tests/uniwidth/test-u16-width.c: Likewise.
24748         * tests/uniwidth/test-u32-strwidth.c: Likewise.
24749         * tests/uniwidth/test-u32-width.c: Likewise.
24750         * tests/uniwidth/test-u8-strwidth.c: Likewise.
24751         * tests/uniwidth/test-u8-width.c: Likewise.
24752         * tests/uniwidth/test-uc_width.c: Likewise.
24753         * config/srclist-update: Likewise.
24754         (fixlicense): Update to GPLv3+.
24755
24756         Change copyright notice from LGPLv2.1+ to LGPLv3+.
24757         * tests/test-tsearch.c: Change copyright notice.
24758
24759         Change copyright notice from LGPLv2.0+ to LGPLv3+.
24760         * lib/c-strcaseeq.h: Change copyright notice.
24761         * lib/streq.h: Likewise.
24762         * lib/uniconv.h: Likewise.
24763         * lib/uniconv/u-conv-from-enc.h: Likewise.
24764         * lib/uniconv/u-conv-to-enc.h: Likewise.
24765         * lib/uniconv/u-strconv-from-enc.h: Likewise.
24766         * lib/uniconv/u-strconv-to-enc.h: Likewise.
24767         * lib/uniconv/u16-conv-from-enc.c: Likewise.
24768         * lib/uniconv/u16-conv-to-enc.c: Likewise.
24769         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
24770         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
24771         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
24772         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
24773         * lib/uniconv/u32-conv-from-enc.c: Likewise.
24774         * lib/uniconv/u32-conv-to-enc.c: Likewise.
24775         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
24776         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
24777         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
24778         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
24779         * lib/uniconv/u8-conv-from-enc.c: Likewise.
24780         * lib/uniconv/u8-conv-to-enc.c: Likewise.
24781         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
24782         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
24783         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
24784         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
24785         * lib/uniname.h: Likewise.
24786         * lib/uniname/uniname.c: Likewise.
24787         * lib/unistdio.h: Likewise.
24788         * lib/unistdio/u-asnprintf.h: Likewise.
24789         * lib/unistdio/u-asprintf.h: Likewise.
24790         * lib/unistdio/u-printf-args.c: Likewise.
24791         * lib/unistdio/u-printf-args.h: Likewise.
24792         * lib/unistdio/u-printf-parse.h: Likewise.
24793         * lib/unistdio/u-snprintf.h: Likewise.
24794         * lib/unistdio/u-sprintf.h: Likewise.
24795         * lib/unistdio/u-vasprintf.h: Likewise.
24796         * lib/unistdio/u-vsnprintf.h: Likewise.
24797         * lib/unistdio/u-vsprintf.h: Likewise.
24798         * lib/unistdio/u16-asnprintf.c: Likewise.
24799         * lib/unistdio/u16-asprintf.c: Likewise.
24800         * lib/unistdio/u16-printf-parse.c: Likewise.
24801         * lib/unistdio/u16-snprintf.c: Likewise.
24802         * lib/unistdio/u16-sprintf.c: Likewise.
24803         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
24804         * lib/unistdio/u16-u16-asprintf.c: Likewise.
24805         * lib/unistdio/u16-u16-snprintf.c: Likewise.
24806         * lib/unistdio/u16-u16-sprintf.c: Likewise.
24807         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
24808         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
24809         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
24810         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
24811         * lib/unistdio/u16-vasnprintf.c: Likewise.
24812         * lib/unistdio/u16-vasprintf.c: Likewise.
24813         * lib/unistdio/u16-vsnprintf.c: Likewise.
24814         * lib/unistdio/u16-vsprintf.c: Likewise.
24815         * lib/unistdio/u32-asnprintf.c: Likewise.
24816         * lib/unistdio/u32-asprintf.c: Likewise.
24817         * lib/unistdio/u32-printf-parse.c: Likewise.
24818         * lib/unistdio/u32-snprintf.c: Likewise.
24819         * lib/unistdio/u32-sprintf.c: Likewise.
24820         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
24821         * lib/unistdio/u32-u32-asprintf.c: Likewise.
24822         * lib/unistdio/u32-u32-snprintf.c: Likewise.
24823         * lib/unistdio/u32-u32-sprintf.c: Likewise.
24824         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
24825         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
24826         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
24827         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
24828         * lib/unistdio/u32-vasnprintf.c: Likewise.
24829         * lib/unistdio/u32-vasprintf.c: Likewise.
24830         * lib/unistdio/u32-vsnprintf.c: Likewise.
24831         * lib/unistdio/u32-vsprintf.c: Likewise.
24832         * lib/unistdio/u8-asnprintf.c: Likewise.
24833         * lib/unistdio/u8-asprintf.c: Likewise.
24834         * lib/unistdio/u8-printf-parse.c: Likewise.
24835         * lib/unistdio/u8-snprintf.c: Likewise.
24836         * lib/unistdio/u8-sprintf.c: Likewise.
24837         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
24838         * lib/unistdio/u8-u8-asprintf.c: Likewise.
24839         * lib/unistdio/u8-u8-snprintf.c: Likewise.
24840         * lib/unistdio/u8-u8-sprintf.c: Likewise.
24841         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
24842         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
24843         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
24844         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
24845         * lib/unistdio/u8-vasnprintf.c: Likewise.
24846         * lib/unistdio/u8-vasprintf.c: Likewise.
24847         * lib/unistdio/u8-vsnprintf.c: Likewise.
24848         * lib/unistdio/u8-vsprintf.c: Likewise.
24849         * lib/unistdio/ulc-asnprintf.c: Likewise.
24850         * lib/unistdio/ulc-asprintf.c: Likewise.
24851         * lib/unistdio/ulc-printf-parse.c: Likewise.
24852         * lib/unistdio/ulc-snprintf.c: Likewise.
24853         * lib/unistdio/ulc-sprintf.c: Likewise.
24854         * lib/unistdio/ulc-vasnprintf.c: Likewise.
24855         * lib/unistdio/ulc-vasprintf.c: Likewise.
24856         * lib/unistdio/ulc-vsnprintf.c: Likewise.
24857         * lib/unistdio/ulc-vsprintf.c: Likewise.
24858         * lib/unistr.h: Likewise.
24859         * lib/unistr/u-cpy-alloc.h: Likewise.
24860         * lib/unistr/u-cpy.h: Likewise.
24861         * lib/unistr/u-endswith.h: Likewise.
24862         * lib/unistr/u-move.h: Likewise.
24863         * lib/unistr/u-set.h: Likewise.
24864         * lib/unistr/u-startswith.h: Likewise.
24865         * lib/unistr/u-stpcpy.h: Likewise.
24866         * lib/unistr/u-stpncpy.h: Likewise.
24867         * lib/unistr/u-strcat.h: Likewise.
24868         * lib/unistr/u-strcpy.h: Likewise.
24869         * lib/unistr/u-strcspn.h: Likewise.
24870         * lib/unistr/u-strdup.h: Likewise.
24871         * lib/unistr/u-strlen.h: Likewise.
24872         * lib/unistr/u-strncat.h: Likewise.
24873         * lib/unistr/u-strncpy.h: Likewise.
24874         * lib/unistr/u-strnlen.h: Likewise.
24875         * lib/unistr/u-strpbrk.h: Likewise.
24876         * lib/unistr/u-strspn.h: Likewise.
24877         * lib/unistr/u-strstr.h: Likewise.
24878         * lib/unistr/u-strtok.h: Likewise.
24879         * lib/unistr/u16-check.c: Likewise.
24880         * lib/unistr/u16-chr.c: Likewise.
24881         * lib/unistr/u16-cmp.c: Likewise.
24882         * lib/unistr/u16-cpy-alloc.c: Likewise.
24883         * lib/unistr/u16-cpy.c: Likewise.
24884         * lib/unistr/u16-endswith.c: Likewise.
24885         * lib/unistr/u16-mblen.c: Likewise.
24886         * lib/unistr/u16-mbsnlen.c: Likewise.
24887         * lib/unistr/u16-mbtouc-aux.c: Likewise.
24888         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
24889         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
24890         * lib/unistr/u16-mbtouc.c: Likewise.
24891         * lib/unistr/u16-mbtoucr.c: Likewise.
24892         * lib/unistr/u16-move.c: Likewise.
24893         * lib/unistr/u16-next.c: Likewise.
24894         * lib/unistr/u16-prev.c: Likewise.
24895         * lib/unistr/u16-set.c: Likewise.
24896         * lib/unistr/u16-startswith.c: Likewise.
24897         * lib/unistr/u16-stpcpy.c: Likewise.
24898         * lib/unistr/u16-stpncpy.c: Likewise.
24899         * lib/unistr/u16-strcat.c: Likewise.
24900         * lib/unistr/u16-strchr.c: Likewise.
24901         * lib/unistr/u16-strcmp.c: Likewise.
24902         * lib/unistr/u16-strcpy.c: Likewise.
24903         * lib/unistr/u16-strcspn.c: Likewise.
24904         * lib/unistr/u16-strdup.c: Likewise.
24905         * lib/unistr/u16-strlen.c: Likewise.
24906         * lib/unistr/u16-strmblen.c: Likewise.
24907         * lib/unistr/u16-strmbtouc.c: Likewise.
24908         * lib/unistr/u16-strncat.c: Likewise.
24909         * lib/unistr/u16-strncmp.c: Likewise.
24910         * lib/unistr/u16-strncpy.c: Likewise.
24911         * lib/unistr/u16-strnlen.c: Likewise.
24912         * lib/unistr/u16-strpbrk.c: Likewise.
24913         * lib/unistr/u16-strrchr.c: Likewise.
24914         * lib/unistr/u16-strspn.c: Likewise.
24915         * lib/unistr/u16-strstr.c: Likewise.
24916         * lib/unistr/u16-strtok.c: Likewise.
24917         * lib/unistr/u16-to-u32.c: Likewise.
24918         * lib/unistr/u16-to-u8.c: Likewise.
24919         * lib/unistr/u16-uctomb-aux.c: Likewise.
24920         * lib/unistr/u16-uctomb.c: Likewise.
24921         * lib/unistr/u32-check.c: Likewise.
24922         * lib/unistr/u32-chr.c: Likewise.
24923         * lib/unistr/u32-cmp.c: Likewise.
24924         * lib/unistr/u32-cpy-alloc.c: Likewise.
24925         * lib/unistr/u32-cpy.c: Likewise.
24926         * lib/unistr/u32-endswith.c: Likewise.
24927         * lib/unistr/u32-mblen.c: Likewise.
24928         * lib/unistr/u32-mbsnlen.c: Likewise.
24929         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
24930         * lib/unistr/u32-mbtouc.c: Likewise.
24931         * lib/unistr/u32-mbtoucr.c: Likewise.
24932         * lib/unistr/u32-move.c: Likewise.
24933         * lib/unistr/u32-next.c: Likewise.
24934         * lib/unistr/u32-prev.c: Likewise.
24935         * lib/unistr/u32-set.c: Likewise.
24936         * lib/unistr/u32-startswith.c: Likewise.
24937         * lib/unistr/u32-stpcpy.c: Likewise.
24938         * lib/unistr/u32-stpncpy.c: Likewise.
24939         * lib/unistr/u32-strcat.c: Likewise.
24940         * lib/unistr/u32-strchr.c: Likewise.
24941         * lib/unistr/u32-strcmp.c: Likewise.
24942         * lib/unistr/u32-strcpy.c: Likewise.
24943         * lib/unistr/u32-strcspn.c: Likewise.
24944         * lib/unistr/u32-strdup.c: Likewise.
24945         * lib/unistr/u32-strlen.c: Likewise.
24946         * lib/unistr/u32-strmblen.c: Likewise.
24947         * lib/unistr/u32-strmbtouc.c: Likewise.
24948         * lib/unistr/u32-strncat.c: Likewise.
24949         * lib/unistr/u32-strncmp.c: Likewise.
24950         * lib/unistr/u32-strncpy.c: Likewise.
24951         * lib/unistr/u32-strnlen.c: Likewise.
24952         * lib/unistr/u32-strpbrk.c: Likewise.
24953         * lib/unistr/u32-strrchr.c: Likewise.
24954         * lib/unistr/u32-strspn.c: Likewise.
24955         * lib/unistr/u32-strstr.c: Likewise.
24956         * lib/unistr/u32-strtok.c: Likewise.
24957         * lib/unistr/u32-to-u16.c: Likewise.
24958         * lib/unistr/u32-to-u8.c: Likewise.
24959         * lib/unistr/u32-uctomb.c: Likewise.
24960         * lib/unistr/u8-check.c: Likewise.
24961         * lib/unistr/u8-chr.c: Likewise.
24962         * lib/unistr/u8-cmp.c: Likewise.
24963         * lib/unistr/u8-cpy-alloc.c: Likewise.
24964         * lib/unistr/u8-cpy.c: Likewise.
24965         * lib/unistr/u8-endswith.c: Likewise.
24966         * lib/unistr/u8-mblen.c: Likewise.
24967         * lib/unistr/u8-mbsnlen.c: Likewise.
24968         * lib/unistr/u8-mbtouc-aux.c: Likewise.
24969         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
24970         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
24971         * lib/unistr/u8-mbtouc.c: Likewise.
24972         * lib/unistr/u8-mbtoucr.c: Likewise.
24973         * lib/unistr/u8-move.c: Likewise.
24974         * lib/unistr/u8-next.c: Likewise.
24975         * lib/unistr/u8-prev.c: Likewise.
24976         * lib/unistr/u8-set.c: Likewise.
24977         * lib/unistr/u8-startswith.c: Likewise.
24978         * lib/unistr/u8-stpcpy.c: Likewise.
24979         * lib/unistr/u8-stpncpy.c: Likewise.
24980         * lib/unistr/u8-strcat.c: Likewise.
24981         * lib/unistr/u8-strchr.c: Likewise.
24982         * lib/unistr/u8-strcmp.c: Likewise.
24983         * lib/unistr/u8-strcpy.c: Likewise.
24984         * lib/unistr/u8-strcspn.c: Likewise.
24985         * lib/unistr/u8-strdup.c: Likewise.
24986         * lib/unistr/u8-strlen.c: Likewise.
24987         * lib/unistr/u8-strmblen.c: Likewise.
24988         * lib/unistr/u8-strmbtouc.c: Likewise.
24989         * lib/unistr/u8-strncat.c: Likewise.
24990         * lib/unistr/u8-strncmp.c: Likewise.
24991         * lib/unistr/u8-strncpy.c: Likewise.
24992         * lib/unistr/u8-strnlen.c: Likewise.
24993         * lib/unistr/u8-strpbrk.c: Likewise.
24994         * lib/unistr/u8-strrchr.c: Likewise.
24995         * lib/unistr/u8-strspn.c: Likewise.
24996         * lib/unistr/u8-strstr.c: Likewise.
24997         * lib/unistr/u8-strtok.c: Likewise.
24998         * lib/unistr/u8-to-u16.c: Likewise.
24999         * lib/unistr/u8-to-u32.c: Likewise.
25000         * lib/unistr/u8-uctomb-aux.c: Likewise.
25001         * lib/unistr/u8-uctomb.c: Likewise.
25002         * lib/unitypes.h: Likewise.
25003         * lib/uniwidth.h: Likewise.
25004         * lib/uniwidth/cjk.h: Likewise.
25005         * lib/uniwidth/u16-strwidth.c: Likewise.
25006         * lib/uniwidth/u16-width.c: Likewise.
25007         * lib/uniwidth/u32-strwidth.c: Likewise.
25008         * lib/uniwidth/u32-width.c: Likewise.
25009         * lib/uniwidth/u8-strwidth.c: Likewise.
25010         * lib/uniwidth/u8-width.c: Likewise.
25011         * lib/uniwidth/width.c: Likewise.
25012
25013 2007-10-07  Bruno Haible  <bruno@clisp.org>
25014
25015         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
25016         The file is still under LGPL (see modules/inttypes).
25017
25018 2007-10-06  Bruno Haible  <bruno@clisp.org>
25019
25020         * modules/trunc (Dependencies): Add 'extensions'.
25021         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
25022         Reported by Ben Pfaff <blp@gnu.org>.
25023
25024 2007-10-06  Bruno Haible  <bruno@clisp.org>
25025
25026         * modules/freopen-tests: New file.
25027         * tests/test-freopen.c: New file.
25028
25029         * modules/fopen-tests: New file.
25030         * tests/test-fopen.c: New file.
25031
25032         * modules/fopen: New file.
25033         * lib/fopen.c: New file.
25034         * m4/fopen.m4: New file.
25035         * modules/freopen: New file.
25036         * lib/freopen.c: New file.
25037         * m4/freopen.m4: New file.
25038         * lib/stdio.in.h (fopen, freopen): New declarations.
25039         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
25040         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
25041         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
25042         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
25043         * doc/functions/fopen.texi: Mention the 'fopen' module.
25044         * doc/functions/freopen.texi: Mention the 'freopen' module.
25045
25046 2007-10-06  Bruno Haible  <bruno@clisp.org>
25047
25048         * modules/open-tests: New file.
25049         * tests/test-open.c: New file.
25050
25051         * modules/open: New file.
25052         * lib/open.c: New file.
25053         * m4/open.m4: New file.
25054         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
25055         lib/open.c does.
25056         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
25057         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
25058         macros.
25059         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
25060         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
25061         REPLACE_OPEN.
25062         * doc/functions/open.texi: Mention the 'open' module.
25063
25064 2007-10-04  Bruno Haible  <bruno@clisp.org>
25065
25066         * modules/ceill-tests: New file.
25067         * tests/test-ceill.c: New file.
25068
25069         * modules/ceill: New file.
25070         * lib/ceill.c: Replace entire file.
25071         * m4/ceill.m4: New file.
25072         * lib/math.in.h (ceill): Replace declaration.
25073         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
25074         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
25075         * doc/functions/ceill.texi: Mention the 'ceill' module.
25076         * modules/mathl (Files): Remove lib/ceill.c.
25077         (Depends-on): Add ceill.
25078
25079 2007-10-04  Bruno Haible  <bruno@clisp.org>
25080
25081         * modules/ceilf-tests: New file.
25082         * tests/test-ceilf.c: New file.
25083
25084         * modules/ceilf: New file.
25085         * lib/ceil.c: New file.
25086         * lib/ceilf.c: New file.
25087         * m4/ceilf.m4: New file.
25088         * lib/math.in.h (ceilf): New declaration.
25089         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
25090         HAVE_DECL_CEILF.
25091         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
25092         HAVE_DECL_CEILF.
25093         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
25094
25095 2007-10-04  Bruno Haible  <bruno@clisp.org>
25096
25097         * modules/floorl-tests: New file.
25098         * tests/test-floorl.c: New file.
25099
25100         * modules/floorl: New file.
25101         * lib/floorl.c: Replace entire file.
25102         * m4/floorl.m4: New file.
25103         * lib/math.in.h (floorl): Replace declaration.
25104         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
25105         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
25106         * doc/functions/floorl.texi: Mention the 'floorl' module.
25107         * modules/mathl (Files): Remove lib/floorl.c.
25108         (Depends-on): Add floorl.
25109
25110 2007-10-04  Bruno Haible  <bruno@clisp.org>
25111
25112         * modules/floorf-tests: New file.
25113         * tests/test-floorf.c: New file.
25114
25115         * modules/floorf: New file.
25116         * lib/floor.c: New file.
25117         * lib/floorf.c: New file.
25118         * m4/floorf.m4: New file.
25119         * lib/math.in.h (floorf): New declaration.
25120         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
25121         HAVE_DECL_FLOORF.
25122         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
25123         HAVE_DECL_FLOORF.
25124         * doc/functions/floorf.texi: Mention the 'floorf' module.
25125
25126 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
25127             Bruno Haible  <bruno@clisp.org>
25128
25129         Advertise for the Git server instead of the CVS server.
25130         * doc/gnulib-intro.texi (Steady Development): Mention the Git
25131         repository instead of the CVS one.
25132         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
25133         about all VCS systems generically.
25134         * doc/gnulib.texi (Introduction): Capitalize `Git'.
25135
25136 2007-10-04  Bruno Haible  <bruno@clisp.org>
25137
25138         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
25139         means.
25140         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
25141
25142 2007-10-04  Bruno Haible  <bruno@clisp.org>
25143
25144         * modules/truncl-tests: New file.
25145         * tests/test-truncl.c: New file.
25146
25147         * modules/truncl: New file.
25148         * lib/truncl.c: New file.
25149         * m4/truncl.m4: New file.
25150         * lib/math.in.h (truncl): New declaration.
25151         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
25152         HAVE_DECL_TRUNCL.
25153         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
25154         HAVE_DECL_TRUNCL.
25155         * doc/functions/truncl.texi: Mention the 'truncl' module.
25156
25157 2007-10-04  Bruno Haible  <bruno@clisp.org>
25158
25159         * modules/truncf-tests: New file.
25160         * tests/test-truncf.c: New file.
25161
25162         * modules/truncf: New file.
25163         * lib/trunc.c: Make paramerizable through USE_* macros.
25164         * lib/truncf.c: New file.
25165         * m4/truncf.m4: New file.
25166         * lib/math.in.h (truncf): New declaration.
25167         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
25168         HAVE_DECL_TRUNCF.
25169         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
25170         HAVE_DECL_TRUNCF.
25171         * doc/functions/truncf.texi: Mention the 'truncf' module.
25172
25173 2007-10-03  Bruno Haible  <bruno@clisp.org>
25174
25175         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
25176         augmentation also for tests modules.
25177         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
25178         * modules/atexit-tests (Makefile.am): Likewise.
25179         * modules/binary-io-tests (Makefile.am): Likewise.
25180         * modules/c-strcase-tests (Makefile.am): Likewise.
25181         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
25182         * modules/canonicalize-tests (Makefile.am): Likewise.
25183         * modules/closein-tests (Makefile.am): Likewise.
25184         * modules/fprintf-posix-tests (Makefile.am): Likewise.
25185         * modules/freadahead-tests (Makefile.am): Likewise.
25186         * modules/fseek-tests (Makefile.am): Likewise.
25187         * modules/fseeko-tests (Makefile.am): Likewise.
25188         * modules/ftell-tests (Makefile.am): Likewise.
25189         * modules/ftello-tests (Makefile.am): Likewise.
25190         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
25191         * modules/isnanl-tests (Makefile.am): Likewise.
25192         * modules/lseek-tests (Makefile.am): Likewise.
25193         * modules/mbscasecmp-tests (Makefile.am): Likewise.
25194         * modules/mbscasestr-tests (Makefile.am): Likewise.
25195         * modules/mbschr-tests (Makefile.am): Likewise.
25196         * modules/mbscspn-tests (Makefile.am): Likewise.
25197         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
25198         * modules/mbspbrk-tests (Makefile.am): Likewise.
25199         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
25200         * modules/mbsrchr-tests (Makefile.am): Likewise.
25201         * modules/mbsspn-tests (Makefile.am): Likewise.
25202         * modules/mbsstr-tests (Makefile.am): Likewise.
25203         * modules/printf-posix-tests (Makefile.am): Likewise.
25204         * modules/snprintf-posix-tests (Makefile.am): Likewise.
25205         * modules/sprintf-posix-tests (Makefile.am): Likewise.
25206         * modules/tsearch-tests (Makefile.am): Likewise.
25207         * modules/uniname/uniname-tests (Makefile.am): Likewise.
25208         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
25209         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
25210         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
25211         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
25212         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
25213         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
25214         * modules/vprintf-posix-tests (Makefile.am): Likewise.
25215         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
25216         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
25217         * modules/xstrtoimax-tests (Makefile.am): Likewise.
25218         * modules/xstrtol-tests (Makefile.am): Likewise.
25219         * modules/xstrtoumax-tests (Makefile.am): Likewise.
25220         * modules/yesno-tests (Makefile.am): Likewise.
25221
25222 2007-10-03  Bruno Haible  <bruno@clisp.org>
25223
25224         * modules/trunc-tests: New file.
25225         * tests/test-trunc.c: New file.
25226
25227         * modules/trunc: New file.
25228         * lib/trunc.c: New file.
25229         * m4/trunc.m4: New file.
25230         * lib/math.in.h (trunc): New declaration.
25231         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
25232         HAVE_DECL_TRUNC.
25233         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
25234         HAVE_DECL_TRUNC.
25235         * doc/functions/trunc.texi: Mention the 'trunc' module.
25236
25237 2007-10-03  Bruno Haible  <bruno@clisp.org>
25238
25239         * tests/test-fpending.c: New file, mostly copied
25240         from coreutils/lib/t-fpending.c.
25241         * modules/fpending-tests: New file.
25242
25243 2007-10-03  Bruno Haible  <bruno@clisp.org>
25244
25245         Port the stdio extensions to QNX (untested).
25246         * lib/fseterr.c (fseterr): Add support for QNX.
25247         * lib/fbufmode.c (fbufmode): Likewise.
25248         * lib/freadable.c (freadable): Likewise.
25249         * lib/fwritable.c (fwritable): Likewise.
25250         * lib/freading.c (freading): Likewise.
25251         * lib/fwriting.c (fwriting): Likewise.
25252         * lib/freadahead.c (freadahed): Likewise.
25253         * lib/fpurge.c (fpurge): Likewise.
25254         * lib/fseeko.c (rpl_fseeko): Likewise.
25255
25256 2007-10-03  Bruno Haible  <bruno@clisp.org>
25257             Jim Meyering  <jim@meyering.net>
25258             Eric Blake  <ebb9@byu.net>
25259
25260         * doc/relocatable.texi: Use @command instead of @program.
25261
25262 2007-10-02  Jim Meyering  <jim@meyering.net>
25263
25264         Perform one more "_.h" -> ".in.h" substitution.
25265         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
25266         instead of unistd_.h here, too.
25267
25268 2007-10-01  Bruno Haible  <bruno@clisp.org>
25269
25270         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
25271         Needed for the alloca-opt module.
25272
25273 2007-09-30  Bruno Haible  <bruno@clisp.org>
25274
25275         * lib/alloca.in.h: Renamed from lib/alloca_.h.
25276         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
25277         alloca_.h.
25278         * lib/argz.in.h: Renamed from lib/argz_.h.
25279         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
25280         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
25281         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
25282         byteswap_.h.
25283         * lib/dirent.in.h: Renamed from lib/dirent_.h.
25284         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
25285         dirent_.h.
25286         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
25287         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
25288         fcntl_.h.
25289         * lib/float.in.h: Renamed from lib/float_.h.
25290         * modules/float (Files, Makefile.am): Use float.in.h instead of
25291         float_.h.
25292         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
25293         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
25294         fnmatch_.h.
25295         * lib/getopt.in.h: Renamed from lib/getopt_.h.
25296         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
25297         getopt_.h.
25298         * lib/glob.in.h: Renamed from lib/glob_.h.
25299         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
25300         * lib/iconv.in.h: Renamed from lib/iconv_.h.
25301         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
25302         iconv_.h.
25303         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
25304         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
25305         inttypes_.h.
25306         * lib/locale.in.h: Renamed from lib/locale_.h.
25307         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
25308         locale_.h.
25309         * lib/math.in.h: Renamed from lib/math_.h.
25310         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
25311         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
25312         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
25313         of netinet_in_.h. Add dependency.
25314         * lib/poll.in.h: Renamed from lib/poll_.h.
25315         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
25316         * lib/search.in.h: Renamed from lib/search_.h.
25317         * modules/search (Files, Makefile.am): Use search.in.h instead of
25318         search_.h.
25319         * lib/signal.in.h: Renamed from lib/signal_.h.
25320         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
25321         _signal.h.
25322         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
25323         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
25324         stdbool_.h.
25325         * lib/stdint.in.h: Renamed from lib/stdint_.h.
25326         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
25327         stdint_.h.
25328         * lib/stdio.in.h: Renamed from lib/stdio_.h.
25329         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
25330         stdio_.h.
25331         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
25332         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
25333         stdlib_.h.
25334         * lib/string.in.h: Renamed from lib/string_.h.
25335         * modules/string (Files, Makefile.am): Use string.in.h instead of
25336         string_.h.
25337         * doc/gnulib-tool.texi (Initial import): Update.
25338         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
25339         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
25340         of sys_select_.h. Add dependency.
25341         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
25342         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
25343         of sys_socket_.h.
25344         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
25345         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
25346         sys_stat_.h.
25347         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
25348         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
25349         sys_time_.h.
25350         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
25351         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
25352         sysexits_.h.
25353         * lib/time.in.h: Renamed from lib/time_.h.
25354         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
25355         * lib/unistd.in.h: Renamed from lib/unistd_.h.
25356         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
25357         unistd_.h.
25358         * lib/wchar.in.h: Renamed from lib/wchar_.h.
25359         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
25360         wchar_.h.
25361         * lib/wctype.in.h: Renamed from lib/wctype_.h.
25362         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
25363         wctype_.h.
25364         * build-aux/bootstrap (slurp): Update.
25365         * lib/.cppi-disable: Update.
25366
25367 2007-09-30  Bruno Haible  <bruno@clisp.org>
25368
25369         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
25370         Needed on BeOS.
25371
25372 2007-09-30  Bruno Haible  <bruno@clisp.org>
25373
25374         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
25375
25376 2007-09-29  Bruno Haible  <bruno@clisp.org>
25377
25378         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
25379
25380 2007-09-29  Bruno Haible  <bruno@clisp.org>
25381
25382         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
25383         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
25384         * build-aux/install-reloc: Compile also areadlink.c.
25385         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
25386
25387 2007-09-29  Bruno Haible  <bruno@clisp.org>
25388
25389         * gnulib-tool (func_emit_initmacro_done): Indentation.
25390
25391 2007-09-29  Bruno Haible  <bruno@clisp.org>
25392
25393         * README: Add CVS checkout update instructions.
25394         Info from Bob Proulx <bob@proulx.com>.
25395
25396 2007-09-28  Eric Blake  <ebb9@byu.net>
25397
25398         Provide move-if-change.
25399         * build-aux/move-if-change: New file, based on best practice
25400         rather than any canonical upstream location.
25401
25402 2007-09-28  Jim Meyering  <jim@meyering.net>
25403
25404         Fix canonicalize loop-detection corner case.
25405         Do not attempt to stat the symlink values stored via seen_triple.
25406         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
25407         on linux-2.6.18, (but not 2.6.22).
25408         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
25409         triple_compare.  The former compares dev,ino,filename, while the latter
25410         would actually stat dirname(filename) when dev and ino were equal.
25411         * lib/hash-triple.c: Install <string.h>.
25412         (STREQ): Define.
25413         (triple_compare_ino_str): New function.
25414         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
25415
25416 2007-09-28  Eric Blake  <ebb9@byu.net>
25417
25418         Enforce that AC_REPLACE_FUNCS files exist.
25419         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
25420         override check for typos.
25421
25422         Fix test-closein on Solaris 10.
25423         * tests/test-closein.c (main): Don't assume stdin can be inherited
25424         closed on all systems.
25425         * tests/test-closein.sh: Likewise.
25426         Reported by Piotr Tarnowski.
25427
25428 2007-09-28  Jim Meyering  <jim@meyering.net>
25429
25430         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
25431
25432 2007-09-27  Jim Meyering  <jim@meyering.net>
25433
25434         canonicalize: Avoid a false-positive cycle failure.
25435         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
25436         Sort.  Remove cycle-check.
25437         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
25438         not cycle-check.h.
25439         (seen_triple): New function.
25440         (canonicalize_filename_mode): Use it instead of cycle-check.
25441         * tests/test-canonicalize.c: Add a test for this bug.
25442         * tests/test-canonicalize.sh: Set up and run the test.
25443
25444         New module, file-set, from coreutils.
25445         * modules/file-set: Define it.
25446         * lib/file-set.c, lib/file-set.h: Implement.
25447
25448         New module, hash-triple, from coreutils.
25449         * modules/hash-triple: Define it.
25450         * lib/hash-triple.c, lib/hash-triple.h: Implement.
25451
25452 2007-09-25  Eric Blake  <ebb9@byu.net>
25453
25454         Fix strerror on Interix.
25455         * lib/string_.h (strerror): Declare replacement.
25456         * doc/functions/strerror.texi (strerror): Document the Interix
25457         shortcoming.
25458         * modules/string (Makefile.am): Support new hooks.
25459         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
25460         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
25461         gl_FUNC_STRERROR_SEPARATE.
25462         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
25463         * lib/strerror.c (rpl_strerror): Provide replacement.
25464         * modules/strerror (Depends-on): Add string.
25465         (configure.ac): Detect use of module.
25466         * tests/test-strerror.c: New file.
25467         * modules/strerror-tests: New test module.
25468         * modules/argp (Depends-on): Add strerror.
25469         * modules/error (Depends-on): Likewise.
25470         Reported by Martin Koeppe.
25471
25472 2007-09-24  Bruno Haible  <bruno@clisp.org>
25473
25474         * README: Update git instructions.
25475
25476 2007-09-24  Eric Blake  <ebb9@byu.net>
25477
25478         Revert fpending breakage from 2007-09-08.
25479         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
25480         __fpending.c.
25481
25482 2007-09-24  Jim Meyering  <jim@meyering.net>
25483
25484         filenamecat.c: Add a test.
25485         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
25486         showing how the function works when DIR is the empty string.
25487
25488 2007-09-21  Simon Josefsson  <simon@josefsson.org>
25489
25490         * tests/test-canonicalize.sh: Turn on executable bit.
25491
25492 2007-09-19  Eric Blake  <ebb9@byu.net>
25493
25494         * README: Update CVS instructions.
25495
25496 2007-09-18  Bruno Haible  <bruno@clisp.org>
25497
25498         * modules/areadlink: New file.
25499         * lib/areadlink.h (areadlink): New declaration.
25500         * lib/areadlink.c: New file, based on lib/xreadlink.c.
25501
25502 2007-09-17  Jim Meyering  <jim@meyering.net>
25503
25504         * lib/savewd.c (ESTALE) [!defined]: Define.
25505         Reported to be required on Interix by Martin Koeppe.
25506
25507 2007-09-17  Bruno Haible  <bruno@clisp.org>
25508
25509         * gnulib-tool (func_version): Use $version.
25510
25511 2007-09-16  Bruno Haible  <bruno@clisp.org>
25512
25513         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
25514         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
25515         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
25516         Reported by Greg Schafer <gschafer@zip.com.au>.
25517
25518 2007-09-15  Bruno Haible  <bruno@clisp.org>
25519
25520         * gnulib-tool (sed): Try a little harder to make bash understand the
25521         alias.
25522         Reported by Bruce Korb <bruce.korb@gmail.com>.
25523
25524 2007-09-13  Eric Blake  <ebb9@byu.net>
25525
25526         * ChangeLog: Remove conflict markers.
25527
25528 2007-09-13  Simon Josefsson  <simon@josefsson.org>
25529
25530         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
25531         Reported by Bruno Haible <bruno@clisp.org>.
25532
25533 2007-09-12  Bruno Haible  <bruno@clisp.org>
25534
25535         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
25536         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
25537         is not defined.
25538
25539 2007-09-12  Eric Blake  <ebb9@byu.net>
25540
25541         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
25542         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
25543         Autoconf definition.
25544         * modules/euidaccess (Depends-on): Add extensions, for
25545         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
25546         * modules/fnmatch (Depends-on): Likewise.
25547         * modules/getaddrinfo (Depends-on): Likewise.
25548         * modules/getdelim (Depends-on): Likewise.
25549         * modules/getline (Depends-on): Likewise.
25550         * modules/getsubopt (Depends-on): Likewise.
25551         * modules/gettext (Depends-on): Likewise.
25552         * modules/group-member (Depends-on): Likewise.
25553         * modules/mbchar (Depends-on): Likewise.
25554         * modules/memmem (Depends-on): Likewise.
25555         * modules/mempcpy (Depends-on): Likewise.
25556         * modules/memrchr (Depends-on): Likewise.
25557         * modules/pagealign_alloc (Depends-on): Likewise.
25558         * modules/readutmp (Depends-on): Likewise.
25559         * modules/stpcpy (Depends-on): Likewise.
25560         * modules/stpncpy (Depends-on): Likewise.
25561         * modules/strchrnul (Depends-on): Likewise.
25562         * modules/strndup (Depends-on): Likewise.
25563         * modules/strsep (Depends-on): Likewise.
25564         * modules/strverscmp (Depends-on): Likewise.
25565         * modules/vasprintf (Depends-on): Likewise.
25566         * modules/wcwidth (Depends-on): Likewise.
25567         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
25568         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
25569         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
25570         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
25571         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
25572         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
25573         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
25574         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
25575         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
25576         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
25577         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
25578         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
25579         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
25580         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
25581         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
25582         * m4/readutmp.m4 (gl_READUTMP): Likewise.
25583         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
25584         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
25585         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
25586         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
25587         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
25588         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
25589         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
25590         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
25591         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
25592         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
25593         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
25594         so that lock.m4 can be used in gettext without extensions module.
25595
25596 2007-09-11  Bruno Haible  <bruno@clisp.org>
25597
25598         * m4/isc-posix.m4: Remove file.
25599         Suggested by Eric Blake.
25600
25601 2007-09-11  Eric Blake  <ebb9@byu.net>
25602
25603         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
25604
25605 2007-09-10  Bruno Haible  <bruno@clisp.org>
25606
25607         * posix-modules: Fix typo in error message.
25608         Reported by Matt <mkraai@beckman.com>.
25609
25610 2007-09-09  Bruno Haible  <bruno@clisp.org>
25611
25612         * doc/functions/getdelim.texi: Update list of platforms lacking the
25613         function.
25614         * doc/functions/getline.texi: Likewise.
25615
25616 2007-09-09  Jim Meyering  <jim@meyering.net>
25617
25618         * lib/hash.c (hash_initialize): Detect calloc failure.
25619         Reported by Bruno Haible.
25620
25621 2007-09-09  Bruno Haible  <bruno@clisp.org>
25622
25623         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
25624         malloc or realloc fails.
25625
25626 2007-09-09  Bruno Haible  <bruno@clisp.org>
25627
25628         * modules/getcwd (Depends-on): Add malloc-posix.
25629         * modules/glob (Depends-on): Likewise.
25630         * modules/putenv (Depends-on): Likewise.
25631         * modules/strdup (Depends-on): Likewise.
25632         * modules/getdelim (Depends-on): Add realloc-posix.
25633         * modules/read-file (Depends-on): Likewise.
25634
25635 2007-09-09  Bruno Haible  <bruno@clisp.org>
25636
25637         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
25638         (gl_FUNC_MALLOC_POSIX): Require it.
25639         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
25640         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
25641         * modules/realloc (Files): Add m4/malloc.m4.
25642         * modules/calloc (Files): Likewise.
25643
25644 2007-09-09  Bruno Haible  <bruno@clisp.org>
25645
25646         * modules/malloc-posix: New file.
25647         * modules/malloc (Depends-on): Add malloc-posix.
25648         * lib/malloc.c: Include errno.h.
25649         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
25650         and a POSIX-compatible malloc into a single function. Set ENOMEM
25651         when returning NULL.
25652         * m4/malloc.m4: New file.
25653         * doc/functions/malloc.texi: Mention the malloc-posix module.
25654         * lib/stdlib_.h (malloc): New declaration.
25655         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25656         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
25657         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
25658         and HAVE_MALLOC_POSIX.
25659
25660 2007-09-09  Bruno Haible  <bruno@clisp.org>
25661
25662         * modules/realloc-posix: New file.
25663         * modules/realloc (Depends-on): Add realloc-posix.
25664         * lib/realloc.c: Include errno.h.
25665         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
25666         and a POSIX-compatible realloc into a single function. Set ENOMEM
25667         when returning NULL.
25668         * m4/realloc.m4: New file.
25669         * doc/functions/realloc.texi: Mention the realloc-posix module.
25670         * lib/stdlib_.h (realloc): New declaration.
25671         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25672         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
25673         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
25674         and HAVE_REALLOC_POSIX.
25675
25676 2007-09-09  Bruno Haible  <bruno@clisp.org>
25677
25678         * modules/calloc-posix: New file.
25679         * modules/calloc (Depends-on): Add calloc-posix.
25680         * lib/calloc.c: Include errno.h.
25681         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
25682         and a POSIX-compatible calloc into a single function. Set ENOMEM
25683         when returning NULL.
25684         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
25685         * doc/functions/calloc.texi: Mention the calloc-posix module.
25686         * lib/stdlib_.h (calloc): New declaration.
25687         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25688         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
25689         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
25690         and HAVE_CALLOC_POSIX.
25691
25692 2007-09-09  Bruno Haible  <bruno@clisp.org>
25693
25694         Allow for modules to show an arbitrary notice.
25695         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
25696         * gnulib-tool: New option --extract-notice.
25697         (func_usage): Document it.
25698         (sed_extract_prog): Update.
25699         (func_get_notice): New function.
25700         (func_modules_notice): New function.
25701         (func_import, func_create_testdir): Invoke it.
25702         Suggested by Jim Meyering.
25703
25704 2007-09-09  Bruno Haible  <bruno@clisp.org>
25705
25706         * gnulib-tool: New options --verbose, --quiet.
25707         (func_usage): Document them.
25708         (verbose): New variable.
25709         (func_execute_command): New function.
25710         (func_import): Don't show the module list and the file list if
25711         $verbose < 0.
25712         (func_create_testdir): Likewise. Use func_execute_command.
25713         (func_create_megatestdir): Use func_execute_command.
25714
25715 2007-09-08  Bruno Haible  <bruno@clisp.org>
25716
25717         * gnulib-tool (func_import): Prefer rsync over wget when available,
25718         for fetching the PO files.
25719
25720 2007-09-08  Bruno Haible  <bruno@clisp.org>
25721
25722         * posix-modules: New file. Portions copied from gnulib-tool.
25723         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
25724
25725 2007-09-08  Jim Meyering  <jim@meyering.net>
25726
25727         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
25728         * lib/fpending.h: Rename from __fpending.h.
25729         * lib/fpending.c: Rename from __fpending.c.
25730         Include "fpending.h", not "__fpending.h".
25731         * lib/__fpending.h, lib/__fpending.c: Remove files.
25732         * modules/fpending (Files): Reflect new file names.
25733         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
25734
25735 2007-09-08  Bruno Haible  <bruno@clisp.org>
25736
25737         * m4/inttypes-h.m4: Remove stub file.
25738
25739 2007-09-07  Simon Josefsson  <simon@josefsson.org>
25740
25741         * doc/headers/stdint.texi: Discuss #include_next issue.
25742
25743 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
25744
25745         * build-aux/bootstrap: Remove obsolete comment about wget --help.
25746
25747 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25748
25749         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
25750         in variable name.
25751
25752 2007-09-03  Jim Meyering  <jim@meyering.net>
25753
25754         New module: git-version-gen.
25755         * modules/git-version-gen: New file.
25756
25757         Import changes from coreutils for bootstrap script.
25758
25759         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
25760
25761         bootstrap: uses rsync to download the .po files
25762         * build-aux/bootstrap (po_download_command_format): New global.
25763         (download_po_files): Use rsync.
25764         (update_po_files): Don't remove .po files after download,
25765         so future rsync runs can take advantage of the copies.
25766
25767         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
25768
25769         Solve the unnecessary-.po-file-regeneration problem once and for all.
25770         * build-aux/bootstrap (download_po_files): New function, renamed from
25771         get_translations.  Now, downloads, but doesn't update LINGUAS.
25772         (update_po_files): New function.
25773
25774         bootstrap: Ignore more.
25775         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
25776         uniwidth to e.g., lib/.gitignore.
25777         (slurp): Handle the sys_stat_.h -> sys mapping, too.
25778
25779         * build-aux/bootstrap: New setting: vc_ignore.
25780         (insert_sorted_if_absent): Create $file if absent.
25781         Adapt to new, possibly empty, list: $vc_ignore.
25782
25783         bootstrap: generate more ignorable names
25784         * build-aux/bootstrap (slurp): When generating ignorable names,
25785         also map .sin to .sed, .gperf to .c, and .y to .c.
25786
25787 2007-09-03  Jim Meyering  <jim@meyering.net>
25788
25789         * build-aux/git-version-gen: New file, from coreutils.  For details, see
25790         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
25791
25792 2007-09-02  Bruno Haible  <bruno@clisp.org>
25793
25794         Fix mis-recognition of 'mcs' on QNX 6.
25795         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
25796         output contains the string "Mono".
25797         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
25798         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
25799
25800 2007-09-01  Bruno Haible  <bruno@clisp.org>
25801
25802         Fix collision between uniwidth/* and linebreak modules.
25803         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
25804         u32_width): Remove declarations.
25805         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
25806         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
25807         streq3, streq2, streq1, streq0): Remove functions.
25808         (STREQ): Remove macro.
25809         (is_cjk_encoding): Remove function.
25810         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
25811         (uc_width, u8_width, u16_width, u32_width): Remove functions.
25812         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
25813         * NEWS: Document the change.
25814
25815 2007-09-01  Bruno Haible  <bruno@clisp.org>
25816
25817         * lib/streq.h: Add double-inclusion guard.
25818
25819 2007-09-01  Karl Berry  <karl@gnu.org>
25820
25821         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
25822
25823 2007-08-28  Jim Meyering  <jim@meyering.net>
25824
25825         Rename mreadlink_with_size to areadlink_with_size.
25826         * NEWS: Document the change.
25827         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
25828         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
25829         * lib/mreadlink.h: Rename this to...
25830         * lib/areadlink.h: ...this.
25831         * modules/mreadlink-with-size: Rename this to...
25832         * modules/areadlink-with-size: ...this.
25833         * lib/canonicalize.c: Reflect the renaming.
25834         * modules/canonicalize: Likewise.
25835
25836 2007-08-26  Bruno Haible  <bruno@clisp.org>
25837
25838         * gnulib-tool (func_import): When deciding which files to remove,
25839         consider also dangling symbolic links.
25840         Reported by Eric Blake.
25841
25842 2007-08-26  Bruno Haible  <bruno@clisp.org>
25843
25844         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
25845
25846 2007-08-23  Simon Josefsson  <simon@josefsson.org>
25847
25848         * lib/readline.c: Don't include getline.h, the prototype is now
25849         found in stdio.h.
25850
25851 2007-08-23  Jim Meyering  <jim@meyering.net>
25852
25853         Getdelim touchup.
25854         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
25855         around the funlockfile call, since funlockfile never sets errno.
25856         Don't set errno upon failed realloc.
25857
25858 2007-08-22  Eric Blake  <ebb9@byu.net>
25859
25860         Getline touchups.
25861         * lib/getdelim.c (getdelim): Revert regression that required *n to
25862         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
25863         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
25864         getdelim, rather than whether implementation is missing.
25865         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
25866         * lib/stdio_.h (getline): Also declare if replacement is
25867         required.
25868         * doc/functions/getdelim.texi: New file.
25869         * doc/functions/getline.texi: Likewise.
25870         * doc/gnulib.texi (Function Substitutes): Add new files.
25871         Reported by Bruno Haible.
25872
25873 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
25874
25875         * users.txt: Add Guile.
25876
25877 2007-08-22  Eric Blake  <ebb9@byu.net>
25878
25879         * tests/test-getdelim.c (main): Use remove, not unlink.
25880         * tests/test-getline.c (main): Likewise.
25881
25882         Move getline and getdelim into stdio.h, per POSIX 200x.
25883         * modules/getline (Files): Remove getline.h.
25884         (Depends-on): Add stdio.
25885         (configure.ac): Add module indicator.
25886         * modules/getdelim (Files): Remove getdelim.h.
25887         (Depends-on): Add stdio.
25888         (configure.ac): Add module indicator.
25889         * modules/stdio (Makefile.am): Work with new indicators.
25890         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
25891         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
25892         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
25893         * lib/getdelim.h: Delete.
25894         * lib/getline.h: Delete.
25895         * lib/stdio_.h (getdelim, getline): Declare.
25896         * modules/getdelim-tests: New module.
25897         * modules/getline-tests: Likewise.
25898         * tests/test-getdelim.c: New file.
25899         * tests/test-getline.c: Likewise.
25900         * NEWS: Document the change.
25901         * lib/getline.c: Update choice of header.
25902         * lib/csharpcomp.c: Likewise.
25903         * lib/getpass.c: Likewise.
25904         * lib/javacomp.c: Likewise.
25905         * lib/javaversion.c: Likewise.
25906         * lib/yesno.c: Likewise.
25907         * lib/getdelim.c: Likewise.
25908         (getdelim): Set errno on failure, and avoid memory leak.
25909
25910 2007-08-19  Bruno Haible  <bruno@clisp.org>
25911
25912         * modules/closein (Depends-on): Add freadahead.
25913         * lib/closein.c: Include freadahead.h.
25914         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
25915         is zero.
25916
25917 2007-08-19  Bruno Haible  <bruno@clisp.org>
25918
25919         * modules/freadahead-tests: New file.
25920         * tests/test-freadahead.sh: New file.
25921         * tests/test-freadahead.c: New file.
25922
25923         * modules/freadahead: New file.
25924         * lib/freadahead.h: New file.
25925         * lib/freadahead.c: New file.
25926         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
25927         fbufmode, fpurge, freadable, fwritable.
25928
25929 2007-08-19  Eric Blake  <ebb9@byu.net>
25930
25931         Test yesno in combination with closein.
25932         * lib/yesno.c (yesno): Document use of stdin.
25933         * modules/yesno-tests (Files): New module.
25934         * tests/test-yesno.c (main): New file.
25935         * tests/test-yesno.sh: Likewise.
25936
25937 2007-08-19  Bruno Haible  <bruno@clisp.org>
25938
25939         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
25940         * lib/fseeko.c (rpl_fseeko): Likewise.
25941         * lib/fseterr.c (fseterr): Likewise.
25942
25943 2007-08-19  Bruno Haible  <bruno@clisp.org>
25944
25945         * tests/test-lseek.c (main): Disable a test for BeOS.
25946         * doc/functions/lseek.texi: Document the BeOS bug.
25947
25948 2007-08-19  Bruno Haible  <bruno@clisp.org>
25949             Eric Blake  <ebb9@byu.net>
25950
25951         * lib/lseek.c: Include <sys/stat.h>.
25952         (rpl_lseek): Add workaround code also for Unix platforms.
25953         Needed for BeOS.
25954         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
25955         * doc/functions/lseek.texi: Document BeOS definiency.
25956
25957 2007-08-18  Bruno Haible  <bruno@clisp.org>
25958
25959         * modules/fstrcmp-tests: New file.
25960         * tests/test-fstrcmp.c: New file.
25961
25962 2007-08-18  Bruno Haible  <bruno@clisp.org>
25963
25964         * modules/fstrcmp: New file, from GNU gettext with modifications.
25965         * lib/fstrcmp.h: New file, from GNU gettext.
25966         * lib/fstrcmp.c: New file, from GNU gettext.
25967         * MODULES.html.sh (String handling): Add fstrcmp.
25968
25969 2007-08-18  Bruno Haible  <bruno@clisp.org>
25970
25971         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
25972         'bool'.
25973         (diag, compareseq): Remove const from the ctxt argument.
25974         (USE_HEURISTIC): Undefine at the end.
25975
25976 2007-08-18  Jim Meyering  <jim@meyering.net>
25977
25978         New file: lib/idcache.h
25979         * NEWS: Mention the addition.
25980         * modules/idcache (Files): Add lib/idcache.h
25981         * lib/idcache.c: Include "idcache.h".
25982         Don't include <sys/types.h>.
25983         Add a FIXME comment.
25984         Move file-scoped "static" declarations to the top.
25985         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
25986
25987 2007-08-17  Bruno Haible  <bruno@clisp.org>
25988         and Paul Eggert  <eggert@cs.ucla.edu>
25989
25990         * MODULES.html.sh: Add diffseq.
25991         * modules/diffseq: New file.
25992         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
25993         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
25994
25995 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
25996
25997         Import changes from coreutils for bootstrap script.
25998
25999         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
26000
26001         * build-aux/bootstrap (slurp): Work even in environments where
26002         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
26003         current code does not slurp files whose names start with ".", and
26004         this looks like it might be a troublesome area.
26005
26006         2007-07-11  Jim Meyering  <jim@meyering.net>
26007
26008         If there's a GPL vN copyright comment, require that N == 3.
26009
26010         2007-07-08  Jim Meyering  <jim@meyering.net>
26011
26012         Run the coreutils-specific code only if tests/Makefile.am.in exists.
26013         * build-aux/bootstrap (mam_template): Move definition out of loop.
26014
26015         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
26016
26017         * build-aux/bootstrap (symlink_to_dir): Rename function from
26018         symlink_to_gnulib.  Add a directory parameter.  Update all
26019         callers.
26020         (cp_mark_as_generated): Also check for -- and link to -- files in
26021         gl/.
26022
26023         2007-07-08  Jim Meyering  <jim@meyering.net>
26024
26025         Adapt to deeper hierarchy in gnulib.
26026         * build-aux/bootstrap (symlink_to_dir): If the destination
26027         directory doesn't exist, create it. This is required at least for
26028         "lib/uniwidth/cjk.h".
26029
26030         2007-05-15  Jim Meyering  <jim@meyering.net>
26031
26032         * build-aux/bootstrap: Now that generated Makefile.am files
26033         are no longer under version control, they must be created at
26034         bootstrap time.
26035
26036 2007-08-14  Ben Pfaff  <blp@gnu.org>
26037
26038         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
26039
26040 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
26041
26042         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
26043         given the changes below.
26044         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
26045         even on hosts that have padding bits beyond the supported 64.
26046
26047 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
26048
26049         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
26050         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
26051         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
26052         depends on it.
26053         (xstrtol_error): Remove.
26054         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
26055         but with a different signature.
26056         (ATTRIBUTE_NORETURN, __attribute__): New macros.
26057         * lib/xstrtol-error.c: Include exitfail.h.
26058         (xstrtol_fatal): New function, with a different signature from the
26059         old xstrtol_error, so that the caller need not worry about passing
26060         in an exit status, or about storage management of the option argument.
26061         (xstrtol_error): Now a static function.  Redo signature to
26062         implement xstrtol_fatal.  Output the correct number of hyphens in
26063         front of the option so that the caller need not worry about
26064         storage management.
26065         (N_): New macro.
26066         (_): Remove; not used now.
26067         * modules/xstrtol: Depend on getopt.
26068         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
26069         of old STRTOL_FATAL_ERROR macro.
26070         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
26071         of test program.
26072         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
26073         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
26074
26075 2007-08-08  Eric Blake  <ebb9@byu.net>
26076
26077         * lib/xstrtol-error.c: Add missing include.
26078
26079         Move xstrtol messages into gnulib domain, when --pobase is used.
26080         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
26081         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
26082         * modules/xstrtol (Files): Distribute new file.
26083         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
26084         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
26085         * tests/test-xstrtol.c: ...into new file.
26086         * tests/test-xstrtoul.c: Also test xstrtoul.
26087         * tests/test-xstrtoimax.c: Also test xstrtoimax.
26088         * tests/test-xstrtoumax.c: Also test xstrtoumax.
26089         * tests/test-xstrtol.sh: Drive the tests.
26090         * tests/test-xstrtoimax.sh: Likewise.
26091         * tests/test-xstrtoumax.sh: Likewise.
26092         * modules/xstrtol-tests: New module.
26093         * modules/xstrtoimax-tests: Likewise.
26094         * modules/xstrtoumax-tests: Likewise.
26095
26096 2007-08-08  Jim Meyering  <jim@meyering.net>
26097
26098         New function: mfile_name_concat.
26099         * lib/filenamecat.c (mfile_name_concat): New function, just like
26100         file_name_concat, but return NULL upon failure rather than exiting
26101         with a diagnostic.
26102         * lib/filenamecat.h: Declare it.
26103
26104 2007-08-07  Bruno Haible  <bruno@clisp.org>
26105
26106         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
26107         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
26108         warning from gcc.
26109         Reported by Eric Blake.
26110
26111 2007-08-07  Simon Josefsson  <simon@josefsson.org>
26112
26113         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
26114         * modules/crypto/arcfour (License): Likewise.
26115         * modules/crypto/des-tests (License): Likewise.
26116         * modules/crypto/gc-arctwo-tests (License): Likewise.
26117         * modules/crypto/gc-des-tests (License): Likewise.
26118         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
26119         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
26120         * modules/crypto/gc-md2-tests (License): Likewise.
26121         * modules/crypto/gc-md4-tests (License): Likewise.
26122         * modules/crypto/gc-md5-tests (License): Likewise.
26123         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
26124         * modules/crypto/gc-rijndael-tests (License): Likewise.
26125         * modules/crypto/gc-sha1-tests (License): Likewise.
26126         * modules/crypto/gc-tests (License): Likewise.
26127         * modules/crypto/hmac-md5 (License): Likewise.
26128         * modules/crypto/hmac-sha1 (License): Likewise.
26129         * modules/crypto/md2-tests (License): Likewise.
26130         * modules/crypto/md4-tests (License): Likewise.
26131         * modules/crypto/md5 (License): Likewise.
26132         * modules/crypto/rijndael (License): Likewise.
26133         * modules/crypto/sha1 (License): Likewise.
26134         * modules/memxor (License): Likewise.
26135
26136 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
26137         and Bruno Haible  <bruno@clisp.org>
26138
26139         * NEWS: Describe interface changes to human, xstrtol.
26140         * lib/human.h: Include <xstrtol.h>.
26141         (human_options): Return enum strtol_error, not int.  Remove
26142         bool arg; take int * instead.
26143         * lib/human.c: Don't include "gettext.h".
26144         (_): Remove; no longer used.
26145         Don't include <xstrtol.h>, since human.h does it.
26146         (human_options): Adjust to abovementioned interface changes.
26147         Do not report error to stderr; that's now the caller's
26148         responsibility.
26149         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
26150         interface change.
26151         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
26152         Str, Argument_type_string.  All uses changed.  Put " argument"
26153         in diagnostics to make them clearer.  Change wording of suffix
26154         message for clarity.
26155         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
26156         Argument_type_string.
26157         (STRTOL_FATAL_WARN): Remove; no longer used.
26158         * modules/human (Depends-on): Remove gettext-h.
26159
26160 2007-08-06  Simon Josefsson  <simon@josefsson.org>
26161
26162         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
26163
26164 2007-07-31  Bruno Haible  <bruno@clisp.org>
26165
26166         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
26167         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
26168         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
26169
26170 2007-07-31  Bruno Haible  <bruno@clisp.org>
26171
26172         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
26173         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
26174
26175 2007-07-30  Bruno Haible  <bruno@clisp.org>
26176
26177         * modules/base64 (License): Use the synonymous term "LGPLv2+".
26178         * modules/c-ctype (License): Likewise.
26179         * modules/c-strcase (License): Likewise.
26180         * modules/check-version (License): Likewise.
26181         * modules/iconv (License): Likewise.
26182         * modules/iconv_open (License): Likewise.
26183         * modules/read-file (License): Likewise.
26184         * modules/striconv (License): Likewise.
26185         * modules/strverscmp (License): Likewise.
26186         * modules/vasprintf (License): Likewise.
26187         * modules/crypto/des (License): Likewise.
26188         * modules/crypto/gc (License): Likewise.
26189         * modules/crypto/gc-arcfour (License): Likewise.
26190         * modules/crypto/gc-arctwo (License): Likewise.
26191         * modules/crypto/gc-des (License): Likewise.
26192         * modules/crypto/gc-hmac-md5 (License): Likewise.
26193         * modules/crypto/gc-hmac-sha1 (License): Likewise.
26194         * modules/crypto/gc-md2 (License): Likewise.
26195         * modules/crypto/gc-md4 (License): Likewise.
26196         * modules/crypto/gc-md5 (License): Likewise.
26197         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
26198         * modules/crypto/gc-random (License): Likewise.
26199         * modules/crypto/gc-rijndael (License): Likewise.
26200         * modules/crypto/gc-sha1 (License): Likewise.
26201         * modules/crypto/md2 (License): Likewise.
26202         * modules/crypto/md4 (License): Likewise.
26203
26204 2007-07-30  Jim Meyering  <jim@meyering.net>
26205
26206         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
26207         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
26208         it has valid stat data.  This bug would cause du not to count the
26209         sizes of inaccessible directories.
26210         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
26211         in <http://bugzilla.redhat.com/250077>.
26212
26213 2007-07-25  Peter O'Gorman  <peter@pogma.com>
26214             Bruno Haible  <bruno@clisp.org>
26215
26216         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
26217         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
26218         #include_next, gives a diagnostic about it, but reports no error in
26219         the exit code.
26220         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
26221
26222 2007-07-24  Ben Pfaff  <blp@gnu.org>
26223
26224         Improve name: "count-one-bits" is better than "popcount".
26225         * MODULES.html.sh: Update name.
26226         * lib/popcount.h: Renamed lib/count-one-bits.h.
26227         (popcount): Renamed count_one_bits.
26228         (popcountl): Renamed count_one_bits_l.
26229         (popcountll): Renamed count_one_bits_ll.
26230         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
26231         * modules/popcount: Renamed module/count-one-bits.
26232         * modules/popcount-tests: Renamed module/count-one-bits-tests.
26233         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
26234
26235 2007-07-23  Ben Pfaff  <blp@gnu.org>
26236
26237         * lib/popcount.h (popcount32): Reduce size of constants, to allow
26238         better code generation, and add U to large constants to avoid
26239         warnings, in non-GCC case.
26240         Suggested by Bruno Haible.
26241
26242 2007-07-23  Ben Pfaff  <blp@gnu.org>
26243
26244         * lib/popcount.h: Use verify_true instead of if...abort.
26245         * modules/popcount: Depend on verify module.
26246         Suggested by Jim Meyering.
26247
26248 2007-07-23  Bruno Haible  <bruno@clisp.org>
26249
26250         * gnulib-tool (func_import): Create a .cvsignore file also when the
26251         directory is not yet in CVS but the toplevel directory is. When
26252         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
26253         Reported by Karl Berry.
26254
26255 2007-07-22  Ben Pfaff  <blp@gnu.org>
26256
26257         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
26258         case.
26259         Suggested by Eric Blake.
26260
26261 2007-07-22  Ben Pfaff  <blp@gnu.org>
26262
26263         New module: popcount.
26264         * MODULES.html.sh: Add popcount.
26265         * modules/popcount: New file.
26266         * modules/popcount-tests: New file.
26267         * tests/test-popcount.c: New file.
26268         * lib/popcount.h: New file.
26269         * m4/popcount.m4: New file.
26270
26271 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
26272
26273         * build-aux/announce-gen: Update to GPLv3.
26274
26275         * build-aux/config.guess: Update from config.
26276
26277 2007-07-21  Bruno Haible  <bruno@clisp.org>
26278
26279         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
26280         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
26281
26282 2007-07-20  Jim Meyering  <jim@meyering.net>
26283
26284         * check-module: Diagnose a self-dependency.
26285
26286 2007-07-19  Bruno Haible  <bruno@clisp.org>
26287
26288         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
26289         empty.
26290         Reported by Eric Blake.
26291
26292 2007-07-18  Bruno Haible  <bruno@clisp.org>
26293
26294         * gnulib-tool: New options --po-base, --po-domain.
26295         (func_usage): Document them.
26296         (pobase, po_domain): New variables.
26297         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
26298         DEFAULT_TEXT_DOMAIN.
26299         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
26300         (func_import): Consider pobase and po_domain. Create a po/ directory.
26301         (func_create_testdir): Set pobase and po_domain to empty.
26302         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
26303         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
26304
26305 2007-07-18  Bruno Haible  <bruno@clisp.org>
26306
26307         * gnulib-tool (func_get_automake_snippet): Synthesize also an
26308         EXTRA_DIST augmentation for files in build-aux/.
26309
26310 2007-07-16  Bruno Haible  <bruno@clisp.org>
26311
26312         * modules/lseek (License): Use the synonymous term "LGPLv2+".
26313         * modules/getdelim (License): Likewise.
26314
26315 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
26316
26317         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
26318         * modules/d-type (License): Likewise.
26319         * modules/extensions (License): Likewise.
26320         * modules/fnmatch (License): Likewise.
26321         * modules/fseeko (License): Likewise.
26322         * modules/getaddrinfo (License): Likewise.
26323         * modules/getline (License): Likewise.
26324         * modules/getlogin_r (License): Likewise.
26325         * modules/getpass (License): Likewise.
26326         * modules/gettimeofday (License): Likewise.
26327         * modules/glob (License): Likewise.
26328         * modules/inet_ntop (License): Likewise.
26329         * modules/malloc (License): Likewise.
26330         * modules/malloca (License): Likewise.
26331         * modules/memmem (License): Likewise.
26332         * modules/mempcpy (License): Likewise.
26333         * modules/memset (License): Likewise.
26334         * modules/minmax (License): Likewise.
26335         * modules/mktime (License): Likewise.
26336         * modules/netinet_in (License): Likewise.
26337         * modules/pathmax (License): Likewise.
26338         * modules/poll (License): Likewise.
26339         * modules/regex (License): Likewise.
26340         * modules/snprintf (License): Likewise.
26341         * modules/stdbool (License): Likewise.
26342         * modules/stdint (License): Likewise.
26343         * modules/stdio (License): Likewise.
26344         * modules/strcase (License): Likewise.
26345         * modules/strcasestr (License): Likewise.
26346         * modules/strdup (License): Likewise.
26347         * modules/string (License): Likewise.
26348         * modules/strndup (License): Likewise.
26349         * modules/strnlen (License): Likewise.
26350         * modules/strpbrk (License): Likewise.
26351         * modules/strptime (License): Likewise.
26352         * modules/strsep (License): Likewise.
26353         * modules/sys_select (License): Likewise.
26354         * modules/sys_socket (License): Likewise.
26355         * modules/sys_stat (License): Likewise.
26356         * modules/sys_time (License): Likewise.
26357         * modules/time (License): Likewise.
26358         * modules/time_r (License): Likewise.
26359         * modules/timegm (License): Likewise.
26360         * modules/unistd (License): Likewise.
26361         * modules/vsnprintf (License): Likewise.
26362         * modules/wctype (License): Likewise.
26363
26364 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26365
26366         * modules/argz (License): LGPLv2+.
26367
26368 2007-07-15  Karl Berry  <karl@gnu.org>
26369
26370         * doc/gnulib.texi: revise node structure per new fdl.texi.
26371
26372 2007-07-14  Bruno Haible  <bruno@clisp.org>
26373
26374         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
26375         the output file.
26376         * lib/uniname/uninames.h: Regenerated.
26377
26378 2007-07-14  Karl Berry  <karl@gnu.org>
26379
26380         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
26381         omitting sectioning and index commands.
26382
26383 2007-07-13  Bruno Haible  <bruno@clisp.org>
26384
26385         New gnulib-tool option --more-symlinks.
26386         * gnulib-tool (func_usage): Document --more-symlinks.
26387         (do_copyrights): New variable.
26388         Recognize option --more-symlinks.
26389         (func_import): Don't add a copyright notice transform to
26390         sed_transform_lib_file if do_copyrights is empty.
26391
26392 2007-07-13  Bruno Haible  <bruno@clisp.org>
26393
26394         * lib/vasnprintf.c (decimal_point_char): Define also if
26395         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
26396         && !NEED_PRINTF_DIRECTIVE_A.
26397         Reported by Clemens Koller <clemens.koller@anagramm.de> via
26398         Gary V. Vaughan <gary@gnu.org>.
26399
26400 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
26401
26402         * lib/inttypes_.h: Undo previous change, since it was fixed
26403         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
26404
26405 2007-07-13  Bruno Haible  <bruno@clisp.org>
26406
26407         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
26408         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
26409
26410 2007-07-13  Jim Meyering  <jim@meyering.net>
26411
26412         df: Don't fail for Tru64's "file-on-file mount".
26413         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
26414         so we fall through and use statfs instead.  Details here:
26415         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
26416         Reported by Albert Chin.
26417
26418 2007-07-13  Bruno Haible  <bruno@clisp.org>
26419
26420         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
26421         * modules/configmake (License): Likewise.
26422         * modules/gettext (License): Likewise.
26423         * modules/gettext-h (License): Likewise.
26424         * modules/include_next (License): Likewise.
26425         * modules/link-warning (License): Likewise.
26426         * modules/localcharset (License): Likewise.
26427         * modules/localename (License): Likewise.
26428         * modules/lock (License): Likewise.
26429         * modules/relocatable-lib-lgpl (License): Likewise.
26430         * modules/size_max (License): Likewise.
26431         * modules/vasnprintf (License): Likewise.
26432         * modules/wchar (License): Likewise.
26433         * modules/xsize (License): Likewise.
26434
26435 2007-07-13  Bruno Haible  <bruno@clisp.org>
26436
26437         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
26438         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
26439
26440 2007-07-12  Bruno Haible  <bruno@clisp.org>
26441
26442         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
26443         in the modules files.
26444
26445 2007-07-11  Karl Berry  <karl@gnu.org>
26446
26447         * MODULES.html.sh (func_module): use
26448          sed -e '\|^'"${includefile}"'$|d'
26449          instead of /.../d, to avoid errors on $includefile's containing /.
26450
26451 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
26452
26453         * gnulib-tool (func_import): Avoid duplication of --avoid
26454         statements
26455         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
26456         names to `_' in variable names.
26457
26458 2007-07-10  Eric Blake  <ebb9@byu.net>
26459
26460         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
26461         * NEWS: Document this change.
26462
26463 2007-07-08  Bruno Haible  <bruno@clisp.org>
26464
26465         Update to Unicode 5.0.
26466         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
26467         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
26468         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
26469         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
26470         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
26471         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
26472         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
26473         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
26474         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
26475         U+10A3F, U+1D242..U+1D244.
26476         (nonspacing_table_ind): Update.
26477         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
26478         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
26479
26480 2007-07-08  Bruno Haible  <bruno@clisp.org>
26481
26482         Update to Unicode 5.0.
26483         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
26484         code transform. Extend the name index field of unicode_name_to_code and
26485         unicode_code_to_name from 16 to 24 bits.
26486         * lib/uniname/uniname.c (unicode_character_name,
26487         unicode_name_character): Add the range 0x12xxx to the code transform.
26488         * lib/uniname/uninames.h: Regenerated.
26489         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
26490
26491 2007-07-07  Bruno Haible  <bruno@clisp.org>
26492
26493         * modules/wcwidth-tests: New file.
26494         * tests/test-wcwidth.c: New file.
26495
26496         Work around MacOS X wcwidth() bug.
26497         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
26498         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
26499         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
26500         original wcwidth in non-UTF-8 locales.
26501         * modules/wcwidth (Depends-on): Add localcharset, streq,
26502         uniwidth/width.
26503         * doc/functions/wcwidth.texi: Update.
26504
26505 2007-07-07  Bruno Haible  <bruno@clisp.org>
26506
26507         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
26508         (wcwidth): New declaration.
26509         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
26510         macros.
26511         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
26512         here. Prepare for creating <wchar.h> unconditionally.
26513         * modules/wchar (Depends-on): Add link-warning.
26514         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
26515         REPLACE_WCWIDTH, and GL_LINK_WARNING.
26516         * lib/wcwidth.h: Remove file.
26517         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
26518         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
26519         * modules/wcwidth (Files): Remove lib/wcwidth.h.
26520         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
26521         (Include): Replace wcwidth.h with <wchar.h>.
26522         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
26523         * lib/mbchar.h: Don't include wcwidth.h.
26524         * lib/mbswidth.c: Likewise.
26525         * NEWS: Mention the change.
26526
26527 2007-07-07  Bruno Haible  <bruno@clisp.org>
26528
26529         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
26530         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
26531         definition with an external declaration.
26532         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
26533         defined as a function. Remove AC_C_INLINE requirement.
26534         * modules/wcwidth (Files): Add lib/wcwidth.c.
26535         (Makefile.am): Remove redundant statement.
26536
26537 2007-07-07  Bruno Haible  <bruno@clisp.org>
26538
26539         * MODULES.html.sh (Unicode string functions): Add the new modules.
26540
26541         * tests/uniwidth/test-u32-strwidth.c: New file.
26542         * modules/uniwidth/u32-strwidth-tests: New file.
26543
26544         * lib/uniwidth/u32-strwidth.c: New file.
26545         * modules/uniwidth/u32-strwidth: New file.
26546
26547         * tests/uniwidth/test-u16-strwidth.c: New file.
26548         * modules/uniwidth/u16-strwidth-tests: New file.
26549
26550         * lib/uniwidth/u16-strwidth.c: New file.
26551         * modules/uniwidth/u16-strwidth: New file.
26552
26553         * tests/uniwidth/test-u8-strwidth.c: New file.
26554         * modules/uniwidth/u8-strwidth-tests: New file.
26555
26556         * lib/uniwidth/u8-strwidth.c: New file.
26557         * modules/uniwidth/u8-strwidth: New file.
26558
26559         * tests/uniwidth/test-u32-width.c: New file.
26560         * modules/uniwidth/u32-width-tests: New file.
26561
26562         * lib/uniwidth/u32-width.c: New file.
26563         * modules/uniwidth/u32-width: New file.
26564
26565         * tests/uniwidth/test-u16-width.c: New file.
26566         * modules/uniwidth/u16-width-tests: New file.
26567
26568         * lib/uniwidth/u16-width.c: New file.
26569         * modules/uniwidth/u16-width: New file.
26570
26571         * tests/uniwidth/test-u8-width.c: New file.
26572         * modules/uniwidth/u8-width-tests: New file.
26573
26574         * lib/uniwidth/u8-width.c: New file.
26575         * modules/uniwidth/u8-width: New file.
26576
26577         * tests/uniwidth/test-uc_width.c: New file.
26578         * modules/uniwidth/width-tests: New file.
26579
26580         * lib/uniwidth/width.c: New file, from GNU libiconv.
26581         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
26582         * modules/uniwidth/width: New file.
26583
26584         * lib/uniwidth.h: New file, from GNU libiconv.
26585         * modules/uniwidth/base: New file.
26586
26587 2007-07-07  Bruno Haible  <bruno@clisp.org>
26588
26589         * lib/uniname.h: New file, from GNU gettext.
26590         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
26591         * lib/uniname/uninames.h: New file, from GNU gettext.
26592         * lib/uniname/uniname.c: New file, from GNU gettext.
26593         * tests/uniname/test-uninames.sh: New file.
26594         * tests/uniname/test-uninames.c: New file, from GNU gettext.
26595         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
26596         * modules/uniname/base: New file.
26597         * modules/uniname/uniname: New file.
26598         * modules/uniname/uniname-tests: New file.
26599         * MODULES.html.sh (Unicode string functions): Add the new modules.
26600
26601 2007-07-06  Bruno Haible  <bruno@clisp.org>
26602
26603         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
26604
26605 2007-07-06  Bruno Haible  <bruno@clisp.org>
26606
26607         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
26608         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
26609         includes <cygwin/sys_time.h> which includes <sys/select.h> which
26610         include <sys/time.h>.
26611         Reported by Eric Blake.
26612
26613 2007-07-06  Eric Blake  <ebb9@byu.net>
26614
26615         Fix testing canonicalize on cygwin.
26616         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
26617         Revert patch from 2007-06-19.
26618         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
26619         canonicalize module is also in use.
26620         * tests/test-canonicalize.c: New file.
26621         * tests/test-canonicalize.sh: Likewise.
26622         * modules/canonicalize-tests: Likewise.
26623
26624 2007-07-06  Jim Meyering  <jim@meyering.net>
26625
26626         * lib/getugroups.c (getugroups): Detect getgrent failure.
26627         Adjust comment to reflect reality: this function may return -1.
26628
26629 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
26630
26631         * build-aux/bootstrap (TP_URL,get_translations): Update to use
26632         the new TP address.
26633         (usage): Fix typo
26634         (gnulib_mk): New variable.
26635
26636 2007-07-05  Jim Meyering  <jim@meyering.net>
26637
26638         Don't let endgrent clobber errno, no matter how improbable.
26639         * lib/getugroups.c (getugroups): Save and restore errno around
26640         endgrent call.
26641
26642         Close the group DB even when failing with 2^31 or more members.
26643         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
26644
26645 2007-07-04  Jim Meyering  <jim@meyering.net>
26646
26647         * lib/getugroups.h: New file.
26648         * lib/getugroups.c: Include "getugroups.h".
26649         Remove uses of "register" keyword.
26650         Move local variable, "cp", down into scope where used.
26651         Give "username" parameter the "const" attribute.
26652         * modules/getugroups (Files): Add lib/getugroups.h
26653
26654 2007-07-04  Karl Berry  <karl@gnu.org>
26655
26656         * MODULES.html.sh (func_all_modules): Complete rename of
26657         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
26658
26659 2007-07-02  Bruno Haible  <bruno@clisp.org>
26660
26661         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
26662         mode, when inttypes.h comes from gnulib.
26663         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
26664
26665 2007-07-02  Simon Josefsson  <simon@josefsson.org>
26666
26667         * NEWS: Mention lgpl module name change.
26668
26669         * modules/lgpl-2.1: Renamed from lgpl.
26670
26671         * NEWS: Mention gpl module name change.
26672
26673         * modules/gpl-3.0: New file, based on gpl-2.0.
26674
26675         * modules/gpl-2.0: Renamed from gpl.
26676
26677         * modules/gpl: Fix filename, doc/gpl.texi is now found at
26678         doc/gpl-2.0.texi.
26679
26680 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
26681
26682         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
26683         #define __STDC_LIMIT_MACROS temporarily while including
26684         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
26685         Problem reported by Joel E. Denny in
26686         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
26687
26688 2007-07-01  Bruno Haible  <bruno@clisp.org>
26689
26690         * lib/unistdio.h: New file.
26691         * lib/unistdio/u-asnprintf.h: New file.
26692         * lib/unistdio/u-asprintf.h: New file.
26693         * lib/unistdio/u-printf-args.c: New file.
26694         * lib/unistdio/u-printf-args.h: New file.
26695         * lib/unistdio/u-printf-parse.h: New file.
26696         * lib/unistdio/u-snprintf.h: New file.
26697         * lib/unistdio/u-sprintf.h: New file.
26698         * lib/unistdio/u-vasprintf.h: New file.
26699         * lib/unistdio/u-vsnprintf.h: New file.
26700         * lib/unistdio/u-vsprintf.h: New file.
26701         * lib/unistdio/ulc-asnprintf.c: New file.
26702         * lib/unistdio/ulc-asprintf.c: New file.
26703         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
26704         * lib/unistdio/ulc-printf-parse.c: New file.
26705         * lib/unistdio/ulc-snprintf.c: New file.
26706         * lib/unistdio/ulc-sprintf.c: New file.
26707         * lib/unistdio/ulc-vasnprintf.c: New file.
26708         * lib/unistdio/ulc-vasprintf.c: New file.
26709         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
26710         * lib/unistdio/ulc-vsnprintf.c: New file.
26711         * lib/unistdio/ulc-vsprintf.c: New file.
26712         * lib/unistdio/u8-asnprintf.c: New file.
26713         * lib/unistdio/u8-asprintf.c: New file.
26714         * lib/unistdio/u8-printf-parse.c: New file.
26715         * lib/unistdio/u8-snprintf.c: New file.
26716         * lib/unistdio/u8-sprintf.c: New file.
26717         * lib/unistdio/u8-vasnprintf.c: New file.
26718         * lib/unistdio/u8-vasprintf.c: New file.
26719         * lib/unistdio/u8-vsnprintf.c: New file.
26720         * lib/unistdio/u8-vsprintf.c: New file.
26721         * lib/unistdio/u8-u8-asnprintf.c: New file.
26722         * lib/unistdio/u8-u8-asprintf.c: New file.
26723         * lib/unistdio/u8-u8-snprintf.c: New file.
26724         * lib/unistdio/u8-u8-sprintf.c: New file.
26725         * lib/unistdio/u8-u8-vasnprintf.c: New file.
26726         * lib/unistdio/u8-u8-vasprintf.c: New file.
26727         * lib/unistdio/u8-u8-vsnprintf.c: New file.
26728         * lib/unistdio/u8-u8-vsprintf.c: New file.
26729         * lib/unistdio/u16-asnprintf.c: New file.
26730         * lib/unistdio/u16-asprintf.c: New file.
26731         * lib/unistdio/u16-printf-parse.c: New file.
26732         * lib/unistdio/u16-snprintf.c: New file.
26733         * lib/unistdio/u16-sprintf.c: New file.
26734         * lib/unistdio/u16-vasnprintf.c: New file.
26735         * lib/unistdio/u16-vasprintf.c: New file.
26736         * lib/unistdio/u16-vsnprintf.c: New file.
26737         * lib/unistdio/u16-vsprintf.c: New file.
26738         * lib/unistdio/u16-u16-asnprintf.c: New file.
26739         * lib/unistdio/u16-u16-asprintf.c: New file.
26740         * lib/unistdio/u16-u16-snprintf.c: New file.
26741         * lib/unistdio/u16-u16-sprintf.c: New file.
26742         * lib/unistdio/u16-u16-vasnprintf.c: New file.
26743         * lib/unistdio/u16-u16-vasprintf.c: New file.
26744         * lib/unistdio/u16-u16-vsnprintf.c: New file.
26745         * lib/unistdio/u16-u16-vsprintf.c: New file.
26746         * lib/unistdio/u32-asnprintf.c: New file.
26747         * lib/unistdio/u32-asprintf.c: New file.
26748         * lib/unistdio/u32-printf-parse.c: New file.
26749         * lib/unistdio/u32-snprintf.c: New file.
26750         * lib/unistdio/u32-sprintf.c: New file.
26751         * lib/unistdio/u32-vasnprintf.c: New file.
26752         * lib/unistdio/u32-vasprintf.c: New file.
26753         * lib/unistdio/u32-vsnprintf.c: New file.
26754         * lib/unistdio/u32-vsprintf.c: New file.
26755         * lib/unistdio/u32-u32-asnprintf.c: New file.
26756         * lib/unistdio/u32-u32-asprintf.c: New file.
26757         * lib/unistdio/u32-u32-snprintf.c: New file.
26758         * lib/unistdio/u32-u32-sprintf.c: New file.
26759         * lib/unistdio/u32-u32-vasnprintf.c: New file.
26760         * lib/unistdio/u32-u32-vasprintf.c: New file.
26761         * lib/unistdio/u32-u32-vsnprintf.c: New file.
26762         * lib/unistdio/u32-u32-vsprintf.c: New file.
26763         * tests/unistdio/test-ulc-asnprintf1.c: New file.
26764         * tests/unistdio/test-ulc-asnprintf1.h: New file.
26765         * tests/unistdio/test-ulc-printf1.h: New file.
26766         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
26767         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
26768         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
26769         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
26770         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
26771         * tests/unistdio/test-ulc-vasprintf1.c: New file.
26772         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
26773         * tests/unistdio/test-ulc-vsprintf1.c: New file.
26774         * tests/unistdio/test-u8-asnprintf1.c: New file.
26775         * tests/unistdio/test-u8-asnprintf1.h: New file.
26776         * tests/unistdio/test-u8-printf1.h: New file.
26777         * tests/unistdio/test-u8-vasnprintf1.c: New file.
26778         * tests/unistdio/test-u8-vasnprintf2.c: New file.
26779         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
26780         * tests/unistdio/test-u8-vasnprintf3.c: New file.
26781         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
26782         * tests/unistdio/test-u8-vasprintf1.c: New file.
26783         * tests/unistdio/test-u8-vsnprintf1.c: New file.
26784         * tests/unistdio/test-u8-vsprintf1.c: New file.
26785         * tests/unistdio/test-u16-asnprintf1.c: New file.
26786         * tests/unistdio/test-u16-asnprintf1.h: New file.
26787         * tests/unistdio/test-u16-printf1.h: New file.
26788         * tests/unistdio/test-u16-vasnprintf1.c: New file.
26789         * tests/unistdio/test-u16-vasnprintf2.c: New file.
26790         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
26791         * tests/unistdio/test-u16-vasnprintf3.c: New file.
26792         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
26793         * tests/unistdio/test-u16-vasprintf1.c: New file.
26794         * tests/unistdio/test-u16-vsnprintf1.c: New file.
26795         * tests/unistdio/test-u16-vsprintf1.c: New file.
26796         * tests/unistdio/test-u32-asnprintf1.c: New file.
26797         * tests/unistdio/test-u32-asnprintf1.h: New file.
26798         * tests/unistdio/test-u32-printf1.h: New file.
26799         * tests/unistdio/test-u32-vasnprintf1.c: New file.
26800         * tests/unistdio/test-u32-vasnprintf2.c: New file.
26801         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
26802         * tests/unistdio/test-u32-vasnprintf3.c: New file.
26803         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
26804         * tests/unistdio/test-u32-vasprintf1.c: New file.
26805         * tests/unistdio/test-u32-vsnprintf1.c: New file.
26806         * tests/unistdio/test-u32-vsprintf1.c: New file.
26807         * modules/unistdio/base: New file.
26808         * modules/unistdio/u-printf-args: New file.
26809         * modules/unistdio/ulc-asnprintf: New file.
26810         * modules/unistdio/ulc-asprintf: New file.
26811         * modules/unistdio/ulc-fprintf: New file.
26812         * modules/unistdio/ulc-printf-parse: New file.
26813         * modules/unistdio/ulc-snprintf: New file.
26814         * modules/unistdio/ulc-sprintf: New file.
26815         * modules/unistdio/ulc-vasnprintf: New file.
26816         * modules/unistdio/ulc-vasprintf: New file.
26817         * modules/unistdio/ulc-vfprintf: New file.
26818         * modules/unistdio/ulc-vsnprintf: New file.
26819         * modules/unistdio/ulc-vsprintf: New file.
26820         * modules/unistdio/u8-asnprintf: New file.
26821         * modules/unistdio/u8-asprintf: New file.
26822         * modules/unistdio/u8-printf-parse: New file.
26823         * modules/unistdio/u8-snprintf: New file.
26824         * modules/unistdio/u8-sprintf: New file.
26825         * modules/unistdio/u8-vasnprintf: New file.
26826         * modules/unistdio/u8-vasprintf: New file.
26827         * modules/unistdio/u8-vsnprintf: New file.
26828         * modules/unistdio/u8-vsprintf: New file.
26829         * modules/unistdio/u8-u8-asnprintf: New file.
26830         * modules/unistdio/u8-u8-asprintf: New file.
26831         * modules/unistdio/u8-u8-snprintf: New file.
26832         * modules/unistdio/u8-u8-sprintf: New file.
26833         * modules/unistdio/u8-u8-vasnprintf: New file.
26834         * modules/unistdio/u8-u8-vasprintf: New file.
26835         * modules/unistdio/u8-u8-vsnprintf: New file.
26836         * modules/unistdio/u8-u8-vsprintf: New file.
26837         * modules/unistdio/u16-asnprintf: New file.
26838         * modules/unistdio/u16-asprintf: New file.
26839         * modules/unistdio/u16-printf-parse: New file.
26840         * modules/unistdio/u16-snprintf: New file.
26841         * modules/unistdio/u16-sprintf: New file.
26842         * modules/unistdio/u16-vasnprintf: New file.
26843         * modules/unistdio/u16-vasprintf: New file.
26844         * modules/unistdio/u16-vsnprintf: New file.
26845         * modules/unistdio/u16-vsprintf: New file.
26846         * modules/unistdio/u16-u16-asnprintf: New file.
26847         * modules/unistdio/u16-u16-asprintf: New file.
26848         * modules/unistdio/u16-u16-snprintf: New file.
26849         * modules/unistdio/u16-u16-sprintf: New file.
26850         * modules/unistdio/u16-u16-vasnprintf: New file.
26851         * modules/unistdio/u16-u16-vasprintf: New file.
26852         * modules/unistdio/u16-u16-vsnprintf: New file.
26853         * modules/unistdio/u16-u16-vsprintf: New file.
26854         * modules/unistdio/u32-asnprintf: New file.
26855         * modules/unistdio/u32-asprintf: New file.
26856         * modules/unistdio/u32-printf-parse: New file.
26857         * modules/unistdio/u32-snprintf: New file.
26858         * modules/unistdio/u32-sprintf: New file.
26859         * modules/unistdio/u32-vasnprintf: New file.
26860         * modules/unistdio/u32-vasprintf: New file.
26861         * modules/unistdio/u32-vsnprintf: New file.
26862         * modules/unistdio/u32-vsprintf: New file.
26863         * modules/unistdio/u32-u32-asnprintf: New file.
26864         * modules/unistdio/u32-u32-asprintf: New file.
26865         * modules/unistdio/u32-u32-snprintf: New file.
26866         * modules/unistdio/u32-u32-sprintf: New file.
26867         * modules/unistdio/u32-u32-vasnprintf: New file.
26868         * modules/unistdio/u32-u32-vasprintf: New file.
26869         * modules/unistdio/u32-u32-vsnprintf: New file.
26870         * modules/unistdio/u32-u32-vsprintf: New file.
26871         * modules/unistdio/ulc-asnprintf-tests: New file.
26872         * modules/unistdio/ulc-vasnprintf-tests: New file.
26873         * modules/unistdio/ulc-vasprintf-tests: New file.
26874         * modules/unistdio/ulc-vsnprintf-tests: New file.
26875         * modules/unistdio/ulc-vsprintf-tests: New file.
26876         * modules/unistdio/u8-asnprintf-tests: New file.
26877         * modules/unistdio/u8-vasnprintf-tests: New file.
26878         * modules/unistdio/u8-vasprintf-tests: New file.
26879         * modules/unistdio/u8-vsnprintf-tests: New file.
26880         * modules/unistdio/u8-vsprintf-tests: New file.
26881         * modules/unistdio/u16-asnprintf-tests: New file.
26882         * modules/unistdio/u16-vasnprintf-tests: New file.
26883         * modules/unistdio/u16-vasprintf-tests: New file.
26884         * modules/unistdio/u16-vsnprintf-tests: New file.
26885         * modules/unistdio/u16-vsprintf-tests: New file.
26886         * modules/unistdio/u32-asnprintf-tests: New file.
26887         * modules/unistdio/u32-vasnprintf-tests: New file.
26888         * modules/unistdio/u32-vasprintf-tests: New file.
26889         * modules/unistdio/u32-vsnprintf-tests: New file.
26890         * modules/unistdio/u32-vsprintf-tests: New file.
26891         * MODULES.html.sh (Unicode string functions): Add the new modules.
26892
26893 2007-07-01  Bruno Haible  <bruno@clisp.org>
26894
26895         * lib/sprintf.c (sprintf): Limit the available length estimation,
26896         to avoid address wraparound.
26897         * lib/vsprintf.c (vsprintf): Likewise.
26898         * modules/sprintf-posix (Dependencies): Add stdint.
26899         * modules/vsprintf-posix (Dependencies): Likewise.
26900
26901 2007-07-01  Bruno Haible  <bruno@clisp.org>
26902
26903         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
26904         Windows PATH as well. Conservative double-quoting. Comments.
26905
26906 2007-07-01  Bruno Haible  <bruno@clisp.org>
26907             Eric Blake  <ebb9@byu.net>
26908             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26909
26910         * gnulib-tool (self_abspathname): Fix algorithm to cope with
26911         empty components in $PATH, denoting '.'.
26912
26913 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26914
26915         * gnulib-tool: Fix indentation.
26916         (func_create_megatestdir): Likewise.
26917         Report by Bruno Haible.
26918
26919 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26920
26921         Sync from Automake.
26922         * build-aux/gnupload: Fix shell portability issues with for loops.
26923         Report by Karl Berry.
26924
26925 2007-06-29  Simon Josefsson  <simon@josefsson.org>
26926
26927         * build-aux/maint.mk (POURL): Use translationproject.org.
26928
26929 2007-06-27  Simon Josefsson  <simon@josefsson.org>
26930             Bruno Haible  <bruno@clisp.org>
26931
26932         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
26933         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
26934         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
26935         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
26936         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
26937
26938 2007-06-27  Bruno Haible  <bruno@clisp.org>
26939
26940         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
26941         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
26942
26943 2007-06-26  Karl Berry  <karl@gnu.org>
26944
26945         * MODULES.html.sh: remove xreadlink-with-size.
26946
26947 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
26948
26949         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
26950         method that I hope also handles the double-include problem noted
26951         by Bruno Haible in
26952         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
26953
26954 2007-06-23  Bruno Haible  <bruno@clisp.org>
26955
26956         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
26957         Don't let the 'mostlyclean' target fail if the last subdirectory could
26958         not be removed.
26959         Reported by Karl Berry.
26960
26961 2007-06-23  Bruno Haible  <bruno@clisp.org>
26962
26963         * gnulib-tool (echo): Add a speedier workaround for ksh.
26964         * tests/test-echo.sh: Likewise.
26965
26966 2007-06-23  Bruno Haible  <bruno@clisp.org>
26967
26968         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
26969         * tests/test-echo.sh: Likewise.
26970
26971 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26972
26973         * gnulib-tool (IFS): Initialize early, so we don't set it to
26974         empty later.
26975         (self_abspathname): Rewrite algorithm to set it, reindent.
26976         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
26977         (func_create_megatestdir): Merge some sed scripts.
26978
26979 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
26980
26981         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
26982         exposed by Sun Studio 11 cc on Solaris 8.
26983
26984 2007-06-22  Bruno Haible  <bruno@clisp.org>
26985
26986         * gnulib-tool (echo): Ensure the echo primitive does not interpret
26987         backslashes.
26988         * tests/test-echo.sh: New file.
26989
26990 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26991
26992         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
26993         simplify `sed_replace_build_aux' scripts, they are portable but
26994         echoing them with `echo' is not.
26995         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
26996
26997 2007-06-21  Karl Berry  <karl@gnu.org>
26998
26999         * config/srclist.txt: guess we can't handle the licenses via
27000         srclist at the moment.
27001
27002 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
27003
27004         * MODULES.html.sh: Add include_next.
27005         * modules/include_next: New file.
27006
27007 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
27008
27009         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
27010         INCLUDE_NEXT.
27011         (gl_CHECK_NEXT_HEADERS): New macro.
27012         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
27013         the obsolescent gl_ABSOLUTE_HEADER.
27014         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
27015         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
27016         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
27017         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
27018         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
27019         * m4/math_h.m4 (gl_MATH_H): Likewise.
27020         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
27021         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
27022         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
27023         * m4/stdint.m4 (gl_STDINT_H): Likewise.
27024         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
27025         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
27026         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
27027         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
27028         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
27029         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
27030         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
27031         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
27032         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
27033         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
27034         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
27035         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
27036         * m4/inttypes.m4 (gl_INTTYPES_H): Define
27037         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
27038         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
27039         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
27040         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
27041         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
27042         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
27043         * lib/float_.h: Likewise.
27044         * lib/inttypes_.h: Likewise.
27045         * lib/math_.h: Likewise.
27046         * lib/search_.h: Likewise.
27047         * lib/signal_.h: Likewise.
27048         * lib/stdint_.h: Likewise.
27049         * lib/stdio_.h: Likewise.
27050         * lib/stdlib_.h: Likewise.
27051         * lib/string_.h: Likewise.
27052         * lib/sys_stat_.h: Likewise.
27053         * lib/sys_time_.h: Likewise.
27054         * lib/time_.h: Likewise.
27055         * lib/unistd_.h: Likewise.
27056         * lib/wchar_.h: Likewise.
27057         * lib/wctype_.h: Likewise.
27058         * lib/dirent_.h: Likewise.
27059         * lib/iconv_.h: Likewise.
27060         * lib/locale_.h: Likewise.
27061         * lib/netinet_in_.h: Likewise.
27062         * lib/sys_select_.h: Likewise.
27063         * lib/sys_socket_.h: Likewise.
27064         * lib/sysexits_.h: Likewise.
27065         * modules/fcntl (Depends-on): Depend on include_next, not
27066         absolute_header.
27067         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
27068         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
27069         * modules/fchdir: Likewise.
27070         * modules/float: Likewise.
27071         * modules/iconv_open: Likewise.
27072         * modules/inttypes: Likewise.
27073         * modules/locale: Likewise.
27074         * modules/math: Likewise.
27075         * modules/netinet_in: Likewise.
27076         * modules/search: Likewise.
27077         * modules/signal: Likewise.
27078         * modules/stdint: Likewise.
27079         * modules/stdio: Likewise.
27080         * modules/stdlib: Likewise.
27081         * modules/string: Likewise.
27082         * modules/sys_select: Likewise.
27083         * modules/sys_socket: Likewise.
27084         * modules/sys_stat: Likewise.
27085         * modules/sys_time: Likewise.
27086         * modules/sysexits: Likewise.
27087         * modules/time: Likewise.
27088         * modules/unistd: Likewise.
27089         * modules/wchar: Likewise.
27090         * modules/wctype: Likewise.
27091         * modules/sys_stat: Change maintainer to "all".
27092         * modules/unistd: Likewise.
27093
27094 2007-06-20  Karl Berry  <karl@gnu.org>
27095
27096         * config/srclist.txt: track www changes in license files.
27097
27098 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
27099
27100         * build-aux/bootstrap: Remove stray dot.
27101         Make sure build_aux settings are honored when linking
27102         gnulib_extra_files.
27103
27104 2007-06-19  Eric Blake  <ebb9@byu.net>
27105
27106         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
27107         Allow compilation on cygwin.
27108
27109 2007-06-19  Jim Meyering  <jim@meyering.net>
27110
27111         xreadlink-with-size: Remove module.  No longer used.
27112         Ex-callers now use xreadlink or mreadlink-with-size.
27113         * modules/xreadlink-with-size: Remove module.
27114         * lib/xreadlink-with-size.c: Remove file.
27115         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
27116         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
27117         just before the function definition *is* accurate.
27118
27119         Eliminate one way canonicalize_filename_mode could exit.
27120         * lib/canonicalize.c (canonicalize_filename_mode):
27121         Use mreadlink_with_size, not xreadlink_with_size.
27122
27123 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
27124
27125         Detect porting problems to FreeBSD/arm, which has time_t wider than
27126         long int.  Original problem reported for GNU diff by Xin Li in
27127         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
27128         * modules/getdate (Depends-on): Add intprops, verify.
27129         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
27130         is an integer type no wider than long int.
27131
27132 2007-06-18  Jim Meyering  <jim@meyering.net>
27133
27134         New module: mreadlink-with-size.
27135         * MODULES.html.sh: Add mreadlink-with-size.
27136         * modules/mreadlink-with-size: New module
27137         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
27138         not xreadlink-with-size.
27139         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
27140
27141 2007-06-16  Bruno Haible  <bruno@clisp.org>
27142
27143         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
27144         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
27145         Reported by Gary V. Vaughan <gary@gnu.org>.
27146
27147 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
27148
27149         Revamp lchown so that it lives in unistd.h where it belongs.
27150         * lib/lchown.h: Remove.
27151         * lib/dirchownmod.c: Don't include lib/lchown.h.
27152         * lib/fchownat.c: Likewise.
27153         * lib/openat.c: Likewise.
27154         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
27155         does not follow symlinks.
27156         (EOPNOTSUPP): Define if not defined.
27157         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
27158         is defined to 0.
27159         (lchown): New decl.
27160         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
27161         Do not check for lchown decl.
27162         Set REPLACE_LCHOWN.
27163         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
27164         REPLACE_LCHOWN.
27165         * modules/chown: Make it clear it follows symlinks.
27166         * modules/lchown: Make it clear it doesn't follow symlinks.
27167         (Files): Remove lib/lchown.h
27168         (Depends-on): Add unistd.
27169         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
27170         (Include): Include <unistd.h>, not "lchown.h".
27171         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
27172         REPLACE_LCHOWN.
27173
27174 2007-06-15  Jim Meyering  <jim@meyering.net>
27175
27176         Change license (GPL to LGPL) of fsusage and dependents.
27177         * modules/fsusage (License): Change to LGPL.
27178         * modules/full-read (License): Likewise.
27179         * modules/full-write (License): Likewise.
27180         * modules/safe-read (License): Likewise.
27181         * modules/safe-write (License): Likewise.
27182
27183 2007-06-14  Ben Pfaff  <blp@gnu.org>
27184
27185         Missing part of allocsa -> malloca transition.
27186         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
27187         gl_MALLOCA.
27188
27189 2007-06-12  Bruno Haible  <bruno@clisp.org>
27190
27191         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
27192         to ia64, x86_64, i386.
27193         Reported by Eric Blake.
27194
27195 2007-06-12  Bruno Haible  <bruno@clisp.org>
27196
27197         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
27198         cross-compiling to x86_64.
27199
27200 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
27201
27202         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
27203         glitch reported by Ralf Wildenhues in
27204         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
27205
27206         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
27207         Vin Shelton.
27208
27209 2007-06-11  Bruno Haible  <bruno@clisp.org>
27210
27211         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
27212         replacement string.
27213         Reported by Eric Blake.
27214
27215 2007-06-10  Bruno Haible  <bruno@clisp.org>
27216
27217         Prepare vasnprintf code for use with Unicode strings.
27218         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
27219         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
27220         TYPE_U32_STRING.
27221         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
27222         a_u32_string variants.
27223         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
27224         * lib/printf-args.c: Don't include config.h and the specification
27225         header if PRINTF_FETCHARGS is already defined.
27226         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
27227         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
27228         TYPE_U16_STRING, TYPE_U32_STRING.
27229         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
27230         u16_directive, u16_directives, u32_directive, u32_directives): New
27231         types.
27232         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
27233         New declarations.
27234         * lib/printf-parse.c: Don't include config.h and the specification
27235         header if PRINTF_PARSE is already defined. Eliminate the set of
27236         parameters for WIDE_CHAR_VERSION; the user of this file must provide
27237         them now. Include c-ctype.h.
27238         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
27239         directive and CHAR_T_ONLY_ASCII.
27240         * lib/vasnprintf.c: Don't include config.h and the specification header
27241         if VASNPRINTF is already defined.
27242         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
27243         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
27244         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
27245         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
27246         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
27247         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
27248         code accordingly.
27249         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
27250         pad_ourselves also in this case, with the 'c' and 's' directives, and
27251         with a different notion of "width".
27252         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
27253
27254 2007-06-10  Bruno Haible  <bruno@clisp.org>
27255
27256         * modules/unistr/u32-mbsnlen: New file.
27257         * lib/unistr/u32-mbsnlen.c: New file.
27258
27259         * modules/unistr/u16-mbsnlen: New file.
27260         * lib/unistr/u16-mbsnlen.c: New file.
27261
27262         * modules/unistr/u8-mbsnlen: New file.
27263         * lib/unistr/u8-mbsnlen.c: New file.
27264
27265         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
27266         declarations.
27267
27268 2007-06-10  Bruno Haible  <bruno@clisp.org>
27269
27270         * lib/string_.h (mbsnlen): New declaration.
27271         * lib/mbsnlen.c: New file.
27272         * m4/mbsnlen.m4: New file.
27273         * modules/mbsnlen: New file.
27274         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
27275         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
27276         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
27277
27278 2007-06-10  Bruno Haible  <bruno@clisp.org>
27279
27280         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
27281
27282 2007-06-10  Bruno Haible  <bruno@clisp.org>
27283
27284         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
27285         * lib/mbuiter.h: Likewise.
27286
27287 2007-06-10  Bruno Haible  <bruno@clisp.org>
27288
27289         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
27290         declaration.
27291
27292 2007-06-10  Karl Berry  <karl@gnu.org>
27293
27294         * config/srclist.txt: remove gettext entries, Bruno prefers
27295         to update individually.
27296
27297 2007-06-10  Bruno Haible  <bruno@clisp.org>
27298
27299         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
27300         'maxlen'. Ensure only length + width bytes are allocated, not
27301         length + 1 + width.
27302
27303 2007-06-09  Bruno Haible  <bruno@clisp.org>
27304
27305         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
27306         (CHAR_T): Remove macro.
27307         (VASNPRINTF): Update.
27308
27309 2007-06-09  Bruno Haible  <bruno@clisp.org>
27310
27311         * MODULES.html.sh (Unicode string functions): Add the new modules.
27312
27313         * modules/uniconv/u32-conv-to-enc: New file.
27314         * lib/uniconv/u32-conv-to-enc.c: New file.
27315         * modules/uniconv/u32-conv-to-enc-tests: New file.
27316         * tests/uniconv/test-u32-conv-to-enc.c: New file.
27317
27318         * modules/uniconv/u16-conv-to-enc: New file.
27319         * lib/uniconv/u16-conv-to-enc.c: New file.
27320         * lib/uniconv/u-conv-to-enc.h: New file.
27321         * modules/uniconv/u16-conv-to-enc-tests: New file.
27322         * tests/uniconv/test-u16-conv-to-enc.c: New file.
27323
27324         * modules/uniconv/u8-conv-to-enc: New file.
27325         * lib/uniconv/u8-conv-to-enc.c: New file.
27326         * modules/uniconv/u8-conv-to-enc-tests: New file.
27327         * tests/uniconv/test-u8-conv-to-enc.c: New file.
27328
27329         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
27330         u32_conv_to_encoding): New declarations.
27331
27332 2007-06-09  Bruno Haible  <bruno@clisp.org>
27333
27334         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
27335
27336 2007-06-09  Bruno Haible  <bruno@clisp.org>
27337
27338         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
27339         * modules/malloca: Renamed from modules/allocsa, updated.
27340         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
27341         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
27342         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
27343         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
27344         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
27345         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
27346         * modules/xmalloca: Renamed from modules/xallocsa, updated.
27347         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
27348         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
27349         * modules/c-strcasestr (Depends-on): Update.
27350         * lib/c-strcasestr.c: Update.
27351         * modules/c-strstr (Depends-on): Update.
27352         * lib/c-strstr.c: Update.
27353         * modules/canonicalize-lgpl (Depends-on): Update.
27354         * lib/canonicalize-lgpl.c: Update.
27355         * modules/clean-temp (Depends-on): Update.
27356         * lib/clean-temp.c: Update.
27357         * modules/csharpcomp (Depends-on): Update.
27358         * lib/csharpcomp.c: Update.
27359         * modules/csharpexec (Depends-on): Update.
27360         * lib/csharpexec.c: Update.
27361         * modules/javacomp (Depends-on): Update.
27362         * lib/javacomp.c: Update.
27363         * modules/javaexec (Depends-on): Update.
27364         * lib/javaexec.c: Update.
27365         * modules/mbscasestr (Depends-on): Update.
27366         * lib/mbscasestr.c: Update.
27367         * modules/mbsstr (Depends-on): Update.
27368         * lib/mbsstr.c: Update.
27369         * modules/setenv (Depends-on): Update.
27370         * lib/setenv.c: Update.
27371         * modules/strcasestr (Depends-on): Update.
27372         * lib/strcasestr.c: Update.
27373         * modules/striconveha (Depends-on): Update.
27374         * lib/striconveha.c: Update.
27375         * modules/relocatable-prog-wrapper (Files): Update.
27376         * lib/relocwrapper.c: Update.
27377         * build-aux/install-reloc: Update.
27378         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
27379
27380 2007-06-08  Bruno Haible  <bruno@clisp.org>
27381
27382         Port to uClibc.
27383         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
27384         * lib/fpurge.c (fpurge): Likewise.
27385         * lib/freading.c (freading): Likewise.
27386         * lib/fseeko.c (rpl_fseeko): Likewise.
27387         * lib/fseterr.c (fseterr): Likewise.
27388         * lib/fwriting.c (fwriting): Likewise.
27389         * tests/test-fflush.c (main): Avoid a failure on uClibc.
27390
27391 2007-06-08  Bruno Haible  <bruno@clisp.org>
27392
27393         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
27394         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
27395         * modules/gettext (Files): Add m4/intlmacosx.m4.
27396
27397 2007-06-07  Bruno Haible  <bruno@clisp.org>
27398
27399         * modules/localename-tests: New file.
27400         * tests/test-localename.c: New file.
27401
27402         New module 'localename'.
27403         * lib/localename.h: New file.
27404         * lib/localename.c: New file, from GNU gettext.
27405         * m4/localename.m4: New file.
27406         * modules/localename: New file.
27407
27408 2007-06-07  Bruno Haible  <bruno@clisp.org>
27409
27410         Work around the lack of <wchar.h> on some builds of uClibc.
27411         * doc/headers/wchar.texi: Update.
27412         * lib/wchar_.h: Include <wchar.h> only if it exists.
27413         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
27414         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
27415         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
27416         doesn't exist.
27417         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
27418         * modules/mbfile (Depends-on): Add wchar.
27419         * modules/mbiter (Depends-on): Likewise.
27420         * modules/mbuiter (Depends-on): Likewise.
27421         Reported by Simon Josefsson.
27422
27423 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
27424
27425         Work around problem reported by Steven M. Schweda in
27426         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
27427         Tru64 5.1B with the Compaq compiler environment installed declares
27428         an 'isblank' function but does not define it in the C library.
27429         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
27430         * lib/regex_internal.h (isblank): Likewise.
27431         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
27432         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
27433
27434 2007-06-05  Bruno Haible  <bruno@clisp.org>
27435
27436         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
27437         ia64.
27438         * modules/printf-safe: New file.
27439         * modules/fprintf-posix (Depends-on): Add printf-safe.
27440         * modules/printf-posix (Depends-on): Likewise.
27441         * modules/snprintf-posix (Depends-on): Likewise.
27442         * modules/sprintf-posix (Depends-on): Likewise.
27443         * modules/vasnprintf-posix (Depends-on): Likewise.
27444         * modules/vasprintf-posix (Depends-on): Likewise.
27445         * modules/vfprintf-posix (Depends-on): Likewise.
27446         * modules/vprintf-posix (Depends-on): Likewise.
27447         * modules/vsnprintf-posix (Depends-on): Likewise.
27448         * modules/vsprintf-posix (Depends-on): Likewise.
27449         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
27450         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
27451         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
27452         "no" on i386, x86_64, ia64.
27453         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
27454         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27455         on i386, x86_64, ia64.
27456         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
27457         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27458         on i386, x86_64, ia64.
27459         * tests/test-vasnprintf-posix.c: Include float.h.
27460         (LDBL80_WORDS): New macro.
27461         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27462         on i386, x86_64, ia64.
27463         * tests/test-vasprintf-posix.c: Include float.h.
27464         (LDBL80_WORDS): New macro.
27465         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27466         on i386, x86_64, ia64.
27467         * tests/test-snprintf-posix.c: Include float.h.
27468         * tests/test-sprintf-posix.c: Likewise.
27469         * tests/test-vsnprintf-posix.c: Likewise.
27470         * tests/test-vsprintf-posix.c: Likewise.
27471
27472 2007-06-05  Bruno Haible  <bruno@clisp.org>
27473
27474         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
27475         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
27476         non-IEEE numbers on i386, x86_64, ia64.
27477         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
27478         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
27479         * tests/test-isnanl.h: Include float.h.
27480         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
27481
27482 2007-06-05  Bruno Haible  <bruno@clisp.org>
27483
27484         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
27485         also the %a / %A. Handle the %a / %A code before this extra handling.
27486
27487 2007-06-05  Bruno Haible  <bruno@clisp.org>
27488
27489         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
27490         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
27491
27492 2007-06-05  Bruno Haible  <bruno@clisp.org>
27493
27494         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
27495         typo in variable name.
27496
27497 2007-06-05  Eric Blake  <ebb9@byu.net>
27498
27499         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
27500         Reported by Simon Josefsson.
27501
27502 2007-06-04  Bruno Haible  <bruno@clisp.org>
27503
27504         Avoid test failures on some PowerPC platforms.
27505         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
27506         Define differently for PowerPC.
27507         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
27508         Reported by Gary V. Vaughan <gary@gnu.org>.
27509
27510 2007-06-02  Bruno Haible  <bruno@clisp.org>
27511
27512         Fix test-stdint failure on FreeBSD/ia64.
27513         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
27514         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
27515         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
27516         * doc/headers/stdint.texi: Update.
27517
27518 2007-06-01  Bruno Haible  <bruno@clisp.org>
27519
27520         * tests/test-binary-io.c (main): Pass a third argument to open().
27521         Reported by Gary V. Vaughan <gary@gnu.org>.
27522
27523 2007-06-01  Bruno Haible  <bruno@clisp.org>
27524
27525         * doc/functions/frexpl.texi: Update for mingw.
27526
27527 2007-06-01  Bruno Haible  <bruno@clisp.org>
27528
27529         * tests/test-lseek.c (main): Disable test of errno for invalid third
27530         argument.
27531         * doc/functions/lseek.texi: Update.
27532         Reported by Gary V. Vaughan <gary@gnu.org>.
27533
27534 2007-05-28  Bruno Haible  <bruno@clisp.org>
27535
27536         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
27537
27538 2007-05-31  Eric Blake  <ebb9@byu.net>
27539
27540         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
27541         cross compiling.
27542
27543 2007-05-30  Eric Blake  <ebb9@byu.net>
27544         and Bruno Haible  <bruno@clisp.org>
27545
27546         Work around mingw test failures exposed by m4-1.4.9b.
27547         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
27548         * tests/test-unistd.c: Disable uid_t and git_t tests for the
27549         moment.
27550
27551 2007-05-30  Bruno Haible  <bruno@clisp.org>
27552
27553         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
27554         assuming that they are closed. Needed on HP-UX 11.
27555
27556 2007-05-29  Bruno Haible  <bruno@clisp.org>
27557
27558         Fix a problem with #include_next.
27559         * lib/dirent_.h: Split the double-inclusion guard.
27560         * lib/fcntl_.h: Likewise.
27561         * lib/float_.h: Likewise.
27562         * lib/iconv_.h: Likewise.
27563         * lib/inttypes_.h: Likewise.
27564         * lib/locale_.h: Likewise.
27565         * lib/math_.h: Likewise.
27566         * lib/netinet_in_.h: Likewise.
27567         * lib/search_.h: Likewise.
27568         * lib/signal_.h: Likewise.
27569         * lib/stdint_.h: Likewise.
27570         * lib/stdio_.h: Likewise.
27571         * lib/stdlib_.h: Likewise.
27572         * lib/string_.h: Likewise.
27573         * lib/sys_select_.h: Likewise.
27574         * lib/sys_socket_.h: Likewise.
27575         * lib/sys_stat_.h: Likewise.
27576         * lib/sys_time_.h: Likewise.
27577         * lib/sysexits_.h: Likewise.
27578         * lib/time_.h: Likewise.
27579         * lib/unistd_.h: Likewise.
27580         * lib/wchar_.h: Likewise.
27581         * lib/wctype_.h: Likewise.
27582
27583 2007-05-29  Bruno Haible  <bruno@clisp.org>
27584
27585         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
27586         for the moment.
27587
27588 2007-05-29  Bruno Haible  <bruno@clisp.org>
27589
27590         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
27591         invocation.
27592         Reported by Eric Blake.
27593
27594 2007-05-29  Bruno Haible  <bruno@clisp.org>
27595
27596         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
27597         compiling case.
27598
27599 2007-05-29  Eric Blake  <ebb9@byu.net>
27600             Bruno Haible  <bruno@clisp.org>
27601
27602         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
27603         cross compiles.
27604
27605 2007-05-28  Eric Blake  <ebb9@byu.net>
27606
27607         * modules/closein-tests (test_closein_LDADD): Support test on
27608         cygwin with libtool.
27609
27610 2007-05-28  Bruno Haible  <bruno@clisp.org>
27611
27612         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
27613         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
27614         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
27615         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
27616         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
27617         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
27618         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
27619         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
27620         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
27621
27622 2007-05-28  Eric Blake  <ebb9@byu.net>
27623
27624         Unconditionally include <config.h> in unit tests.
27625         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
27626         * tests/test-allocsa.c, tests/test-arcfour.c,
27627         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
27628         tests/test-array_list.c, tests/test-array_oset.c,
27629         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
27630         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
27631         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
27632         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
27633         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
27634         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
27635         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
27636         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
27637         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
27638         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
27639         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
27640         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
27641         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
27642         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
27643         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
27644         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
27645         test-md5.c, test-memmem.c, test-printf-posix.c,
27646         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
27647         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
27648         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
27649         test-strcasestr.c, test-striconv.c, test-striconveh.c,
27650         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
27651         test-vasnprintf-posix2.c, test-vasnprintf.c,
27652         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
27653         test-vfprintf-posix.c, test-vprintf-posix.c,
27654         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
27655         test-xvasprintf.c: Likewise.
27656
27657 2007-05-28  Bruno Haible  <bruno@clisp.org>
27658
27659         * gnulib-tool (func_import): Remember the --with-tests command-line
27660         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
27661         Reported by Eric Blake.
27662
27663 2007-05-28  Bruno Haible  <bruno@clisp.org>
27664
27665         * modules/ftell-tests: New file.
27666         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
27667         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
27668
27669         * lib/ftell.c: New file.
27670         * modules/ftell: New file.
27671         * m4/ftell.m4: New file.
27672         * doc/functions/ftell.texi: Update.
27673         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
27674         REPLACE_FTELL.
27675         * lib/stdio_.h (rpl_ftell): New declaration.
27676         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
27677         REPLACE_FTELL.
27678
27679 2007-05-28  Eric Blake  <ebb9@byu.net>
27680
27681         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
27682
27683 2007-05-28  Bruno Haible  <bruno@clisp.org>
27684
27685         * modules/fseek-tests: New file.
27686         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
27687         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
27688
27689         * lib/fseek.c: New file.
27690         * modules/fseek: New file.
27691         * m4/fseek.m4: New file.
27692         * doc/functions/fseek.texi: Update.
27693         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
27694         REPLACE_FSEEK.
27695         * lib/stdio_.h (rpl_fseek): New declaration.
27696         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
27697         REPLACE_FSEEK.
27698
27699 2007-05-28  Bruno Haible  <bruno@clisp.org>
27700
27701         * lib/stdio_.h (fflush): More comments.
27702
27703 2007-05-28  Bruno Haible  <bruno@clisp.org>
27704
27705         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
27706         runtime test.
27707
27708 2007-05-28  Eric Blake  <ebb9@byu.net>
27709
27710         Improve lseek module.
27711         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
27712         * lib/unistd_.h (lseek): Scale back link warning message.
27713         * tests/test-lseek.c: Beef up test.
27714         * tests/test-lseek.sh: Exercise more facets of lseek.
27715         Reported by Bruno Haible.
27716
27717 2007-05-28  Bruno Haible  <bruno@clisp.org>
27718
27719         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
27720         to define.
27721
27722 2007-05-27  Bruno Haible  <bruno@clisp.org>
27723
27724         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
27725
27726 2007-05-27  Bruno Haible  <bruno@clisp.org>
27727
27728         * modules/openmp: New file.
27729         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
27730         Noah Misch.
27731
27732 2007-05-26  Bruno Haible  <bruno@clisp.org>
27733
27734         * modules/chdir-long (Depends-on): Add fchdir.
27735         * modules/chdir-safer (Depends-on): Likewise.
27736         * modules/fts (Depends-on): Likewise.
27737         * modules/fts-lgpl (Depends-on): Likewise.
27738         * modules/openat (Depends-on): Likewise.
27739         * modules/savewd (Depends-on): Likewise.
27740
27741 2007-05-24  Eric Blake  <ebb9@byu.net>
27742
27743         Fix lseek on mingw.
27744         * modules/lseek: New module.
27745         * m4/lseek.m4: New file.
27746         * lib/lseek.c: New file.
27747         * modules/lseek-tests: New file.
27748         * tests/test-lseek.c: New file.
27749         * tests/test-lseek.sh: New file.
27750         * MODULES.html.sh: Document lseek module.
27751         * modules/fflush (Depends-on): Add lseek, fseeko.
27752         * modules/fseeko (Depends-on): Likewise.
27753         * modules/ftello (Depends-on): Likewise.
27754         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
27755         broken.
27756         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
27757         broken.
27758         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
27759         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
27760         * lib/ftello.c (rpl_ftello): Likewise.
27761         * tests/test-fseeko.c (main): Test this.
27762         * tests/test-fseeko.sh: Likewise.
27763         * tests/test-ftello.c (main): Likewise.
27764         * tests/test-ftello.sh: Likewise.
27765         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
27766         implies replacing fseek.
27767         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
27768         HAVE_FTELLO.
27769         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
27770         * modules/unistd (Makefile.am): Likewise.
27771         * lib/unistd_.h (lseek): Declare a replacement.
27772         * doc/functions/lseek.texi (lseek): Document this fix.
27773         * doc/functions/fseek.texi (fseek): Likewise.
27774         * doc/functions/ftell.texi (ftell): Likewise.
27775
27776 2007-05-24  Bruno Haible  <bruno@clisp.org>
27777
27778         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
27779         in the printed representation of a NaN.
27780         * tests/test-vasprintf-posix.c (test_function): Likewise.
27781         * tests/test-snprintf-posix.h (test_function): Likewise.
27782         * tests/test-sprintf-posix.h (test_function): Likewise.
27783         Reported by Eric Blake.
27784
27785 2007-05-23  Eric Blake  <ebb9@byu.net>
27786
27787         Fix fseeko/ftello on cygwin 1.5.24.
27788         * doc/functions/fseeko.texi (fseeko): Document the fix.
27789         * doc/functions/ftello.texi (ftello): Document the fix.
27790         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
27791         * doc/functions/stdout.text (stdout): New file.
27792         * doc/functions/stderr.text (stderr): New file.
27793         * doc/gnulib.texi (Function Substitutes): Use new files.
27794         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
27795         prior to 1.7.0.
27796         * tests/test-ftello.c (main): Likewise for ftello.
27797         * tests/test-fseeko.sh: New file.
27798         * tests/test-ftello.sh: New file.
27799         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
27800         with seekable stdin.
27801         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
27802         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
27803         (gl_REPLACE_FSEEKO): New macro.
27804         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
27805         * modules/fseeko (Files): Distribute fseeko.c.
27806         * modules/ftello (Files): Distribute ftello.c.
27807         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
27808         mode.
27809         * lib/ftello.c (rpl_ftello): New file.
27810         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
27811         fseeko, ftello.
27812         (gl_STDIN_LARGE_OFFSET): New macro.
27813         * modules/stdio (Makefile.am): Perform the replacement.
27814         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
27815
27816 2007-05-23  Bruno Haible  <bruno@clisp.org>
27817
27818         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
27819         GNULIB_POSIXCHECK is defined.
27820
27821 2007-05-21  Bruno Haible  <bruno@clisp.org>
27822
27823         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
27824         Check also the output for NaN arguments. When cross-compiling, guess
27825         no on IRIX.
27826         * lib/vasnprintf.c: Update comments.
27827         * tests/test-vasnprintf-posix.c (strisnan): New function.
27828         (test_function): Use it.
27829         * tests/test-vasprintf-posix.c (strisnan): New function.
27830         (test_function): Use it.
27831         * tests/test-snprintf-posix.h (strisnan): New function.
27832         (test_function): Use it.
27833         * tests/test-sprintf-posix.h (strisnan): New function.
27834         (test_function): Use it.
27835         Reported by Eric Blake.
27836
27837 2007-05-20  Bruno Haible  <bruno@clisp.org>
27838
27839         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
27840         numbers that fails on BeOS.
27841         * doc/functions/frexpl.texi: Update.
27842
27843 2007-05-20  Jim Meyering  <jim@meyering.net>
27844
27845         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
27846         forced upon us by glibc-2.6.
27847
27848 2007-05-20  Bruno Haible  <bruno@clisp.org>
27849
27850         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
27851         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
27852         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
27853         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
27854         NEED_PRINTF_INFINITE.
27855         (is_infinitel): New function.
27856         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
27857         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
27858         gl_PREREQ_VASNPRINTF_INFINITE.
27859         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
27860         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27861         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
27862         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
27863         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
27864         gl_PREREQ_VASNPRINTF_INFINITE.
27865         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27866         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27867         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27868         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27869         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27870         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27871         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27872         * doc/functions/fprintf.texi: Update.
27873         * doc/functions/printf.texi: Update.
27874         * doc/functions/snprintf.texi: Update.
27875         * doc/functions/sprintf.texi: Update.
27876         * doc/functions/vfprintf.texi: Update.
27877         * doc/functions/vprintf.texi: Update.
27878         * doc/functions/vsnprintf.texi: Update.
27879         * doc/functions/vsprintf.texi: Update.
27880
27881 2007-05-20  Bruno Haible  <bruno@clisp.org>
27882
27883         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
27884         was not found in libc.
27885         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
27886
27887 2007-05-20  Bruno Haible  <bruno@clisp.org>
27888
27889         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
27890         printed as "-nan" instead of "nan".
27891         * tests/test-vasprintf-posix.c (test_function): Likewise.
27892         * tests/test-snprintf-posix.h (test_function): Likewise.
27893         * tests/test-sprintf-posix.h (test_function): Likewise.
27894         Needed for HP-UX 11.
27895
27896 2007-05-20  Jim Meyering  <jim@meyering.net>
27897
27898         Fix buggy test for the fchownat-deref bug.
27899         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
27900         symlink required for the run-test.  Without it, this test would
27901         always declare that fchownat doesn't work, and client code would
27902         unnecessarily use the replacement function with fixed libc.
27903         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
27904         Reported by Greg Schafer.
27905
27906 2007-05-19  Bruno Haible  <bruno@clisp.org>
27907
27908         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
27909         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
27910         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
27911         Needed for IRIX 6.5 and Solaris 2.5.1.
27912
27913 2007-05-19  Bruno Haible  <bruno@clisp.org>
27914
27915         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
27916         (test_function): Skip tests involving -0.0 on platforms where
27917         -0.0 = 0.0.
27918         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
27919         (test_function): Skip tests involving -0.0 on platforms where
27920         -0.0 = 0.0.
27921         * tests/test-snprintf-posix.h (have_minus_zero): New function.
27922         (test_function): Skip tests involving -0.0 on platforms where
27923         -0.0 = 0.0.
27924         * tests/test-sprintf-posix.h (have_minus_zero): New function.
27925         (test_function): Skip tests involving -0.0 on platforms where
27926         -0.0 = 0.0.
27927         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
27928         tests.
27929         * tests/test-printf-posix.h (test_function): Likewise.
27930         * tests/test-printf-posix.output: Remove all -0.0 related results.
27931         Needed for IRIX 6.5.
27932
27933 2007-05-19  Bruno Haible  <bruno@clisp.org>
27934
27935         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
27936         printed as "nan0x7fffffff" instead of "nan".
27937         * tests/test-vasprintf-posix.c (test_function): Likewise.
27938         * tests/test-snprintf-posix.h (test_function): Likewise.
27939         * tests/test-sprintf-posix.h (test_function): Likewise.
27940         * tests/test-fprintf-posix.h (NaN): Remove macro.
27941         (test_function): Remove all NaN related tests.
27942         * tests/test-printf-posix.h (NaN): Remove macro.
27943         (test_function): Remove all NaN related tests.
27944         * tests/test-printf-posix.output: Remove all NaN related results.
27945         Needed for IRIX 6.5.
27946
27947 2007-05-19  Bruno Haible  <bruno@clisp.org>
27948
27949         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
27950         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
27951
27952 2007-05-19  Bruno Haible  <bruno@clisp.org>
27953
27954         * lib/float_.h: New file.
27955         * m4/float_h.m4: New file.
27956         * modules/float: New file.
27957         * modules/isnanl (Dependencies): Add float.
27958         * modules/isnanl-nolibm (Dependencies): Likewise.
27959         * modules/mathl (Dependencies): Likewise.
27960         * modules/printf-frexpl (Dependencies): Likewise.
27961         * modules/signbit (Dependencies): Likewise.
27962         * modules/vasnprintf (Dependencies): Likewise.
27963         * doc/headers/float.texi: Update.
27964
27965 2007-05-19  Jim Meyering  <jim@meyering.net>
27966
27967         * lib/utimens.c (gl_futimens): Rename from futimens,
27968         now that glibc-2.6 declares futimens.
27969         * lib/utimens.h: Likewise.
27970
27971 2007-05-19  Bruno Haible  <bruno@clisp.org>
27972
27973         Avoid test failures on mingw.
27974         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
27975         * tests/test-printf-posix.sh: Likewise.
27976         * tests/test-vfprintf-posix.sh: Likewise.
27977         * tests/test-vprintf-posix.sh: Likewise.
27978
27979 2007-05-19  Bruno Haible  <bruno@clisp.org>
27980
27981         Fix *printf result for NaN, Inf, -0.0 on mingw.
27982         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
27983         * lib/vasnprintf.c: Include math.h and isnan.h.
27984         (is_infinite_or_zero): New function.
27985         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
27986         values in the %f, %F, %e, %E, %g, %G directives.
27987         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
27988         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27989         gl_PRINTF_INFINITE and test its result. Invoke
27990         gl_PREREQ_VASNPRINTF_INFINITE.
27991         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27992         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27993         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27994         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27995         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27996         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27997         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27998         * doc/functions/fprintf.texi: Update.
27999         * doc/functions/printf.texi: Update.
28000         * doc/functions/snprintf.texi: Update.
28001         * doc/functions/sprintf.texi: Update.
28002         * doc/functions/vfprintf.texi: Update.
28003         * doc/functions/vprintf.texi: Update.
28004         * doc/functions/vsnprintf.texi: Update.
28005         * doc/functions/vsprintf.texi: Update.
28006
28007 2007-05-19  Bruno Haible  <bruno@clisp.org>
28008
28009         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
28010         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
28011         Instead of multiplying with 10^k, set extra_zeroes to k.
28012         (scale10_round_long_double): Remove function.
28013
28014 2007-05-18  Bruno Haible  <bruno@clisp.org>
28015
28016         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
28017         introduced on 2007-05-06.
28018
28019 2007-05-18  Bruno Haible  <bruno@clisp.org>
28020
28021         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
28022         %g directives.
28023         * tests/test-vasprintf-posix.c (test_function): Likewise.
28024         * tests/test-snprintf-posix.h (test_function): Likewise.
28025         * tests/test-sprintf-posix.h (test_function): Likewise.
28026
28027 2007-05-18  Bruno Haible  <bruno@clisp.org>
28028
28029         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
28030         (strmatch): New function.
28031         (test_function): Test the %f directive on numbers of various exponents.
28032         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
28033         (strmatch): New function.
28034         (test_function): Test the %f directive on numbers of various exponents.
28035         * tests/test-snprintf-posix.h (strmatch): New function.
28036         (test_function): Test the %f directive on numbers of various exponents.
28037         * tests/test-sprintf-posix.h (strmatch): New function.
28038         (test_function): Test the %f directive on numbers of various exponents.
28039         * tests/test-snprintf-posix.c (SIZEOF): New macro.
28040         * tests/test-sprintf-posix.c (SIZEOF): New macro.
28041         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
28042         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
28043
28044 2007-05-18  Bruno Haible  <bruno@clisp.org>
28045
28046         Add support for 'long double' number output.
28047         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
28048         * lib/vasnprintf.c: Include math.h and float+.h.
28049         (mp_limb_t): New type.
28050         (GMP_LIMB_BITS): New macro.
28051         (mp_twolimb_t): New type.
28052         (GMP_TWOLIMB_BITS): New macro.
28053         (mpn_t): New type.
28054         (multiply, divide, convert_to_decimal, decode_long_double,
28055         scale10_round_long_double, scale10_round_decimal_long_double,
28056         floorlog10l): New functions.
28057         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
28058         for the %f, %F, %e, %E, %g, %G directives.
28059         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
28060         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28061         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
28062         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
28063         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
28064         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28065         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28066         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28067         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28068         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28069         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28070         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
28071         * modules/snprintf-posix (Depends-on): Likewise.
28072         * modules/sprintf-posix (Depends-on): Likewise.
28073         * modules/vasnprintf-posix (Depends-on): Likewise.
28074         * modules/vasprintf-posix (Depends-on): Likewise.
28075         * modules/vfprintf-posix (Depends-on): Likewise.
28076         * modules/vsnprintf-posix (Depends-on): Likewise.
28077         * modules/vsprintf-posix (Depends-on): Likewise.
28078         * modules/vasnprintf (Files): Add lib/float+.h.
28079         * doc/functions/fprintf.texi: Update.
28080         * doc/functions/printf.texi: Update.
28081         * doc/functions/snprintf.texi: Update.
28082         * doc/functions/sprintf.texi: Update.
28083         * doc/functions/vfprintf.texi: Update.
28084         * doc/functions/vprintf.texi: Update.
28085         * doc/functions/vsnprintf.texi: Update.
28086         * doc/functions/vsprintf.texi: Update.
28087
28088 2007-05-18  Bruno Haible  <bruno@clisp.org>
28089
28090         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
28091
28092 2007-05-18  Bruno Haible  <bruno@clisp.org>
28093
28094         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
28095         for printing 64-bit integers. Needed for mingw.
28096
28097 2007-05-18  Bruno Haible  <bruno@clisp.org>
28098
28099         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
28100         gl_FUNC_FREXPL_WORKS.
28101         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
28102
28103 2007-05-18  Bruno Haible  <bruno@clisp.org>
28104
28105         * modules/frexpl-nolibm-tests: New file.
28106
28107         * modules/frexpl-nolibm: New file.
28108         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
28109
28110 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
28111
28112         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
28113         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
28114         GCC 4.2, which otherwise issues a lot of warnings.
28115         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
28116         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
28117         Likewise.
28118         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
28119         * modules/iconv_open (iconv.h): Likewise.
28120         * modules/locale (locale.h): Likewise.
28121         * modules/netinet_in (netinet/in.h): Likewise.
28122         * modules/sys_select (sys_select.h): Likewise.
28123         * modules/sys_socket (sys/socket.h): Likewise.
28124         * modules/sys_stat (sys/stat.h): Likewise.
28125         * modules/sysexits (sysexits.h): Likewise.
28126         * modules/unistd (unistd.h): Likewise.
28127
28128 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28129
28130         * modules/closein-tests (Makefile.am): Distribute
28131         `test-closein.sh'.
28132
28133 2007-05-17  Bruno Haible  <bruno@clisp.org>
28134
28135         * tests/test-printf-posix.output: Renamed from
28136         tests/test-fprintf-posix.out.
28137         * modules/fprintf-posix-tests: Update.
28138         * modules/printf-posix-tests: Update.
28139         * modules/vfprintf-posix-tests: Update.
28140         * modules/vprintf-posix-tests: Update.
28141         * tests/test-fprintf-posix.sh: Update.
28142         * tests/test-printf-posix.sh: Update.
28143         * tests/test-vfprintf-posix.sh: Update.
28144         * tests/test-vprintf-posix.sh: Update.
28145         Reported by Ralf Wildenhues.
28146
28147 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
28148
28149         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
28150         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
28151         GCC 4.2, which otherwise issues a lot of warnings.
28152         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
28153         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
28154         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
28155         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
28156         it should no longer be needed.
28157         * lib/string_.h: Likewise.
28158         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
28159         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
28160         * modules/inttypes (inttypes.h): Likewise.
28161         * modules/math (math.h): Likewise.
28162         * modules/search (search.h): Likewise.
28163         * modules/signal (signal.h): Likewise.
28164         * modules/stdint (stdint.h): Likewise.
28165         * modules/stdio (stdio.h): Likewise.
28166         * modules/stdlib (stdlib.h): Likewise.
28167         * modules/string (string.h): Likewise.
28168         * modules/sys_time (sys/time.h): Likewise.
28169         * modules/time (time.h): Likewise.
28170         * modules/wchar (wchar.h): Likewise.
28171         * modules/wctype (wtype.h): Likewise.
28172
28173 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
28174
28175         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
28176
28177 2007-05-13  Bruno Haible  <bruno@clisp.org>
28178
28179         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
28180         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
28181         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
28182         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
28183         (gl_PREREQ_STRTOK_R): Don't require it here.
28184
28185 2007-05-13  Bruno Haible  <bruno@clisp.org>
28186
28187         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
28188         when used in C++ mode.
28189
28190 2007-05-12  Bruno Haible  <bruno@clisp.org>
28191
28192         * lib/linebuffer.h: Tweak doc.
28193         * lib/linebuffer.c: Likewise.
28194
28195 2007-05-12  James Youngman  <jay@gnu.org>
28196
28197         * lib/linebuffer.c (readlinebuffer_delim): New function,
28198         like readlinebuffer, but use a caller-specified delimiter.
28199         (readlinebuffer): Just call readlinebuffer_delim with '\n'
28200         as the delimiter.
28201         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
28202
28203 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
28204
28205         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
28206         * modules/openat (Files): Remove openat-die.c.
28207         (Depends-on): Add openat-die.
28208         * modules/openat-die: New module.
28209
28210 2007-05-06  Bruno Haible  <bruno@clisp.org>
28211
28212         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
28213         Update with info about Cygwin.
28214         * doc/functions/fprintf.texi: Update.
28215         * doc/functions/printf.texi: Update.
28216         * doc/functions/snprintf.texi: Update.
28217         * doc/functions/sprintf.texi: Update.
28218         * doc/functions/vfprintf.texi: Update.
28219         * doc/functions/vprintf.texi: Update.
28220         * doc/functions/vsnprintf.texi: Update.
28221         * doc/functions/vsprintf.texi: Update.
28222         Reported by Eric Blake.
28223
28224 2007-05-06  Bruno Haible  <bruno@clisp.org>
28225
28226         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
28227         padding ourselves for the floating-point directives.
28228         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
28229         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
28230         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28231         gl_PRINTF_FLAG_ZERO and test its result. Invoke
28232         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
28233         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28234         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
28235         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28236         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28237         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28238         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28239         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28240         * tests/test-snprintf-posix.h (test_function): Also check the width
28241         and some flags in the %f directive.
28242         * tests/test-sprintf-posix.h (test_function): Likewise.
28243         * tests/test-vasnprintf-posix.c (test_function): Likewise.
28244         * tests/test-vasprintf-posix.c (test_function): Likewise.
28245         * doc/functions/fprintf.texi: Update.
28246         * doc/functions/printf.texi: Update.
28247         * doc/functions/snprintf.texi: Update.
28248         * doc/functions/sprintf.texi: Update.
28249         * doc/functions/vfprintf.texi: Update.
28250         * doc/functions/vprintf.texi: Update.
28251         * doc/functions/vsnprintf.texi: Update.
28252         * doc/functions/vsprintf.texi: Update.
28253
28254 2007-05-06  Bruno Haible  <bruno@clisp.org>
28255
28256         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
28257         pass the ' flag character to sprintf or snprintf.
28258         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
28259         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
28260         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28261         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
28262         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
28263         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28264         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
28265         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28266         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28267         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28268         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28269         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28270         * tests/test-snprintf-posix.h (test_function): Also check the grouping
28271         flag.
28272         * tests/test-sprintf-posix.h (test_function): Likewise.
28273         * tests/test-vasnprintf-posix.c (test_function): Likewise.
28274         * tests/test-vasprintf-posix.c (test_function): Likewise.
28275         * doc/functions/fprintf.texi: Update.
28276         * doc/functions/printf.texi: Update.
28277         * doc/functions/snprintf.texi: Update.
28278         * doc/functions/sprintf.texi: Update.
28279         * doc/functions/vfprintf.texi: Update.
28280         * doc/functions/vprintf.texi: Update.
28281         * doc/functions/vsnprintf.texi: Update.
28282         * doc/functions/vsprintf.texi: Update.
28283
28284 2007-05-01  Bruno Haible  <bruno@clisp.org>
28285
28286         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
28287
28288 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
28289
28290         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
28291         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
28292
28293 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
28294
28295         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
28296         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
28297         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
28298
28299 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
28300
28301         * lib/argp-help.c (struct hol_entry): New member `ord'.
28302         (HOL_ENTRY_PTRCMP): Use ord for comparison
28303         (hol_sort): Initialize ord.
28304
28305 2007-05-01  Bruno Haible  <bruno@clisp.org>
28306
28307         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
28308         Reported by Eric Blake.
28309         * doc/gnulib.texi (Function Substitutes): Update.
28310
28311 2007-05-01  Bruno Haible  <bruno@clisp.org>
28312
28313         * doc/functions.texi: Remove file, now redundant through
28314         doc/functions/*.texi.
28315
28316 2007-05-01  Bruno Haible  <bruno@clisp.org>
28317
28318         * modules/argp (Depends-on): Add sleep.
28319
28320 2007-05-01  Bruno Haible  <bruno@clisp.org>
28321
28322         * modules/sleep-tests: New file.
28323         * tests/test-sleep.c: New file.
28324
28325         * modules/sleep: New file.
28326         * lib/sleep.c: New file.
28327         * m4/sleep.m4: New file.
28328         * lib/unistd_.h (sleep): New declaration.
28329         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
28330         HAVE_SLEEP.
28331         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
28332         * doc/functions/sleep.texi: Document the sleep module.
28333
28334 2007-05-01  Bruno Haible  <bruno@clisp.org>
28335
28336         * lib/sigprocmask.h: Remove file.
28337         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
28338         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
28339         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
28340         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
28341         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
28342         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
28343         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
28344         HAVE_SIGSET_T as a shell variable.
28345         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
28346         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
28347         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
28348         (Depends-on): Add signal. Remove verify.
28349         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
28350         (Include): Mention <signal.h> instead of sigprocmask.h.
28351         * NEWS: Mention the change.
28352         * lib/fatal-signal.c: Don't include sigprocmask.h.
28353
28354 2007-05-01  Bruno Haible  <bruno@clisp.org>
28355
28356         * modules/signal: New file.
28357         * lib/signal_.h: New file.
28358         * m4/signal_h.m4: New file.
28359
28360 2007-05-01  Bruno Haible  <bruno@clisp.org>
28361
28362         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
28363         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
28364         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
28365         HAVE_WCTYPE_CTMP_BUG into wctype.h.
28366
28367 2007-05-01  Bruno Haible  <bruno@clisp.org>
28368
28369         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
28370         configure time.
28371         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
28372         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
28373         * modules/sys_stat (Makefile.am): Substitute their values into
28374         sys/stat.h.
28375
28376 2007-05-01  Bruno Haible  <bruno@clisp.org>
28377
28378         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
28379         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
28380         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
28381
28382 2007-05-01  Bruno Haible  <bruno@clisp.org>
28383
28384         * doc/header/assert.texi: Undo last change: don't mention the gnulib
28385         'assert' module here.
28386
28387 2007-05-01  Bruno Haible  <bruno@clisp.org>
28388
28389         * doc/functions/*.texi: New files.
28390         * doc/functions/google-ranking.txt: New file.
28391         * doc/gnulib.texi (Function Substitutes): New chapter.
28392         (ctime, inet_ntoa): Remove sections.
28393         * doc/ctime.texi: Remove file.
28394         * doc/inet_ntoa.texi: Remove file.
28395         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
28396         dependencies.
28397         (%.info): New rule, specifying a --reference-limit.
28398
28399 2007-05-01  Bruno Haible  <bruno@clisp.org>
28400
28401         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
28402
28403 2007-05-01  Bruno Haible  <bruno@clisp.org>
28404
28405         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
28406         the portability of 'mkdir' to mingw systems.
28407
28408 2007-05-01  Bruno Haible  <bruno@clisp.org>
28409
28410         * doc/headers/google-ranking.txt: New file.
28411
28412 2007-04-30  Eric Blake  <ebb9@byu.net>
28413
28414         Prefer fseeko to fseek.
28415         * modules/getpass (Depends-on): Add fseeko.
28416         * lib/getpass.c (getpass): Use fseeko, not fseek.
28417
28418 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
28419
28420         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
28421         assumes the sorting is stable, while most qsort implementations
28422         are not.  Use argument addresses to ensure they never compare as
28423         equal.
28424
28425         * tests/test-argp-2.sh (usage-indent test): Fix output
28426         (func_compare): Restore diff options
28427         * tests/test-argp.c: Restore #include "progname.h"
28428
28429 2007-04-29  Bruno Haible  <bruno@clisp.org>
28430
28431         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
28432         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28433         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
28434         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28435         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
28436         (configure.ac): Define CHECK_SNPRINTF_POSIX.
28437         (TESTS, check_PROGRAMS): Add test-snprintf.
28438         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
28439         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
28440         (TESTS, check_PROGRAMS): Add test-vsnprintf.
28441         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
28442         assertions that fail on HP-UX, OSF/1, or IRIX.
28443         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
28444
28445 2007-04-29  Bruno Haible  <bruno@clisp.org>
28446
28447         * MODULES.html.sh (posix_functions): Remove 'contents'.
28448
28449 2007-04-29  Karl Berry  <karl@gnu.org>
28450
28451         * config/srclist.txt (gendocs_template_min): new entry.
28452
28453 2007-04-29  Bruno Haible  <bruno@clisp.org>
28454
28455         Work around fpurge bug on BSD systems.
28456         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
28457         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
28458         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
28459         fpurge to rpl_fpurge if the system already has this function.
28460         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
28461         the case where the system already has this function. Correct invariants
28462         on BSD systems.
28463         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
28464         BSD systems.
28465
28466 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
28467
28468         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
28469         proposed by Sven Verdoolaege.
28470
28471         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
28472         options.
28473         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
28474         (usage and help tests): Update
28475
28476 2007-04-29  Bruno Haible  <bruno@clisp.org>
28477
28478         * tests/test-fflush.c (main): Use a file of size 17, not 10.
28479         Print more information in case of failure. Disable a test on BeOS.
28480
28481 2007-04-29  Bruno Haible  <bruno@clisp.org>
28482
28483         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
28484         This helps debugging on systems on which no gdb is available.
28485
28486 2007-04-29  Bruno Haible  <bruno@clisp.org>
28487
28488         * lib/freading.h: Improve comments.
28489         * lib/fwriting.h: Likewise.
28490         * tests/test-freading.c (main): Don't check freading immediately after
28491         repositioning. Needed for glibc.
28492
28493 2007-04-29  Bruno Haible  <bruno@clisp.org>
28494
28495         * lib/freading.c (freading): Trivial simplification.
28496
28497 2007-04-28  Bruno Haible  <bruno@clisp.org>
28498
28499         * tests/test-fwriting.c (main): Also test the interaction between
28500         fflush and fwriting.
28501         * modules/fwriting-tests (Depends-on): Add fflush.
28502
28503         * tests/test-freading.c (main): Also test the interaction between
28504         fflush and freading.
28505         * modules/freading-tests (Depends-on): Add fflush.
28506
28507 2007-04-28  Bruno Haible  <bruno@clisp.org>
28508
28509         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
28510         fseeko and ftello.
28511         Suggested by Eric Blake.
28512
28513 2007-04-28  Jim Meyering  <jim@meyering.net>
28514
28515         Avoid false-negative in gl_STDINT_H's C99 conformance test.
28516         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
28517         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
28518
28519 2007-04-27  Eric Blake  <ebb9@byu.net>
28520
28521         * doc/headers/assert.texi (assert.h): Document assert module use.
28522
28523 2007-04-27  Bruno Haible  <bruno@clisp.org>
28524
28525         * doc/headers/*.texi: New files.
28526         * doc/gnulib.texi (Header File Substitutes): New chapter.
28527         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
28528         dependencies.
28529         (standards.info ,standards.html, standards.dvi): Update dependencies.
28530         (mostlyclean, clean): New targets.
28531
28532 2007-04-27  Bruno Haible  <bruno@clisp.org>
28533
28534         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
28535         * modules/sysexits (Files, Makefile.am): Update.
28536
28537         * lib/sys_socket_.h: Renamed from lib/socket_.h.
28538         * modules/sys_socket (Files, Makefile.am): Update.
28539
28540         * lib/sys_stat_.h: Renamed from lib/stat_.h.
28541         * modules/sys_stat (Files, Makefile.am): Update.
28542
28543 2007-04-27  Eric Blake  <ebb9@byu.net>
28544
28545         * lib/freading.h: Improve comments.
28546         * lib/fwriting.h: Likewise.
28547         * lib/fflush.c: Likewise.
28548
28549         Fix closein for mingw.
28550         * modules/closein-tests: Add tests for closein.
28551         * tests/test-closein.c: New file.
28552         * tests/test-closein.sh: Likewise.
28553         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
28554         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
28555
28556 2007-04-27  Bruno Haible  <bruno@clisp.org>
28557
28558         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
28559         version is < 6.
28560         * lib/math_.h [__DECC]: Likewise.
28561         * lib/stdio_.h [__DECC]: Likewise.
28562         * lib/stdlib_.h [__DECC]: Likewise.
28563         * lib/string_.h [__DECC]: Likewise.
28564         * lib/time_.h [__DECC]: Likewise.
28565         * lib/wchar_.h [__DECC]: Likewise.
28566         * lib/wctype_.h [__DECC]: Likewise.
28567
28568 2007-04-27  Bruno Haible  <bruno@clisp.org>
28569
28570         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
28571
28572 2007-04-27  Bruno Haible  <bruno@clisp.org>
28573
28574         * lib/fflush.c: Add comments.
28575         * modules/fpurge-tests (Depends-on): Add fflush.
28576         * modules/freadable-tests (Depends-on): Likewise.
28577         * modules/fwritable-tests (Depends-on): Likewise.
28578
28579 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
28580
28581         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
28582         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
28583         Report by Bruno Haible <bruno@clisp.org>.
28584
28585 2007-04-26  Eric Blake  <ebb9@byu.net>
28586
28587         Fix fflush on mingw.
28588         * modules/fflush (Depends-on): Add freading.
28589         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
28590         but unread data.
28591
28592 2007-04-26  Eric Blake  <ebb9@byu.net>
28593         and Bruno Haible  <bruno@clisp.org>
28594
28595         Implement freading and fwriting.
28596         * lib/freading.c: New file.
28597         * lib/freading.h: Likewise.
28598         * m4/freading.m4: Likewise.
28599         * modules/freading: Likewise.
28600         * modules/freading-tests: Likewise.
28601         * tests/test-freading.c: Likewise.
28602         * lib/fwriting.c: New file.
28603         * lib/fwriting.h: Likewise.
28604         * m4/fwriting.m4: Likewise.
28605         * modules/fwriting: Likewise.
28606         * modules/fwriting-tests: Likewise.
28607         * tests/test-fwriting.c: Likewise.
28608         * MODULES.html.sh (File stream based Input/Output): Mention them.
28609
28610 2007-04-26  Bruno Haible  <bruno@clisp.org>
28611
28612         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
28613         'long' when we assume it.
28614         Suggested by Eric Blake.
28615
28616 2007-04-26  Bruno Haible  <bruno@clisp.org>
28617
28618         Ensure fseeko, ftello are declared on glibc systems.
28619         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
28620         * modules/fseeko (configure.ac-early): Likewise.
28621         * modules/ftello (configure.ac-early): Likewise.
28622         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
28623         AC_FUNC_FSEEKO for this.
28624         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
28625         (gl_CHECK_FSEEKO): Remove macro.
28626
28627 2007-04-26  Bruno Haible  <bruno@clisp.org>
28628
28629         * tests/test-fflush.c (main): Also check the ftell result after
28630         fflush and fseek/fseeko.
28631         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
28632         file descriptor position cache in the stream.
28633         * lib/fseeko.c (rpl_fseeko): Likewise.
28634
28635 2007-04-26  Bruno Haible  <bruno@clisp.org>
28636
28637         * modules/fflush-tests (Depends-on): Add fseeko.
28638
28639 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
28640             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28641
28642         * lib/argz_.h: ensure error_t definition is obtained in same
28643         mechanism system argz.h would have.
28644         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
28645         argz facilities are known bad.  Err on the side of caution if
28646         cross-compiling.
28647
28648 2007-04-25  Eric Blake  <ebb9@byu.net>
28649
28650         * lib/fpurge.c (includes): Use stdlib.h for free.
28651         * tests/test-fflush.c (main): Also test fflush-fseeko.
28652
28653 2007-04-25  Bruno Haible  <bruno@clisp.org>
28654
28655         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
28656         * lib/fseeko.c: New file.
28657         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
28658         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
28659         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
28660         gl_FUNC_FSEEKO.
28661         (gl_FUNC_FSEEKO): Invoke it.
28662         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
28663         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
28664         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
28665
28666 2007-04-25  Bruno Haible  <bruno@clisp.org>
28667
28668         * modules/fflush (Depends-on): Add ftello.
28669
28670 2007-04-25  Bruno Haible  <bruno@clisp.org>
28671
28672         * modules/ftello-tests: New file.
28673         * tests/test-ftello.c: New file.
28674
28675         * modules/ftello: New file.
28676         * m4/ftello.m4: New file.
28677         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
28678         HAVE_FTELLO.
28679         * lib/stdio_.h (ftello): New declaration.
28680         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
28681         HAVE_FTELLO.
28682
28683 2007-04-25  Bruno Haible  <bruno@clisp.org>
28684
28685         * modules/fseeko-tests: New file.
28686         * tests/test-fseeko.c: New file.
28687
28688         * modules/fseeko: New file.
28689         * m4/fseeko.m4: New file.
28690         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
28691         HAVE_FSEEKO.
28692         * lib/stdio_.h (fseeko): New declaration.
28693         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
28694         HAVE_FSEEKO.
28695
28696 2007-04-25  Bruno Haible  <bruno@clisp.org>
28697
28698         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
28699
28700 2007-04-25  Bruno Haible  <bruno@clisp.org>
28701
28702         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
28703         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
28704         * tests/test-unistd.c: Likewise.
28705         * tests/test-fcntl.c: Likewise.
28706
28707 2007-04-23  Eric Blake  <ebb9@byu.net>
28708
28709         * lib/fflush.c: Fix missing include.
28710         Reported by Bruno Haible.
28711
28712 2007-04-23  Bruno Haible  <bruno@clisp.org>
28713
28714         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
28715         Reported by Eric Blake.
28716
28717 2007-04-23  Bruno Haible  <bruno@clisp.org>
28718
28719         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
28720
28721 2007-04-23  Bruno Haible  <bruno@clisp.org>
28722
28723         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
28724
28725 2007-04-23  Bruno Haible  <bruno@clisp.org>
28726
28727         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
28728         Needed on HP-UX 11.
28729
28730 2007-04-16  Eric Blake  <ebb9@byu.net>
28731
28732         Make fflush rely on fpurge.
28733         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
28734         open coding all variants.
28735         * modules/fflush (Depends-on): Add fpurge and unistd.
28736         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
28737         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
28738
28739         Fix --with-tests compilation on cygwin.
28740         * modules/argmatch-tests (Makefile.am): List gnulib library first
28741         in LDADD.
28742         * modules/argp-tests (Makefile.am): Likewise.
28743         * modules/array-list-tests (Makefile.am): Likewise.
28744         * modules/array-oset-tests (Makefile.am): Likewise.
28745         * modules/avltree-list-tests (Makefile.am): Likewise.
28746         * modules/avltree-oset-tests (Makefile.am): Likewise.
28747         * modules/avltreehash-list-tests (Makefile.am): Likewise.
28748         * modules/carray-list-tests (Makefile.am): Likewise.
28749         * modules/dirname-tests (Makefile.am): Likewise.
28750         * modules/frexp-tests (Makefile.am): Likewise.
28751         * modules/isnanl-tests (Makefile.am): Likewise.
28752         * modules/linked-list-tests (Makefile.am): Likewise.
28753         * modules/linkedhash-list-tests (Makefile.am): Likewise.
28754         * modules/lock-tests (Makefile.am): Likewise.
28755         * modules/rbtree-list-tests (Makefile.am): Likewise.
28756         * modules/rbtree-oset-tests (Makefile.am): Likewise.
28757         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
28758         * modules/tls-tests (Makefile.am): Likewise.
28759         * modules/tsearch-tests (Makefile.am): Likewise.
28760         * modules/xvasprintf-tests (Makefile.am): Likewise.
28761
28762         Fix fpurge for cygwin.
28763         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
28764         value.
28765         * modules/fpurge-tests (Depends-on): Clean up trash.
28766
28767 2007-04-16  Simon Josefsson  <simon@josefsson.org>
28768
28769         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
28770
28771         * m4/autobuild.m4: Re-indent.
28772
28773 2007-04-13  Bruno Haible  <bruno@clisp.org>
28774
28775         * modules/fpurge-tests: New file.
28776         * tests/test-fpurge.c: New file.
28777
28778         * modules/fpurge: New file.
28779         * lib/fpurge.h: New file.
28780         * lib/fpurge.c: New file.
28781         * m4/fpurge.m4: New file.
28782
28783 2007-04-13  Bruno Haible  <bruno@clisp.org>
28784
28785         * modules/fbufmode-tests: New file.
28786         * tests/test-fbufmode.c: New file.
28787
28788         * modules/fbufmode: New file.
28789         * lib/fbufmode.h: New file.
28790         * lib/fbufmode.c: New file.
28791         * m4/fbufmode.m4: New file.
28792
28793 2007-04-13  Bruno Haible  <bruno@clisp.org>
28794
28795         * modules/fwritable-tests: New file.
28796         * tests/test-fwritable.c: New file.
28797
28798         * modules/fwritable: New file.
28799         * lib/fwritable.h: New file.
28800         * lib/fwritable.c: New file.
28801         * m4/fwritable.m4: New file.
28802
28803 2007-04-13  Bruno Haible  <bruno@clisp.org>
28804
28805         * modules/freadable-tests: New file.
28806         * tests/test-freadable.c: New file.
28807
28808         * modules/freadable: New file.
28809         * lib/freadable.h: New file.
28810         * lib/freadable.c: New file.
28811         * m4/freadable.m4: New file.
28812
28813 2007-04-13  Bruno Haible  <bruno@clisp.org>
28814
28815         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
28816         MOSTLYCLEANFILES.
28817
28818 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
28819
28820         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
28821         gzip bootstrap.conf to avoid dragging in i18n machinery.
28822         (gnulib_tool_option): Use it.
28823
28824 2007-04-13  Bruno Haible  <bruno@clisp.org>
28825
28826         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
28827         %F directives.
28828         * tests/test-vasprintf-posix.c (test_function): Likewise.
28829         * tests/test-snprintf-posix.h (test_function): Likewise.
28830         * tests/test-sprintf-posix.h (test_function): Likewise.
28831         * tests/test-fprintf-posix.h (test_function): Likewise.
28832         * tests/test-printf-posix.h (test_function): Likewise.
28833         * tests/test-fprintf-posix.out: Likewise.
28834
28835 2007-04-13  Bruno Haible  <bruno@clisp.org>
28836
28837         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
28838         * modules/tls-tests (configure.ac): Likewise.
28839         Reported by Arto C. Nirkko <anirkko@insel.ch>.
28840
28841 2007-04-13  Bruno Haible  <bruno@clisp.org>
28842
28843         * lib/tls.c (glthread_tls_get): Fix return type.
28844         Patch by Arto C. Nirkko <anirkko@insel.ch>.
28845
28846 2007-04-12  Eric Blake  <ebb9@byu.net>
28847
28848         * modules/gettime (Depends-on): Remove gettime.
28849         Reported by Dmitry V. Levin.
28850
28851 2007-04-12  Bruno Haible  <bruno@clisp.org>
28852
28853         * modules/fflush (Include): Mention <stdio.h>.
28854         * modules/strtoimax (Include): Mention <inttypes.h>.
28855         * modules/strtoumax (Include): Likewise.
28856
28857 2007-04-12  Eric Blake  <ebb9@byu.net>
28858
28859         * .cvsignore: New file.
28860         * .gitignore: Likewise.
28861
28862 2007-04-12  Bruno Haible  <bruno@clisp.org>
28863
28864         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
28865         not before, since $(LDADD) often contains libgnu.a.
28866         * modules/striconv-tests (test_striconv_LDADD): Likewise.
28867         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
28868         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
28869         Needed on Cygwin.
28870
28871 2007-04-12  Eric Blake  <ebb9@byu.net>
28872
28873         Work around glibc's failure to flush stdin on fclose.
28874         * lib/closein.c (close_stdin): Flush stdin before closing.
28875
28876         Work around glibc's failure to reset seekable stdin on exit.
28877         * modules/closein: New module.
28878         * lib/closein.c: New file.
28879         * lib/closein.h: Likewise.
28880         * m4/closein.m4: Likewise.
28881         * MODULES.html.sh (File stream based Input/Output): Document it.
28882
28883 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28884
28885         * gnulib-tool: Rename generated 'autobuild' script to
28886         'do-autobuild' in --create-megatestdir output.
28887
28888         * doc/gnulib.texi (Build robot for gnulib): Fix.
28889
28890 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28891
28892         * modules/sysexits (Depends-on): Add absolute-header.
28893
28894 2007-04-12  Eric Blake  <ebb9@byu.net>
28895
28896         No need to preserve errno on success.
28897         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
28898         Reported by Bruno Haible.
28899
28900 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28901
28902         * MODULES.html.sh (Support for maintaining and releasing
28903         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
28904
28905 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28906
28907         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
28908
28909 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28910
28911         * modules/autobuild: New module.
28912
28913         * m4/autobuild.m4: New file.
28914
28915 2007-04-11  Bruno Haible  <bruno@clisp.org>
28916
28917         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
28918         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
28919         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
28920         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
28921         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28922         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28923         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28924         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28925         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28926         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28927         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
28928         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28929         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28930         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
28931         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28932         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28933         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
28934         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28935         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28936         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
28937         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28938         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28939         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
28940         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28941         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28942         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
28943         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28944         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28945         Reported by Eric Blake.
28946
28947 2007-04-11  Bruno Haible  <bruno@clisp.org>
28948
28949         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
28950
28951 2007-04-10  Bruno Haible  <bruno@clisp.org>
28952
28953         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
28954         for NaN and Infinity. Needed on FreeBSD 6.1.
28955         * tests/test-vasnprintf-posix.c (test_function): Undo last change
28956         regarding results for "%010a" of Infinity and NaN.
28957         * tests/test-vasprintf-posix.c (test_function): Likewise.
28958         * tests/test-snprintf-posix.h (test_function): Likewise.
28959         * tests/test-sprintf-posix.h (test_function): Likewise.
28960         * tests/test-fprintf-posix.h (test_function): Likewise.
28961         * tests/test-printf-posix.h (test_function): Likewise.
28962         * tests/test-fprintf-posix.out: Likewise.
28963
28964 2007-04-10  Bruno Haible  <bruno@clisp.org>
28965
28966         * modules/locale-tests: New file.
28967         * tests/test-locale.c: New file.
28968
28969         * modules/locale: New file.
28970         * lib/locale_.h: New file.
28971         * m4/locale_h.m4: New file.
28972
28973 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
28974             Bruno Haible  <bruno@clisp.org>
28975
28976         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
28977         be determined, test for availability of the copysignf, copysign,
28978         copysignl functions.
28979         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
28980         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
28981         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
28982
28983 2007-04-09  Eric Blake  <ebb9@byu.net>
28984
28985         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
28986         * modules/stdio (Makefile.am): Support fflush.
28987         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
28988         * modules/fflush: New file.
28989         * lib/fflush.c: Likewise.
28990         * m4/fflush.m4: Likewise.
28991         * modules/fflush-tests: New test.
28992         * tests/test-fflush.c: Likewise.
28993         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
28994
28995 2007-04-06  Bruno Haible  <bruno@clisp.org>
28996
28997         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
28998         (VASNPRINTF): Use signbit for faster determination whether to print a
28999         minus sign.
29000         * modules/vasnprintf (Files): Remove lib/float+.h.
29001         * modules/fprintf-posix (Depends-on): Add signbit.
29002         * modules/snprintf-posix (Depends-on): Likewise.
29003         * modules/sprintf-posix (Depends-on): Likewise.
29004         * modules/vasnprintf-posix (Depends-on): Likewise.
29005         * modules/vasprintf-posix (Depends-on): Likewise.
29006         * modules/vfprintf-posix (Depends-on): Likewise.
29007         * modules/vsnprintf-posix (Depends-on): Likewise.
29008         * modules/vsprintf-posix (Depends-on): Likewise.
29009
29010 2007-04-06  Bruno Haible  <bruno@clisp.org>
29011
29012         * tests/test-frexp.c (main): Test also the sign bit of zero results.
29013         * tests/test-frexpl.c (main): Likewise.
29014         * tests/test-ldexpl.c (main): Likewise.
29015         * modules/frexp-tests (Depends-on): Add signbit.
29016         * modules/frexpl-tests (Depdends-on): Likewise.
29017         * modules/ldexpl-tests (Depdends-on): Likewise.
29018
29019 2007-04-06  Bruno Haible  <bruno@clisp.org>
29020
29021         * modules/signbit-tests: New file.
29022         * tests/test-signbit.c: New file.
29023
29024         * modules/signbit: New file.
29025         * lib/signbitf.c: New file.
29026         * lib/signbitd.c: New file.
29027         * lib/signbitl.c: New file.
29028         * m4/signbit.m4: New file.
29029         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
29030         (signbit): New macro.
29031         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
29032         REPLACE_SIGNBIT.
29033         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
29034         REPLACE_FREXPL into math.h.
29035
29036 2007-04-06  Bruno Haible  <bruno@clisp.org>
29037
29038         * modules/isnanf-nolibm-tests: New file.
29039         * tests/test-isnanf.c: New file.
29040
29041         * modules/isnanf-nolibm: New file.
29042         * lib/isnanf.h: New file.
29043         * lib/isnanf.c: New file.
29044         * lib/isnan.c: Consider the USE_FLOAT macro.
29045         * m4/isnanf.m4: New file.
29046
29047 2007-04-06  Bruno Haible  <bruno@clisp.org>
29048
29049         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
29050         (Link): New section.
29051
29052         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
29053
29054 2007-04-06  Bruno Haible  <bruno@clisp.org>
29055
29056         Assume the 'long double' type.
29057         * m4/longdouble.m4: Remove file.
29058         * config/srclist.txt: Don't mention longdouble.m4.
29059         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
29060         * lib/float+.h: Likewise.
29061         * lib/frexp.c: Likewise.
29062         * lib/printf-args.h: Likewise.
29063         * lib/printf-args.c: Likewise.
29064         * lib/printf-frexp.c: Likewise.
29065         * lib/printf-parse.c: Likewise.
29066         * lib/vasnprintf.c: Likewise.
29067         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
29068         * m4/intl.m4: Likewise.
29069         * m4/isnanl.m4: Likewise.
29070         * m4/printf.m4: Likewise.
29071         * m4/printf-frexpl.m4: Likewise.
29072         * m4/vasnprintf.m4: Likewise.
29073         * modules/allocsa (Files): Remove m4/longdouble.m4.
29074         * modules/gettext (Files): Likewise.
29075         * modules/relocatable-prog-wrapper (Files): Likewise.
29076         * modules/vasnprintf (Files): Likewise.
29077         * modules/isnanl (Files): Likewise.
29078         (Include): Simplify.
29079         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
29080         (Include): Simplify.
29081         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
29082         (Include): Simplify.
29083         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
29084         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29085         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
29086         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29087         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
29088         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29089         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
29090         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29091         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
29092         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29093         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
29094         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29095         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
29096         * tests/test-isnanl.c: Likewise.
29097         * tests/test-snprintf-posix.h: Likewise.
29098         * tests/test-sprintf-posix.h: Likewise.
29099         * tests/test-vasnprintf-posix.c: Likewise.
29100         * tests/test-vasnprintf-posix2.c: Likewise.
29101         * tests/test-vasprintf-posix.c: Likewise.
29102
29103 2007-04-06  Bruno Haible  <bruno@clisp.org>
29104
29105         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
29106         * lib/math_.h [__DECC]: Include the overridden include file through
29107         #include_next, outside the double-inclusion guard.
29108         * lib/stdio_.h [__DECC]: Likewise.
29109         * lib/stdlib_.h [__DECC]: Likewise.
29110         * lib/string_.h [__DECC]: Likewise.
29111         * lib/time_.h [__DECC]: Likewise.
29112         * lib/wchar_.h [__DECC]: Likewise.
29113         * lib/wctype_.h [__DECC]: Likewise.
29114         * lib/inttypes_.h [__DECC]: Likewise.
29115         Reported by Albert Chin <china@thewrittenword.com> in
29116         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
29117
29118 2007-04-04  Eric Blake  <ebb9@byu.net>
29119
29120         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
29121         1.5.x.
29122
29123 2007-04-04  Bruno Haible  <bruno@clisp.org>
29124
29125         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
29126         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
29127
29128 2007-04-04  Bruno Haible  <bruno@clisp.org>
29129
29130         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
29131         results for "%010a" of Infinity and NaN.
29132         * tests/test-vasprintf-posix.c (test_function): Likewise.
29133         * tests/test-snprintf-posix.h (test_function): Likewise.
29134         * tests/test-sprintf-posix.h (test_function): Likewise.
29135         * tests/test-fprintf-posix.h (test_function): Remove these tests.
29136         * tests/test-printf-posix.h (test_function): Likewise.
29137         * tests/test-fprintf-posix.out: Update.
29138         Needed for FreeBSD 6.1.
29139
29140 2007-04-04  Bruno Haible  <bruno@clisp.org>
29141
29142         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
29143         directly used by the gnulib modules nor by gnulib-tool.
29144
29145 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
29146
29147         * DEPENDENCIES: Give overall description of version dependency
29148         desirability.  Use more-typical names for apps.
29149         Add shell, coreutils, diffutils, grep, tar, gzip.
29150
29151 2007-04-04  Simon Josefsson  <simon@josefsson.org>
29152
29153         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
29154
29155 2007-04-04  Karl Berry  <karl@gnu.org>
29156
29157         * MODULES.html.sh (func_module): missing '.
29158
29159 2007-04-03  Bruno Haible  <bruno@clisp.org>
29160
29161         * modules/argmatch-tests (Makefile.am): New variable
29162         test_argmatch_LDADD.
29163         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
29164         * modules/array-list-tests (Makefile.am): New variable
29165         test_array_list_LDADD.
29166         * modules/array-oset-tests (Makefile.am): New variable
29167         test_array_oset_LDADD.
29168         * modules/avltree-list-tests (Makefile.am): New variable
29169         test_avltree_list_LDADD.
29170         * modules/avltree-oset-tests (Makefile.am): New variable
29171         test_avltree_oset_LDADD.
29172         * modules/avltreehash-list-tests (Makefile.am): New variable
29173         test_avltreehash_list_LDADD.
29174         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
29175         test_canonicalize_lgpl_LDADD.
29176         * modules/carray-list-tests (Makefile.am): New variable
29177         test_carray_list_LDADD.
29178         * modules/dirname-tests (Makefile.am): New variable
29179         test_dirname_LDADD.
29180         * modules/linked-list-tests (Makefile.am): New variable
29181         test_linked_list_LDADD.
29182         * modules/linkedhash-list-tests (Makefile.am): New variable
29183         test_linkedhash_list_LDADD.
29184         * modules/rbtree-list-tests (Makefile.am): New variable
29185         test_rbtree_list_LDADD.
29186         * modules/rbtree-oset-tests (Makefile.am): New variable
29187         test_rbtree_oset_LDADD.
29188         * modules/rbtreehash-list-tests (Makefile.am): New variable
29189         test_rbtreehash_list_LDADD.
29190         * modules/xvasprintf-tests (Makefile.am): New variable
29191         test_xvasprintf_LDADD.
29192         Reported by Eric Blake.
29193
29194 2007-04-03  Eric Blake  <ebb9@byu.net>
29195
29196         * DEPENDENCIES: Weaken m4 requirements.
29197
29198 2007-04-03  Bruno Haible  <bruno@clisp.org>
29199
29200         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
29201         * modules/isnanl-tests (configure.ac): Likewise.
29202
29203 2007-04-03  Ben Pfaff  <blp@gnu.org>
29204
29205         * modules/iconv_open: Add $(srcdir)/ to source directory
29206         references in Makefile fragments that call gperf, to fix VPATH
29207         builds.
29208
29209 2007-04-03  Bruno Haible  <bruno@clisp.org>
29210
29211         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
29212         * lib/ldexpl.c: Undo last change.
29213
29214 2007-04-03  Bruno Haible  <bruno@clisp.org>
29215
29216         * modules/printf-frexpl (Depends-on): Undo last change.
29217         (Files): Add m4/ldexpl.m4.
29218
29219 2007-04-03  Bruno Haible  <bruno@clisp.org>
29220
29221         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
29222         * modules/isnanl (Link): New section.
29223
29224         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
29225         * modules/frexp (Link): New section.
29226
29227         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
29228         * modules/frexpl (Link): New section.
29229
29230         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
29231         * modules/ldexpl (Link): New section.
29232
29233 2007-04-03  Bruno Haible  <bruno@clisp.org>
29234
29235         * modules/TEMPLATE-EXTENDED: New file.
29236         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
29237
29238 2007-04-03  Bruno Haible  <bruno@clisp.org>
29239
29240         * DEPENDENCIES: New file.
29241         Suggested by Simon Josefsson.
29242
29243 2007-04-03  Bruno Haible  <bruno@clisp.org>
29244
29245         * doc/gnulib.texi: Escape @.
29246
29247 2007-04-03  James Youngman  <jay@gnu.org>
29248         and Paul Eggert  <eggert@cs.ucla.edu>
29249
29250         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
29251         birthtime on all systems that have birthtime, not just those which
29252         use st_birthtimensec rather than st_birthtim.  Putting zero in
29253         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
29254         that the birth time is not available for files on an NFS mount.
29255
29256 2007-04-03  Simon Josefsson  <simon@josefsson.org>
29257
29258         * modules/memxor: Move back from crypto/, suggested by Bruno.
29259         * modules/crypto/hmac-sha1: Fix memxor dependency.
29260
29261         * modules/crypto/gc: Moved from ../.
29262
29263 2007-04-02  Eric Blake  <ebb9@byu.net>
29264
29265         * lib/ldexpl.c (includes): Avoid libm.
29266
29267         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
29268
29269 2007-04-02  Bruno Haible  <bruno@clisp.org>
29270
29271         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
29272         on IRIX.
29273
29274 2007-04-02  Bruno Haible  <bruno@clisp.org>
29275
29276         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
29277         x86 or x86_64 platforms running MacOS X.
29278         Reported by Ryan Schmidt <@ryandesign.com>.
29279
29280 2007-04-02  Bruno Haible  <bruno@clisp.org>
29281
29282         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
29283         i386.
29284
29285 2007-04-01  Simon Josefsson  <simon@josefsson.org>
29286
29287         * modules/crypto/arcfour: Moved from ../.
29288         * modules/crypto/arcfour-tests: Moved from ../.
29289         * modules/crypto/arctwo: Moved from ../.
29290         * modules/crypto/arctwo-tests: Moved from ../.
29291         * modules/crypto/des: Moved from ../.
29292         * modules/crypto/des-tests: Moved from ../.
29293         * modules/crypto/gc-arcfour: Moved from ../.
29294         * modules/crypto/gc-arcfour-tests: Moved from ../.
29295         * modules/crypto/gc-arctwo: Moved from ../.
29296         * modules/crypto/gc-arctwo-tests: Moved from ../.
29297         * modules/crypto/gc-des: Moved from ../.
29298         * modules/crypto/gc-des-tests: Moved from ../.
29299         * modules/crypto/gc-hmac-md5: Moved from ../.
29300         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
29301         * modules/crypto/gc-hmac-sha1: Moved from ../.
29302         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
29303         * modules/crypto/gc-md2: Moved from ../.
29304         * modules/crypto/gc-md2-tests: Moved from ../.
29305         * modules/crypto/gc-md4: Moved from ../.
29306         * modules/crypto/gc-md4-tests: Moved from ../.
29307         * modules/crypto/gc-md5: Moved from ../.
29308         * modules/crypto/gc-md5-tests: Moved from ../.
29309         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
29310         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
29311         * modules/crypto/gc-random: Moved from ../.
29312         * modules/crypto/gc-rijndael: Moved from ../.
29313         * modules/crypto/gc-rijndael-tests: Moved from ../.
29314         * modules/crypto/gc-sha1: Moved from ../.
29315         * modules/crypto/gc-sha1-tests: Moved from ../.
29316         * modules/crypto/gc-tests: Moved from ../.
29317         * modules/crypto/hmac-md5: Moved from ../.
29318         * modules/crypto/hmac-md5-tests: Moved from ../.
29319         * modules/crypto/hmac-sha1: Moved from ../.
29320         * modules/crypto/hmac-sha1-tests: Moved from ../.
29321         * modules/crypto/md2: Moved from ../.
29322         * modules/crypto/md2-tests: Moved from ../.
29323         * modules/crypto/md4: Moved from ../.
29324         * modules/crypto/md4-tests: Moved from ../.
29325         * modules/crypto/md5: Moved from ../.
29326         * modules/crypto/md5-tests: Moved from ../.
29327         * modules/crypto/memxor: Moved from ../.
29328         * modules/crypto/rijndael: Moved from ../.
29329         * modules/crypto/rijndael-tests: Moved from ../.
29330         * modules/crypto/sha1: Moved from ../.
29331
29332 2007-03-30  James Youngman  <jay@gnu.org>
29333
29334         * tests/test-stat-time.c (prepare_test): use chmod() rather than
29335         rename() to change the ctime of a file (because ctime is unaffected
29336         by rename on jfs2 on AIX 5.1).
29337         (main): Start by doing cleanup, in case a previous run failed leaving
29338         test files behind.
29339
29340 2007-03-31  Bruno Haible  <bruno@clisp.org>
29341
29342         Support old proprietary implementations of iconv.
29343         * modules/iconv_open: New file.
29344         * lib/iconv_.h: New file.
29345         * m4/iconv_h.m4: New file.
29346         * lib/iconv_open.c: New file.
29347         * lib/iconv_open-aix.gperf: New file.
29348         * lib/iconv_open-hpux.gperf: New file.
29349         * lib/iconv_open-irix.gperf: New file.
29350         * lib/iconv_open-osf.gperf: New file.
29351         * m4/iconv_open.m4: New file.
29352         * modules/linebreak (Depends-on): Add iconv_open.
29353         * modules/striconv (Depends-on): Likewise.
29354         * modules/striconveh (Depends-on): Likewise.
29355         * modules/unicodeio (Depends-on): Likewise.
29356         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
29357         (iconv_t)(-1).
29358         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
29359         conversion if cd is (iconv_t)(-1).
29360         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
29361         is not possible.
29362
29363 2007-03-31  Bruno Haible  <bruno@clisp.org>
29364
29365         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
29366         work on Solaris either. Protect also second use of "autodetect_jp".
29367
29368 2007-03-31  Bruno Haible  <bruno@clisp.org>
29369
29370         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
29371         the function is not present.
29372
29373 2007-03-31  Bruno Haible  <bruno@clisp.org>
29374
29375         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
29376         the function is not present.
29377
29378 2007-03-31  Bruno Haible  <bruno@clisp.org>
29379
29380         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
29381         a bug in HP-UX iconv_open().
29382
29383 2007-03-31  Bruno Haible  <bruno@clisp.org>
29384
29385         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
29386         (Mathematics <math.h>): New section, add fpieee.
29387         (Input/output <stdio.h>): Add fseterr.
29388         (Mathematics <math.h>): New section, add printf-frexp.
29389         (Container data structures): Add sublist.
29390         (Core language properties): Add fpucw, inline.
29391         (Functions for greatest-width integer types <inttypes.h>): Add
29392         imaxabs, imaxdiv, inttypes.
29393         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
29394         isnanl-nolibm, ldexp.
29395         (Mathematics <math.h>): New section, add printf-frexpl.
29396         (Support for systems lacking POSIX:2001): Add fprintf-posix,
29397         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
29398         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
29399         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
29400         (Unicode string functions): Add unistr/u*-mbtoucr.
29401         (Java): Add javacomp-script, javaexec-script.
29402         (C#): Add csharpcomp-script, csharpexec-script.
29403         (Support for building libraries and executables): Add havelib,
29404         relocatable-*.
29405         (Support for maintaining and releasing projects): Renamed from
29406         'Support for maintaining and release projects'. Add announce-gen.
29407
29408 2007-03-31  Bruno Haible  <bruno@clisp.org>
29409
29410         * README: Talk primarily about git.
29411         (git and CVS): Renamed from CVS.
29412         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
29413         gnulib is available through git.
29414         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
29415
29416 2007-03-30  Bruno Haible  <bruno@clisp.org>
29417
29418         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
29419         * lib/poll_.h: Likewise.
29420         * lib/stat_.h: Likewise.
29421         * lib/sys_time_.h: Likewise.
29422         * lib/sysexit_.h: Likewise.
29423         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
29424         * lib/stdbool_.h: Likewise.
29425         * lib/byteswap_.h: Add double-inclusion guard.
29426
29427 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
29428
29429         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
29430
29431 2007-03-30  Karl Berry  <karl@gnu.org>
29432
29433         * config/srclist-update: double space after USA in the license
29434         substitution, since that's how it's usually (?) written.
29435
29436 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
29437
29438         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
29439         reported by Bruno Haible.
29440
29441 2007-03-29  Bruno Haible  <bruno@clisp.org>
29442
29443         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
29444         a bug in AIX iconv().
29445
29446 2007-03-29  Bruno Haible  <bruno@clisp.org>
29447
29448         * modules/ldexpl-tests: New file.
29449         * tests/test-ldexpl.c: New file.
29450
29451 2007-03-29  Bruno Haible  <bruno@clisp.org>
29452
29453         * lib/ldexpl.c: Include fpucw.h.
29454         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
29455         multiplication.
29456         * modules/ldexpl (Depends-on): Add fpucw.
29457
29458 2007-03-29  Bruno Haible  <bruno@clisp.org>
29459
29460         * modules/ldexpl: New file.
29461         * m4/ldexpl.m4: New file.
29462         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
29463         set.
29464         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
29465         REPLACE_LDEXPL.
29466         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
29467         REPLACE_LDEXPL.
29468         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
29469         gl_FUNC_LDEXPL_WORKS.
29470         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
29471         * modules/mathl (Files): Remove lib/ldexpl.c.
29472         (Depends-on): Add ldexpl.
29473
29474 2007-03-29  Bruno Haible  <bruno@clisp.org>
29475
29476         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
29477
29478 2007-03-29  Bruno Haible  <bruno@clisp.org>
29479
29480         * tests/test-striconveh.c (main): Don't assume that a direct conversion
29481         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
29482         and possibly also HP-UX.
29483         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
29484         work on AIX, IRIX, HP-UX, OSF/1.
29485         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
29486         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
29487         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
29488         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
29489         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
29490         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
29491
29492 2007-03-29  Bruno Haible  <bruno@clisp.org>
29493
29494         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
29495
29496 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
29497
29498         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
29499         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
29500
29501 2007-03-29  Eric Blake  <ebb9@byu.net>
29502
29503         * lib/acl-internal.h: Remove redundant include.
29504         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
29505         Cygwin when a file is locked.
29506
29507 2007-03-29  Bruno Haible  <bruno@clisp.org>
29508
29509         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
29510         file.
29511         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
29512
29513 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
29514
29515         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
29516         try to remove a parent directory if the child couldn't be removed
29517         (except for the first rmdir, which could fail because the child
29518         doesn't exist).  Problem reported by Jeff Blaine in
29519         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
29520
29521 2007-03-28  Bruno Haible  <bruno@clisp.org>
29522
29523         * lib/striconveh.c (utf8conv_carefully): New function.
29524         (mem_cd_iconveh_internal): Invoke it.
29525
29526 2007-03-28  Bruno Haible  <bruno@clisp.org>
29527
29528         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
29529         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
29530         input.
29531         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
29532         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
29533         unistr/u8-uctomb.
29534
29535 2007-03-28  Bruno Haible  <bruno@clisp.org>
29536
29537         * modules/unistr/u8-mbtoucr: New file.
29538         * lib/unistr/u8-mbtoucr.c: New file.
29539         * modules/unistr/u16-mbtoucr: New file.
29540         * lib/unistr/u16-mbtoucr.c: New file.
29541         * modules/unistr/u16-mbtoucr: New file.
29542         * lib/unistr/u16-mbtoucr.c: New file.
29543         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
29544
29545 2007-03-27  Simon Josefsson  <simon@josefsson.org>
29546             Bruno Haible  <bruno@clisp.org>
29547
29548         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
29549         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
29550         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
29551
29552         * m4/stdio_h.m4: Add stubs for vasprintf too.
29553
29554         * modules/stdio: Support vasprintf in sed command.
29555
29556         * modules/vasprintf: Depend on stdio for prototypes.  Remove
29557         vasprintf.h.  Add stdio module indicator.
29558
29559         * lib/stdio_.h: Declare asprintf and vasprintf, based on
29560         vasprintf.h.
29561
29562         * lib/vasprintf.h: File removed.
29563
29564         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
29565         * lib/vasprintf.c: Ditto.
29566         * lib/xvasprintf.c: Ditto.
29567         * tests/test-vasprintf-posix.c: Ditto.
29568         * tests/test-vasprintf.c: Ditto.
29569
29570 2007-03-27  Bruno Haible  <bruno@clisp.org>
29571
29572         Make vasnprintf multithread-safe.
29573         * lib/vasnprintf.c (decimal_point_char): New function.
29574         (VASNPRINTF): Use it.
29575         Suggested by Simon Josefsson.
29576
29577 2007-03-27  Eric Blake  <ebb9@byu.net>
29578
29579         Support sub-second birthtime on cygwin.
29580         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
29581         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
29582         (get_stat_birthtime): Also work with st_birthtim.
29583
29584 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
29585
29586         * lib/stat-time.h (USE_BIRTHTIME): Remove.
29587         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
29588         (get_stat_birthtime_ns): Do not try to use "spare" fields.
29589         (get_stat_birthtime_ns): Simplify compile-time tests.
29590         (get_stat_birthtime): Change the API to look like
29591         get_stat_mtime etc., except return a negative tv_nsec on error.
29592         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
29593         Don't check for "spare" fields.
29594         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
29595         or for struct stat.st_birthtime, as these tests aren't used.
29596         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
29597
29598 2007-03-27  Bruno Haible  <bruno@clisp.org>
29599
29600         * lib/stat-time.h: Include <sys/stat.h>.
29601
29602 2007-03-27  James Youngman  <jay@gnu.org>
29603
29604         * lib/stat-time.h (get_stat_birthtime): New function for
29605           retrieving st_birthtime as provided by UFS2 (hence *BSD).
29606         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
29607           and its variants.
29608         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
29609         * modules/stat-time-test: New file.
29610         * tests/test-stat-time.c: New test, devised by Bruno Haible.
29611
29612 2007-03-26  Bruno Haible  <bruno@clisp.org>
29613
29614         Better support of signalling NaNs.
29615         * lib/atanl.c: Include isnanl.h.
29616         (atanl): Perform test for NaN at the beginning of the function and
29617         through a call to isnanl.
29618         * lib/cosl.c: Include isnanl.h.
29619         (cosl): Perform test for NaN at the beginning of the function and
29620         through a call to isnanl.
29621         * lib/ldexpl.c: Include isnanl.h.
29622         (ldexpl): Perform test for NaN through a call to isnanl.
29623         * lib/logl.c: Include isnanl.h.
29624         (logl): Perform test for NaN at the beginning of the function and
29625         through a call to isnanl.
29626         * lib/sinl.c: Include isnanl.h.
29627         (sinl): Perform test for NaN at the beginning of the function and
29628         through a call to isnanl.
29629         * lib/sqrtl.c: Include isnanl.h.
29630         (sqrtl): Perform test for NaN at the beginning of the function and
29631         through a call to isnanl.
29632         * lib/tanl.c: Include isnanl.h.
29633         (tanl): Perform test for NaN at the beginning of the function and
29634         through a call to isnanl.
29635         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
29636         * modules/mathl (Depends-on): Add isnanl.
29637
29638 2007-03-26  Eric Blake  <ebb9@byu.net>
29639
29640         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
29641         regression in logic sense of previous patch.
29642
29643 2007-03-26  Bruno Haible  <bruno@clisp.org>
29644
29645         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
29646         unportable shell command "if ! ...".
29647         Reported by Ralf Wildenhues.
29648
29649 2007-03-25  Bruno Haible  <bruno@clisp.org>
29650
29651         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
29652         <sysexits.h> file, and only add EX_CONFIG.
29653         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
29654         absolute file name and whether it is sufficient. Substitute also
29655         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
29656         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
29657         ABSOLUTE_SYSEXITS_H into sysexits.h.
29658
29659 2007-03-25  Bruno Haible  <bruno@clisp.org>
29660
29661         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
29662         hints is NULL.
29663
29664 2007-03-25  Bruno Haible  <bruno@clisp.org>
29665
29666         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
29667         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
29668
29669 2007-03-25  Bruno Haible  <bruno@clisp.org>
29670
29671         * lib/vasnprintf.c: Include langinfo.h.
29672         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
29673         multithread-safe.
29674         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
29675         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
29676         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29677         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29678         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29679         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29680         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29681         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
29682         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29683         Reported by Simon Josefsson.
29684
29685 2007-03-25  Bruno Haible  <bruno@clisp.org>
29686
29687         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
29688         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
29689         * modules/vasnprintf (Depends-on): Add stdint.
29690
29691 2007-03-25  Bruno Haible  <bruno@clisp.org>
29692
29693         * modules/fpieee: New file.
29694         * m4/fpieee.m4: New file.
29695         * modules/isnan-nolibm (Depends-on): Add fpieee.
29696         * modules/isnanl-nolibm (Depends-on): Add fpieee.
29697         * modules/isnanl (Depends-on): Add fpieee.
29698
29699 2007-03-25  Bruno Haible  <bruno@clisp.org>
29700
29701         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
29702
29703 2007-03-25  Bruno Haible  <bruno@clisp.org>
29704
29705         Avoid test failures on IRIX 6.5.
29706         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
29707         (main): Use it.
29708         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
29709         macros.
29710         (main): Use them.
29711
29712 2007-03-25  Bruno Haible  <bruno@clisp.org>
29713
29714         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
29715         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
29716         exists but doesn't work.
29717         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
29718         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
29719         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
29720         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
29721
29722 2007-03-25  Bruno Haible  <bruno@clisp.org>
29723
29724         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
29725         returns inf. Needed on IRIX 6.5.
29726
29727 2007-03-25  Bruno Haible  <bruno@clisp.org>
29728
29729         * tests/test-frexpl.c: Include isnanl-nolibm.h.
29730         (main): Use isnanl instead of x != x idiom.
29731         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
29732
29733         * tests/test-frexp.c: Include isnan.h.
29734         (main): Use isnan instead of x != x idiom.
29735         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
29736
29737 2007-03-25  Bruno Haible  <bruno@clisp.org>
29738
29739         * tests/test-frexp.c (NaN): New function/macro.
29740         (main): Use it instead of 0.0 / 0.0.
29741         * tests/test-isnan.c (NaN): New function/macro.
29742         (main): Use it instead of 0.0 / 0.0.
29743         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
29744         (test_function): Use it instead of 0.0 / 0.0.
29745         * tests/test-vasprintf-posix.c (NaN): New function/macro.
29746         (test_function): Use it instead of 0.0 / 0.0.
29747         * tests/test-snprintf-posix.h (NaN): New function/macro.
29748         (test_function): Use it instead of 0.0 / 0.0.
29749         * tests/test-sprintf-posix.h (NaN): New function/macro.
29750         (test_function): Use it instead of 0.0 / 0.0.
29751         * tests/test-fprintf-posix.h (NaN): New function/macro.
29752         (test_function): Use it instead of 0.0 / 0.0.
29753         * tests/test-printf-posix.h (NaN): New function/macro.
29754         (test_function): Use it instead of 0.0 / 0.0.
29755
29756         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
29757
29758 2007-03-25  Bruno Haible  <bruno@clisp.org>
29759
29760         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
29761
29762 2007-03-25  Bruno Haible  <bruno@clisp.org>
29763
29764         * lib/regexec.c (merge_state_with_log): Make static.
29765
29766 2007-03-25  Bruno Haible  <bruno@clisp.org>
29767
29768         * lib/trigl.c (kernel_rem_pio2): Make static.
29769
29770 2007-03-25  Bruno Haible  <bruno@clisp.org>
29771
29772         * lib/sincosl.c (sincosl_table): Make static.
29773
29774 2007-03-25  Bruno Haible  <bruno@clisp.org>
29775
29776         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
29777         if the compiler does not support C99.
29778
29779 2007-03-25  Bruno Haible  <bruno@clisp.org>
29780
29781         * modules/time (Makefile.am): Ensure all rule action lines start with a
29782         tab.
29783
29784 2007-03-24  Bruno Haible  <bruno@clisp.org>
29785
29786         * modules/tsearch-tests: New file.
29787         * tests/test-tsearch.sh: New file.
29788         * tests/test-tsearch.c: New file, mostly copied from glibc.
29789
29790         * modules/search-tests: New file.
29791         * tests/test-search.c: New file.
29792
29793         * modules/search: New file.
29794         * lib/search_.h: New file, incorporating lib/tsearch.h.
29795         * m4/search_h.m4: New file.
29796         * lib/tsearch.h: Remove file.
29797         * lib/tsearch.c: Include search.h instead of tsearch.h.
29798         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
29799         HAVE_TSEARCH.
29800         * modules/tsearch (Files): Remove lib/tsearch.h.
29801         (Depends-on): Add search.
29802         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
29803         (Include): Change tsearch.h into search.h.
29804
29805 2007-03-24  Bruno Haible  <bruno@clisp.org>
29806
29807         * modules/fpucw: New file.
29808         * lib/fpucw.h: New file.
29809         * lib/frexp.c: Include fpucw.h.
29810         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
29811         (FUNC): Use them.
29812         * lib/printf-frexp.c: Include fpucw.h.
29813         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
29814         (FUNC): Use them.
29815         * lib/vasnprintf.c: Include fpucw.h.
29816         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
29817         'long double' calculations.
29818         * tests/test-frexpl.c: Include fpucw.h.
29819         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
29820         * tests/test-printf-frexpl.c: Include fpucw.h.
29821         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
29822         * modules/frexpl (Depends-on): Add fpucw.
29823         * modules/printf-frexpl (Depends-on): Likewise.
29824         * modules/fprintf-posix (Depends-on): Likewise.
29825         * modules/snprintf-posix (Depends-on): Likewise.
29826         * modules/sprintf-posix (Depends-on): Likewise.
29827         * modules/vasnprintf-posix (Depends-on): Likewise.
29828         * modules/vasprintf-posix (Depends-on): Likewise.
29829         * modules/vfprintf-posix (Depends-on): Likewise.
29830         * modules/vsnprintf-posix (Depends-on): Likewise.
29831         * modules/vsprintf-posix (Depends-on): Likewise.
29832         * modules/frexpl-tests (Depends-on): Likewise.
29833         * modules/printf-frexpl-tests (Depends-on): Likewise.
29834
29835 2007-03-24  Bruno Haible  <bruno@clisp.org>
29836
29837         * lib/float+.h: New file.
29838         * lib/isnan.c: Include float+.h.
29839         (SIZE): New macro.
29840         (FUNC): Compare only SIZE bytes of the value.
29841         * lib/vasnprintf.c: Include float+.h.
29842         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
29843         SIZEOF_LDBL or SIZEOF_DBL bytes.
29844         * modules/isnan-nolibm (Files): Add lib/float+.h.
29845         * modules/isnanl-nolibm (Files): Add lib/float+.h.
29846         * modules/isnanl (Files): Add lib/float+.h.
29847         * modules/vasnprintf (Files): Add lib/float+.h.
29848
29849 2007-03-24  Bruno Haible  <bruno@clisp.org>
29850
29851         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
29852         include isnanl-nolibm.h.
29853
29854 2007-03-24  Bruno Haible  <bruno@clisp.org>
29855
29856         * tests/test-read-file.c (main): Don't produce spurious output for
29857         expected situations. Make the test fail if it encountered unexpected
29858         results.
29859
29860 2007-03-24  Bruno Haible  <bruno@clisp.org>
29861
29862         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
29863         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
29864
29865 2007-03-24  Bruno Haible  <bruno@clisp.org>
29866
29867         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
29868
29869 2007-03-24  Bruno Haible  <bruno@clisp.org>
29870
29871         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
29872         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
29873
29874         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
29875         * modules/utf8-ucs4: Turn into a symbolic link to module
29876         unistr/u8-mbtouc.
29877
29878         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
29879         utf8-ucs4-unsafe.
29880         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
29881         unistr/u8-mbtouc-unsafe.
29882
29883         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
29884         * modules/utf16-ucs4: Turn into a symbolic link to module
29885         unistr/u16-mbtouc.
29886
29887         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
29888         utf16-ucs4-unsafe.
29889         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
29890         unistr/u16-mbtouc-unsafe.
29891
29892         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
29893         * modules/ucs4-utf8: Turn into a symbolic link to module
29894         unistr/u8-ubtomb.
29895
29896         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
29897         * modules/ucs4-utf16: Turn into a symbolic link to module
29898         unistr/u16-ubtomb.
29899
29900 2007-03-24  Bruno Haible  <bruno@clisp.org>
29901
29902         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
29903         Enable the function only if HAVE_INLINE.
29904         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
29905         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
29906         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
29907         Enable the function only if HAVE_INLINE.
29908         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
29909         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
29910         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
29911         Enable the function only if HAVE_INLINE.
29912         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
29913         Enable the function only if HAVE_INLINE.
29914         * modules/utf8-ucs4: Update.
29915         * modules/utf8-ucs4-unsafe: Update.
29916         * modules/utf16-ucs4: Update.
29917         * modules/utf16-ucs4-unsafe: Update.
29918         * modules/ucs4-utf8: Update.
29919         * modules/ucs4-utf16: Update.
29920
29921 2007-03-24  Bruno Haible  <bruno@clisp.org>
29922
29923         * lib/utf8-ucs4.h: Remove file.
29924         * lib/utf8-ucs4-unsafe.h: Remove file.
29925         * lib/utf16-ucs4.h: Remove file.
29926         * lib/utf16-ucs4-unsafe.h: Remove file.
29927         * lib/ucs4-utf8.h: Remove file.
29928         * lib/ucs4-utf16.h: Remove file.
29929         * lib/unistr.h: Include their previous contents.
29930         * m4/utf-ucs4.m4: Remove file.
29931         * m4/ucs4-utf.m4: Remove file.
29932         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
29933         (Depends-on): Add unistr/base.
29934         (configure.ac): Remove gl_UTF_UCS4.
29935         (Makefile.am): Update.
29936         (Include): Change to unistr.h.
29937         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
29938         (Depends-on): Add unistr/base.
29939         (configure.ac): Remove gl_UTF_UCS4.
29940         (Makefile.am): Update.
29941         (Include): Change to unistr.h.
29942         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
29943         (Depends-on): Add unistr/base.
29944         (configure.ac): Remove gl_UTF_UCS4.
29945         (Makefile.am): Update.
29946         (Include): Change to unistr.h.
29947         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
29948         (Depends-on): Add unistr/base.
29949         (configure.ac): Remove gl_UTF_UCS4.
29950         (Makefile.am): Update.
29951         (Include): Change to unistr.h.
29952         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
29953         (Depends-on): Add unistr/base.
29954         (configure.ac): Remove gl_UCS4_UTF.
29955         (Makefile.am): Update.
29956         (Include): Change to unistr.h.
29957         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
29958         (Depends-on): Add unistr/base.
29959         (configure.ac): Remove gl_UCS4_UTF.
29960         (Makefile.am): Update.
29961         (Include): Change to unistr.h.
29962         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
29963         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
29964         utf8-ucs4-unsafe.h.
29965         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
29966         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
29967         utf16-ucs4-unsafe.h.
29968         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
29969         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
29970         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
29971         * lib/unistr/u8-strchr.c: Likewise.
29972         * lib/unistr/u8-strrchr.c: Likewise.
29973         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
29974         * lib/unistr/u16-strchr.c: Likewise.
29975         * lib/unistr/u16-strrchr.c: Likewise.
29976         * lib/striconveh.c: Update.
29977         * lib/linebreak.c: Update.
29978
29979 2007-03-24  Bruno Haible  <bruno@clisp.org>
29980
29981         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
29982         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
29983
29984 2007-03-22  Bruno Haible  <bruno@clisp.org>
29985
29986         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
29987
29988 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
29989
29990         * MODULES.html.sh (File system functions): New module write-any-file.
29991         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
29992         * m4/write-any-file.m4: New files.
29993
29994 2007-03-23  Eric Blake  <ebb9@byu.net>
29995
29996         * gnulib-tool: Rearrange space-tab sequences, since some editors
29997         like to eat them.
29998
29999 2007-03-23  Eric Blake  <ebb9@byu.net>
30000
30001         * lib/version-etc.c (version_etc_va): Update license wording to
30002         be more concise.  Recommended by Richard Stallman.
30003
30004 2007-03-22  Bruno Haible  <bruno@clisp.org>
30005
30006         * lib/poll.c (MSG_PEEK): New fallback definition.
30007
30008 2007-03-22  Bruno Haible  <bruno@clisp.org>
30009
30010         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
30011         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
30012         (main): Update.
30013         Fixes a compilation error on BeOS.
30014
30015 2007-03-22  Bruno Haible  <bruno@clisp.org>
30016
30017         * modules/frexpl-tests: New file.
30018         * tests/test-frexpl.c: New file.
30019
30020         * modules/frexpl: New file.
30021         * m4/frexpl.m4: New file.
30022         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
30023         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
30024         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
30025         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
30026         (Depends-on): Add frexpl. Remove isnanl-nolibm.
30027         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
30028
30029 2007-03-22  Bruno Haible  <bruno@clisp.org>
30030
30031         * lib/frexpl.c: Share code with lib/frexp.c.
30032         * modules/mathl (Files): Add lib/frexp.c.
30033         (Depends-on): Add isnanl-nolibm.
30034
30035 2007-03-22  Bruno Haible  <bruno@clisp.org>
30036
30037         * modules/printf-frexp (Files): Add m4/frexp.m4.
30038         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
30039         only if the found frexp function actually works.
30040
30041 2007-03-22  Bruno Haible  <bruno@clisp.org>
30042
30043         * lib/frexp.c: Remove older implementation that uses divisions.
30044
30045 2007-03-21  Bruno Haible  <bruno@clisp.org>
30046
30047         * modules/frexp-tests: New file.
30048         * tests/test-frexp.c: New file.
30049
30050         * modules/frexp: New file.
30051         * lib/frexp.c: New file.
30052         * m4/frexp.m4: New file.
30053         * lib/math_.h (frexp): New declaration.
30054         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
30055         REPLACE_FREXP.
30056         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
30057
30058 2007-03-21  Bruno Haible  <bruno@clisp.org>
30059
30060         * modules/isnanl-tests: New file.
30061         * tests/test-isnanl.c: New file.
30062
30063         * modules/isnanl: New file.
30064         * lib/isnanl.h: New file.
30065         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
30066         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
30067         gl_FUNC_ISNANL_WORKS.
30068         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
30069         New macros.
30070
30071 2007-03-21  Bruno Haible  <bruno@clisp.org>
30072
30073         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
30074         lib/isnanl.h.
30075         (Include): Update.
30076         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
30077         * lib/vasnprintf.c: Update.
30078         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
30079         tests/test-isnanl.h, remove tests/test-isnanl.c.
30080         (Makefile.am): Update.
30081         * tests/test-isnanl-nolibm.c: New file.
30082         * tests/test-isnanl.h: New file.
30083         * tests/test-isnanl.c: Remove file.
30084
30085 2007-03-21  Jim Meyering  <jim@meyering.net>
30086
30087         When trying to open ".", treat ESTALE like EACCES.
30088         * lib/savewd.c (savewd_save): Resort to forking not just upon
30089         failure with EACCES, but also when errno is ESTALE.
30090
30091 2007-03-20  Bruno Haible  <bruno@clisp.org>
30092
30093         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
30094         Needed on AIX 5.1. Reported by Matthew Woehlke.
30095
30096 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30097
30098         Suggestions by Bruno Haible:
30099         * lib/acl-internal.h: Include "gettext.h" rather than rolling
30100         our own.
30101         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
30102         * modules/acl (Depends-on): Add gettext.
30103
30104 2007-03-19  Bruno Haible  <bruno@clisp.org>
30105
30106         * modules/iconvme: Remove file.
30107         * lib/iconvme.h: Remove file.
30108         * lib/iconvme.c: Remove file.
30109         * m4/iconvme.m4: Remove file.
30110
30111 2007-03-19  Bruno Haible  <bruno@clisp.org>
30112
30113         * doc/relocatable-maint.texi: Break long shell script line.
30114         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
30115
30116 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30117
30118         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
30119         handle file_has_acl.
30120         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
30121         * lib/acl.c: Move header inclusions and related macro defns into
30122         lib/acl-internal.h.
30123         (S_ISLNK): Remove defn, since that's now done for us.
30124         (file_has_acl): Move to lib/file-has-acl.c.
30125         Call acl_trivial if available.  This is the crucial part of the fix.
30126         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
30127         shared within the library.  Rewrite a bit, partly to make it compatible
30128         with the GNU coding style.
30129         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
30130         Remove unnecessary double-quotes.
30131         Don't test for acl_to_text; the build will catch that.
30132         Replace acl_entries if it doesn't exist and it is needed.
30133         Check for -lsec and acl_trivial (as used on Solaris 10).
30134         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
30135         lib/file-has-acl.c.
30136         (Depends-on): Add sys_stat, for S_ISLNK.
30137
30138 2007-03-19  Ben Pfaff  <blp@gnu.org>
30139
30140         * doc/gnulib.texi: Fix typos.
30141         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
30142
30143 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30144
30145         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
30146         If size is zero here, buf must be zero.
30147
30148 2007-03-19  Simon Josefsson  <simon@josefsson.org>
30149
30150         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
30151         <bruno@clisp.org>.
30152
30153 2007-03-18  Bruno Haible  <bruno@clisp.org>
30154
30155         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
30156         Suggested by Eric Blake.
30157
30158 2007-03-18  Ben Pfaff  <blp@gnu.org>
30159
30160         * doc/relocatable.texi: Recommend using as prefix a directory
30161         that does not exist and will never be created.  Based on
30162         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
30163         and others.
30164
30165 2007-03-17  Bruno Haible  <bruno@clisp.org>
30166
30167         * lib/fchownat.c: Include lchown.h.
30168
30169 2007-03-17  Bruno Haible  <bruno@clisp.org>
30170
30171         Fix endless loop when the given allocated size was > INT_MAX.
30172         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
30173         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
30174         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
30175         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
30176         * lib/sprintf.c (sprintf): Likewise.
30177
30178 2007-03-17  Bruno Haible  <bruno@clisp.org>
30179
30180         * tests/test-argp-2.sh (func_compare): Output a context diff.
30181
30182 2007-03-17  Bruno Haible  <bruno@clisp.org>
30183
30184         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
30185         locale's decimal-point character.
30186
30187 2007-03-17  Bruno Haible  <bruno@clisp.org>
30188
30189         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
30190         before comparing it. Needed because on some platforms (e.g. x86) a
30191         'long double' occupies less bytes than sizeof (long double).
30192
30193 2007-03-17  Bruno Haible  <bruno@clisp.org>
30194
30195         * tests/test-crc.c (main): Make printf statements 64-bit clean.
30196         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
30197         * tests/test-getaddrinfo.c (simple): Likewise.
30198         * tests/test-read-file.c (main): Likewise.
30199
30200 2007-03-17  Bruno Haible  <bruno@clisp.org>
30201
30202         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
30203
30204 2007-03-17  Bruno Haible  <bruno@clisp.org>
30205
30206         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
30207         unused variable.
30208
30209 2007-03-17  Bruno Haible  <bruno@clisp.org>
30210
30211         * tests/test-c-strcasecmp.c: Include c-strcase.h.
30212         * tests/test-c-strncasecmp.c: Likewise.
30213
30214 2007-03-17  Bruno Haible  <bruno@clisp.org>
30215
30216         * modules/stdlib (Depends-on): Add unistd.
30217         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
30218         Needed for MacOS X 10.3.
30219
30220 2007-03-17  Bruno Haible  <bruno@clisp.org>
30221
30222         * lib/unistr/u-strdup.h: Include <stdlib.h>.
30223
30224 2007-03-17  Bruno Haible  <bruno@clisp.org>
30225
30226         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
30227
30228 2007-03-17  Bruno Haible  <bruno@clisp.org>
30229
30230         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
30231         to reflect files copied from gnulib (with or without modifications).
30232         Suggested by Jim Meyering.
30233
30234 2007-03-17  Eric Blake  <ebb9@byu.net>
30235
30236         * NEWS: Document stdlib change from 2007-02-18.
30237
30238 2007-03-17  Jim Meyering  <jim@meyering.net>
30239
30240         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
30241         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
30242         someone uses a name containing shell meta-characters.
30243         Reported by Alfred M. Szmidt.
30244
30245         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
30246
30247 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
30248
30249         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
30250         and copy gettext configuration files only if configure.ac contains
30251         a use of AM_GNU_GETTEXT_VERSION.
30252
30253 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
30254
30255         * build-aux/bootstrap (gnulib_name): New variable.
30256         (gnulib_tool_options): Use it.
30257
30258 2007-03-13  Simon Josefsson  <simon@josefsson.org>
30259
30260         * tests/test-des.c: Use new namespace.
30261
30262 2007-03-15  Bruno Haible  <bruno@clisp.org>
30263
30264         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
30265         Reported by James Youngman <jay@gnu.org>.
30266
30267 2007-03-15  Bruno Haible  <bruno@clisp.org>
30268
30269         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
30270         declared prototype. Needed with cc on OSF/1 5.1.
30271
30272 2007-03-15  Bruno Haible  <bruno@clisp.org>
30273
30274         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
30275         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
30276         (struct gl_list_implementation): Add dispose_fn argument to the
30277         'create_empty', 'create' methods.
30278         (struct gl_list_impl_base): Add field 'dispose_fn'.
30279         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
30280         argument.
30281         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
30282         dispose_fn argument.
30283         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
30284         dispose_fn on the dropped values.
30285         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
30286         dispose_fn argument.
30287         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
30288         dropped values.
30289         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
30290         (gl_tree_remove_node): Call dispose_fn on the dropped value.
30291         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
30292         (gl_tree_remove_node): Call dispose_fn on the dropped value.
30293         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
30294         argument.
30295         (gl_tree_list_free): Call dispose_fn on the dropped values.
30296         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
30297         the dropped values.
30298         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
30299         Add dispose_fn argument.
30300         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
30301         Call dispose_fn on the dropped values.
30302         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
30303         Add dispose_fn argument.
30304         (gl_sublist_create): Initialize the 'dispose_fn' field.
30305         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
30306         * tests/test-array_list.c (main): Update.
30307         * tests/test-carray_list.c (main): Update.
30308         * tests/test-avltree_list.c (main): Update.
30309         * tests/test-rbtree_list.c (main): Update.
30310         * tests/test-avltreehash_list.c (main): Update.
30311         * tests/test-rbtreehash_list.c (main): Update.
30312         * tests/test-linked_list.c (main): Update.
30313         * tests/test-linkedhash_list.c (main): Update.
30314         * tests/test-array_oset.c (main): Update.
30315
30316 2007-03-15  Bruno Haible  <bruno@clisp.org>
30317
30318         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
30319         (gl_oset_create_empty): Add dispose_fn argument.
30320         (struct gl_oset_implementation): Add dispose_fn argument to
30321         'create_empty' method.
30322         (struct gl_oset_impl_base): Add dispose_fn field.
30323         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
30324         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
30325         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
30326         values.
30327         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
30328         (gl_tree_oset_free): Call dispose_fn on the dropped values.
30329         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
30330         dropped value.
30331         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
30332         dropped value.
30333         * tests/test-array_oset.c (main): Update.
30334         * tests/test-avltree_oset.c (main): Update.
30335         * tests/test-rbtree_oset.c (main): Update.
30336         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
30337
30338 2007-03-13  Bruno Haible  <bruno@clisp.org>
30339
30340         * tests/test-stdbool.c (i): Update after last patch.
30341
30342 2007-03-12  Bruno Haible  <bruno@clisp.org>
30343
30344         * lib/quotearg.c: Include <wctype.h> early, before the definition of
30345         the iswprint macro. Needed on Solaris 2.5.1.
30346
30347 2007-03-12  Bruno Haible  <bruno@clisp.org>
30348
30349         * tests/test-printf-frexp.c (main): Declare x as volatile.
30350
30351 2007-03-12  Simon Josefsson  <simon@josefsson.org>
30352
30353         * doc/gnulib.texi (Build robot for gnulib): New section.
30354
30355 2007-03-12  Jim Meyering  <jim@meyering.net>
30356
30357         * build-aux/bootstrap: New file.
30358         * build-aux/bootstrap.conf: New file, from coreutils.
30359
30360 2007-03-11  Bruno Haible  <bruno@clisp.org>
30361
30362         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
30363
30364 2007-03-12  Simon Josefsson  <simon@josefsson.org>
30365
30366         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
30367         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
30368         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
30369
30370 2007-03-11  Bruno Haible  <bruno@clisp.org>
30371
30372         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
30373         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
30374
30375 2007-03-11  Bruno Haible  <bruno@clisp.org>
30376
30377         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
30378         formula. Needed for SunPRO C 5.0.
30379
30380 2007-03-11  Bruno Haible  <bruno@clisp.org>
30381
30382         * modules/long-options (Depends-on): Add getopt.
30383
30384 2007-03-11  Bruno Haible  <bruno@clisp.org>
30385
30386         * modules/modechange (Depends-on): Add stdbool.
30387
30388 2007-03-11  Bruno Haible  <bruno@clisp.org>
30389
30390         * modules/i-ring (Depends-on): Add stdbool.
30391
30392 2007-03-11  Bruno Haible  <bruno@clisp.org>
30393
30394         * modules/gc-des (Depends-on): Add stdbool.
30395
30396 2007-03-11  Bruno Haible  <bruno@clisp.org>
30397
30398         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
30399
30400 2007-03-11  Bruno Haible  <bruno@clisp.org>
30401
30402         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
30403
30404 2007-03-11  Bruno Haible  <bruno@clisp.org>
30405
30406         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
30407
30408 2007-03-11  Bruno Haible  <bruno@clisp.org>
30409
30410         * lib/vasnprintf.c (sprintf): Undefine.
30411
30412 2007-03-11  Bruno Haible  <bruno@clisp.org>
30413
30414         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
30415         initializers in SunPRO C and Compaq C compilers.
30416
30417 2007-03-11  Bruno Haible  <bruno@clisp.org>
30418
30419         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
30420         decrementing code ANSI C compliant.
30421
30422 2007-03-11  Bruno Haible  <bruno@clisp.org>
30423
30424         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
30425         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
30426
30427 2007-03-11  Bruno Haible  <bruno@clisp.org>
30428
30429         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
30430         <stdbool.h> substitute doesn't pass.
30431
30432 2007-03-11  Bruno Haible  <bruno@clisp.org>
30433
30434         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
30435
30436 2007-03-11  Bruno Haible  <bruno@clisp.org>
30437
30438         * gnulib-tool (func_create_megatestdir): Create also an autobuild
30439         script, for submission to autobuild.josefsson.org.
30440
30441 2007-03-10  Bruno Haible  <bruno@clisp.org>
30442
30443         * modules/canonicalize-lgpl-tests: New file.
30444         * tests/test-canonicalize-lgpl.sh: New file.
30445         * tests/test-canonicalize-lgpl.c: New file.
30446
30447         * modules/c-strcase-tests: New file.
30448         * tests/test-c-strcase.sh: New file.
30449         * tests/test-c-strcasecmp.c: New file.
30450         * tests/test-c-strncasecmp.c: New file.
30451
30452         * modules/atexit-tests: New file.
30453         * tests/test-atexit.sh: New file.
30454         * tests/test-atexit.c: New file.
30455
30456 2007-03-10  Bruno Haible  <bruno@clisp.org>
30457
30458         * tests/test-binary-io.sh: Use temporary filenames that are not so
30459         likely to clash with those of other tests (in a parallel make).
30460         * tests/test-binary-io.c: Likewise.
30461
30462 2007-03-10  Bruno Haible  <bruno@clisp.org>
30463
30464         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
30465         fallback; use #error instead.
30466         Suggested by Simon Josefsson.
30467
30468 2007-03-10  Bruno Haible  <bruno@clisp.org>
30469
30470         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
30471         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
30472         first and the last.
30473
30474 2007-03-10  Bruno Haible  <bruno@clisp.org>
30475
30476         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
30477
30478 2007-03-10  Bruno Haible  <bruno@clisp.org>
30479
30480         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
30481         "make distcheck".
30482         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
30483         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
30484         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
30485
30486 2007-03-10  Bruno Haible  <bruno@clisp.org>
30487
30488         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
30489         variable.
30490         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
30491         variable.
30492
30493 2007-03-09  Eric Blake  <ebb9@byu.net>
30494         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
30495
30496         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
30497         types are not being provided by gnulib.
30498         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
30499         types are supported.
30500
30501 2007-03-10  Bruno Haible  <bruno@clisp.org>
30502
30503         * lib/stdio_.h (__attribute__): New macro.
30504         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
30505         vsprintf): Specify __attribute__ __format__ for GCC.
30506         Suggested by Eric Blake.
30507
30508 2007-03-09  Bruno Haible  <bruno@clisp.org>
30509
30510         * modules/printf-posix-tests: New file.
30511         * tests/test-printf-posix.sh: New file.
30512         * tests/test-printf-posix.c: New file.
30513
30514         * modules/printf-posix: New file.
30515         * lib/printf.c: New file.
30516         * m4/printf-posix-rpl.m4: New file.
30517         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
30518         REPLACE_PRINTF.
30519         * lib/stdio_.h (printf): New declaration.
30520         (format, __format__, ____printf____, ____scanf____, ____strftime____,
30521         ____strfmon____): New macros.
30522         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
30523         REPLACE_PRINTF.
30524
30525 2007-03-09  Bruno Haible  <bruno@clisp.org>
30526
30527         * tests/test-vasnprintf-posix2.sh: New file.
30528         * tests/test-vasnprintf-posix2.c: New file.
30529         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
30530         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
30531         (Makefile.am): Activate test-vasnprintf-posix2.sh.
30532
30533         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
30534         a locale dependent decimal point, rather than always '.'.
30535
30536 2007-03-09  Eric Blake  <ebb9@byu.net>
30537
30538         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
30539         spite of platforms like Tandem/NSK that define it to -1.
30540
30541 2007-03-08  Bruno Haible  <bruno@clisp.org>
30542
30543         * modules/vprintf-posix-tests: New file.
30544         * tests/test-vprintf-posix.sh: New file.
30545         * tests/test-vprintf-posix.c: New file.
30546         * tests/test-printf-posix.h: New file.
30547
30548         * modules/vprintf-posix: New file.
30549         * lib/vprintf.c: New file.
30550         * m4/vprintf-posix.m4: New file.
30551         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
30552         REPLACE_VPRINTF.
30553         * lib/stdio_.h (vprintf): New declaration.
30554         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
30555         REPLACE_VPRINTF.
30556
30557 2007-03-08  Bruno Haible  <bruno@clisp.org>
30558
30559         * modules/fprintf-posix-tests: New file.
30560         * tests/test-fprintf-posix.sh: New file.
30561         * tests/test-fprintf-posix.c: New file.
30562
30563         * modules/fprintf-posix: New file.
30564         * lib/fprintf.c: New file.
30565         * m4/fprintf-posix.m4: New file.
30566         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
30567         REPLACE_FPRINTF.
30568         * lib/stdio_.h (fprintf): New declaration.
30569         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
30570         REPLACE_FPRINTF.
30571
30572 2007-03-08  Bruno Haible  <bruno@clisp.org>
30573
30574         * modules/vfprintf-posix-tests: New file.
30575         * tests/test-vfprintf-posix.sh: New file.
30576         * tests/test-vfprintf-posix.c: New file.
30577         * tests/test-fprintf-posix.h: New file.
30578         * tests/test-fprintf-posix.out: New file.
30579
30580         * modules/vfprintf-posix: New file.
30581         * lib/vfprintf.c: New file.
30582         * m4/vfprintf-posix.m4: New file.
30583         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
30584         REPLACE_VFPRINTF.
30585         * lib/stdio_.h (vfprintf): New declaration.
30586         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
30587         REPLACE_VFPRINTF.
30588
30589 2007-03-08  Bruno Haible  <bruno@clisp.org>
30590
30591         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
30592
30593 2007-03-08  Bruno Haible  <bruno@clisp.org>
30594
30595         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
30596         instead of 'expr' invocations.
30597         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30598         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30599         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30600         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30601         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30602         Suggested by Paul Eggert.
30603
30604 2007-03-08  Bruno Haible  <bruno@clisp.org>
30605
30606         * modules/fseterr-tests: New file.
30607         * tests/test-fseterr.c: New file.
30608
30609         * modules/fseterr: New file.
30610         * lib/fseterr.h: New file.
30611         * lib/fseterr.c: New file.
30612
30613 2007-03-08  Bruno Haible  <bruno@clisp.org>
30614
30615         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
30616         * lib/getopt_.h: Likewise.
30617         * lib/mbswidth.h: Likewise.
30618         * lib/setenv.h: Likewise.
30619         * lib/vasnprintf.h: Likewise.
30620         * lib/vasprintf.h: Likewise.
30621         * lib/verror.h: Likewise.
30622         * lib/xsetenv.h: Likewise.
30623         * lib/xvasprintf.h: Likewise.
30624
30625 2007-03-08  Jim Meyering  <jim@meyering.net>
30626
30627         * users.txt: Add parted.
30628
30629         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
30630
30631 2007-03-07  Bruno Haible  <bruno@clisp.org>
30632
30633         * m4/printf.m4: Make the shell script snippets copy&pastable.
30634
30635 2007-03-02  Bruno Haible  <bruno@clisp.org>
30636
30637         * lib/netinet_in_.h: New file.
30638         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
30639         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
30640         * modules/netinet_in (Files): Add lib/netinet_in_.h.
30641         (Depends-on): Add absolute-header.
30642         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
30643         into netinet/in.h.
30644
30645 2007-03-03  Bruno Haible  <bruno@clisp.org>
30646
30647         * lib/sys_select_.h: New file.
30648         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
30649         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
30650         * modules/sys_select (Files): Add lib/sys_select_.h.
30651         (Depends-on): Add absolute-header.
30652         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
30653         into sys/select.h.
30654
30655 2007-03-02  Bruno Haible  <bruno@clisp.org>
30656
30657         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
30658         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
30659         values.
30660         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
30661         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
30662         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
30663         * modules/sys_socket (Depends-on): Add absolute-header.
30664         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
30665         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
30666         (Include): Remove requirement of inclusion of <sys/types.h>.
30667
30668 2007-03-02  Bruno Haible  <bruno@clisp.org>
30669
30670         * lib/byteswap_.h (bswap_32): Fix formula.
30671
30672 2007-03-06  Bruno Haible  <bruno@clisp.org>
30673
30674         * modules/sprintf-posix-tests: New file.
30675         * tests/test-sprintf-posix.c: New file.
30676
30677         * modules/sprintf-posix: New file.
30678         * lib/sprintf.c: New file.
30679         * m4/sprintf-posix.m4: New file.
30680         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
30681         REPLACE_SPRINTF.
30682         * lib/stdio_.h (sprintf): New declaration.
30683         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
30684         REPLACE_SPRINTF.
30685
30686 2007-03-06  Bruno Haible  <bruno@clisp.org>
30687
30688         * modules/vsprintf-posix-tests: New file.
30689         * tests/test-vsprintf-posix.c: New file.
30690         * tests/test-sprintf-posix.h: New file.
30691
30692         * modules/vsprintf-posix: New file.
30693         * lib/vsprintf.c: New file.
30694         * m4/vsprintf-posix.m4: New file.
30695         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
30696         REPLACE_VSPRINTF.
30697         * lib/stdio_.h (vsprintf): New declaration.
30698         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
30699         REPLACE_VSPRINTF.
30700
30701 2007-03-06  Bruno Haible  <bruno@clisp.org>
30702
30703         * modules/vsnprintf (Depend-on): Remove minmax.
30704
30705 2007-03-06  Bruno Haible  <bruno@clisp.org>
30706
30707         * modules/snprintf-posix-tests: New file.
30708         * tests/test-snprintf-posix.c: New file.
30709
30710         * modules/snprintf-posix: New file.
30711         * m4/snprintf-posix.m4: New file.
30712         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
30713         gl_FUNC_SNPRINTF.
30714         (gl_FUNC_SNPRINTF): Invoke it.
30715         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
30716         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
30717         is set.
30718         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
30719
30720 2007-03-06  Bruno Haible  <bruno@clisp.org>
30721
30722         * modules/vsnprintf-posix-tests: New file.
30723         * tests/test-vsnprintf-posix.c: New file.
30724         * tests/test-snprintf-posix.h: New file.
30725
30726         * modules/vsnprintf-posix: New file.
30727         * m4/vsnprintf-posix.m4: New file.
30728         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
30729         gl_FUNC_VSNPRINTF.
30730         (gl_FUNC_VSNPRINTF): Invoke it.
30731         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
30732         * lib/stdio_.h (vsnprintf): Define as a replacement if
30733         REPLACE_VSNPRINTF is set.
30734         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
30735
30736 2007-03-06  Bruno Haible  <bruno@clisp.org>
30737
30738         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
30739         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
30740
30741 2007-03-06  Bruno Haible  <bruno@clisp.org>
30742
30743         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
30744         (asinl): Declare also if HAVE_DECL_ASINL is set.
30745         (atanl): Declare also if HAVE_DECL_ATANL is set.
30746         (ceill): Declare also if HAVE_DECL_CEILL is set.
30747         (cosl): Declare also if HAVE_DECL_COSL is set.
30748         (expl): Declare also if HAVE_DECL_EXPL is set.
30749         (floorl): Declare also if HAVE_DECL_FLOORL is set.
30750         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
30751         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
30752         (logl): Declare also if HAVE_DECL_LOGL is set.
30753         (sinl): Declare also if HAVE_DECL_SINL is set.
30754         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
30755         (tanl): Declare also if HAVE_DECL_TANL is set.
30756         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
30757         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
30758         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
30759         declaration of frexpl, ldexpl.
30760         * modules/printf-frexpl (Depends-on): Add math.
30761         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
30762
30763 2007-03-05  Bruno Haible  <bruno@clisp.org>
30764
30765         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
30766         frexpl and ldexpl are declared.
30767         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
30768
30769 2007-03-05  Bruno Haible  <bruno@clisp.org>
30770
30771         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
30772         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
30773
30774 2007-03-05  Bruno Haible  <bruno@clisp.org>
30775
30776         * lib/stdio_.h: Include <stddef.h>.
30777
30778 2007-03-05  Bruno Haible  <bruno@clisp.org>
30779
30780         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
30781
30782 2007-03-05  Bruno Haible  <bruno@clisp.org>
30783
30784         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
30785         NetBSD 4, from Ralf Wildenhues.
30786
30787 2007-03-04  Bruno Haible  <bruno@clisp.org>
30788
30789         * lib/vasprintf.h: Update #if logic for the case when the functions
30790         exist but are overridden.
30791
30792 2007-03-04  Bruno Haible  <bruno@clisp.org>
30793
30794         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
30795         implementations: glibc-2.4 and MacOS X 10.3.
30796         * tests/test-vasnprintf-posix.c (test_function): Test also the case
30797         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
30798         * tests/test-vasprintf-posix.c (test_function): Likewise.
30799
30800 2007-03-04  Bruno Haible  <bruno@clisp.org>
30801
30802         * modules/vasprintf-posix-tests: New file.
30803         * tests/test-vasprintf-posix.c: New file.
30804
30805         * modules/vasprintf-posix: New file.
30806         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
30807         defined.
30808         * m4/vasprintf-posix.m4: New file.
30809         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
30810         gl_FUNC_VASPRINTF.
30811         (gl_FUNC_VASPRINTF): Invoke it.
30812         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
30813         here.
30814         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
30815
30816 2007-03-04  Bruno Haible  <bruno@clisp.org>
30817
30818         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
30819         REPLACE_GETTIMEOFDAY.
30820         * modules/sys_time (Makefile.am): Likewise.
30821         * m4/sys_time_h.m4: Likewise.
30822         * m4/gettimeofday.m4: Likewise.
30823
30824 2007-03-04  Bruno Haible  <bruno@clisp.org>
30825
30826         * modules/vasnprintf-posix-tests: New file.
30827         * tests/test-vasnprintf-posix.c: New file.
30828
30829         * modules/vasnprintf-posix: New file.
30830         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
30831         printf-frexpl.h.
30832         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
30833         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
30834         REPLACE_VASNPRINTF is defined.
30835         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
30836         gl_FUNC_VASNPRINTF.
30837         (gl_FUNC_VASNPRINTF): Invoke it.
30838         * m4/vasnprintf-posix.m4: New file.
30839         * m4/printf.m4: New file.
30840
30841 2007-03-04  Bruno Haible  <bruno@clisp.org>
30842
30843         Compile progreloc.c only if --enable-relocatable is specified.
30844         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
30845         if --enable-relocatable was specified.
30846         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
30847         lib_SOURCES.
30848
30849 2007-03-04  Jim Meyering  <jim@meyering.net>
30850
30851         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
30852         Use it consistently, rather than enumerating errno constants.
30853
30854 2007-03-04  Bruno Haible  <bruno@clisp.org>
30855
30856         * modules/xvasprintf-tests: New file.
30857         * tests/test-xvasprintf.c: New file.
30858
30859         * modules/vasprintf-tests: New file.
30860         * tests/test-vasprintf.c: New file.
30861
30862         * modules/vasnprintf-tests: New file.
30863         * tests/test-vasnprintf.c: New file.
30864
30865         * modules/vsnprintf-tests: New file.
30866         * tests/test-vsnprintf.c: New file.
30867
30868         * modules/snprintf-tests: New file.
30869         * tests/test-snprintf.c: New file.
30870
30871 2007-03-04  Bruno Haible  <bruno@clisp.org>
30872
30873         Compile relocatable.c only if --enable-relocatable is specified.
30874         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
30875         gl_RELOCATABLE_LIBRARY.
30876         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
30877         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
30878         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
30879         gl_RELOCATABLE_LIBRARY.
30880         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
30881         (Makefile.am): Remove lib_SOURCES.
30882         * modules/relocatable-lib-lgpl (configure.ac): Invoke
30883         gl_RELOCATABLE_LIBRARY.
30884         (Makefile.am): Remove lib_SOURCES.
30885         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
30886         always.
30887         * modules/relocatable-prog-wrapper (configure.ac): Invoke
30888         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
30889
30890 2007-03-04  Bruno Haible  <bruno@clisp.org>
30891
30892         * modules/argmatch-tests: New file.
30893         * tests/test-argmatch.c: New file.
30894
30895         * tests/test-allocsa.c (main): Halve the number of loop runs.
30896
30897         * modules/alloca-opt-tests: New file.
30898         * tests/test-alloca-opt.c: New file.
30899
30900 2007-03-04  Jim Meyering  <jim@meyering.net>
30901
30902         Work around difference between Linux ACLs and Solaris 10 ZFS.
30903         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
30904         for EINVAL.
30905
30906 2007-03-03  Bruno Haible  <bruno@clisp.org>
30907
30908         * modules/relocatable-prog (Depends-on): Add back progreloc's
30909         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
30910
30911 2007-03-03  Bruno Haible  <bruno@clisp.org>
30912
30913         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
30914         * modules/relocatable-lib: New file.
30915
30916 2007-03-03  Bruno Haible  <bruno@clisp.org>
30917
30918         * modules/relocatable-prog: Renamed from modules/relocatable.
30919         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
30920
30921 2007-03-03  Bruno Haible  <bruno@clisp.org>
30922
30923         * modules/relocatable-script (Files): Add doc/relocatable.texi,
30924         m4/relocatable-lib.m4.
30925         (Depends-on): Remove 'relocatable'.
30926         (configure.ac): Add gl_RELOCATABLE_NOP.
30927
30928 2007-03-03  Bruno Haible  <bruno@clisp.org>
30929
30930         * modules/relocatable-prog-wrapper: New file.
30931         * modules/relocatable (Depends-on): Add it. Remove all other
30932         dependencies except progname.
30933         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
30934
30935         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
30936         (gl_FUNC_STRERROR): Nop.
30937         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
30938
30939         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
30940         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
30941
30942         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
30943         (gl_FUNC_READLINK): Update.
30944
30945         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
30946
30947 2007-03-03  Bruno Haible  <bruno@clisp.org>
30948
30949         * lib/xreadlink.c: Include <unistd.h> unconditionally.
30950         * modules/xreadlink (Depends-on): Add unistd.
30951         * modules/xreadlink-with-size (Depends-on): Likewise.
30952
30953 2007-03-03  Bruno Haible  <bruno@clisp.org>
30954
30955         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
30956         extracted from gt_FUNC_SETENV.
30957         (gt_FUNC_SETENV): Remove macro.
30958         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
30959         remove gt_FUNC_SETENV.
30960
30961 2007-03-03  Bruno Haible  <bruno@clisp.org>
30962
30963         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
30964         ENABLE_RELOCATABLE here.
30965         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
30966
30967 2007-03-03  Bruno Haible  <bruno@clisp.org>
30968
30969         * modules/rbtreehash-list-tests (Depends-on): Add progname.
30970         * tests/test-rbtreehash_list.c: Include progname.h.
30971         (main): Call set_program_name.
30972
30973         * modules/rbtree-oset-tests (Depends-on): Add progname.
30974         * tests/test-rbtree_oset.c: Include progname.h.
30975         (main): Call set_program_name.
30976
30977         * modules/rbtree-list-tests (Depends-on): Add progname.
30978         * tests/test-rbtree_list.c: Include progname.h.
30979         (main): Call set_program_name.
30980
30981         * modules/linked-list-tests (Depends-on): Add progname.
30982         * tests/test-linked_list.c: Include progname.h.
30983         (main): Call set_program_name.
30984
30985 2007-03-03  Bruno Haible  <bruno@clisp.org>
30986
30987         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
30988         All uses of __restrict changed to _Restrict_.
30989         * lib/glob_.h (__restrict): Remove macro.
30990
30991 2007-03-02  Bruno Haible  <bruno@clisp.org>
30992
30993         * modules/gettext (configure.ac): Require gettext infrastructure
30994         from version 0.16.1.
30995
30996 2007-03-02  Bruno Haible  <bruno@clisp.org>
30997
30998         * modules/linkedhash-list-tests (Depends-on): Add progname.
30999         * tests/test-linkedhash_list.c: Include progname.h.
31000         (main): Call set_program_name.
31001
31002         * modules/carray-list-tests (Depends-on): Add progname.
31003         * tests/test-carray_list.c: Include progname.h.
31004         (main): Call set_program_name.
31005
31006         * modules/avltreehash-list-tests (Depends-on): Add progname.
31007         * tests/test-avltreehash_list.c: Include progname.h.
31008         (main): Call set_program_name.
31009
31010         * modules/avltree-oset-tests (Depends-on): Add progname.
31011         * tests/test-avltree_oset.c: Include progname.h.
31012         (main): Call set_program_name.
31013
31014         * modules/avltree-list-tests (Depends-on): Add progname.
31015         * tests/test-avltree_list.c: Include progname.h.
31016         (main): Call set_program_name.
31017
31018         * modules/array-oset-tests (Depends-on): Add progname.
31019         * tests/test-array_oset.c: Include progname.h.
31020         (main): Call set_program_name.
31021
31022         * modules/array-list-tests (Depends-on): Add progname.
31023         * tests/test-array_list.c: Include progname.h.
31024         (main): Call set_program_name.
31025
31026         * modules/argp-tests (Depends-on): Add progname.
31027         * tests/test-argp.c: Include argp.h first. Include progname.h.
31028         (main): Call set_program_name.
31029
31030 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
31031
31032         * doc/gnulib-tool.texi (Initial import): Reword description of
31033         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
31034         limited effect even if defined after the first system include.
31035
31036 2007-03-01  Bruno Haible  <bruno@clisp.org>
31037
31038         * build-aux/config.libpath: Update to libtool-1.5.22.
31039         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
31040
31041 2007-03-01  Bruno Haible  <bruno@clisp.org>
31042
31043         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
31044         foo_CFLAGS.
31045         Reported by Ralf Wildenhues.
31046
31047 2007-03-01  Bruno Haible  <bruno@clisp.org>
31048
31049         * build-aux/install-reloc: Remove object files left over by some
31050         compilers.
31051         Reported by Ralf Wildenhues.
31052
31053 2007-03-01  Bruno Haible  <bruno@clisp.org>
31054
31055         * build-aux/install-reloc: Break long lines.
31056
31057 2007-03-01  Bruno Haible  <bruno@clisp.org>
31058
31059         * doc/relocatable.texi: Document that it may not work on OpenBSD.
31060         Reported by Ralf Wildenhues.
31061
31062 2007-03-01  Bruno Haible  <bruno@clisp.org>
31063
31064         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
31065         include ordering constraints.
31066
31067 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31068
31069         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
31070         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
31071         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
31072         as another example.
31073         * lib/time_.h: Fix misspelling.
31074         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
31075         Require gl_HEADER_TIME_H_DEFAULTS.
31076         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
31077         * m4/time_r.m4 (gl_TIME_R): Likewise.
31078         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
31079
31080 2007-03-01  Bruno Haible  <bruno@clisp.org>
31081
31082         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
31083         * m4/utimens.m4 (gl_UTIMENS): Likewise.
31084
31085 2007-03-01  Jim Meyering  <jim@meyering.net>
31086
31087         * modules/xreadlink (Maintainer): Add my name.
31088         * modules/xreadlink-with-size (Depends-on): Alphabetize.
31089
31090 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
31091             Bruno Haible  <bruno@clisp.org>
31092
31093         * build-aux/install-reloc: Compile also c-ctype.c.
31094         * build-aux/relocatable.sh.in: New file.
31095         * doc/relocatable.texi: New file.
31096         * doc/relocatable-maint.texi: New file.
31097         * doc/gnulib.texi: Include relocatable-maint.texi.
31098         * lib/progreloc.c: Include unistd.h unconditionally.
31099         * lib/relocwrapper.c: Include unistd.h unconditionally.
31100         Include c-ctype.h.
31101         (add_dotbin): Use c_tolower.
31102         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
31103         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
31104         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
31105         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
31106         to m4/relocatable-lib.m4.
31107         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
31108         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
31109         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
31110         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
31111         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
31112         * modules/relocatable: New file.
31113         * modules/relocatable-lib: New file.
31114         * modules/relocatable-script: New file.
31115
31116 2007-02-28  Bruno Haible  <bruno@clisp.org>
31117
31118         Import --enable-relocatable infrastructure.
31119         * build-aux/config.libpath: New file, from GNU gettext.
31120         * build-aux/install-reloc: New file, from GNU gettext.
31121         * build-aux/reloc-ldflags: New file, from GNU gettext.
31122         * lib/relocatable.h: New file, from GNU gettext.
31123         * lib/relocatable.c: New file, from GNU gettext.
31124         * lib/relocwrapper.c: New file, from GNU gettext.
31125         * m4/relocatable.m4: New file, from GNU gettext.
31126
31127 2007-02-28  Bruno Haible  <bruno@clisp.org>
31128
31129         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
31130
31131         * modules/xreadlink: New file, from GNU gettext with modifications.
31132         * lib/xreadlink.c: New file, from GNU gettext.
31133         * lib/xreadlink.h: Add comments.
31134         (xreadlink): New declaration.
31135
31136         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
31137         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
31138         lib/xreadlink-with-size.c.
31139         (configure.ac): Remove gl_XREADLINK invocation.
31140         (Makefile.am): Augment lib_SOURCES.
31141         * m4/xreadlink.m4: Remove file.
31142         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
31143         (xreadlink_with_size): Renamed from xreadink.
31144         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
31145         * modules/canonicalize (Depends-on): Replace xreadlink with
31146         xreadlink-with-size.
31147         * lib/canonicalize.c (canonicalize_filename_mode): Update.
31148
31149 2007-02-25  Jim Meyering  <jim@meyering.net>
31150
31151         * build-aux/announce-gen: When complaining about excess arguments,
31152         list them.
31153
31154 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
31155
31156         * README: Document signed integer overflow situation more
31157         accurately.
31158
31159 2007-02-25  Bruno Haible  <bruno@clisp.org>
31160
31161         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
31162         'a' or 'A' conversion.
31163
31164 2007-02-25  Bruno Haible  <bruno@clisp.org>
31165
31166         * modules/filename: Renamed from modules/pathname.
31167         (Files): Replace lib/pathname.h with lib/filename.h. Replace
31168         lib/concatpath.c with lib/concat-filename.c.
31169         (Makefile.am): Update.
31170         (Include): Replace pathname.h with filename.h.
31171         * lib/filename.h: Renamed from lib/pathname.h.
31172         (concatenated_filename): Renamed from concatenated_pathname.
31173         * lib/concat-filename.c: Renamed from lib/concatpath.c.
31174         (concatenated_filename): Renamed from concatenated_pathname.
31175         * lib/findprog.c: Include filename.h instead of pathname.h.
31176         (find_in_path): Update.
31177         * lib/javacomp.c: Include filename.h instead of pathname.h.
31178         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
31179         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
31180         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
31181         is_oldgcj_14_13_usable, is_javac_usable): Update.
31182         * lib/javaexec.c: Include filename.h instead of pathname.h.
31183         (execute_java_class): Update.
31184         * modules/findprog: Update.
31185         * modules/javacomp: Update.
31186         * modules/javaexec: Update.
31187         * MODULES.html.sh (File system functions): Add 'filename', remove
31188         'pathname'.
31189
31190 2007-02-25  Bruno Haible  <bruno@clisp.org>
31191
31192         * modules/printf-frexpl-tests: New file.
31193         * tests/test-printf-frexpl.c: New file.
31194
31195         * modules/printf-frexpl: New file.
31196         * lib/printf-frexpl.h: New file.
31197         * lib/printf-frexpl.c: New file.
31198         * m4/printf-frexpl.m4: New file.
31199
31200 2007-02-25  Bruno Haible  <bruno@clisp.org>
31201
31202         * modules/printf-frexp-tests: New file.
31203         * tests/test-printf-frexp.c: New file.
31204
31205         * modules/printf-frexp: New file.
31206         * lib/printf-frexp.h: New file.
31207         * lib/printf-frexp.c: New file.
31208         * m4/printf-frexp.m4: New file.
31209
31210 2007-02-25  Bruno Haible  <bruno@clisp.org>
31211
31212         Assume automake >= 1.10 for the tests.
31213         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
31214         * modules/arctwo-tests: Likewise.
31215         * modules/argp-tests: Likewise.
31216         * modules/avltree-list-tests: Likewise.
31217         * modules/avltree-oset-tests: Likewise.
31218         * modules/avltreehash-list-tests: Likewise.
31219         * modules/carray-list-tests: Likewise.
31220         * modules/crc-tests: Likewise.
31221         * modules/des-tests: Likewise.
31222         * modules/gc-arcfour-tests: Likewise.
31223         * modules/gc-arctwo-tests: Likewise.
31224         * modules/gc-des-tests: Likewise.
31225         * modules/gc-hmac-md5-tests: Likewise.
31226         * modules/gc-hmac-sha1-tests: Likewise.
31227         * modules/gc-md2-tests: Likewise.
31228         * modules/gc-md4-tests: Likewise.
31229         * modules/gc-md5-tests: Likewise.
31230         * modules/gc-pbkdf2-sha1-tests: Likewise.
31231         * modules/gc-rijndael-tests: Likewise.
31232         * modules/gc-sha1-tests: Likewise.
31233         * modules/gc-tests: Likewise.
31234         * modules/getaddrinfo-tests: Likewise.
31235         * modules/hmac-md5-tests: Likewise.
31236         * modules/hmac-sha1-tests: Likewise.
31237         * modules/linked-list-tests: Likewise.
31238         * modules/linkedhash-list-tests: Likewise.
31239         * modules/lock-tests: Likewise.
31240         * modules/md2-tests: Likewise.
31241         * modules/md4-tests: Likewise.
31242         * modules/md5-tests: Likewise.
31243         * modules/rbtree-list-tests: Likewise.
31244         * modules/rbtree-oset-tests: Likewise.
31245         * modules/rbtreehash-list-tests: Likewise.
31246         * modules/read-file-tests: Likewise.
31247         * modules/rijndael-tests: Likewise.
31248         * modules/stdint-tests: Likewise.
31249         * modules/tls-tests: Likewise.
31250
31251 2007-02-24  Bruno Haible  <bruno@clisp.org>
31252
31253         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
31254         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
31255         function; instead check whether isnan with a double argument links.
31256         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
31257         function; instead check whether isnan with a 'long double' argument
31258         links.
31259         Reported by Eric Blake <ebb9@byu.net>.
31260
31261 2007-02-24  Bruno Haible  <bruno@clisp.org>
31262
31263         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
31264         defined.
31265         * lib/isnanl.c: Remove all code. Just include isnan.c.
31266         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
31267
31268 2007-02-25  Jim Meyering  <jim@meyering.net>
31269
31270         Avoid conflicting types for 'unsetenv' on FreeBSD.
31271         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
31272         conflicting with FreeBSD's (5.0 and 6.1) function declaration
31273         in stdlib.h.
31274
31275 2007-02-24  Bruno Haible  <bruno@clisp.org>
31276
31277         * modules/isnanl-nolibm-tests: New file.
31278         * tests/test-isnanl.c: New file.
31279
31280         * modules/isnanl-nolibm: New file.
31281         * lib/isnanl.h: New file.
31282         * lib/isnanl.c: New file.
31283         * m4/isnanl.m4: New file.
31284
31285 2007-02-24  Bruno Haible  <bruno@clisp.org>
31286
31287         * modules/isnan-nolibm-tests: New file.
31288         * tests/test-isnan.c: New file.
31289
31290         * modules/isnan-nolibm: New file.
31291         * lib/isnan.h: New file.
31292         * lib/isnan.c: New file.
31293         * m4/isnan.m4: New file.
31294
31295 2007-02-24  Bruno Haible  <bruno@clisp.org>
31296
31297         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
31298         assume that an exponent fits in 20 bits.
31299
31300 2007-02-24  Jim Meyering  <jim@meyering.net>
31301
31302         * m4/regex.m4: Update the description of the configure-time option,
31303         --without-included-regex, to state accurately what the defaults are,
31304         and perhaps to give people an idea why using this option is risky.
31305
31306 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
31307
31308         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
31309         loops on small arguments.  This attempts to avoid the problem
31310         Bruno Haible reported for AIX 4.3.2 in
31311         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
31312
31313 2007-02-23  Bruno Haible  <bruno@clisp.org>
31314
31315         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
31316         Needed for help2man.
31317
31318 2007-02-23  Karl Berry  <karl@gnu.org>
31319
31320         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
31321         exists, foo.h should be cvs-ignored, not committed.
31322
31323 2007-02-23  Eric Blake  <ebb9@byu.net>
31324
31325         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
31326         * lib/stat-time.h (includes): Likewise.
31327         * lib/utimecmp.c (includes): Likewise.
31328         * lib/utimens.h (includes): Likewise.
31329         * lib/getdate.y (includes): Also include "timespec.h" for use
31330         internal to the module.
31331         * modules/utimens (Depends-on): Revert yesterday's patch.
31332         * modules/nanosleep (Depends-on): Add missing dependency.
31333
31334 2007-02-22  Bruno Haible  <bruno@clisp.org>
31335
31336         * lib/glob.c: Don't include getlogin_r.h.
31337
31338 2007-02-22  Jim Meyering  <jim@meyering.net>
31339
31340         * modules/utimens (Depends-on): Add timespec, required for
31341         utimens.h's inclusion of timespec.h.
31342
31343 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
31344
31345         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
31346         long unreadable paths in GNU/Linux.  Problem reported by Andreas
31347         Schwab in
31348         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
31349         I'll try to think of a better way to fix the Solaris problem.
31350
31351         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
31352         like glibc; on Solaris 10, it fails with errno == EINVAL.
31353         POSIX says the behavior is unspecified if the first argument is NULL,
31354         so play it safe and never pass NULL to the system getcwd.
31355
31356 2007-02-21  Jim Meyering  <jim@meyering.net>
31357
31358         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
31359         of gettimeofday.  It would conflict with the one now always
31360         provided via sys_time_.h.  Reported by Matthew Woehlke, as
31361         an IRIX 6.5 build failure.
31362
31363 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
31364
31365         Minor fixups to port to Solaris 10 with Sun C 5.8.
31366         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
31367         * modules/getcwd (Depends-on): Add dirfd.
31368         * lib/putenv.c (putenv): #undef it.
31369         (rpl_putenv): New decl.
31370         (malloc, free): Include <stdlib.h> rather than prototyping separately.
31371
31372 2007-02-20  Bruno Haible  <bruno@clisp.org>
31373
31374         * modules/stdio-tests: New file.
31375         * tests/test-stdio.c: New file.
31376
31377         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
31378         (Depends-on): Add stdio.
31379         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
31380         (Include): Use <stdio.h> instead of vsnprintf.h.
31381         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
31382         HAVE_DECL_VSNPRINTF.
31383         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
31384
31385         * modules/snprintf (Files): Remove lib/snprintf.h.
31386         (Depends-on): Add stdio.
31387         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
31388         (Include): Use <stdio.h> instead of snprintf.h.
31389         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
31390         HAVE_DECL_SNPRINTF.
31391         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
31392         * lib/getaddrinfo.c: Likewise.
31393
31394         * modules/stdio: New file.
31395         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
31396         * lib/snprintf.h: Remove file.
31397         * lib/vsnprintf.h: Remove file.
31398         * lib/.cppi-disable: Remove snprintf.h.
31399         * m4/stdio_h.m4: New file.
31400         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
31401
31402 2007-02-20  Jim Meyering  <jim@meyering.net>
31403
31404         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
31405         used by e.g., mingw.  From Bruno Haible.
31406
31407 2007-02-19  Bruno Haible  <bruno@clisp.org>
31408
31409         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
31410         warnings.
31411         Reported by Ben Pfaff <blp@cs.stanford.edu>.
31412
31413 2007-02-19  Bruno Haible  <bruno@clisp.org>
31414
31415         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
31416         from mingw users.
31417
31418 2007-02-19  Bruno Haible  <bruno@clisp.org>
31419
31420         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
31421         warnings.
31422         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
31423
31424 2007-02-19  Jim Meyering  <jim@meyering.net>
31425
31426         Don't use FD after a successful "fdopendir (fd)".
31427         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
31428         Reset it by calling dirfd on the just-obtained DIR*.
31429
31430         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
31431         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
31432
31433 2007-02-18  Bruno Haible  <bruno@clisp.org>
31434
31435         * lib/readlink.c: Include <unistd.h>.
31436         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
31437         HAVE_READLINK.
31438         * modules/readlink (Depends-on): Add unistd.
31439         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31440         (Include): Add <unistd.h>.
31441
31442         * lib/getlogin_r.h: Remove file.
31443         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
31444         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
31445         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
31446         HAVE_DECL_GETLOGIN_R.
31447         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
31448         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31449         (Include): Use <unistd.h> instead of getlogin_r.h.
31450
31451         * lib/getcwd.h: Remove file.
31452         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
31453         * lib/xgetcwd.c: Likewise.
31454         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
31455         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
31456         * modules/getcwd (Files): Remove lib/getcwd.h.
31457         (Depends-on): Add unistd.
31458         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31459         (Include): Use <unistd.h> instad of getcwd.h.
31460
31461         * lib/ftruncate.c: Include <unistd.h> first.
31462         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
31463         Set HAVE_FTRUNCATE.
31464         * modules/ftruncate (Depends-on): Add unistd.
31465         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31466
31467         * lib/fchdir.c: Include <unistd.h> first.
31468         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
31469         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
31470         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
31471         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31472         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
31473
31474         * lib/dup2.c: Include <unistd.h> first.
31475         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
31476         HAVE_DUP2.
31477         * modules/dup2 (Depends-on): Add unistd.
31478         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31479
31480         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
31481         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
31482         REPLACE_CHOWN. Don't define chown as a macro here.
31483         * modules/chown (Depends-on): Add unistd.
31484         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31485
31486         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
31487         Add definition for GL_LINK_WARNING.
31488         (chown, dup2): New declarations.
31489         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
31490         link warning.
31491         (ftruncate): New declaration.
31492         (getcwd): New declaration, taken from old getcwd.h.
31493         (getlogin_r): New declaration, taken from old getlogin_r.h.
31494         (readlink): New declaration.
31495         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
31496         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
31497         (gl_PREREQ_UNISTD): Remove macro.
31498         (gl_UNISTD_MODULE_INDICATOR): New macro.
31499         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
31500         many new variables. Don't set UNISTD_H.
31501         * modules/unistd (Description): Change.
31502         (Depends-on): Add link-warning.
31503         (configure.ac): Update.
31504         (Makefile.am): Create unistd.h always. Substitute many new variables
31505         into it.
31506
31507 2007-02-18  Bruno Haible  <bruno@clisp.org>
31508
31509         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
31510         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
31511         HAVE_GETSUBOPT.
31512         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
31513         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
31514         * lib/getsubopt.h: Remove file.
31515         * modules/getsubopt (Files): Remove lib/getsubopt.h.
31516         (Depends-on): Add stdlib.
31517         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31518         (Includes): Use <stdlib.h> instead of getsubopt.h.
31519         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
31520         Set HAVE_GETSUBOPT.
31521         * lib/getsubopt.c: Don't include getsubopt.h.
31522
31523 2007-02-18  Bruno Haible  <bruno@clisp.org>
31524
31525         * modules/fchdir (Depends-on): Add dup2.
31526
31527 2007-02-18  Bruno Haible  <bruno@clisp.org>
31528
31529         * lib/stdlib_.h: Handle glibc's special invocation convention
31530         specially.
31531
31532 2007-02-18  Bruno Haible  <bruno@clisp.org>
31533
31534         * modules/stdlib-tests: New file.
31535         * tests/test-stdlib.c: New file.
31536
31537         * modules/mkstemp (Files): Remove lib/mkstemp.h.
31538         (Depends-on): Add stdlib.
31539         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31540         (Includes): Use <stdlib.h> instead of mkstemp.h.
31541         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
31542         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
31543         * lib/mkstemp.c: Don't include mkstemp.h.
31544         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
31545         * lib/stdlib--.h: Don't include mkstemp.h.
31546
31547         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
31548         (Depends-on): Add stdlib.
31549         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31550         (Includes): Use <stdlib.h> instead of mkdtemp.h.
31551         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
31552         HAVE_MKDTEMP.
31553         * lib/mkdtemp.c: Don't include mkdtemp.h.
31554         * lib/clean-temp.c: Don't include mkdtemp.h.
31555
31556         * modules/exit (Files): Remove lib/exit.h.
31557         (Depends-on): Add stdlib.
31558         (Makefile.am): Remove lib_SOURCES.
31559         (Include): Use <stdlib.h> instead of exit.h.
31560         * lib/argmatch.c: Don't include exit.h.
31561         * lib/execute.c: Likewise.
31562         * lib/pagealign_alloc.c: Likewise.
31563         * lib/pipe.c: Likewise.
31564         * lib/wait-process.c: Likewise.
31565         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
31566         * lib/exitfail.c: Likewise.
31567         * lib/savewd.c: Likewise.
31568         * lib/xsetenv.c: Likewise.
31569
31570         * modules/stdlib: New file.
31571         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
31572         and extra comments about mkstemp().
31573         * lib/exit.h: Remove file.
31574         * lib/mkdtemp.h: Remove file.
31575         * lib/mkstemp.h: Remove file.
31576         * m4/stdlib_h.m4: New file.
31577         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
31578
31579 2007-02-18  Bruno Haible  <bruno@clisp.org>
31580
31581         * modules/math-tests: New file.
31582         * tests/test-math.c: New file.
31583
31584         * modules/math: New file.
31585         * modules/mathl (Files): Remove lib/mathl.h.
31586         (Depends-on): Add math.
31587         (Makefile.am): Don't mention mathl.h.
31588         (Include): Use <math.h> instead of mathl.h.
31589         * lib/math_.h: New file.
31590         * lib/mathl.h: Remove file.
31591         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
31592         mathl.h.
31593         * lib/asinl.c: Likewise.
31594         * lib/atanl.c: Likewise.
31595         * lib/ceill.c: Likewise.
31596         * lib/cosl.c: Likewise.
31597         * lib/expl.c: Likewise.
31598         * lib/floorl.c: Likewise.
31599         * lib/frexpl.c: Likewise.
31600         * lib/ldexpl.c: Likewise.
31601         * lib/logl.c: Likewise.
31602         * lib/sincosl.c: Likewise.
31603         * lib/sinl.c: Likewise.
31604         * lib/sqrtl.c: Likewise.
31605         * lib/tanl.c: Likewise.
31606         * lib/trigl.c: Likewise.
31607         * m4/math_h.m4: New file.
31608         * MODULES.html.sh (Mathematics): Add math.
31609
31610 2007-02-17  Bruno Haible  <bruno@clisp.org>
31611
31612         * modules/wctype-tests: New file.
31613         * tests/test-wctype.c: New file.
31614
31615         * modules/wchar-tests: New file.
31616         * tests/test-wchar.c: New file.
31617
31618         * modules/unistd-tests: New file.
31619         * tests/test-unistd.c: New file.
31620
31621         * modules/time-tests: New file.
31622         * tests/test-time.c: New file.
31623
31624         * modules/sysexits-tests: New file.
31625         * tests/test-sysexits.c: New file.
31626
31627         * modules/sys_time-tests: New file.
31628         * tests/test-sys_time.c: New file.
31629
31630         * modules/sys_stat-tests: New file.
31631         * tests/test-sys_stat.c: New file.
31632
31633         * modules/sys_socket-tests: New file.
31634         * tests/test-sys_socket.c: New file.
31635
31636         * modules/sys_select-tests: New file.
31637         * tests/test-sys_select.c: New file.
31638
31639         * modules/string-tests: New file.
31640         * tests/test-string.c: New file.
31641
31642         * modules/stdbool-tests: New file.
31643         * tests/test-stdbool.c: New file.
31644
31645         * modules/netinet_in-tests: New file.
31646         * tests/test-netinet_in.c: New file.
31647
31648         * modules/inttypes-tests: New file.
31649         * tests/test-inttypes.c: New file.
31650
31651         * modules/fcntl-tests: New file.
31652         * tests/test-fcntl.c: New file.
31653
31654         * modules/byteswap-tests: New file.
31655         * tests/test-byteswap.c: New file.
31656
31657         * modules/arpa_inet-tests: New file.
31658         * tests/test-arpa_inet.c: New file.
31659
31660 2007-02-17  Bruno Haible  <bruno@clisp.org>
31661
31662         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
31663         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
31664         if the corresponding module is not enabled. Emit link warnings if
31665         the function is used nevertheless.
31666         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
31667         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
31668         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
31669         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
31670         * modules/inttypes (Depends-on): Add link-warning.
31671         (Makefile.am): Copy the contents of build-aux/link-warning.h into
31672         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
31673         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
31674         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
31675         * modules/imaxdiv (configure.ac): Likewise.
31676         * modules/strtoimax (configure.ac): Likewise.
31677         * modules/strtoumax (configure.ac): Likewise.
31678
31679 2007-02-17  Bruno Haible  <bruno@clisp.org>
31680
31681         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
31682         gl_STRING_MODULE_INDICATOR_DEFAULTS.
31683         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
31684         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
31685
31686 2007-02-17  Bruno Haible  <bruno@clisp.org>
31687
31688         * modules/link-warning: New file.
31689         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
31690         * lib/string_.h (GL_LINK_WARNING): Remove definition.
31691         * modules/string (Depends-on): Add link-warning.
31692         (Makefile.am): Copy the contents of build-aux/link-warning.h into
31693         string.h.
31694         * MODULES.html.sh (Support for building libraries and executables): Add
31695         link-warning.
31696
31697 2007-02-17  Bruno Haible  <bruno@clisp.org>
31698
31699         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
31700         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
31701         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
31702         long lines.
31703
31704 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
31705             Bruno Haible  <bruno@clisp.org>
31706
31707         * modules/tmpfile: New file.
31708         * lib/tmpfile.c: New file.
31709         * m4/tmpfile.m4: New file.
31710         * MODULES.html.sh (func_all_modules): New section "Input/output".
31711
31712 2007-02-15  Bruno Haible  <bruno@clisp.org>
31713
31714         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
31715         (supports_delete_on_close): New function.
31716         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
31717
31718 2007-02-14  Bruno Haible  <bruno@clisp.org>
31719
31720         * modules/mbspcasecmp-tests: New file.
31721         * tests/test-mbspcasecmp.sh: New file.
31722         * tests/test-mbspcasecmp.c: New file.
31723
31724         New module mbspcasecmp.
31725         * modules/mbspcasecmp: New file.
31726         * lib/mbspcasecmp.c: New file.
31727         * lib/string_.h (strncasecmp): Change warning message.
31728         (mbspcasecmp): New declaration.
31729         * m4/mbspcasecmp.m4: New file.
31730         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31731         GNULIB_MBSPCASECMP.
31732         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
31733         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
31734
31735 2007-02-14  Bruno Haible  <bruno@clisp.org>
31736
31737         * modules/mbsncasecmp-tests: New file.
31738         * tests/test-mbsncasecmp.sh: New file.
31739         * tests/test-mbsncasecmp.c: New file.
31740
31741         New module mbsncasecmp.
31742         * modules/mbsncasecmp: New file.
31743         * lib/mbsncasecmp.c: New file.
31744         * lib/string_.h (mbsncasecmp): New declaration.
31745         * m4/mbsncasecmp.m4: New file.
31746         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31747         GNULIB_MBSNCASECMP.
31748         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
31749         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
31750
31751 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
31752
31753         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
31754         Verify that it doesn't overlap with our flags.
31755         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
31756         do not have the desired effect in multibyte locales; instead, use
31757         mbscasecmp.
31758         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
31759         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
31760         we don't require GNU fnmatch ourselves (if our users require it, they
31761         should do so explicitly).
31762
31763         Fix regex code so it doesn't rely on strcasecmp.
31764         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
31765         Otherwise, include gnulib's langinfo.h.
31766         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
31767         undesirable behavior in non-C locales.  Instead, rely on localecharset.
31768         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
31769         * modules/regex (FILES): Remove m4/codeset.m4.
31770         (Depends-on): Add localcharset.  Remove strcase.
31771
31772 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31773
31774         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
31775         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
31776
31777 2007-02-13  Bruno Haible  <bruno@clisp.org>
31778
31779         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
31780         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31781
31782 2007-02-12  Bruno Haible  <bruno@clisp.org>
31783
31784         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
31785         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
31786         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
31787         time warning rather than a link error.
31788
31789 2007-02-12  Bruno Haible  <bruno@clisp.org>
31790
31791         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
31792         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
31793         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31794
31795 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
31796
31797         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
31798         args, not 2.
31799
31800 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
31801
31802         New module 'time', so that apps can include <time.h> as per
31803         POSIX and GNU instead of separate include files like time_r.h
31804         and timegm.h.  This implementation tries out a simpler approach
31805         for replacing decls in standard include files (as compared to
31806         the string module), somewhat as an experiment.
31807
31808         * config/srclist.txt: Comment out mktime.c for now.
31809         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
31810         since it doesn't apply any more.  Use generic wording instead.
31811         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
31812         'time'.
31813         * lib/time_.h, m4/time_h.m4, modules/time: New files.
31814         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
31815         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
31816         Don't include <sys/types.h>; no longer needed since we assume C89.
31817         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
31818         * lib/strftime.c: Likewise.
31819         * lib/time_r.c: Likewise.
31820         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
31821         * lib/nanosleep.c: Include <time.h> first, to check interface.
31822         * lib/strptime.c: Likewise.
31823         * lib/time_r.c: Likewise.
31824         * lib/timegm.c: Likewise.
31825         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
31826         needed.
31827         * lib/timegm.c: Don't include timegm.h; no longer needed.
31828         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
31829         time.h now handles any problems in that area.
31830         (struct timespec, nanosleep): Remove; time.h now arranges for these.
31831         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
31832         that time.h defines struct timespec.
31833         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
31834         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
31835         handles that.
31836         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
31837         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
31838         needed.  Set REPLACE_LOCALTIME.
31839         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
31840         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
31841         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
31842         nanosleep; time_h.m4 now does that.  Don't require
31843         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
31844         module handles this now.
31845         * modules/getdate (Depends-on): Remove timespec.  Add time.
31846         * modules/nanosleep (Depends-on): Likewise.
31847         * modules/stat-time (Depends-on): Likewise.
31848         * modules/nanosleep (Include): Include time.h, not timespec.h.
31849         * modules/strptime (Files): Remove lib/strptime.h.
31850         (Depends-on): Add extensions, time.
31851         (Include): Include time.h, not strptime.h.
31852         * modules/time_r (Files): Remove lib/time_r.h.
31853         (Depends-on): Add time.
31854         (Include): Include time.h, not time_r.h.
31855         * modules/timegm: Likewise.
31856         * modules/timespec (Description): Now does timespec-related decls
31857         of our own, instead of struct timespec itself.
31858         (Depends-on): Add time; remove extensions.
31859         (Maintainer): Add self.
31860         * modules/utimecmp (Depends-on): Add time; remove timespec.
31861         * modules/utimens (Depends-on): Likewise.
31862         * modules/xnanosleep (Depends-on): Likewise.
31863
31864 2007-02-11  Bruno Haible  <bruno@clisp.org>
31865
31866         * lib/c-strstr.c: Include allocsa.h.
31867         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31868         * lib/c-strcasestr.c: Include allocsa.h.
31869         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31870         * lib/strcasestr.c: Include allocsa.h.
31871         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31872         * lib/mbsstr.c: Include allocsa.h.
31873         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
31874         allocsa/freesa instead of malloc/free.
31875         * lib/mbscasestr.c: Include allocsa.h.
31876         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
31877         allocsa/freesa instead of malloc/free.
31878         * modules/c-strstr (Depends-on): Add allocsa.
31879         * modules/c-strcasestr (Depends-on): Likewise.
31880         * modules/strcasestr (Depends-on): Likewise.
31881         * modules/mbsstr (Depends-on): Likewise.
31882         * modules/mbscasestr (Depends-on): Likewise.
31883
31884 2007-02-11  Bruno Haible  <bruno@clisp.org>
31885
31886         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
31887
31888         * modules/mbsspn-tests: New file.
31889         * tests/test-mbsspn.sh: New file.
31890         * tests/test-mbsspn.c: New file.
31891
31892 2007-02-11  Bruno Haible  <bruno@clisp.org>
31893
31894         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
31895
31896         * modules/mbspbrk-tests: New file.
31897         * tests/test-mbspbrk.sh: New file.
31898         * tests/test-mbspbrk.c: New file.
31899
31900 2007-02-11  Bruno Haible  <bruno@clisp.org>
31901
31902         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
31903         unneeded cast.
31904
31905         * modules/mbscspn-tests: New file.
31906         * tests/test-mbscspn.sh: New file.
31907         * tests/test-mbscspn.c: New file.
31908
31909 2007-02-11  Bruno Haible  <bruno@clisp.org>
31910
31911         * modules/mbscasecmp-tests: New file.
31912         * tests/test-mbscasecmp.sh: New file.
31913         * tests/test-mbscasecmp.c: New file.
31914
31915 2007-02-11  Bruno Haible  <bruno@clisp.org>
31916
31917         Ensure O(n) worst-case complexity of mbscasestr.
31918         * lib/mbscasestr.c: Include stdbool.h.
31919         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
31920         functions.
31921         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
31922         the bookkeeping indicates that it's worth it.
31923         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
31924
31925         * modules/mbscasestr-tests: New file.
31926         * tests/test-mbscasestr1.c: New file.
31927         * tests/test-mbscasestr2.sh: New file.
31928         * tests/test-mbscasestr2.c: New file.
31929         * tests/test-mbscasestr3.sh: New file.
31930         * tests/test-mbscasestr3.c: New file.
31931         * tests/test-mbscasestr4.sh: New file.
31932         * tests/test-mbscasestr4.c: New file.
31933         * m4/locale-tr.m4: New file.
31934
31935 2007-02-11  Bruno Haible  <bruno@clisp.org>
31936
31937         Ensure O(n) worst-case complexity of mbsstr.
31938         * lib/mbsstr.c: Include stdbool.h.
31939         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
31940         functions.
31941         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
31942         bookkeeping indicates that it's worth it.
31943         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
31944
31945         * modules/mbsstr-tests: New file.
31946         * tests/test-mbsstr1.c: New file.
31947         * tests/test-mbsstr2.sh: New file.
31948         * tests/test-mbsstr2.c: New file.
31949         * tests/test-mbsstr3.sh: New file.
31950         * tests/test-mbsstr3.c: New file.
31951         * m4/locale-fr.m4: New file.
31952
31953 2007-02-11  Bruno Haible  <bruno@clisp.org>
31954
31955         * lib/mbsrchr.c (mbsrchr): Fix bug.
31956
31957         * modules/mbsrchr-tests: New file.
31958         * tests/test-mbsrchr.sh: New file.
31959         * tests/test-mbsrchr.c: New file.
31960
31961 2007-02-11  Bruno Haible  <bruno@clisp.org>
31962
31963         * lib/mbschr.c (mbschr): Fix bug.
31964
31965         * modules/mbschr-tests: New file.
31966         * tests/test-mbschr.sh: New file.
31967         * tests/test-mbschr.c: New file.
31968         * m4/locale-zh.m4: New file.
31969
31970 2007-02-11  Bruno Haible  <bruno@clisp.org>
31971
31972         Support for copying multibyte string iterators.
31973         * lib/mbiter.h: Include <string.h>.
31974         (mbiter_multi_copy): New function.
31975         (mbi_copy): New macro.
31976         * lib/mbuiter.h: Include <string.h>.
31977         (mbuiter_multi_copy): New function.
31978         (mbui_copy): New macro.
31979
31980 2007-02-11  Bruno Haible  <bruno@clisp.org>
31981
31982         New module mbslen.
31983         * modules/mbslen: New file.
31984         * lib/mbslen.c: New file.
31985         * lib/string_.h (mbslen): New declaration.
31986         * m4/mbslen.m4: New file.
31987         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31988         GNULIB_MBSLEN.
31989         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
31990         * MODULES.html.sh (Internationalization functions): Add mbslen.
31991
31992 2007-02-11  Bruno Haible  <bruno@clisp.org>
31993
31994         Ensure O(n) worst-case complexity of strcasestr substitute.
31995         * lib/strcasestr.c: Include stdbool.h.
31996         (knuth_morris_pratt): New function.
31997         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
31998         bookkeeping indicates that it's worth it.
31999         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
32000
32001         * modules/strcasestr-tests: New file.
32002         * tests/test-strcasestr.c: New file.
32003
32004 2007-02-11  Bruno Haible  <bruno@clisp.org>
32005
32006         Ensure O(n) worst-case complexity of c_strcasestr.
32007         * lib/c-strcasestr.c: Include stdbool.h, string.h.
32008         (knuth_morris_pratt): New function.
32009         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
32010         the bookkeeping indicates that it's worth it.
32011         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
32012
32013         * modules/c-strcasestr-tests: New file.
32014         * tests/test-c-strcasestr.c: New file.
32015
32016 2007-02-11  Bruno Haible  <bruno@clisp.org>
32017
32018         Ensure O(n) worst-case complexity of c_strstr.
32019         * lib/c-strstr.c: Include stdbool.h, string.h.
32020         (knuth_morris_pratt): New function.
32021         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
32022         bookkeeping indicates that it's worth it.
32023         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
32024
32025         * lib/c-strstr.c: Complete rewrite for maintainability.
32026
32027         * modules/c-strstr-tests: New file.
32028         * tests/test-c-strstr.c: New file.
32029
32030 2007-02-11  Bruno Haible  <bruno@clisp.org>
32031
32032         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
32033         5.2.1 and earlier, whereby \055 was treated just like the range
32034         delimiter '-'.
32035         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
32036
32037 2007-02-08  Bruno Haible  <bruno@clisp.org>
32038
32039         * modules/regex (Depends-on): Add stdbool.
32040         Reported by Dalibor Topic <robilad@kaffe.org>.
32041
32042 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
32043
32044         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
32045         Prefer returning from main to exiting from it.
32046         Remove unnecessary parens after sizeof.
32047
32048 2007-02-05  Bruno Haible  <bruno@clisp.org>
32049
32050         New module mbssep.
32051         * modules/mbssep: New file.
32052         * lib/mbssep.c: New file.
32053         * lib/string_.h (strsep): Add a conditional link warning.
32054         (mbssep): New declaration.
32055         * m4/mbssep.m4: New file.
32056         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32057         GNULIB_MBSSEP.
32058         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
32059         * MODULES.html.sh (Internationalization functions): Add mbssep.
32060
32061 2007-02-05  Bruno Haible  <bruno@clisp.org>
32062
32063         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
32064         Optimize search in case of 1 delimiter.
32065
32066 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
32067
32068         * lib/acl.h: Include sys/types.h before sys/acl.h.
32069
32070 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
32071
32072         Merge upstream fix for glibc bugzilla #3957:
32073
32074         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
32075
32076         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
32077         bit for RE_HAT_LISTS_NOT_NEWLINE.
32078         (build_charclass_op): Remove bogus comment.
32079
32080 2007-02-05  Simon Josefsson  <simon@josefsson.org>
32081
32082         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
32083
32084 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
32085
32086         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
32087         * lib/memmem.c [!defined _LIBC]: Include config.h.
32088
32089 2007-02-04  Bruno Haible  <bruno@clisp.org>
32090
32091         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
32092         warning message.
32093
32094 2007-02-04  Bruno Haible  <bruno@clisp.org>
32095
32096         New module mbstok_r.
32097         * modules/mbstok_r: New file.
32098         * lib/mbstok_r.c: New file.
32099         * lib/string_.h (strtok_r): Change argument names to match the
32100         comments. Add a conditional link warning.
32101         (mbstok_r): New declaration.
32102         * m4/mbstok_r.m4: New file.
32103         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32104         GNULIB_MBSTOK_R.
32105         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
32106         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
32107
32108 2007-02-04  Bruno Haible  <bruno@clisp.org>
32109
32110         New module mbsspn.
32111         * modules/mbsspn: New file.
32112         * lib/mbsspn.c: New file.
32113         * lib/string_.h (strspn): Add a conditional link warning.
32114         (mbsspn): New declaration.
32115         * m4/mbsspn.m4: New file.
32116         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32117         GNULIB_MBSSPN.
32118         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
32119         * MODULES.html.sh (Internationalization functions): Add mbsspn.
32120
32121 2007-02-04  Bruno Haible  <bruno@clisp.org>
32122
32123         New module mbspbrk.
32124         * modules/mbspbrk: New file.
32125         * lib/mbspbrk.c: New file.
32126         * lib/string_.h (strpbrk): Add a conditional link warning.
32127         (mbspbrk): New declaration.
32128         * m4/mbspbrk.m4: New file.
32129         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32130         GNULIB_MBSPBRK.
32131         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
32132         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
32133
32134 2007-02-04  Bruno Haible  <bruno@clisp.org>
32135
32136         New module mbscspn.
32137         * modules/mbscspn: New file.
32138         * lib/mbscspn.c: New file.
32139         * lib/string_.h (strcspn): Add a conditional link warning.
32140         (mbscspn): New declaration.
32141         * m4/mbscspn.m4: New file.
32142         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32143         GNULIB_MBSCSPN.
32144         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
32145         * MODULES.html.sh (Internationalization functions): Add mbscspn.
32146
32147 2007-02-04  Bruno Haible  <bruno@clisp.org>
32148
32149         New module mbscasestr, reduced goal of strcasestr.
32150         * modules/mbscasestr: New file.
32151         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
32152         (mbscasestr): Renamed from strcasestr.
32153         * lib/strcasestr.c: Don't include mbuiter.h.
32154         (strcasestr): Remove support for multibyte locales.
32155         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
32156         Change the conditional link warning.
32157         (mbscasestr): New declaration.
32158         * m4/mbscasestr.m4: New file.
32159         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
32160         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
32161         REPLACE_STRCASESTR.
32162         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
32163         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
32164         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
32165         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
32166         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
32167         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
32168         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
32169         (Depends-on): Remove mbuiter.
32170         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
32171
32172 2007-02-04  Bruno Haible  <bruno@clisp.org>
32173
32174         Simplify handling of strncasecmp.
32175         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
32176         the conditional link warning.
32177         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
32178         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
32179         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
32180         * modules/strcase (configure.ac): Don't invoke
32181         gl_STRING_MODULE_INDICATOR.
32182         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
32183
32184 2007-02-04  Bruno Haible  <bruno@clisp.org>
32185
32186         New module mbscasecmp, reduced goal of strcasecmp.
32187         * modules/mbscasecmp: New file.
32188         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
32189         (mbscasecmp): Renamed from strcasecmp.
32190         * lib/strcasecmp.c: Don't include mbuiter.h.
32191         (strcasecmp): Remove support for multibyte locales.
32192         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
32193         Change the conditional link warning.
32194         (mbscasecmp): New declaration.
32195         * m4/mbscasecmp.m4: New file.
32196         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
32197         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
32198         REPLACE_STRCASECMP.
32199         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
32200         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32201         GNULIB_MBSCASECMP.
32202         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
32203         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
32204         * modules/strcase (Files): Remove m4/mbrtowc.m4.
32205         (Depends-on): Remove mbuiter.
32206         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
32207
32208 2007-02-04  Bruno Haible  <bruno@clisp.org>
32209
32210         New module mbsstr. Remove module strstr.
32211         * modules/mbsstr: New file.
32212         * modules/strstr: Remove file.
32213         * lib/mbsstr.c: Renamed from lib/strstr.c.
32214         (mbsstr): Renamed from strstr.
32215         * lib/string_.h (strstr): Remove declaration. Change the conditional
32216         link warning.
32217         (mbsstr): New declaration.
32218         * m4/mbsstr.m4: New file.
32219         * m4/strstr.m4: Remove file.
32220         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
32221         REPLACE_STRSTR.
32222         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
32223         Don't initialize GNULIB_STRSTR.
32224         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
32225         substitute GNULIB_STRSTR and REPLACE_STRSTR.
32226         * MODULES.html.sh (Internationalization functions): Add mbsstr.
32227         (Support for systems lacking ANSI C 89): Remove strstr.
32228
32229 2007-02-04  Bruno Haible  <bruno@clisp.org>
32230
32231         New module mbsrchr.
32232         * modules/mbsrchr: New file.
32233         * lib/mbsrchr.c: New file.
32234         * lib/string_.h (strrchr): Add a conditional link warning.
32235         (mbsrchr): New declaration.
32236         * m4/mbsrchr.m4: New file.
32237         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32238         GNULIB_MBSRCHR.
32239         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
32240         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
32241
32242 2007-02-04  Bruno Haible  <bruno@clisp.org>
32243
32244         New module mbschr.
32245         * modules/mbschr: New file.
32246         * lib/mbschr.c: New file.
32247         * lib/string_.h (strchr): Add a conditional link warning.
32248         (mbschr): New declaration.
32249         * m4/mbschr.m4: New file.
32250         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32251         GNULIB_MBSCHR.
32252         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
32253         * MODULES.html.sh (Internationalization functions): Add mbschr.
32254
32255 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
32256
32257         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
32258
32259         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
32260
32261 2007-02-04  Bruno Haible  <bruno@clisp.org>
32262
32263         New module description section 'configure.ac-early'.
32264         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
32265         (func_get_autoconf_early_snippet): New function.
32266         (func_import, func_create_testdir): Use it. Remove special cases for
32267         modules 'extensions' and 'lock'.
32268         * modules/extensions (configure.ac-early): Require
32269         gl_USE_SYSTEM_EXTENSIONS.
32270         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
32271
32272 2007-02-04  Bruno Haible  <bruno@clisp.org>
32273
32274         Make use of gcj-4.3's -fsource and -ftarget option.
32275         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
32276         and if so try the options -fsource and -ftarget.
32277         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
32278         source_version, ftarget_option, target_version arguments.
32279         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
32280         (is_envjavac_oldgcj_14_14_usable): Renamed from
32281         is_envjavac_gcj_14_14_usable.
32282         (is_envjavac_oldgcj_14_13_usable): Renamed from
32283         is_envjavac_gcj_14_13_usable.
32284         (is_gcj_present): Update.
32285         (is_gcj_43, is_gcj43_usable): New functions.
32286         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
32287         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
32288         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
32289         try the options -fsource and -ftarget.
32290
32291 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
32292
32293         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
32294         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
32295         larger value.
32296
32297 2007-02-03  Jim Meyering  <jim@meyering.net>
32298
32299         Give tools a better chance to allocate space for very large buffers.
32300         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
32301
32302         Make pwd and readlink work also when run with an unreadable parent dir
32303         on systems with openat support.
32304         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
32305         provided getcwd function, even when we have openat support.
32306         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
32307
32308 2007-02-02  Bruno Haible  <bruno@clisp.org>
32309
32310         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
32311         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
32312         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
32313         portability problems if one of these functions is only used on specific
32314         platforms.
32315         Reported by Paul Eggert.
32316
32317 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
32318
32319         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
32320         is causing more trouble than it's curing.
32321         * lib/regex_internal.h (__mempcpy): Remove.
32322         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
32323         (and make the code a tad smaller to boot).
32324         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
32325
32326 2007-02-02  Jim Meyering  <jim@meyering.net>
32327
32328         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
32329         section, not in the Makefile.am: one.
32330
32331 2007-02-02  Eric Blake  <ebb9@byu.net>
32332
32333         * lib/strchrnul.c: Always include config.h first.
32334
32335         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
32336         gnulib strstr is not necessary here.
32337
32338 2007-02-02  Simon Josefsson  <simon@josefsson.org>
32339
32340         * m4/socklen.m4: Fix typo.
32341
32342 2007-02-02  Eric Blake  <ebb9@byu.net>
32343
32344         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
32345         * modules/netinet_in (Makefile.am): Likewise.
32346
32347 2007-02-01  Bruno Haible  <bruno@clisp.org>
32348
32349         * lib/string_.h (GL_LINK_WARNING): New macro.
32350         (strcasecmp, strstr, strcasestr): If provided by the system,
32351         conditionally define as a macro that leads to a warning instead of to
32352         an error.
32353         (strncasecmp): Conditionally define as a macro that leads to a warning.
32354
32355 2007-02-01  Karl Berry  <karl@gnu.org>
32356
32357         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
32358
32359 2007-02-01  Bruno Haible  <bruno@clisp.org>
32360
32361         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
32362         renamings.
32363
32364 2007-02-01  Eric Blake  <ebb9@byu.net>
32365
32366         * modules/regex (Depends-on): Revert dependence on mempcpy.
32367         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
32368         module's definition of mempcpy.
32369         Reported by Paul Eggert.
32370
32371 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
32372
32373         * lib/string_.h: If the gnulib module XYZ is not present, undefine
32374         the symbol XYZ before redefining it.  This fixes a problem with
32375         programs that don't use XYZ, when compiled on systems that define
32376         XYZ to something else.
32377
32378 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
32379
32380         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
32381         occurs when "mkdir -m foo" creates a setgid directory that is (1)
32382         writeable to group or other and (2) is intended to have a special
32383         mode bit that is set or cleared.  In such a case, the directory
32384         should be neither group- nor other-writeable until the special
32385         mode bits are right.
32386
32387 2007-01-31  Eric Blake  <ebb9@byu.net>
32388
32389         * modules/mountlist (Depends-on): Add strstr.
32390
32391         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
32392         bug.
32393         * modules/string (Makefile.am): Remove redundant replacement.
32394         * modules/regex (Depends-on): Add mempcpy.
32395
32396 2007-01-31  Bruno Haible  <bruno@clisp.org>
32397
32398         New module description field 'Link'.
32399         * gnulib-tool (func_usage): Document --extract-link-directive.
32400         (sed_extract_prog): Recognize 'Link' directive.
32401         (func_get_link_directive): New function.
32402         (func_import): Show summary of link directives.
32403         Handle --extract-link-directive option.
32404         * modules/acl (Link): New section.
32405         * modules/clock-time (Link): New section.
32406         * modules/euidaccess (Link): New section.
32407         * modules/gettext (Link): New section.
32408         * modules/iconv (Link): New section.
32409         * modules/lock (Link): New section.
32410         * modules/nanosleep (Link): New section.
32411         * modules/readline (Link): New section.
32412
32413 2007-01-27  Bruno Haible  <bruno@clisp.org>
32414
32415         Enforce the use of gnulib modules for unportable <string.h> functions.
32416         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
32417         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
32418         (gl_HEADER_STRING_H_BODY): Require it.
32419         * lib/string_.h: If the gnulib module XYZ is not present, redefine
32420         the symbol XYZ to one that gives a link error.
32421         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
32422         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
32423         * modules/mempcpy (configure.ac): Likewise.
32424         * modules/memrchr (configure.ac): Likewise.
32425         * modules/stpcpy (configure.ac): Likewise.
32426         * modules/stpncpy (configure.ac): Likewise.
32427         * modules/strcase (configure.ac): Likewise.
32428         * modules/strcasestr (configure.ac): Likewise.
32429         * modules/strchrnul (configure.ac): Likewise.
32430         * modules/strdup (configure.ac): Likewise.
32431         * modules/strndup (configure.ac): Likewise.
32432         * modules/strnlen (configure.ac): Likewise.
32433         * modules/strpbrk (configure.ac): Likewise.
32434         * modules/strsep (configure.ac): Likewise.
32435         * modules/strstr (configure.ac): Likewise.
32436         * modules/strtok_r (configure.ac): Likewise.
32437
32438 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
32439
32440         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
32441
32442 2007-01-30  Jim Meyering  <jim@meyering.net>
32443
32444         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
32445
32446 2007-01-29  Bruno Haible  <bruno@clisp.org>
32447
32448         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
32449         * lib/execute.c: Likewise.
32450         * lib/pipe.c: Likewise.
32451         * lib/printf-args.h: Likewise.
32452         * lib/printf-args.c: Likewise.
32453         * lib/printf-parse.c: Likewise.
32454         * lib/vasnprintf.c: Likewise.
32455
32456 2007-01-29  Eric Blake  <ebb9@byu.net>
32457
32458         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
32459         declaration.
32460
32461 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
32462
32463         * lib/strptime.h (strptime): Use 'restrict' for args where
32464         POSIX requires this.
32465         * lib/strptime.c (strptime): Likewise.
32466         Change license notice from LGPL to GPL, since gnulib-tool will
32467         change this as needed.
32468         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
32469         defined.
32470         Include "strptime.h" first, to check interface.
32471         Do not #undef _LIBC and _NL_CURRENT.
32472         Do not include <stdlib.h>; no longer needed.
32473         Include "time_r.h" and declare ptime_locale_status
32474         only if _LIBC is not defined.
32475         (__P): Remove unused macro.
32476         (match_string): Bring back glibc version, but use it only if _LIBC
32477         is defined.
32478         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
32479         Remove unnecessary assertion and abort() call.
32480         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
32481         * m4/strptime.m4: Fix serial number comment.
32482         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
32483         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
32484         (Depends-on): Add time_r.
32485
32486 2007-01-29  Bruno Haible  <bruno@clisp.org>
32487
32488         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32489         strptime.
32490         * modules/strptime (Depends-on): Add stdbool.
32491         * lib/strptime.h: Include <time.h> always. Add comments.
32492
32493 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
32494
32495         * modules/strptime: New file.
32496         * lib/strptime.h: New file.
32497         * lib/strptime.c: New file.
32498         * m4/strptime.m4: New file.
32499
32500 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
32501
32502         * MODULES.html.sh: New module mpsort.
32503         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
32504
32505         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
32506         a circularity problem with HP-UX ia64 reported by Bob Proulx in
32507         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
32508         All uses changed.
32509         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
32510         All uses changed.
32511         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
32512         to _Restrict_.
32513         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
32514         the parameter matches the prototype.
32515
32516 2007-01-28  Jim Meyering  <jim@meyering.net>
32517
32518         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
32519         sys/time.h here, reverting that part of the previous patch:
32520         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
32521
32522 2007-01-28  Bruno Haible  <bruno@clisp.org>
32523
32524         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
32525         value of $(SYS_TIME_H).
32526         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
32527         remove it conditionally, too. [added by Jim Meyering]
32528         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
32529         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
32530         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
32531         GETTIMEOFDAY_REPLACEMENT to 1.
32532
32533 2007-01-28  Bruno Haible  <bruno@clisp.org>
32534
32535         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
32536         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
32537         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
32538         Set UNISTD_H instead of UNISTD_H2.
32539         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
32540
32541 2007-01-28  Bruno Haible  <bruno@clisp.org>
32542
32543         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
32544         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
32545
32546 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32547
32548         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
32549         (func_create_testdir): Ensure C locale for `grep' and `tr'
32550         character ranges.
32551         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
32552         ACLOCAL_AMFLAGS parsing state machine.
32553
32554 2007-01-27  Bruno Haible  <bruno@clisp.org>
32555
32556         * modules/unistr/base: Update.
32557
32558 2007-01-27  Bruno Haible  <bruno@clisp.org>
32559
32560         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
32561         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
32562         * modules/unistr/u32-mbtouc-unsafe: Renamed from
32563         modules/unistr/u32-mbtouc.
32564         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
32565         * lib/unistr.h: Update.
32566         * lib/linebreak.c: Update.
32567         * modules/unistr/u32-mbtouc: Renamed from
32568         modules/unistr/u32-mbtouc-safe.
32569         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
32570         * lib/unistr.h: Update.
32571         * lib/unistr/u32-to-u8.c: Update.
32572         * lib/unistr/u32-to-u16.c: Update.
32573
32574 2007-01-27  Bruno Haible  <bruno@clisp.org>
32575
32576         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
32577         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
32578         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
32579         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
32580         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
32581         * modules/unistr/u16-mbtouc-unsafe: Renamed from
32582         modules/unistr/u16-mbtouc.
32583         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
32584         * lib/unistr.h: Update.
32585         * lib/linebreak.c: Update.
32586         * modules/linebreak: Update.
32587         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
32588         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
32589         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
32590         * modules/unistr/u16-mbtouc: Renamed from
32591         modules/unistr/u16-mbtouc-safe.
32592         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
32593         * lib/unistr.h: Update.
32594         * lib/unistr/u16-to-u8.c: Update.
32595         * modules/unistr/u16-to-u8: Update.
32596         * lib/unistr/u16-to-u32.c: Update.
32597         * modules/unistr/u16-to-u32: Update.
32598
32599 2007-01-27  Bruno Haible  <bruno@clisp.org>
32600
32601         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
32602         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
32603         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
32604         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
32605         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
32606         * modules/unistr/u8-mbtouc-unsafe: Renamed from
32607         modules/unistr/u8-mbtouc.
32608         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
32609         * lib/unistr.h: Update.
32610         * lib/striconveh.c: Update.
32611         * modules/striconveh: Update.
32612         * lib/linebreak.c: Update.
32613         * modules/linebreak: Update.
32614         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
32615         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
32616         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
32617         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
32618         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
32619         * lib/unistr.h: Update.
32620         * lib/striconveh.c: Update.
32621         * modules/striconveh: Update.
32622         * lib/unistr/u8-to-u16.c: Update.
32623         * modules/unistr/u8-to-u16: Update.
32624         * lib/unistr/u8-to-u32.c: Update.
32625         * modules/unistr/u8-to-u32: Update.
32626
32627 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32628
32629         Sync from Libtool.
32630         * lib/argz.c: Do not include strings.h nor memory.h, include
32631         string.h unconditionally.  Patch by Simon Josefsson.
32632
32633 2007-01-27  Bruno Haible  <bruno@clisp.org>
32634
32635         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
32636         from gl_HEADER_STRING_H_BODY.
32637         (gl_HEADER_STRING_H_BODY): Require it.
32638         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
32639         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
32640         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
32641         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
32642         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
32643         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
32644         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
32645         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
32646         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
32647         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
32648         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
32649         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
32650         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
32651         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
32652         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
32653
32654 2007-01-27  Bruno Haible  <bruno@clisp.org>
32655
32656         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
32657         check_PROGRAMS into noinst_PROGRAMS.
32658         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
32659         check_PROGRAMS in this case.
32660         (func_import): Set for_test to false.
32661         (func_create_testdir): Set for_test to true.
32662
32663 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
32664             Bruno Haible  <bruno@clisp.org>
32665
32666         * modules/strcasestr (Files): Remove lib/strcasestr.h.
32667         (Depends-on): Add string.
32668         (Includes): Use <string.h> instead of strcasestr.h.
32669         * modules/string (Makefile.am): Also substitute the value of
32670         REPLACE_STRCASESTR.
32671         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
32672         assume strcasestr is declared in <string.h> not <strings.h>. Also
32673         set REPLACE_STRCASESTR.
32674         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
32675         REPLACE_STRCASESTR.
32676         * lib/strcasestr.h: Remove file.
32677         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
32678         * lib/string_.h (strcasestr): New declaration.
32679
32680 2007-01-27  Bruno Haible  <bruno@clisp.org>
32681
32682         * lib/string_.h: Use 'extern'.
32683
32684 2007-01-27  Jim Meyering  <jim@meyering.net>
32685
32686         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
32687         of set-but-not-used local, "q".
32688
32689         * lib/mempcpy.c: Include <config.h> before <string.h>.
32690         This fixes a compilation error on HP-UX, due to the system's
32691         "restrict"-using mempcpy prototype.
32692
32693 2007-01-26  Bruno Haible  <bruno@clisp.org>
32694
32695         Small optimization.
32696         * lib/javacomp.c: Include c-strstr.h.
32697          (is_envjavac_gcj): Use c_strstr instead of strstr.
32698         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
32699
32700 2007-01-26  Bruno Haible  <bruno@clisp.org>
32701
32702         * MODULES.html.sh (Unicode string functions): Add the new modules.
32703
32704         * modules/uniconv/u32-strconv-to-locale: New file.
32705         * lib/uniconv/u32-strconv-to-locale.c: New file.
32706
32707         * modules/uniconv/u16-strconv-to-locale: New file.
32708         * lib/uniconv/u16-strconv-to-locale.c: New file.
32709
32710         * modules/uniconv/u8-strconv-to-locale: New file.
32711         * lib/uniconv/u8-strconv-to-locale.c: New file.
32712
32713         * modules/uniconv/u32-strconv-from-locale: New file.
32714         * lib/uniconv/u32-strconv-from-locale.c: New file.
32715
32716         * modules/uniconv/u16-strconv-from-locale: New file.
32717         * lib/uniconv/u16-strconv-from-locale.c: New file.
32718
32719         * modules/uniconv/u8-strconv-from-locale: New file.
32720         * lib/uniconv/u8-strconv-from-locale.c: New file.
32721
32722         * modules/uniconv/u32-strconv-to-enc: New file.
32723         * lib/uniconv/u32-strconv-to-enc.c: New file.
32724         * modules/uniconv/u32-strconv-to-enc-tests: New file.
32725         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
32726
32727         * modules/uniconv/u16-strconv-to-enc: New file.
32728         * lib/uniconv/u16-strconv-to-enc.c: New file.
32729         * lib/uniconv/u-strconv-to-enc.h: New file.
32730         * modules/uniconv/u16-strconv-to-enc-tests: New file.
32731         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
32732
32733         * modules/uniconv/u8-strconv-to-enc: New file.
32734         * lib/uniconv/u8-strconv-to-enc.c: New file.
32735         * modules/uniconv/u8-strconv-to-enc-tests: New file.
32736         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
32737
32738         * modules/uniconv/u32-strconv-from-enc: New file.
32739         * lib/uniconv/u32-strconv-from-enc.c: New file.
32740         * modules/uniconv/u32-strconv-from-enc-tests: New file.
32741         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
32742
32743         * modules/uniconv/u16-strconv-from-enc: New file.
32744         * lib/uniconv/u16-strconv-from-enc.c: New file.
32745         * modules/uniconv/u16-strconv-from-enc-tests: New file.
32746         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
32747
32748         * modules/uniconv/u8-strconv-from-enc: New file.
32749         * lib/uniconv/u8-strconv-from-enc.c: New file.
32750         * lib/uniconv/u-strconv-from-enc.h: New file.
32751         * modules/uniconv/u8-strconv-from-enc-tests: New file.
32752         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
32753
32754         * modules/uniconv/u32-conv-from-enc: New file.
32755         * lib/uniconv/u32-conv-from-enc.c: New file.
32756         * modules/uniconv/u32-conv-from-enc-tests: New file.
32757         * tests/uniconv/test-u32-conv-from-enc.c: New file.
32758
32759         * modules/uniconv/u16-conv-from-enc: New file.
32760         * lib/uniconv/u16-conv-from-enc.c: New file.
32761         * lib/uniconv/u-conv-from-enc.h: New file.
32762         * modules/uniconv/u16-conv-from-enc-tests: New file.
32763         * tests/uniconv/test-u16-conv-from-enc.c: New file.
32764
32765         * modules/uniconv/u8-conv-from-enc: New file.
32766         * lib/uniconv/u8-conv-from-enc.c: New file.
32767         * modules/uniconv/u8-conv-from-enc-tests: New file.
32768         * tests/uniconv/test-u8-conv-from-enc.c: New file.
32769
32770         * modules/uniconv/base: New file.
32771         * lib/uniconv.h: New file.
32772
32773 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
32774
32775         * doc/gnulib-tool.texi (Initial import): Update to match current
32776         behavior with strdup module.
32777         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
32778         * lib/memmem.h: Remove; all uses removed.  This is now done
32779         by <string.h>.
32780         * lib/mempcpy.h: Likewise.
32781         * lib/memrchr.h: Likewise.
32782         * lib/stpcpy.h: Likewise.
32783         * lib/stpncpy.h: Likewise.
32784         * lib/strcase.h: Likewise.
32785         * lib/strchrnul.h: Likewise.
32786         * lib/strdup.h: Likewise.
32787         * lib/strndup.h: Likewise.
32788         * lib/strnlen.h: Likewise.
32789         * lib/strpbrk.h: Likewise.
32790         * lib/strsep.h: Likewise.
32791         * lib/strstr.h: Likewise.
32792         * lib/strtok_r.h: Likewise.
32793         * lib/string_.h: New file.
32794         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
32795         Rely on <string.h> instead.
32796         * lib/canon-host.c: Likewise.
32797         * lib/chdir-long.c: Likewise.
32798         * lib/concatpath.c: Likewise.
32799         * lib/exclude.c: Likewise.
32800         * lib/fchdir.c: Likewise.
32801         * lib/getaddrinfo.c: Likewise.
32802         * lib/getcwd.c: Likewise.
32803         * lib/getsubopt.c: Likewise.
32804         * lib/glob.c: Likewise.
32805         * lib/hard-locale.c: Likewise.
32806         * lib/iconvme.c: Likewise.
32807         * lib/javacomp.c: Likewise.
32808         * lib/mempcpy.c: Likewise.
32809         * lib/memrchr.c: Likewise.
32810         * lib/regex_internal.h: Likewise.
32811         * lib/stpncpy.c: Likewise.
32812         * lib/strcasecmp.c: Likewise.
32813         * lib/strchrnul.c: Likewise.
32814         * lib/strdup.c: Likewise.
32815         * lib/striconv.c: Likewise.
32816         * lib/striconveh.c: Likewise.
32817         * lib/striconveha.c: Likewise.
32818         * lib/strncasecmp.c: Likewise.
32819         * lib/strndup.c: Likewise.
32820         * lib/strnlen.c: Likewise.
32821         * lib/strsep.c: Likewise.
32822         * lib/strstr.c: Likewise.
32823         * lib/strtok_r.c: Likewise.
32824         * lib/userspec.c: Likewise.
32825         * lib/w32spawn.h: Likewise.
32826         * lib/xstrndup.c: Likewise.
32827         * lib/mountlist.c (strstr): Remove decl.
32828         * m4/string_h.m4: New file.
32829         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
32830         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
32831         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
32832         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
32833         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
32834         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
32835         Set REPLACE_STRCASECMP if necessary.
32836         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
32837         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
32838         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
32839         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
32840         HAVE_DECL_STRDUP if necessary.
32841         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
32842         since gl_FUNC_STRNDUP does that now.
32843         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
32844         Check for decl here...
32845         (gl_PREREQ_STRNLEN): ... not here.
32846         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
32847         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
32848         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
32849         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
32850         necessary.
32851         * modules/string: New file.
32852         * modules/memmem (Files): Remove special-purpose include file.
32853         (Depends-on): Add string.
32854         (Include): Include <string.h>, not the removed file.
32855         * modules/mempcpy: Likewise.
32856         * modules/memrchr: Likewise.
32857         * modules/stpcpy: Likewise.
32858         * modules/stpncpy: Likewise.
32859         * modules/strcase: Likewise.
32860         * modules/strchrnul: Likewise.
32861         * modules/strdup: Likewise.
32862         * modules/strndup: Likewise.
32863         * modules/strnlen: Likewise.
32864         * modules/strpbrk: Likewise.
32865         * modules/strsep: Likewise.
32866         * modules/strstr: Likewise.
32867         * modules/strtok_r: Likewise.
32868         * tests/test-dirname.c: Don't include "strdup.h", since
32869         <string.h> now suffices.
32870         * tests/test-memmem.c: Don't include "memmem.h", since
32871         <string.h> now suffices.
32872
32873 2007-01-25  Bruno Haible  <bruno@clisp.org>
32874
32875         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
32876         *resultp is 0.
32877
32878         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
32879         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
32880         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
32881         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
32882
32883         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
32884         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
32885         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
32886         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
32887         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
32888         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
32889
32890 2007-01-24  Bruno Haible  <bruno@clisp.org>
32891
32892         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
32893         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
32894         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
32895         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
32896         gl_FUNC_FTS_CORE.
32897         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
32898         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
32899         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
32900         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
32901         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
32902         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
32903         gl_FUNC_FCHOWNAT.
32904         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
32905         gl_FUNC_STRFTIME.
32906         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
32907         Reported by Ralf Wildenhues.
32908
32909 2007-01-24  Bruno Haible  <bruno@clisp.org>
32910
32911         Drop AC_REQUIRE calls that are redundant with the module dependencies.
32912         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
32913         gl_GETADDRINFO.
32914         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
32915         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
32916         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
32917
32918 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
32919
32920         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
32921         Don't use 'exit'; just return from 'main'.
32922         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
32923
32924         * lib/fnmatch_.h: Readjust white space and comments to match
32925         glibc, to avoid spurious diffs.
32926
32927 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
32928
32929         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
32930         2004-12-01 change by Jakub Jelinek, since this code won't compile
32931         if !LIBC.  Problem reported by Bob Proulx.
32932
32933 2007-01-23  Bruno Haible  <bruno@clisp.org>
32934
32935         * lib/striconveh.c: Include c-strcaseeq.h.
32936         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
32937         * modules/striconveh (Depends-on): Add c-strcaseeq.
32938
32939 2007-01-23  Bruno Haible  <bruno@clisp.org>
32940
32941         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
32942
32943         * modules/c-strcaseeq: New file.
32944         * lib/c-strcaseeq.h: New file.
32945
32946         * modules/streq: New file.
32947         * lib/streq.h: New file.
32948
32949 2007-01-23  Bruno Haible  <bruno@clisp.org>
32950
32951         * modules/striconveha-tests: New file.
32952         * tests/test-striconveha.c: New file.
32953
32954         * lib/striconveha.h: Include <stdbool.h>.
32955         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
32956         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
32957         (mem_iconveha_notranslit): Renamed from mem_iconveha.
32958         (mem_iconveha): New function.
32959         (str_iconveha_notranslit): Renamed from str_iconveha.
32960         (str_iconveha): New function.
32961         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
32962         c-strcase.
32963
32964 2007-01-23  Bruno Haible  <bruno@clisp.org>
32965
32966         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
32967         encodings without forgiving before trying any encoding with handler.
32968         (str_iconveha): Try all encodings without forgiving before trying any
32969         encoding with handler.
32970
32971 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
32972
32973         Import the following changes from libc.
32974
32975         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
32976
32977         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
32978
32979         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
32980
32981         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
32982         normal_bracket label.
32983
32984         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
32985
32986         [BZ #361]
32987         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
32988         to normal_bracket after fetching the next character.
32989
32990 2007-01-22  Bruno Haible  <bruno@clisp.org>
32991
32992         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
32993         argument.
32994         * lib/striconveh.c (iconv_carefully_1): New function.
32995         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
32996         argument.
32997         (str_cd_iconveh): Update.
32998         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
32999         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
33000         * tests/test-striconveh.c (MAGIC): New macro.
33001         (new_offsets): New function.
33002         (main): Test call with and without offsets.
33003
33004 2007-01-22  Bruno Haible  <bruno@clisp.org>
33005
33006         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
33007         * modules/sys_select (Makefile.am): Likewise.
33008         * modules/sys_socket (Makefile.am): Likewise.
33009         * modules/sys_time (Makefile.am): Likewise.
33010
33011 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
33012
33013         * modules/gettimeofday (License): Change from GPL to LGPL, since
33014         gettimeofday is a library function.
33015
33016 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33017
33018         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
33019
33020 2007-01-21  Bruno Haible  <bruno@clisp.org>
33021
33022         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
33023
33024 2007-01-21  Bruno Haible  <bruno@clisp.org>
33025
33026         * modules/striconveha: New file.
33027         * lib/striconveha.h: New file.
33028         * lib/striconveha.c: New file.
33029         * MODULES.html.sh (Internationalization functions): Add striconveha.
33030         * lib/striconv.c (str_iconv): Optimize the case of an empty input
33031         string.
33032         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
33033
33034 2007-01-21  Bruno Haible  <bruno@clisp.org>
33035
33036         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
33037         * lib/striconveh.c (str_iconveh): Likewise.
33038
33039 2007-01-21  Bruno Haible  <bruno@clisp.org>
33040
33041         * lib/striconveh.h (mem_iconveh): New declaration.
33042         * lib/striconveh.c (mem_iconveh): New function.
33043         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
33044
33045 2007-01-21  Bruno Haible  <bruno@clisp.org>
33046
33047         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
33048
33049         * lib/striconveh.h (mem_cd_iconveh): Change specification.
33050         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
33051         original result buffer.
33052         (str_cd_iconveh): Update.
33053         * tests/test-striconveh.c (main): Update.
33054
33055         * lib/striconv.h (mem_cd_iconv): Change specification.
33056         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
33057         result buffer.
33058         (str_cd_iconv): Update.
33059         * tests/test-striconv.c (main): Update.
33060
33061 2007-01-21  Bruno Haible  <bruno@clisp.org>
33062
33063         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
33064
33065 2007-01-20  Jim Meyering  <jim@meyering.net>
33066
33067         * lib/userspec.c (parse_with_separator): If a user or group string
33068         starts with "+", skip the corresponding name-to-ID look-up, since
33069         such a look-up must fail: user and group names may not include "+".
33070
33071 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
33072
33073         * lib/poll.c: Include sys/time.h and time.h unconditionally,
33074         since we now assume the sys_time module.
33075         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
33076         check for sys/time.h; no longer needed.
33077         * modules/poll (Depends-on): Depend on sys_time.
33078
33079 2007-01-18  Bruno Haible  <bruno@clisp.org>
33080
33081         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
33082         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
33083
33084         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
33085         gettimeofday.
33086
33087         * tests/test-gettimeofday.c: Include <time.h>.
33088         (dummy): Remove variable.
33089
33090         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
33091         gl_HEADER_SYS_TIME_H.
33092         (gl_HEADER_SYS_TIME_H): New macro.
33093
33094         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
33095         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33096         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
33097         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
33098         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33099         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
33100         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
33101         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33102         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
33103         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
33104         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33105
33106         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
33107         last change; it caused a compilation error when cross-compiling to
33108         Cygwin.
33109
33110 2007-01-18  Jim Meyering  <jim@meyering.net>
33111
33112         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
33113         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
33114         than the race-prone "test -d sys || mkdir sys".
33115         (configure.ac): Use AC_PROG_MKDIR_P.
33116         * modules/sys_select: Likewise.
33117         * modules/sys_socket: Likewise.
33118         * modules/sys_time: Likewise.
33119
33120 2007-01-18  Eric Blake  <ebb9@byu.net>
33121
33122         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
33123         replace gettimeofday.
33124         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
33125         name, to avoid infinite recursion.
33126
33127 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
33128
33129         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
33130         module sys_time.
33131         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
33132         assume timespec.h defines struct timeval.
33133         * lib/settime.c: Likewise.
33134         * lib/utimens.c: Likewise.
33135         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
33136         since we now assume the gettimeofday module.
33137         * lib/tempname.c (__gen_tempname): Likewise.
33138         * lib/gettimeofday.h: Remove.
33139         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
33140         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
33141         Include <time.h>, for 'time()'.
33142         (localtime_buffer_addr): Also use this workaround if
33143         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
33144         to simplify the uses.  All uses changed.
33145         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
33146         that #undef is inside {}, and 'const' follows type name consistently.
33147         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
33148         (gettimeofday): Do not use the maximum possible value for
33149         tv->tv_usec, since that might break usages other than ls.c.
33150         Instead, we'll leave ls.c alone.  This undoes today's patch
33151         by Bruno.  Add a compile-time warning for 1s-clock resolution;
33152         we've never observed the problem but might as well keep the
33153         canary.
33154         * lib/nanosleep.c: Include timespec.h first, for interface check.
33155         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
33156         now assume the sys_time module.
33157         * lib/tempname.c: Likewise.
33158         * lib/timespec.h: Likewise.
33159         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
33160         needed.
33161         * lib/strftime.c: Likewise.
33162         * lib/timespec.h: Likewise.
33163         * lib/posixtm.c: Include posixtm.h first, for interface check.
33164         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
33165         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
33166         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
33167         * lib/sys_time_.h: New file.
33168         * lib/timespec.h (struct timespec): Use long int, not long.
33169         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
33170         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
33171         Remove obsolescent call to AC_HEADER_TIME.
33172         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
33173         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
33174         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
33175         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
33176         Likewise.
33177         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
33178         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
33179         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
33180         into the sys_time module.  Check for gettimeofday just once.
33181         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
33182         for gettimeofday signature to just check the signature.  Merely
33183         compile it, since linking doesn't test signature.  Improve test for
33184         whether gettimeofday.o is actually needed.
33185         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
33186         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
33187         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
33188         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33189         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
33190         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
33191         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
33192         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
33193         than worrying about sys/time.h.
33194         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
33195         Don't bother worrying about TIME_WITH_SYS_TIME.
33196         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
33197         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
33198         * m4/sys_time_h.m4: New file.
33199         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
33200         Don't include sys/time.h.  Return from main rather than exiting.
33201         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
33202         all uses changed.
33203         * modules/gethrxtime (Depends-on): Add sys_time.
33204         * modules/gettime (Depends-on): Likewise.
33205         * modules/gettimeofday (Depends-on): Likewise.
33206         * modules/nanosleep (Depends-on): Likewise.
33207         * modules/settime (Depends-on): Likewise.
33208         * modules/tempname (Depends-on): Likewise.
33209         * modules/utimens (Depends-on): Likewise.
33210         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
33211         (Include:) Change back to <sys/time.h>.
33212         (Maintainer:) Add self.
33213         * modules/sys_time: New file.
33214         * modules/tempname (Depends-on): Add gettimeofday.
33215         * tests/test-gettimeofday.c: Include <sys/time.h>
33216         rather than gettimeofday.h.
33217
33218 2007-01-17  Bruno Haible  <bruno@clisp.org>
33219
33220         * gnulib-tool (func_get_license): Revert last patch. Instead, let
33221         the license default to GPL.
33222         (func_create_testdir): Don't complain if a module is LGPL and its
33223         tests module depends on GPLed modules.
33224
33225 2007-01-17  Bruno Haible  <bruno@clisp.org>
33226
33227         * lib/gettimeofday.c (gettimeofday): Add code for the case
33228         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
33229         maximum possible value for tv->tv_usec, rather than the minimum one.
33230
33231 2005-10-08  Martin Lambers  <marlam@marlam.de>
33232 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
33233 2007-01-16  Bruno Haible  <bruno@clisp.org>
33234
33235         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
33236         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
33237         gl_FUNC_GETTIMEOFDAY.
33238         (Include): Add gettimeofday.h.
33239         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
33240         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
33241         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
33242         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
33243         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
33244         * lib/gettimeofday.h: New file.
33245         * lib/gettimeofday.c: Include <sys/timeb.h>.
33246         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
33247         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33248         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
33249         fall back on time().
33250
33251         * tests/test-gettimeofday.c: New file.
33252         * modules/gettimeofday-tests: New file.
33253
33254 2007-01-16  Eric Blake  <ebb9@byu.net>
33255
33256         * modules/fnmatch (Depends-on): Depend on wchar.
33257         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
33258         * m4/fnmatch.m4: Likewise.
33259         * modules/mbchar (Makefile.am): Assume <wchar.h>.
33260         * m4/mbchar.m4: Likewise.
33261         * modules/mbswidth (Depends-on): Depend on wchar.
33262         * lib/mbswidth.c: Assume <wchar.h>.
33263         * m4/mbswidth.m4: Likewise.
33264         * modules/quotearg (Depends-on): Depend on wchar.
33265         * lib/quotearg.c: Assume <wchar.h>.
33266         * m4/quotearg.m4: Likewise.
33267         * modules/regex (Depends-on): Depend on wchar.
33268         * lib/regex_internal.h: Assume <wchar.h>.
33269         * m4/regex.m4: Likewise.
33270         * modules/stdint (Depends-on): Depend on wchar.
33271         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
33272         * m4/stdint.m4: Likewise.
33273         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
33274         * modules/strftime (Depends-on): Depend on wchar.
33275         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
33276         * modules/strtol (Depends-on): Depend on wchar.
33277         * lib/strtol.c: Assume <wchar.h>.
33278         * modules/wcwidth (Depends-on): Depend on wchar.
33279         * lib/wcwidth.h: Assume <wchar.h>.
33280         * m4/wcwidth.m4: Likewise.
33281
33282 2007-01-16  Bruno Haible  <bruno@clisp.org>
33283
33284         * modules/csharpexec-script: New, created from...
33285         * modules/csharpexec: ... this.
33286
33287 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
33288
33289         * modules/javaexec-script: New, created from...
33290         * modules/javaexec: ... this.
33291
33292 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33293
33294         * modules/poll (Dependencies): Add sys_select.
33295
33296 2007-01-15  Jim Meyering  <jim@meyering.net>
33297
33298         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
33299         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
33300         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
33301         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
33302
33303 2007-01-15  Bruno Haible  <bruno@clisp.org>
33304
33305         * modules/striconveh: New file.
33306         * lib/striconveh.h: New file.
33307         * lib/striconveh.c: New file.
33308         * MODULES.html.sh (Internationalization functions): Add striconveh.
33309
33310         * modules/striconveh-tests: New file.
33311         * tests/test-striconveh.c: New file.
33312
33313 2007-01-15  Bruno Haible  <bruno@clisp.org>
33314
33315         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
33316         not from GNU libiconv or GNU libc.
33317
33318 2007-01-15  Bruno Haible  <bruno@clisp.org>
33319
33320         * doc/gnulib-intro.texi (Copyright): Explain the different license
33321         terms for module descriptions, autoconf macros, tests, documentation.
33322
33323 2007-01-14  Bruno Haible  <bruno@clisp.org>
33324
33325         * modules/striconv-tests: New file.
33326         * tests/test-striconv.c: New file.
33327
33328 2007-01-14  Bruno Haible  <bruno@clisp.org>
33329
33330         * modules/iconv-tests: New file.
33331         * tests/test-iconv.c: New file.
33332
33333 2007-01-14  Bruno Haible  <bruno@clisp.org>
33334
33335         * gnulib-tool (func_get_license): For test modules, use the license of
33336         the main module.
33337
33338 2007-01-14  Bruno Haible  <bruno@clisp.org>
33339
33340         * modules/iconv (Include): Clarify that <iconv.h> can only be included
33341         if iconv is found to exist.
33342
33343 2007-01-14  Bruno Haible  <bruno@clisp.org>
33344
33345         * modules/c-ctype-tests: New file.
33346         * tests/test-c-ctype.c: New file.
33347
33348 2007-01-14  Bruno Haible  <bruno@clisp.org>
33349
33350         * modules/binary-io-tests: New file.
33351         * tests/test-binary-io.sh: New file.
33352         * tests/test-binary-io.c: New file.
33353
33354 2007-01-14  Bruno Haible  <bruno@clisp.org>
33355
33356         * modules/array-oset-tests: New file.
33357         * tests/test-array_oset.c: New file.
33358
33359 2007-01-14  Bruno Haible  <bruno@clisp.org>
33360
33361         * modules/array-list-tests: New file.
33362         * tests/test-array_list.c: New file.
33363
33364 2007-01-14  Bruno Haible  <bruno@clisp.org>
33365
33366         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
33367         and make.
33368         Reported by Simon Josefsson in
33369         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
33370
33371 2007-01-14  Bruno Haible  <bruno@clisp.org>
33372
33373         * modules/allocsa-tests: New file.
33374         * tests/test-allocsa.c: New file.
33375
33376 2007-01-14  Bruno Haible  <bruno@clisp.org>
33377
33378         * modules/fchdir (Depends-on): Add absolute-header.
33379         * modules/unistd (Depends-on): Likewise.
33380
33381 2006-12-30  Bruno Haible  <bruno@clisp.org>
33382
33383         * modules/fchdir: New file.
33384         * modules/unistd (Files): Add lib/unistd_.h.
33385         (Makefile.am): Generate unistd.h from unistd_.h.
33386         * lib/fchdir.c: New file.
33387         * lib/dirent_.h: New file.
33388         * lib/unistd_.h: New file.
33389         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
33390         * m4/fchdir.m4: New file.
33391         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
33392         (gl_HEADER_UNISTD): Invoke it.
33393         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
33394         function.
33395         * lib/backupfile.c (opendir, closedir): Undefine.
33396         * lib/chown.c (open, close): Undefine.
33397         * lib/clean-temp.c (open, close): Undefine.
33398         * lib/copy-file.c (open, close): Undefine.
33399         * lib/execute.c (open, close): Undefine.
33400         * lib/fsusage.c (open, close): Undefine.
33401         * lib/gc-gnulib.c (open, close): Undefine.
33402         * lib/getcwd.c (opendir, closedir): Undefine.
33403         * lib/glob.c (opendir, closedir): Undefine.
33404         * lib/javacomp.c (open, close): Undefine.
33405         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
33406         * lib/openat-proc.c (open, close): Undefine.
33407         * lib/pagealign_alloc.c (open, close): Undefine.
33408         * lib/pipe.c (open, close): Undefine.
33409         * lib/progreloc.c (open, close): Undefine.
33410         * lib/savedir.c (opendir, closedir): Undefine.
33411         * lib/utime.c (open, close): Undefine.
33412         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
33413
33414 2007-01-10  Bruno Haible  <bruno@clisp.org>
33415
33416         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
33417
33418 2007-01-12  Eric Blake  <ebb9@byu.net>
33419
33420         Provide a robust <wchar.h>.  Further simplifications are now
33421         possible in other modules, but not included here.
33422         * modules/wchar: New module.
33423         * m4/wchar.m4: New file.
33424         * lib/wchar_.h: Likewise.
33425         * modules/mbchar (Depends-on): Depend on wchar, as the first use
33426         of the new module.
33427         * MODULES.html.sh (Extended multibyte and wide character utilities):
33428         New section.
33429
33430 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
33431
33432         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
33433         to a reasonable default for memory allocation.
33434         (xreadlink): Don't allocate a huge buffer, to work around a buggy
33435         file system that reports garbage st_size values for symlinks.
33436         Problem reported by Liyang Hu.
33437
33438 2007-01-11  Simon Josefsson  <simon@josefsson.org>
33439
33440         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
33441         Emacs .#* auto-save files).
33442
33443 2007-01-11  Bruno Haible  <bruno@clisp.org>
33444
33445         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
33446         directory.
33447
33448 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
33449
33450         Use @...@ consistently in lib/wctype_.h.
33451         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
33452         on it being set to 1 or 0.
33453         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
33454         go back to AC_SUBSTing it.
33455         * modules/wctype (Makefile.am): Undo previous change.
33456
33457 2007-01-10  Eric Blake  <ebb9@byu.net>
33458
33459         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
33460         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
33461         * modules/wctype (Makefile.am): Likewise.
33462         Reported by Chris McGuire.
33463
33464 2007-01-10  Jim Meyering  <jim@meyering.net>
33465
33466         fts.c: a small readability/maintainability improvement
33467         * lib/fts.c (fts_read): Make this code slightly more readable and
33468         maintainable by hoisting the "sp->fts_cur = p" assignments to
33469         immediately follow the statements that set P.  Derived from
33470         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
33471
33472 2007-01-10  Eric Blake  <ebb9@byu.net>
33473
33474         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
33475         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
33476         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
33477         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
33478         Reported by Chris McGuire.
33479
33480 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33481
33482         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
33483         in sed script.
33484
33485 2007-01-09  Bruno Haible  <bruno@clisp.org>
33486
33487         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
33488         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
33489         variables.
33490         (func_module): Use them.
33491
33492 2007-01-09  Bruno Haible  <bruno@clisp.org>
33493
33494         * modules/unistr/base: New file.
33495         * lib/unistr.h: New file.
33496
33497         * modules/unistr/u8-to-u16: New file.
33498         * lib/unistr/u8-to-u16.c: New file.
33499
33500         * modules/unistr/u8-to-u32: New file.
33501         * lib/unistr/u8-to-u32.c: New file.
33502
33503         * modules/unistr/u16-to-u8: New file.
33504         * lib/unistr/u16-to-u8.c: New file.
33505
33506         * modules/unistr/u16-to-u32: New file.
33507         * lib/unistr/u16-to-u32.c: New file.
33508
33509         * modules/unistr/u32-to-u8: New file.
33510         * lib/unistr/u32-to-u8.c: New file.
33511
33512         * modules/unistr/u32-to-u16: New file.
33513         * lib/unistr/u32-to-u16.c: New file.
33514
33515         * modules/unistr/u8-check: New file.
33516         * modules/unistr/u16-check: New file.
33517         * modules/unistr/u32-check: New file.
33518         * lib/unistr/u8-check.c: New file.
33519         * lib/unistr/u16-check.c: New file.
33520         * lib/unistr/u32-check.c: New file.
33521
33522         * modules/unistr/u8-chr: New file.
33523         * modules/unistr/u16-chr: New file.
33524         * modules/unistr/u32-chr: New file.
33525         * lib/unistr/u8-chr.c: New file.
33526         * lib/unistr/u16-chr.c: New file.
33527         * lib/unistr/u32-chr.c: New file.
33528
33529         * modules/unistr/u8-cmp: New file.
33530         * modules/unistr/u16-cmp: New file.
33531         * modules/unistr/u32-cmp: New file.
33532         * lib/unistr/u8-cmp.c: New file.
33533         * lib/unistr/u16-cmp.c: New file.
33534         * lib/unistr/u32-cmp.c: New file.
33535
33536         * modules/unistr/u8-cpy: New file.
33537         * modules/unistr/u16-cpy: New file.
33538         * modules/unistr/u32-cpy: New file.
33539         * lib/unistr/u8-cpy.c: New file.
33540         * lib/unistr/u16-cpy.c: New file.
33541         * lib/unistr/u32-cpy.c: New file.
33542         * lib/unistr/u-cpy.h: New file.
33543
33544         * modules/unistr/u8-cpy-alloc: New file.
33545         * modules/unistr/u16-cpy-alloc: New file.
33546         * modules/unistr/u32-cpy-alloc: New file.
33547         * lib/unistr/u8-cpy-alloc.c: New file.
33548         * lib/unistr/u16-cpy-alloc.c: New file.
33549         * lib/unistr/u32-cpy-alloc.c: New file.
33550         * lib/unistr/u-cpy-alloc.h: New file.
33551
33552         * modules/unistr/u8-endswith: New file.
33553         * modules/unistr/u16-endswith: New file.
33554         * modules/unistr/u32-endswith: New file.
33555         * lib/unistr/u8-endswith.c: New file.
33556         * lib/unistr/u16-endswith.c: New file.
33557         * lib/unistr/u32-endswith.c: New file.
33558         * lib/unistr/u-endswith.h: New file.
33559
33560         * modules/unistr/u8-mblen: New file.
33561         * modules/unistr/u16-mblen: New file.
33562         * modules/unistr/u32-mblen: New file.
33563         * lib/unistr/u8-mblen.c: New file.
33564         * lib/unistr/u16-mblen.c: New file.
33565         * lib/unistr/u32-mblen.c: New file.
33566
33567         * modules/unistr/u8-mbtouc: New file.
33568         * modules/unistr/u16-mbtouc: New file.
33569         * modules/unistr/u32-mbtouc: New file.
33570         * lib/unistr/u8-mbtouc.c: New file.
33571         * lib/unistr/u16-mbtouc.c: New file.
33572         * lib/unistr/u32-mbtouc.c: New file.
33573
33574         * modules/unistr/u8-mbtouc-safe: New file.
33575         * modules/unistr/u16-mbtouc-safe: New file.
33576         * modules/unistr/u32-mbtouc-safe: New file.
33577         * lib/unistr/u8-mbtouc-safe.c: New file.
33578         * lib/unistr/u16-mbtouc-safe.c: New file.
33579         * lib/unistr/u32-mbtouc-safe.c: New file.
33580
33581         * modules/unistr/u8-move: New file.
33582         * modules/unistr/u16-move: New file.
33583         * modules/unistr/u32-move: New file.
33584         * lib/unistr/u8-move.c: New file.
33585         * lib/unistr/u16-move.c: New file.
33586         * lib/unistr/u32-move.c: New file.
33587         * lib/unistr/u-move.h: New file.
33588
33589         * modules/unistr/u8-next: New file.
33590         * modules/unistr/u16-next: New file.
33591         * modules/unistr/u32-next: New file.
33592         * lib/unistr/u8-next.c: New file.
33593         * lib/unistr/u16-next.c: New file.
33594         * lib/unistr/u32-next.c: New file.
33595
33596         * modules/unistr/u8-prev: New file.
33597         * modules/unistr/u16-prev: New file.
33598         * modules/unistr/u32-prev: New file.
33599         * lib/unistr/u8-prev.c: New file.
33600         * lib/unistr/u16-prev.c: New file.
33601         * lib/unistr/u32-prev.c: New file.
33602
33603         * modules/unistr/u8-set: New file.
33604         * modules/unistr/u16-set: New file.
33605         * modules/unistr/u32-set: New file.
33606         * lib/unistr/u8-set.c: New file.
33607         * lib/unistr/u16-set.c: New file.
33608         * lib/unistr/u32-set.c: New file.
33609         * lib/unistr/u-set.h: New file.
33610
33611         * modules/unistr/u8-startswith: New file.
33612         * modules/unistr/u16-startswith: New file.
33613         * modules/unistr/u32-startswith: New file.
33614         * lib/unistr/u8-startswith.c: New file.
33615         * lib/unistr/u16-startswith.c: New file.
33616         * lib/unistr/u32-startswith.c: New file.
33617         * lib/unistr/u-startswith.h: New file.
33618
33619         * modules/unistr/u8-stpcpy: New file.
33620         * modules/unistr/u16-stpcpy: New file.
33621         * modules/unistr/u32-stpcpy: New file.
33622         * lib/unistr/u8-stpcpy.c: New file.
33623         * lib/unistr/u16-stpcpy.c: New file.
33624         * lib/unistr/u32-stpcpy.c: New file.
33625         * lib/unistr/u-stpcpy.h: New file.
33626
33627         * modules/unistr/u8-stpncpy: New file.
33628         * modules/unistr/u16-stpncpy: New file.
33629         * modules/unistr/u32-stpncpy: New file.
33630         * lib/unistr/u8-stpncpy.c: New file.
33631         * lib/unistr/u16-stpncpy.c: New file.
33632         * lib/unistr/u32-stpncpy.c: New file.
33633         * lib/unistr/u-stpncpy.h: New file.
33634
33635         * modules/unistr/u8-strcat: New file.
33636         * modules/unistr/u16-strcat: New file.
33637         * modules/unistr/u32-strcat: New file.
33638         * lib/unistr/u8-strcat.c: New file.
33639         * lib/unistr/u16-strcat.c: New file.
33640         * lib/unistr/u32-strcat.c: New file.
33641         * lib/unistr/u-strcat.h: New file.
33642
33643         * modules/unistr/u8-strchr: New file.
33644         * modules/unistr/u16-strchr: New file.
33645         * modules/unistr/u32-strchr: New file.
33646         * lib/unistr/u8-strchr.c: New file.
33647         * lib/unistr/u16-strchr.c: New file.
33648         * lib/unistr/u32-strchr.c: New file.
33649
33650         * modules/unistr/u8-strcmp: New file.
33651         * modules/unistr/u16-strcmp: New file.
33652         * modules/unistr/u32-strcmp: New file.
33653         * lib/unistr/u8-strcmp.c: New file.
33654         * lib/unistr/u16-strcmp.c: New file.
33655         * lib/unistr/u32-strcmp.c: New file.
33656
33657         * modules/unistr/u8-strcpy: New file.
33658         * modules/unistr/u16-strcpy: New file.
33659         * modules/unistr/u32-strcpy: New file.
33660         * lib/unistr/u8-strcpy.c: New file.
33661         * lib/unistr/u16-strcpy.c: New file.
33662         * lib/unistr/u32-strcpy.c: New file.
33663         * lib/unistr/u-strcpy.h: New file.
33664
33665         * modules/unistr/u8-strcspn: New file.
33666         * modules/unistr/u16-strcspn: New file.
33667         * modules/unistr/u32-strcspn: New file.
33668         * lib/unistr/u8-strcspn.c: New file.
33669         * lib/unistr/u16-strcspn.c: New file.
33670         * lib/unistr/u32-strcspn.c: New file.
33671         * lib/unistr/u-strcspn.h: New file.
33672
33673         * modules/unistr/u8-strdup: New file.
33674         * modules/unistr/u16-strdup: New file.
33675         * modules/unistr/u32-strdup: New file.
33676         * lib/unistr/u8-strdup.c: New file.
33677         * lib/unistr/u16-strdup.c: New file.
33678         * lib/unistr/u32-strdup.c: New file.
33679         * lib/unistr/u-strdup.h: New file.
33680
33681         * modules/unistr/u8-strlen: New file.
33682         * modules/unistr/u16-strlen: New file.
33683         * modules/unistr/u32-strlen: New file.
33684         * lib/unistr/u8-strlen.c: New file.
33685         * lib/unistr/u16-strlen.c: New file.
33686         * lib/unistr/u32-strlen.c: New file.
33687         * lib/unistr/u-strlen.h: New file.
33688
33689         * modules/unistr/u8-strmblen: New file.
33690         * modules/unistr/u16-strmblen: New file.
33691         * modules/unistr/u32-strmblen: New file.
33692         * lib/unistr/u8-strmblen.c: New file.
33693         * lib/unistr/u16-strmblen.c: New file.
33694         * lib/unistr/u32-strmblen.c: New file.
33695
33696         * modules/unistr/u8-strmbtouc: New file.
33697         * modules/unistr/u16-strmbtouc: New file.
33698         * modules/unistr/u32-strmbtouc: New file.
33699         * lib/unistr/u8-strmbtouc.c: New file.
33700         * lib/unistr/u16-strmbtouc.c: New file.
33701         * lib/unistr/u32-strmbtouc.c: New file.
33702
33703         * modules/unistr/u8-strncat: New file.
33704         * modules/unistr/u16-strncat: New file.
33705         * modules/unistr/u32-strncat: New file.
33706         * lib/unistr/u8-strncat.c: New file.
33707         * lib/unistr/u16-strncat.c: New file.
33708         * lib/unistr/u32-strncat.c: New file.
33709         * lib/unistr/u-strncat.h: New file.
33710
33711         * modules/unistr/u8-strncmp: New file.
33712         * modules/unistr/u16-strncmp: New file.
33713         * modules/unistr/u32-strncmp: New file.
33714         * lib/unistr/u8-strncmp.c: New file.
33715         * lib/unistr/u16-strncmp.c: New file.
33716         * lib/unistr/u32-strncmp.c: New file.
33717
33718         * modules/unistr/u8-strncpy: New file.
33719         * modules/unistr/u16-strncpy: New file.
33720         * modules/unistr/u32-strncpy: New file.
33721         * lib/unistr/u8-strncpy.c: New file.
33722         * lib/unistr/u16-strncpy.c: New file.
33723         * lib/unistr/u32-strncpy.c: New file.
33724         * lib/unistr/u-strncpy.h: New file.
33725
33726         * modules/unistr/u8-strnlen: New file.
33727         * modules/unistr/u16-strnlen: New file.
33728         * modules/unistr/u32-strnlen: New file.
33729         * lib/unistr/u8-strnlen.c: New file.
33730         * lib/unistr/u16-strnlen.c: New file.
33731         * lib/unistr/u32-strnlen.c: New file.
33732         * lib/unistr/u-strnlen.h: New file.
33733
33734         * modules/unistr/u8-strpbrk: New file.
33735         * modules/unistr/u16-strpbrk: New file.
33736         * modules/unistr/u32-strpbrk: New file.
33737         * lib/unistr/u8-strpbrk.c: New file.
33738         * lib/unistr/u16-strpbrk.c: New file.
33739         * lib/unistr/u32-strpbrk.c: New file.
33740         * lib/unistr/u-strpbrk.h: New file.
33741
33742         * modules/unistr/u8-strrchr: New file.
33743         * modules/unistr/u16-strrchr: New file.
33744         * modules/unistr/u32-strrchr: New file.
33745         * lib/unistr/u8-strrchr.c: New file.
33746         * lib/unistr/u16-strrchr.c: New file.
33747         * lib/unistr/u32-strrchr.c: New file.
33748
33749         * modules/unistr/u8-strspn: New file.
33750         * modules/unistr/u16-strspn: New file.
33751         * modules/unistr/u32-strspn: New file.
33752         * lib/unistr/u8-strspn.c: New file.
33753         * lib/unistr/u16-strspn.c: New file.
33754         * lib/unistr/u32-strspn.c: New file.
33755         * lib/unistr/u-strspn.h: New file.
33756
33757         * modules/unistr/u8-strstr: New file.
33758         * modules/unistr/u16-strstr: New file.
33759         * modules/unistr/u32-strstr: New file.
33760         * lib/unistr/u8-strstr.c: New file.
33761         * lib/unistr/u16-strstr.c: New file.
33762         * lib/unistr/u32-strstr.c: New file.
33763         * lib/unistr/u-strstr.h: New file.
33764
33765         * modules/unistr/u8-strtok: New file.
33766         * modules/unistr/u16-strtok: New file.
33767         * modules/unistr/u32-strtok: New file.
33768         * lib/unistr/u8-strtok.c: New file.
33769         * lib/unistr/u16-strtok.c: New file.
33770         * lib/unistr/u32-strtok.c: New file.
33771         * lib/unistr/u-strtok.h: New file.
33772
33773         * modules/unistr/u8-uctomb: New file.
33774         * modules/unistr/u16-uctomb: New file.
33775         * modules/unistr/u32-uctomb: New file.
33776         * lib/unistr/u8-uctomb.c: New file.
33777         * lib/unistr/u16-uctomb.c: New file.
33778         * lib/unistr/u32-uctomb.c: New file.
33779
33780         * MODULES.html.sh (Unicode string functions): Add the new modules.
33781
33782 2007-01-08  Bruno Haible  <bruno@clisp.org>
33783
33784         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
33785         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
33786         subdirectories.
33787
33788 2007-01-08  Karl Berry  <karl@gnu.org>
33789
33790         * doc/error.texi: mention that main() fns must set program_name
33791         when progname is used.
33792
33793 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
33794
33795         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
33796         WCTYPE_H is empty, for the benefit of builds from non-distclean
33797         directories.  Problem reported by Eric Blake in
33798         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
33799
33800 2007-01-08  Bruno Haible  <bruno@clisp.org>
33801
33802         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
33803         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
33804         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
33805         PROVIDE_CANONICALIZE_FILENAME_MODE.
33806         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
33807
33808 2007-01-08  Bruno Haible  <bruno@clisp.org>
33809
33810         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
33811         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
33812         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
33813         * lib/fts.c: Likewise.
33814         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
33815
33816 2006-12-25  Bruno Haible  <bruno@clisp.org>
33817
33818         * modules/utf8-ucs4-safe: New file.
33819         * lib/utf8-ucs4-safe.h: New file.
33820         * lib/unistr/utf8-ucs4-safe.c: New file.
33821
33822         * modules/utf16-ucs4-safe: New file.
33823         * lib/utf16-ucs4-safe.h: New file.
33824         * lib/unistr/utf16-ucs4-safe.c: New file.
33825
33826         * MODULES.html.sh (Unicode string functions): Add the new modules.
33827
33828 2007-01-08  Bruno Haible  <bruno@clisp.org>
33829
33830         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
33831         (Depends-on): Add unitypes.
33832         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
33833         (u8_mbtouc_aux): Move out to separate file.
33834         (u8_mbtouc): Use ucs4_t, uint8_t types.
33835         * lib/unistr/utf8-ucs4.c: New file.
33836
33837         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
33838         (Depends-on): Add unitypes.
33839         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
33840         (u16_mbtouc_aux): Move out to separate file.
33841         (u16_mbtouc): Use ucs4_t, uint16_t types.
33842         * lib/unistr/utf16-ucs4.c: New file.
33843
33844         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
33845         (Depends-on): Add unitypes.
33846         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
33847         (u8_uctomb_aux): Move out to separate file.
33848         (u8_uctomb): Use ucs4_t, uint8_t types.
33849         * lib/unistr/ucs4-utf8.c: New file.
33850
33851         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
33852         (Depends-on): Add unitypes.
33853         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
33854         (u16_uctomb_aux): Move out to separate file.
33855         (u16_uctomb): Use ucs4_t, uint16_t types.
33856         * lib/unistr/ucs4-utf16.c: New file.
33857
33858 2006-12-25  Bruno Haible  <bruno@clisp.org>
33859
33860         * modules/unitypes: New file.
33861         * lib/unitypes.h: New file.
33862         * MODULES.html.sh (func_all_modules): New section "Unicode string
33863         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
33864         this section. Add unitypes.
33865
33866 2007-01-08  Bruno Haible  <bruno@clisp.org>
33867
33868         Avoid variable names that conflict with those from libtool.
33869         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
33870         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
33871         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
33872         library_names_spec to acl_library_names_spec, hardcode_* to
33873         acl_hardcode_*.
33874         Reported by Ralf Wildenhues.
33875
33876 2007-01-08  Bruno Haible  <bruno@clisp.org>
33877
33878         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
33879         definition.
33880         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
33881         definition.
33882         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
33883         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
33884         definition.
33885         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
33886         definition.
33887         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
33888         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
33889         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
33890         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
33891         definition.
33892         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
33893         definition.
33894         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
33895         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
33896         GC_USE_<algorithm>.
33897         * lib/gc-libgcrypt.c: Likewise.
33898         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
33899         * modules/gc-arctwo (configure.ac): Likewise.
33900         * modules/gc-des (configure.ac): Likewise.
33901         * modules/gc-hmac-md5 (configure.ac): Likewise.
33902         * modules/gc-hmac-sha1 (configure.ac): Likewise.
33903         * modules/gc-md2 (configure.ac): Likewise.
33904         * modules/gc-md4 (configure.ac): Likewise.
33905         * modules/gc-md5 (configure.ac): Likewise.
33906         * modules/gc-random (configure.ac): Likewise.
33907         * modules/gc-rijndael (configure.ac): Likewise.
33908         * modules/gc-sha1 (configure.ac): Likewise.
33909
33910 2007-01-08  Bruno Haible  <bruno@clisp.org>
33911
33912         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
33913         macro definition.
33914         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
33915         definition.
33916         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
33917         definition.
33918         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
33919         * modules/fcntl-safer (configure.ac): Likewise.
33920         * modules/fopen-safer (configure.ac): Likewise.
33921         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
33922         GNULIB_FWRITEERROR macro definition.
33923
33924 2007-01-08  Bruno Haible  <bruno@clisp.org>
33925
33926         * m4/gnulib-common.m4: New file.
33927         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
33928         (func_get_filelist): Add m4/gnulib-common.m4.
33929
33930 2007-01-08  Bruno Haible  <bruno@clisp.org>
33931
33932         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
33933         command.
33934
33935 2007-01-08  Jim Meyering  <jim@meyering.net>
33936
33937         Use a more robust test for a "can't happen" condition.
33938         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
33939         narrowed the st_size value.  Presuming the "can't happen" condition
33940         is true, that narrowing could conceivably convert an invalid st_size
33941         value into a valid one.  Instead, use a change based on Matthew
33942         Woehlke's original patch.
33943
33944         Slight readability improvement: use an assert-like macro
33945         in place of literal "abort ()" uses.
33946         * lib/fts.c (fts_assert): Define.
33947         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
33948         Use this macro instead of a bare 'abort'.
33949
33950 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
33951
33952         Don't worry about using IRIX 5.3's wctype.h broken definitions;
33953         simply work around them.
33954         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
33955         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
33956         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
33957         declaring.
33958         Don't bother to define as macros, since the standard doesn't require it.
33959         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
33960         longer worry about IRIX 5.3.
33961         (HAVE_WCTYPE_CTMP_BUG): Remove.
33962
33963 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
33964
33965         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
33966         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
33967         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
33968         Problems reported by Georg Schwarz for IRIX 5.3.
33969
33970         * gnulib-tool (autoconf_minversion): Take the maximum version number
33971         found, not the minimum.  Problem reported by James Youngman.
33972
33973 2007-01-03  Karl Berry  <karl@gnu.org>
33974
33975         * doc/error.texi: new file, explaining interaction with progname.
33976         * doc/gnulib.texi: include it.  Update copyright.
33977
33978 2007-01-03  Simon Josefsson  <simon@josefsson.org>
33979
33980         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
33981         AC_CANONICAL_HOST, to improve autobuild outputs.
33982
33983 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
33984             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
33985
33986         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
33987         sockets, server sockets, and other file descriptors.  Count errors
33988         to compute the return value.  Reorder the code a bit to be easier
33989         to follow.  Don't set event bits that were not requested (except
33990         POLLERR and POLLHUP).
33991
33992 2007-01-01  Bruno Haible  <bruno@clisp.org>
33993
33994         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
33995
33996 2007-01-03  Jim Meyering  <jim@meyering.net>
33997
33998         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
33999
34000 2007-01-02  Bruno Haible  <bruno@clisp.org>
34001
34002         * modules/settime (Include): Require timespec.h.
34003         * modules/nanosleep (Include): Likewise.
34004
34005 2007-01-01  Bruno Haible  <bruno@clisp.org>
34006
34007         * gnulib-tool (func_emit_copyright_notice): Bump year.
34008         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
34009
34010 2007-01-01  Bruno Haible  <bruno@clisp.org>
34011
34012         Improve support for OpenBSD.
34013         * build-aux/config.rpath (libname_spec): Export.
34014         (library_names_spec): New variable. Export.
34015         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
34016         library_names_spec from the config.rpath output. Locate shared library
34017         through the name pattern in library_names_spec.
34018
34019 2007-01-01  Eric Blake  <ebb9@byu.net>
34020
34021         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
34022
34023 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
34024
34025         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
34026         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
34027         assume the C locale, and avoid an "eval" that could cause trouble.
34028         Problem with SORT reported by Bob Proulx.
34029
34030         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
34031         Define.  Trivial patch from Henning Nielsen Lund, originally
34032         sent to bug-grep@gnu.org today.
34033
34034 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
34035
34036         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
34037         struct stat.  Problem reported by Henning Nielsen Lund.
34038         * lib/acl.c: Include acl.h first, to check interface.  Don't
34039         bother to include sys/types.h and sys/stat.h again.
34040
34041 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
34042
34043         Import the following change from libc; problem reported by
34044         Sven Verdoolaege.
34045
34046         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
34047
34048         [BZ #1373]
34049         * lib/argp.h: Remove __NTH for __argp_usage inline function.
34050
34051 2006-12-28  Jim Meyering  <jim@meyering.net>
34052
34053         * build-aux/announce-gen: Do not assume that the package
34054         builds any of tar.gz, tar.bz2, and .xdelta files.
34055         Suggestion from Simon Josefsson.
34056
34057 2006-12-28  Simon Josefsson  <simon@josefsson.org>
34058
34059         * modules/announce-gen: New file.
34060
34061 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
34062
34063         * lib/mbchar.h: Just include <wctype.h>; the wctype module
34064         handles its gotchas now.
34065         * lib/mbswidth.c: Likewise.
34066         * lib/wcwidth.h: Likewise.
34067         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
34068         and iswcntrl; the wctype module does this stuff now.
34069         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
34070         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
34071         * modules/mbchar (Depends-on): Add wctype.
34072         * modules/mbswidth (Depends-on): Likewise.
34073         * modules/wcwidth (Depends-on): Likewise.
34074
34075 2006-12-27  Eric Blake  <ebb9@byu.net>
34076
34077         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
34078         module uses more than what <wctype.h> is required to provide.
34079
34080 2006-12-26  Eric Blake  <ebb9@byu.net>
34081
34082         * gnulib-tool (sed_extract_prog): Avoid space-tab.
34083
34084 2006-12-26  Eric Blake  <ebb9@byu.net>
34085
34086         * modules/absolute-header: New module.
34087         * modules/fcntl (Depends-on): Depend on it.
34088         * modules/inttypes (Depends-on): Likewise.
34089         * modules/stdint (Depends-on): Likewise.
34090         * modules/sys_stat (Depends-on): Likewise.
34091         * modules/wctype (Depends-on): Likewise.
34092         * MODULES.html.sh (Support for building libraries and
34093         executables): Document it.
34094
34095 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
34096
34097         * gnulib-tool (SED): Remove, undoing previous change.
34098         The problem was that it broke coreutils on Solaris, because
34099         "sed --posix" leaked into a makefile.
34100         (sed): New alias, if 'alias' and GNU sed.
34101
34102 2006-12-24  Jim Meyering  <jim@meyering.net>
34103
34104         Work around an fchownat bug in glibc-2.4:
34105         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
34106         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
34107         in spite of the -P option.
34108         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
34109         New macros.
34110         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
34111         * modules/openat (Files): Add lib/fchownat.c.
34112         * lib/openat.c (fchownat): Don't define here.  Move to...
34113         * lib/fchownat.c: ...this new file.
34114
34115 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
34116
34117         Fix bug reported by Bruno Haible in
34118         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
34119         where quotearg.c didn't compile on Mac OS X 10.2 because it
34120         lacks <wchar.h> and wint_t.
34121         * lib/wctype_.h (__wctype_wint_t): New type.
34122         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
34123         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
34124         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
34125         Arg is now of type __wctype_wint_t, not wint_t.
34126         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
34127         substitute HAVE_WINT_T.
34128         * modules/wctype (Files): Add m4/wint_t.m4.
34129         (wctype.h): Substitute HAVE_WINT_T.
34130
34131 2006-12-23  Bruno Haible  <bruno@clisp.org>
34132
34133         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
34134
34135 2006-12-23  Bruno Haible  <bruno@clisp.org>
34136
34137         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
34138         S_ISLNK.
34139         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
34140         mingw.
34141
34142 2006-12-22  Bruno Haible  <bruno@clisp.org>
34143
34144         * lib/copy-file.c: Include acl.h.
34145         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
34146         Close the file descriptors only after being done with copy_acl.
34147         * modules/copy-file (Depends-on): Add acl.
34148
34149 2006-12-22  Bruno Haible  <bruno@clisp.org>
34150
34151         * gnulib-tool (SED): New variable.
34152         Use $SED instead of sed everywhere.
34153
34154 2006-12-22  Bruno Haible  <bruno@clisp.org>
34155
34156         * modules/no-c++: New file.
34157         * m4/no-c++.m4: New file.
34158         * MODULES.html.sh (Support for building libraries and executables):
34159         Add no-c++.
34160
34161 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
34162
34163         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
34164         Include <limits.h>, and use its INT_MAX to rewrite the
34165         j loop so that it does not overflow 'int'.  Problem reported by
34166         Ralf Wildenhues in
34167         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
34168         Play it safe by shifting left by 1 rather than multiplying by 2,
34169         as GCC is less likely to optimize this away when the value
34170         is signed (when it assumes overflow leads to undefined behavior).
34171         Also, don't assume time_t uses two's complement.
34172
34173 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
34174
34175         * MODULES.html.sh: New module wctype.
34176         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
34177         * lib/fnmatch.c: Don't bother to include <wchar.h> before
34178         <wctype.h>, since the new wctype module should fix this.
34179         * lib/quotearg.c: Include <wctype.h> unconditionally, since
34180         the wctype module should arrange for it.
34181         * lib/regex_internal.h: Likewise.
34182         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
34183         since the wctype module should handle this now.
34184         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
34185         * modules/fnmatch (Depends-on): Add wctype.
34186         * modules/quotearg (Depends-on): Likewise.
34187         * modules/regex (Depends-on): Likewise.
34188
34189 2006-12-19  Bruno Haible  <bruno@clisp.org>
34190
34191         * lib/strdup.h [C++]: Wrap definitions in extern "C".
34192         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
34193
34194 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34195
34196         * modules/savewd (Depends-on): Fix dependency on fcntl.
34197
34198 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
34199
34200         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
34201         conforms to C99, rather than relying on the user's environment
34202         setting of STDINT_H.
34203
34204 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
34205         and Eric Blake  <ebb9@byu.net>
34206
34207         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
34208         This is more consistent with the other defines here.
34209         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
34210         Port to z/OS.  Problem reported by Paul Gilmartin.
34211         Change local vars to use gl_ prefix rather than ac_.
34212         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
34213         with other defines.
34214         * modules/double-slash-root: New module.
34215         * modules/dirname (Files): Remove m4/double-slash-root.m4.
34216         (Depends-on): Add double-slash-root.
34217         * MODULES.html.sh (File system functions): Mention new module.
34218
34219 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
34220
34221         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
34222         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
34223         This is for the benefit of gzip, which doesn't do i18n.
34224
34225 2006-12-12  Jim Meyering  <jim@meyering.net>
34226
34227         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
34228         Reported by Andreas Schwab <schwab@suse.de>.
34229
34230 2006-12-12  Bruno Haible  <bruno@clisp.org>
34231
34232         Merge these changes.
34233         2006-09-05  Bruno Haible  <bruno@clisp.org>
34234         * lib/iconvme.c (iconv_string): No need to save and restore errno when
34235         iconv_alloc succeeded.
34236         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
34237         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
34238         test for " && dest " at the end - dest is always != NULL there. Call
34239         iconv with 4xNULL arguments initially, to reset the state. Call iconv
34240         with 2xNULL arguments, also to flush the state storage. Handle the
34241         IRIX iconv behaviour. Realloc the final result, to throw away unused
34242         memory.
34243
34244 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
34245
34246         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
34247         and fchmodat unconditionally, since glibc 2.4 has them.
34248         Problem reported by Arkadiusz Miskiewicz.
34249
34250 2006-12-10  Bruno Haible  <bruno@clisp.org>
34251
34252         * gnulib-tool (func_import): Show the include files only for those
34253         modules that are copied and specified.
34254         Reported by Karl Berry.
34255
34256 2006-12-08  Jim Meyering  <jim@meyering.net>
34257
34258         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
34259         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
34260
34261         * build-aux/announce-gen: Add two new options, both optional:
34262         --bootstrap-tools=TOOL_LIST
34263               a comma-separated list of tools, e.g.,
34264               autoconf,automake,bison,gnulib
34265         --gnulib-snapshot-date=DATE
34266               if gnulib is in the bootstrap tool list,
34267               then report this as the snapshot date.
34268               If not specified, use the current date/time.
34269               If you specify a date here, be sure it's UTC.
34270
34271 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34272
34273         * tests/test-argp-2.sh: Fix test to match actual output.
34274         (func_compare): Fix sed script to be portable.
34275
34276 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
34277
34278         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
34279         workaround for this case.  It is not autoconfigured now; offhand
34280         it's hard to see how to autoconfigure it.
34281
34282 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
34283
34284         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
34285         a directory that is about to be chowned.  Such a directory's
34286         initial file permissions should permit the owner only and this
34287         should not be changed until after the chown, since the group and
34288         other bits would be incorrect if they granted permission before
34289         the chown.
34290
34291         Fix porting problem for iswctype reported by Georg Schwarz in:
34292         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
34293         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
34294         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
34295         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
34296         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
34297
34298 2006-12-03  Jim Meyering  <jim@meyering.net>
34299
34300         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
34301         p->fts_statp may not yet be defined.
34302         (fts_read): Instead, set it in the caller, once p->fts_statp is
34303         sure to be defined, and corresponds to a top-level directory.
34304         This bug made du -x fail.  Here's the coreutils test case:
34305         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
34306         Reported by Mike Frysinger.
34307
34308 2006-12-01  Jim Meyering  <jim@meyering.net>
34309
34310         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
34311         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
34312         Reported by Simon Josefsson.
34313
34314 2006-11-30  Jim Meyering  <jim@meyering.net>
34315
34316         * m4/warning.m4: Use the all-permissive copyright notice
34317         recommended by RMS (rather than LGPL).
34318         * m4/vararrays.m4: Likewise.
34319         * m4/flexmember.m4: Likewise.
34320
34321 2006-11-29  Bruno Haible  <bruno@clisp.org>
34322
34323         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34324         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
34325         using +=.
34326         Reported by Simon Josefsson <simon@josefsson.org>.
34327
34328 2006-11-28  James Youngman <jay@gnu.org>
34329
34330         * README: Advise users that they might find the bug-gnulib@gnu.org
34331         and autotools-announce@gnu.org mailing lists useful.
34332
34333 2006-11-28  Bruno Haible  <bruno@clisp.org>
34334
34335         * m4/ptrdiff_max.m4: Remove file.
34336
34337 2006-11-21  Bruno Haible  <bruno@clisp.org>
34338
34339         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
34340         _AC_COMPUTE_INT.
34341         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34342         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
34343         _AC_COMPUTE_INT.
34344         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34345         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
34346         _AC_COMPUTE_INT.
34347         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34348
34349 2006-11-28  Jim Meyering  <jim@meyering.net>
34350
34351         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
34352         warning from "gcc -Wshadow" about shadowing the builtin.
34353
34354 2006-11-27  Bruno Haible  <bruno@clisp.org>
34355
34356         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
34357         _AC_COMPUTE_INT.
34358         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34359
34360 2006-11-27  Bruno Haible  <bruno@clisp.org>
34361             Paul Eggert  <eggert@cs.ucla.edu>
34362
34363         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
34364
34365 2006-11-26  Bruno Haible  <bruno@clisp.org>
34366
34367         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34368         noinst_LTLIBRARIES.
34369
34370 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
34371             Bruno Haible  <bruno@clisp.org>
34372
34373         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
34374         if compiling with "gcc -ansi".
34375
34376 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
34377
34378         Fix some incompatibilities with gcc -ansi -pedantic.
34379         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
34380         if compiling pedantically with GCC, unless it's C99 or later.
34381         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
34382         it mishandles gcc -ansi -pedantic as well.
34383         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
34384         if gcc -pedantic.
34385         * lib/regexec.c (check_node_accept_bytes): Don't use auto
34386         initializers for struct if -pedantic, unless it's C99 or later.
34387
34388 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
34389
34390         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
34391         Don't close an fd more than once. Identical atimes indicate
34392         success, not failure.
34393
34394 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
34395
34396         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
34397
34398 2006-11-23  Jim Meyering  <jim@meyering.net>
34399
34400         * build-aux/announce-gen: New file.  From coreutils.
34401
34402 2006-11-22  Jim Meyering  <jim@meyering.net>
34403
34404         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
34405         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
34406         (fts_read): Use a temporary to narrow the overused st_size member
34407         before using it in a switch statement.  Reported by Matthew Woehlke.
34408
34409         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
34410         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
34411
34412 2006-11-20  Bruno Haible  <bruno@clisp.org>
34413
34414         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
34415         changequote instead of pairs of brackets.
34416         Reported by Andreas Schwab <schwab@suse.de>.
34417
34418 2006-11-21  Jim Meyering  <jim@meyering.net>
34419
34420         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
34421         so as to remain compatible with older compilers.
34422         Patch from Michael Deutschmann.
34423
34424 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
34425
34426         * MODULES.html.sh (File system functions): Add openat.
34427
34428         * lib/openat.h (rpl_fstatat): New macro, if
34429         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
34430         (fstatat): Define to rpl_fstatat under the same conditions,
34431         unless COMPILING_FSTATAT.
34432         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
34433         seems to have the bug.
34434         * lib/fstatat.c: New file.
34435         * modules/openat (Files): Add it.
34436
34437 2006-11-20  Bruno Haible  <bruno@clisp.org>
34438
34439         * Makefile: New file.
34440
34441 2006-11-20  Jim Meyering  <jim@meyering.net>
34442
34443         The beginnings of syntax-related checks for gnulib.
34444         * lib/Makefile: New file.
34445         * lib/t-idcache: New script.  Ensure that the two halves of
34446         idcache.c stay in sync.
34447
34448         * lib/idcache.c: Adjust comments in user- and group- portions to
34449         be more accurate, and to be consistent with one another.
34450
34451 2006-11-20  Jim Meyering  <jim@meyering.net>
34452
34453         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
34454         continue using the flexible array member (thus, this module performs
34455         half as many malloc calls), with the addition that...
34456         (getgroup, getuser): Consistently record a non-match via an empty
34457         "name" string, and map an empty string match to a NULL return value.
34458         * modules/idcache (Depends-on): Re-add flexmember.
34459
34460         * lib/idcache.c (getuser): Remove all uses of the register keyword.
34461         (getuidbyname, getgroup, getgidbyname): Likewise.
34462
34463         Use cleaner syntax: NULL rather than 0.
34464         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
34465
34466 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
34467
34468         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
34469         It mishandled the case where the group was missing.
34470         Problem reported by Greg Schafer.
34471         * modules/idcache: Likewise.
34472
34473 2006-11-18  Jim Meyering  <jim@meyering.net>
34474
34475         * check-module (%exempt_header): Add exception for some
34476         conditionally-included headers.
34477
34478         * modules/i-ring (Depends-on): Add verify.
34479         (License): Change to LGPL.
34480
34481 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
34482
34483         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
34484         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
34485         and inttostr.h.  Use snprintf rather than uinttostr, so that
34486         LGPLed code doesn't depend on GPLed.
34487
34488 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
34489
34490         * modules/inline (License): Change from GPL to LGPL.
34491
34492 2006-11-17  Jim Meyering  <jim@meyering.net>
34493
34494         * modules/d-type (License): Switch to LGPL.
34495
34496 2006-11-15  Bruno Haible  <bruno@clisp.org>
34497
34498         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
34499
34500 2006-11-15  Eric Blake  <ebb9@byu.net>
34501
34502         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
34503         the module dependency.
34504
34505 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
34506             Bruno Haible  <bruno@clisp.org>
34507
34508         * gnulib-tool (func_create_testdir): Add license consistency check.
34509
34510 2006-11-15  Eric Blake  <ebb9@byu.net>
34511
34512         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
34513         random "(cached)" in configure output.
34514
34515 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34516
34517         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
34518         test for conforming inttypes.h is both announced and cached.
34519
34520         * MODULES.html.sh (seen_modules, seen_files): New variables.
34521         (func_module): Rewrite to use a few less gnulib-tool and sed
34522         invocations.  Avoid a couple of quadratic algorithms for ...
34523         (missed_modules, missed_files): ... these, with ...
34524         (func_append, func_tmpdir): ... these new functions, from
34525         gnulib-tool.  Analogously, install traps for cleanup.
34526
34527         * tests/test-gc.c (main): Remove unused variables.
34528         * tests/test-read-file.c: Include stdlib.h, for 'free'.
34529
34530 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
34531
34532         * modules/inttostr (License): Change to LGPL.
34533
34534 2006-11-14  Eric Blake  <ebb9@byu.net>
34535
34536         * modules/tempname (License): Change to LGPL.
34537
34538 2006-11-14  Eric Blake  <ebb9@byu.net>
34539
34540         * doc/functions.texi (Function Portability): *printf functions on
34541         Cygwin now understand all POSIX size specifiers.
34542
34543 2006-11-14  Bruno Haible  <bruno@clisp.org>
34544
34545         * modules/c-ctype (License): Change to LGPL.
34546
34547 2006-11-12  Bruno Haible  <bruno@clisp.org>
34548
34549         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
34550         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
34551         for GNOME libraries, for which the include files are installed in
34552         subdirectories of $prefix/include.
34553
34554 2006-11-12  Bruno Haible  <bruno@clisp.org>
34555
34556         * m4/lib-link.m4: Require at least autoconf-2.54.
34557         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
34558         name to underscores for the --with option.
34559
34560 2006-11-13  Bruno Haible  <bruno@clisp.org>
34561
34562         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
34563         the tests directory.
34564         Reported by Ralf Wildenhues.
34565
34566 2006-11-13  Bruno Haible  <bruno@clisp.org>
34567
34568         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
34569         (func_emit_initmacro_end): Undo the override here.
34570         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
34571         Works around the famous automake error in coreutils.
34572
34573 2006-11-13  Eric Blake  <ebb9@byu.net>
34574
34575         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
34576         element, not its node.
34577
34578 2006-11-12  Bruno Haible  <bruno@clisp.org>
34579
34580         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
34581         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
34582
34583 2006-11-12  Bruno Haible  <bruno@clisp.org>
34584
34585         * gnulib-tool: New option --local-symlink.
34586         (func_usage): Document it.
34587         (lsymbolic): New variable.
34588         (func_import, func_create_testdir): If --symlink was not specified,
34589         test whether --local-symlink was specified and the file comes from
34590         the local_gnulib_dir.
34591
34592 2006-11-12  Bruno Haible  <bruno@clisp.org>
34593
34594         * gnulib-tool (func_ln): New function.
34595         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
34596
34597 2006-11-12  Bruno Haible  <bruno@clisp.org>
34598
34599         Finish support for source files in subdirectories.
34600         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
34601         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
34602         AUTOMAKE_OPTIONS.
34603         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
34604
34605 2006-11-12  Bruno Haible  <bruno@clisp.org>
34606
34607         * gnulib-tool (func_get_automake_snippet): Synthesize also an
34608         EXTRA_lib_SOURCES augmentation.
34609         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
34610
34611 2006-11-12  Jim Meyering  <jim@meyering.net>
34612
34613         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
34614         file descriptors.  This also averts a failure on systems with
34615         native openat support when a traversed directory lacks "x" access.
34616         * lib/fts_.h: Include "i-ring.h"
34617         (struct FTS) [fts_fd_ring]: New member.
34618         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
34619         (FCHDIR): Add parentheses.
34620         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
34621         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
34622         When descending, rather than simply closing the previous
34623         fts_cwd_fd value, push that file descriptor onto the ring.
34624         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
34625         (fts_open): Initialize the new fd_ring member.
34626         (fts_close): Clear the ring.
34627         (fts_safe_changedir): When possible, use our new fd_ring to skip
34628         the diropen and fstat and dev/ino comparison that would normally
34629         accompany a virtual `chdir ("..")'.
34630
34631         * modules/fts (Depends-on): Add i-ring.
34632         * modules/i-ring: New module.
34633         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
34634         * m4/i-ring.m4: New file.
34635
34636 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34637
34638         * gnulib-tool (func_create_testdir): Fix replacement of
34639         `build-aux' in configure.ac.  Run autotools in gltests
34640         subdirectory.
34641         (func_create_testdir, func_create_megatestdir, test): There is
34642         no need for '--force' in most autotool invocations in a new
34643         tree.  Actually fail the whole test if any of the tools, or the
34644         configure or make stages fail.
34645
34646         Sync from Automake.
34647         * build-aux/gnupload: Revert last change.  Add pointer to upload
34648         instructions of the GNU Maintenance Instructions.
34649         Suggestion by Karl Berry.
34650
34651 2006-11-10  Jim Meyering  <jim@meyering.net>
34652
34653         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
34654
34655 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
34656
34657         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
34658         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
34659         (bind_textdomain_codeset) [! ENABLE_NLS]:
34660         Evaluate all the arguments.  That way, callers get compatible behavior
34661         if the arguments have side effects.  Also, it avoids some GCC
34662         diagnostics in some cases; Joel E. Denny reported problems when Bison
34663         was configured with --enable-gcc-warnigs.
34664
34665 2006-11-10  Jim Meyering  <jim@meyering.net>
34666
34667         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
34668         relevant options in CFLAGS (like -O, -fno-inline) are taken into
34669         account.
34670
34671 2006-11-10  Jim Meyering  <jim@meyering.net>
34672
34673         * modules/inline: New file/module.
34674         * modules/xalloc (Files): Remove m4/inline.m4.
34675         (Depends-on): Add inline, instead.
34676         * modules/oset: Likewise.
34677         * modules/list: Likewise.
34678
34679 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
34680
34681         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
34682         Problem reported by Matthew Woehlke.
34683
34684 2006-11-09  Bruno Haible  <bruno@clisp.org>
34685
34686         * lib/tempname.c (gen_tempname): Remove variant that invokes
34687         __gen_tempname.
34688         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
34689         __gen_tempname.
34690
34691 2006-11-08  Bruno Haible  <bruno@clisp.org>
34692
34693         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
34694         to 'yes' instead of 'cross-compiling'.
34695
34696 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
34697
34698         * lib/quotearg.h (quotearg_free): New decl.
34699         * lib/quotearg.c (quotearg_free): New function.
34700         (slot0, nslots, slotvec0, slotvec):
34701         Now file-scope so that quotearg_free can get at them.
34702
34703 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34704
34705         Sync from Automake.
34706         * build-aux/gnupload: Add missing 'gnu' to example URL.
34707         Report by Karl Berry.
34708
34709 2006-11-08  Bruno Haible  <bruno@clisp.org>
34710
34711         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
34712         Suggested by Paul Eggert.
34713
34714 2006-11-08  Jim Meyering  <jim@meyering.net>
34715
34716         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
34717         It's already included if !_LIBC.
34718         (fts_safe_changedir): Add a comment.
34719
34720 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
34721
34722         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
34723         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
34724         Matthew Woehlke.
34725
34726         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
34727         definitions up, to avoid colliding with change below.
34728         (static_inline) [HAVE_INLINE]: New macro.
34729         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
34730         Provide extern decls when !HAVE_INLINE.  Do not define unless
34731         static_inline is defined, either by us or by xmalloc.c.  Use
34732         static_inline rather than static inline.
34733         (XCALLOC): Optimize sizeof(T) = 1 case.
34734         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
34735
34736 2006-11-07  Bruno Haible  <bruno@clisp.org>
34737
34738         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
34739         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
34740         AC_C_INLINE.
34741         * modules/xalloc (Files): Add m4/inline.m4.
34742
34743 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34744
34745         * README: Fix typo.
34746         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
34747         (Miscellanous Notes): ...from this.
34748
34749 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
34750
34751         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
34752         Mention that offsetof should be used instead of sizeof.
34753         From Bruno Haible.
34754
34755 2006-11-07  Bruno Haible  <bruno@clisp.org>
34756
34757         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
34758
34759 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
34760
34761         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
34762         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
34763         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
34764         (gl_tree_add_before, gl_tree_add_after):
34765         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
34766         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
34767         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
34768         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
34769         (gl_linked_add_after, gl_linked_add_at): Likewise.
34770         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
34771         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
34772         (gl_tree_add_before, gl_tree_add_after): Likewise.
34773         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
34774         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
34775         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
34776
34777 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34778
34779         * lib/gl_oset.h: Use C comment style, not C++ comment style.
34780
34781 2006-11-06  Bruno Haible  <bruno@clisp.org>
34782
34783         * m4/inline.m4: New file.
34784         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
34785         * modules/list (Files): Add m4/inline.m4.
34786         * modules/oset (Files): Likewise.
34787
34788 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
34789
34790         * lib/idcache.c: Include <stddef.h>, for offsetof.
34791         (struct userid.name): Change from char * to a flexible array member.
34792         All uses changed.
34793         * modules/idcache (Depends-on): Add flexmember.
34794
34795         * MODULES.html.sh (Core language properties): New module flexmember.
34796         * modules/flexmember, m4/flexmember.m4: New files.
34797
34798         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
34799         inline functions that are identical with the old xnmalloc_inline,
34800         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
34801         that we can avoid some unnecessary integer multiplications and
34802         divisions in the common case where the element size is known at
34803         compile time.
34804         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
34805         needed.
34806         (xnboundedmalloc): Remove.
34807         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
34808         arguments, for consistency with rest of this header.
34809         (xcharalloc): Rewrite using XNMALLOC.
34810         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
34811         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
34812         versions have been moved to lib/xalloc.h and renamed to be the
34813         non-*_inline versions.
34814         (xmalloc, xrealloc): Implement without reference to the xnmalloc
34815         and xnrealloc functions, since those functions are now inline and
34816         now call us.
34817         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
34818         renaming described above.
34819         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
34820         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
34821         captures the dependency in AC_C_INLINE.
34822
34823         New module canonicalize-lgpl, proposed by Charles Wilson in
34824         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
34825         with a few small changes afterwards.
34826         * MODULES.html.sh (File system functions): New module
34827         canonicalize-lgpl.
34828         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
34829         and canonicalize_file_name.
34830         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
34831         * modules/canonicalize-lgpl: New files.
34832
34833 2006-11-05  Bruno Haible  <bruno@clisp.org>
34834
34835         * gnulib-tool (func_import, func_create_testdir): Create directories
34836         also for files in subdirectories of lib/.
34837
34838 2006-11-05  Bruno Haible  <bruno@clisp.org>
34839
34840         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
34841         ANSI C compliant.
34842
34843 2006-11-03  Bruno Haible  <bruno@clisp.org>
34844
34845         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
34846         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
34847         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
34848         (xnboundedmalloc): New inline function.
34849         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
34850         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
34851         xmalloc.
34852         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
34853         xmalloc.
34854         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
34855         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
34856         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
34857         xmalloc.
34858         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
34859         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
34860         xmalloc.
34861         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
34862         gl_tree_add_after): Use XMALLOC instead of xmalloc.
34863         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
34864         xmalloc.
34865         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
34866         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
34867         gl_tree_add_after): Use XMALLOC instead of xmalloc.
34868         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
34869         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
34870         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
34871         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
34872
34873 2006-11-03  Bruno Haible  <bruno@clisp.org>
34874
34875         * lib/c-ctype.h [C++]: Define functions without name mangling.
34876         * lib/fwriteerror.h [C++]: Likewise.
34877         * lib/gcd.h [C++]: Likewise.
34878         * lib/linebreak.h [C++]: Likewise.
34879
34880 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
34881
34882         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
34883         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
34884         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
34885         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
34886         Check for functions and headers just once.
34887         Check for declaration of canonicalize_file_name.
34888         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
34889
34890 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
34891
34892         * gnulib-tool (func_import): Fix typo in actioncmd.
34893
34894 2006-11-02  Bruno Haible  <bruno@clisp.org>
34895
34896         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
34897         newline sequence in the Makefile.am snippet as a space, like "make"
34898         does.
34899         Reported by Roger Persson <perrog@gmail.com>.
34900
34901 2006-11-01  Bruno Haible  <bruno@clisp.org>
34902
34903         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
34904         already declared in <string.h>.
34905         * lib/strcase.h (strncasecmp): Don't declare it if yes.
34906
34907 2006-11-01  Bruno Haible  <bruno@clisp.org>
34908
34909         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
34910         * lib/strcase.h: Include <string.h>.
34911         (strcasecmp): Define to rpl_strcasecmp here.
34912
34913 2006-11-01  Bruno Haible  <bruno@clisp.org>
34914
34915         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
34916
34917 2006-11-01  Eric Blake  <ebb9@byu.net>
34918
34919         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
34920
34921         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
34922
34923 2006-10-29  Bruno Haible  <bruno@clisp.org>
34924
34925         Make it compile in C++ mode.
34926         * lib/full-write.c (full_rw): Add a cast.
34927
34928 2006-11-01  Bruno Haible  <bruno@clisp.org>
34929
34930         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
34931         be POSIX compliant.
34932         Reported by Roger Persson <perrog@gmail.com>.
34933
34934 2006-11-01  Eric Blake  <ebb9@byu.net>
34935
34936         * lib/getopt_.h: Fix comments.
34937
34938 2006-10-31  Eric Blake  <ebb9@byu.net>
34939
34940         * modules/tmpdir (Depends-on): Add sys_stat.
34941         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
34942         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
34943         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
34944         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
34945         tempname.
34946
34947 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
34948
34949         Avoid some C++ diagnostics reported by Bruno Haible.
34950         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
34951         xmalloc.
34952         (quotearg_alloc): Use xcharalloc rather than xmalloc.
34953         (struct slotvec): Move to top level.
34954         (quotearg_n_options): Rewrite to avoid xmalloc.
34955         * lib/xalloc.h (xcharalloc): New function.
34956         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
34957         [defined __cplusplus]: Add function template that provides result
34958         type propagation.  This part of the change is from Bruno Haible.
34959
34960 2006-10-29  Bruno Haible  <bruno@clisp.org>
34961
34962         Make it compile in C++ mode.
34963         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
34964         * lib/strnlen1.c (strnlen1): Cast memchr result.
34965         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
34966         * lib/clean-temp.c (string_equals, string_hash): Add casts.
34967         (create_temp_dir): Rename local variable 'template'.
34968         (compile_csharp_using_sscli): Add cast.
34969         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
34970         * lib/findprog.c (find_in_path): Likewise.
34971         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
34972         * lib/wait-process.c (register_slave_subprocess): Likewise.
34973
34974 2006-10-22  Bruno Haible  <bruno@clisp.org>
34975
34976         * modules/tsearch: New file.
34977         * lib/tsearch.h: New file.
34978         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
34979         * m4/tsearch.m4: New file.
34980         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
34981
34982 2006-10-29  Eric Blake  <ebb9@byu.net>
34983
34984         * lib/arcfour.c: Assume config.h.
34985         * lib/arctwo.c: Likewise.
34986         * lib/base64.c: Likewise.
34987         * lib/check-version.c: Likewise.
34988         * lib/crc.c: Likewise.
34989         * lib/des.c: Likewise.
34990         * lib/gc-gnulib.c: Likewise.
34991         * lib/gc-libgcrypt.c: Likewise.
34992         * lib/gc-pbkdf2-sha1.c: Likewise.
34993         * lib/getaddrinfo.c: Likewise.
34994         * lib/getdelim.c: Likewise.
34995         * lib/getline.c: Likewise.
34996         * lib/hmac-md5.c: Likewise.
34997         * lib/hmac-sha1.c: Likewise.
34998         * lib/iconvme.c: Likewise.
34999         * lib/md2.c: Likewise.
35000         * lib/md4.c: Likewise.
35001         * lib/memxor.c: Likewise.
35002         * lib/read-file.c: Likewise.
35003         * lib/readline.c: Likewise.
35004         * lib/rijndael-alg-fst.c: Likewise.
35005         * lib/rijndael-api-fst.c: Likewise.
35006         * lib/xgetdomainname.c: Likewise.
35007
35008 2006-10-28  Eric Blake  <ebb9@byu.net>
35009
35010         * lib/xstrndup.c: Assume config.h.
35011
35012 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
35013
35014         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
35015         stat-macros.h is now for our own macros, whereas stat_h is for
35016         macros in the <sys/stat.h> name space.
35017         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
35018         (STAT_MACROS_H): Remove.
35019         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
35020         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
35021         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
35022         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
35023         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
35024         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
35025         Move these macros to ...
35026         * lib/stat_.h: here.  Don't include stat-macros.h.
35027         * lib/canonicalize.c: Don't include stat-macros.h.
35028         * lib/chown.c: Likewise.
35029         * lib/euidaccess.c: Likewise.
35030         * lib/file-type.c: Likewise.
35031         * lib/filemode.c: Likewise.
35032         * lib/glob.c: Likewise.
35033         * lib/isapipe.c: Likewise.
35034         * lib/lchown.c: Likewise.
35035         * lib/lstat.c: Likewise.
35036         * lib/mkdir-p.c: Likewise.
35037         * lib/rmdir.c: Likewise.
35038         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
35039         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
35040         unless mkdir isn't declared, to speed up 'configure'.
35041         Always create sys/stat.h, since it's unlikely any real sys/stat.h
35042         would define all the S_* symbols.
35043         * modules/canonicalize (Depends-on):
35044         Depend on sys_stat, not stat-macros.
35045         * modules/chown: Likewise.
35046         * modules/euidaccess: Likewise.
35047         * modules/filemode: Likewise.
35048         * modules/file-type: Likewise.
35049         * modules/glob: Likewise.
35050         * modules/isapipe: Likewise.
35051         * modules/lchown: Likewise.
35052         * modules/lstat: Likewise.
35053         * modules/mkancesdirs: Likewise.
35054         * modules/rmdir: Likewise.
35055         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
35056         * modules/modechange: Likewise.
35057         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
35058         (configure.ac): Remove gl_STAT_MACROS.
35059         * modules/sys_stat (Depends-on): Remove stat-macros.
35060
35061 2006-10-27  Bruno Haible  <bruno@clisp.org>
35062
35063         * m4/signed.m4: Remove file.
35064         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
35065         invocation.
35066         * modules/vasnprintf (Files): Remove m4/signed.m4.
35067
35068 2006-10-27  Bruno Haible  <bruno@clisp.org>
35069
35070         Update to GNU gettext 0.16.
35071         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
35072         m4/inttypes-h.m4, m4/signed.m4.
35073         * m4/gettext.m4: Update to GNU gettext 0.16.
35074         * m4/intl.m4: New file, from GNU gettext.
35075         * m4/intldir.m4: New file, from GNU gettext.
35076         * config/srclist.txt: Update
35077
35078 2006-10-27  Eric Blake  <ebb9@byu.net>
35079
35080         * MODULES.html.sh: Document tempname.
35081         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
35082         dependencies.
35083         (Files): Move lib/tempname.c...
35084         * modules/tempname: ...to this new module.
35085         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
35086         (gl_PREREQ_TEMPNAME): Move...
35087         * m4/tempname.m4: ...to this new file.
35088         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
35089         * modules/sys_stat (Depends-on): Add stat-macros.
35090         * lib/stat_.h (includes): Pick up stat macros.
35091         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
35092         if stat macros are broken.
35093         * lib/tempname.c (includes): No need to include "stat-macros.h".
35094         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
35095         (direxists, __path_search) [!_LIBC]: Don't compile these in
35096         gnulib; the tmpdir module covers that.
35097         * lib/tempname.h: New file.
35098
35099 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
35100
35101         * COPYING: Explain how gnulib-tool converts licence headers.
35102         Almost all wording by Eric Blake.
35103
35104 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
35105
35106         * lib/mbchar.h (is_basic_table): Make read-only.
35107         * lib/mbchar.c (is_basic_table): Likewise.
35108         Reported by John Darrington.
35109
35110 2006-10-25  Bruno Haible  <bruno@clisp.org>
35111
35112         * lib/progname.h (set_program_name): Undefine before defining.
35113
35114 2006-10-25  Bruno Haible  <bruno@clisp.org>
35115
35116         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
35117         false for non-gcc C++ compilers.
35118         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
35119
35120 2006-10-24  Bruno Haible  <bruno@clisp.org>
35121
35122         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
35123         iconv implementations like Irix iconv.
35124
35125 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35126
35127         * modules/vararrays: New file.
35128         * m4/vararrays.m4: New file, taken from diffutils.
35129         * MODULES.html.sh: New module vararrays.
35130
35131 2006-10-24  Karl Berry  <karl@gnu.org>
35132
35133         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
35134         Don't call GNU Unix.
35135
35136 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35137
35138         * users.txt: Add Libtool.
35139
35140         Sync from Libtool:
35141
35142         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35143
35144         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
35145         to gnulib's policy of including config.h unconditionally.
35146
35147 2006-10-24  Bruno Haible  <bruno@clisp.org>
35148
35149         * modules/wcwidth (Files): Add m4/wint_t.m4.
35150         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
35151         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
35152
35153 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35154
35155         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
35156         to pacify GCC with some -W flags enabled.  Problem reported by
35157         Bruno Haible.
35158
35159 2006-10-24  Jim Meyering  <jim@meyering.net>
35160
35161         * MODULES.html.sh: Remove uinttostr.  It's not a module.
35162         Reported by Karl Berry.
35163
35164 2006-10-23  Bruno Haible  <bruno@clisp.org>
35165
35166         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
35167
35168 2006-10-24  Bruno Haible  <bruno@clisp.org>
35169
35170         * lib/gl_list.h: Use C comment style, not C++ comment style.
35171
35172 2006-10-23  Eric Blake  <ebb9@byu.net>
35173
35174         * lib/getaddrinfo.c (includes): Add missing include.
35175
35176 2006-10-23  Bruno Haible  <bruno@clisp.org>
35177             Paul Eggert  <eggert@cs.ucla.edu>
35178
35179         Ability to rename obstack_free.
35180         * lib/obstack.h (__obstack_free): New macro. Declare instead of
35181         obstack_free.
35182         (obstack_free): Invoke the __obstack_free macro.
35183         * lib/obstack.c (obstack_free): Use __obstack_free macro.
35184
35185 2006-10-23  Bruno Haible  <bruno@clisp.org>
35186             Paul Eggert  <eggert@cs.ucla.edu>
35187
35188         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
35189         __argc, __argv from the declaration. (They are defined as macros on
35190         mingw.)
35191
35192 2006-10-22  Bruno Haible  <bruno@clisp.org>
35193
35194         * doc/gnulib-intro.texi: New file.
35195         * doc/gnulib.texi: Include it.
35196
35197 2006-10-21  Bruno Haible  <bruno@clisp.org>
35198
35199         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
35200         "Introduction", "Miscellanous Notes", "Particular Modules".
35201
35202 2006-10-21  Bruno Haible  <bruno@clisp.org>
35203
35204         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35205         Change mostlyclean-local rule to avoid sh syntax error from bash
35206         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
35207
35208 2006-10-23  Jim Meyering  <jim@meyering.net>
35209
35210         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
35211         in place of snprintf.
35212
35213         * modules/inttostr (Files): Add lib/uinttostr.c.
35214         * lib/uinttostr.c (inttostr): New file/function.
35215         * lib/inttostr.h (uinttostr): Declare.
35216         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
35217         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
35218         Add uinttostr.
35219         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
35220
35221 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
35222
35223         * lib/canonicalize.c (ELOOP): Define if not already defined.
35224         Problem reported by Bruno Haible in
35225         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
35226
35227 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
35228
35229         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
35230         Problem reported by Perry Smith and Ville Laurikari.
35231
35232         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
35233         uses.
35234
35235 2006-10-19  Bruno Haible  <bruno@clisp.org>
35236
35237         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
35238         for mingw.
35239
35240 2006-10-19  Bruno Haible  <bruno@clisp.org>
35241
35242         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
35243         Needed for mingw.
35244
35245 2006-10-19  Bruno Haible  <bruno@clisp.org>
35246
35247         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
35248
35249 2006-10-19  Bruno Haible  <bruno@clisp.org>
35250
35251         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
35252         it.
35253
35254 2006-10-19  Bruno Haible  <bruno@clisp.org>
35255
35256         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
35257         invocation.
35258
35259 2006-10-19  Bruno Haible  <bruno@clisp.org>
35260
35261         * gnulib-tool (func_create_testdir): Don't include ftruncate and
35262         mountlist by default.
35263
35264 2006-10-16  Bruno Haible  <bruno@clisp.org>
35265
35266         * lib/c-strstr.c: Include c-strstr.h.
35267
35268 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
35269
35270         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
35271         in a slash.
35272
35273 2006-10-18  Bruno Haible  <bruno@clisp.org>
35274
35275         * lib/lock.h [C++]: Wrap definitions in extern "C".
35276
35277 2006-10-18  Bruno Haible  <bruno@clisp.org>
35278
35279         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
35280         gl_LIBOBJS list.
35281
35282 2006-10-18  Bruno Haible  <bruno@clisp.org>
35283
35284         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
35285
35286 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
35287
35288         * lib/xstrtol.h: Include gettext.h.
35289         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
35290         Problem reported by Eric Blake.
35291         * modules/xstrtol (Depends-on): Add gettext-h.
35292
35293 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
35294
35295         * lib/strftime.c (advance): New macro.
35296         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
35297         incomplete type, so you can't add 0 to it.  Problem and patch
35298         reported by Eelco Dolstra for dietlibc.
35299
35300 2006-10-18  Jim Meyering  <jim@meyering.net>
35301
35302         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
35303         type for a local, and rename it: s/up/user_proc/.
35304
35305 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
35306
35307         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
35308         READ_UTMP_USER_PROCESS.
35309         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
35310
35311 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
35312
35313         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
35314         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
35315
35316 2006-10-17  Eric Blake  <ebb9@byu.net>
35317
35318         * lib/sigprocmask.c (sigprocmask): Fix typo.
35319
35320         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
35321
35322         * modules/clean-temp (Makefile.am): Don't add to make output...
35323         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
35324         config.h.
35325
35326 2006-10-17  Bruno Haible  <bruno@clisp.org>
35327
35328         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
35329         differently if DEFAULT_TEXT_DOMAIN is set.
35330
35331 2006-10-16  Bruno Haible  <bruno@clisp.org>
35332
35333         * lib/clean-temp.c: Include fwriteerror.h.
35334
35335 2006-10-16  Bruno Haible  <bruno@clisp.org>
35336
35337         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
35338
35339 2006-10-16  Bruno Haible  <bruno@clisp.org>
35340
35341         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
35342         * lib/sigprocmask.h: Include <sys/types.h>.
35343         (sigset_t): Use the system's definition if present.
35344
35345 2006-10-17  Eric Blake  <ebb9@byu.net>
35346
35347         * lib/xvasprintf.c (includes): Assume config.h.
35348         * lib/xasprintf.c (includes): Likewise.
35349
35350 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
35351
35352         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
35353         at least as wide as intmax_t.
35354
35355 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
35356
35357         (Imported from Automake.)
35358         * build-aux/gnupload: Update to version 1.1 of directive file.
35359
35360 2006-10-16  Eric Blake  <ebb9@byu.net>
35361
35362         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
35363         match Automake 1.10a.
35364
35365 2006-10-14  Bruno Haible  <bruno@clisp.org>
35366
35367         * modules/sigprocmask: New file.
35368         * lib/sigprocmask.h: New file.
35369         * lib/sigprocmask.c: New file.
35370         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
35371         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
35372         request sigprocmask.o.
35373         (gl_PREREQ_SIGPROCMASK): New macro.
35374         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
35375         (Depends-on): Add sigprocmask.
35376         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
35377         gt_SIGNALBLOCKING. Test for 'raise' only once.
35378         * lib/fatal-signal.c: Include sigprocmask.h.
35379         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
35380         unblock_fatal_signals): Define always.
35381         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
35382         sigprocmask.
35383
35384 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
35385
35386         Sync from Automake.
35387         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
35388         which incorrectly sets the mode of an existing destination
35389         directory.  In some cases the unpatched install-sh could do the
35390         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
35391         system.  We hope this is rare in practice, but it's clearly worth
35392         fixing.  Problem reported by Alex Unleashed in
35393         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
35394         Also, don't bother to check for -m bugs unless we're using -m;
35395         suggested by Stepan Kasal.
35396
35397 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35398
35399         Sync from Automake.
35400         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
35401         `-c' flag, so they appear at the same position as in %FASTDEP%
35402         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
35403         which ignores unknown options only after the first non-option.
35404         Bug report against M4 by Nelson H. F. Beebe.
35405
35406 2006-10-13  Jim Meyering  <jim@meyering.net>
35407
35408         Fix a bug in yesterday's change.
35409         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
35410         p->fts_statp->st_dev would be used uninitialized.
35411         Ensures that we always call fts_stat on the very first entry.
35412         Miklos Szeredi reported that find -xdev stopped working.
35413
35414 2006-10-12  Bruno Haible  <bruno@clisp.org>
35415
35416         * gnulib-tool (func_get_automake_snippet): Append an automatically
35417         computed EXTRA_DIST augmentation.
35418         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
35419         * modules/alloca-opt (Makefile.am): Likewise.
35420         * modules/allocsa (Makefile.am): Likewise.
35421         * modules/arcfour (Makefile.am): Likewise.
35422         * modules/arctwo (Makefile.am): Likewise.
35423         * modules/argmatch (Makefile.am): Likewise.
35424         * modules/argz (Makefile.am): Likewise.
35425         * modules/atexit (Makefile.am): Likewise.
35426         * modules/backupfile (Makefile.am): Likewise.
35427         * modules/byteswap (Makefile.am): Likewise.
35428         * modules/c-strtod (Makefile.am): Likewise.
35429         * modules/c-strtold (Makefile.am): Likewise.
35430         * modules/calloc (Makefile.am): Likewise.
35431         * modules/canon-host (Makefile.am): Likewise.
35432         * modules/canonicalize (Makefile.am): Likewise.
35433         * modules/chdir-long (Makefile.am): Likewise.
35434         * modules/chdir-safer (Makefile.am): Likewise.
35435         * modules/check-version (Makefile.am): Likewise.
35436         * modules/chown (Makefile.am): Likewise.
35437         * modules/cloexec (Makefile.am): Likewise.
35438         * modules/close-stream (Makefile.am): Likewise.
35439         * modules/closeout (Makefile.am): Likewise.
35440         * modules/crc (Makefile.am): Likewise.
35441         * modules/csharpexec (Makefile.am): Likewise.
35442         * modules/cycle-check (Makefile.am): Likewise.
35443         * modules/des (Makefile.am): Likewise.
35444         * modules/dev-ino (Makefile.am): Likewise.
35445         * modules/dirfd (Makefile.am): Likewise.
35446         * modules/dirname (Makefile.am): Likewise.
35447         * modules/dup2 (Makefile.am): Likewise.
35448         * modules/eealloc (Makefile.am): Likewise.
35449         * modules/error (Makefile.am): Likewise.
35450         * modules/euidaccess (Makefile.am): Likewise.
35451         * modules/exclude (Makefile.am): Likewise.
35452         * modules/exitfail (Makefile.am): Likewise.
35453         * modules/fcntl-safer (Makefile.am): Likewise.
35454         * modules/fcntl (Makefile.am): Likewise.
35455         * modules/file-type (Makefile.am): Likewise.
35456         * modules/fileblocks (Makefile.am): Likewise.
35457         * modules/filemode (Makefile.am): Likewise.
35458         * modules/filenamecat (Makefile.am): Likewise.
35459         * modules/fnmatch (Makefile.am): Likewise.
35460         * modules/fopen-safer (Makefile.am): Likewise.
35461         * modules/fpending (Makefile.am): Likewise.
35462         * modules/fprintftime (Makefile.am): Likewise.
35463         * modules/free (Makefile.am): Likewise.
35464         * modules/fsusage (Makefile.am): Likewise.
35465         * modules/ftruncate (Makefile.am): Likewise.
35466         * modules/fts (Makefile.am): Likewise.
35467         * modules/gc-arcfour (Makefile.am): Likewise.
35468         * modules/gc-des (Makefile.am): Likewise.
35469         * modules/gc-hmac-md5 (Makefile.am): Likewise.
35470         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
35471         * modules/gc-md4 (Makefile.am): Likewise.
35472         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
35473         * modules/gc-sha1 (Makefile.am): Likewise.
35474         * modules/gc (Makefile.am): Likewise.
35475         * modules/getaddrinfo (Makefile.am): Likewise.
35476         * modules/getcwd (Makefile.am): Likewise.
35477         * modules/getdelim (Makefile.am): Likewise.
35478         * modules/getdomainname (Makefile.am): Likewise.
35479         * modules/getgroups (Makefile.am): Likewise.
35480         * modules/gethostname (Makefile.am): Likewise.
35481         * modules/gethrxtime (Makefile.am): Likewise.
35482         * modules/getline (Makefile.am): Likewise.
35483         * modules/getloadavg (Makefile.am): Likewise.
35484         * modules/getlogin_r (Makefile.am): Likewise.
35485         * modules/getndelim2 (Makefile.am): Likewise.
35486         * modules/getopt (Makefile.am): Likewise.
35487         * modules/getpagesize (Makefile.am): Likewise.
35488         * modules/getpass-gnu (Makefile.am): Likewise.
35489         * modules/getpass (Makefile.am): Likewise.
35490         * modules/getsubopt (Makefile.am): Likewise.
35491         * modules/gettime (Makefile.am): Likewise.
35492         * modules/gettimeofday (Makefile.am): Likewise.
35493         * modules/getugroups (Makefile.am): Likewise.
35494         * modules/getusershell (Makefile.am): Likewise.
35495         * modules/glob (Makefile.am): Likewise.
35496         * modules/group-member (Makefile.am): Likewise.
35497         * modules/hard-locale (Makefile.am): Likewise.
35498         * modules/hash (Makefile.am): Likewise.
35499         * modules/hmac-md5 (Makefile.am): Likewise.
35500         * modules/hmac-sha1 (Makefile.am): Likewise.
35501         * modules/human (Makefile.am): Likewise.
35502         * modules/idcache (Makefile.am): Likewise.
35503         * modules/imaxabs (Makefile.am): Likewise.
35504         * modules/imaxdiv (Makefile.am): Likewise.
35505         * modules/inet_ntop (Makefile.am): Likewise.
35506         * modules/inet_pton (Makefile.am): Likewise.
35507         * modules/intprops (Makefile.am): Likewise.
35508         * modules/inttostr (Makefile.am): Likewise.
35509         * modules/inttypes (Makefile.am): Likewise.
35510         * modules/isapipe (Makefile.am): Likewise.
35511         * modules/javaversion (Makefile.am): Likewise.
35512         * modules/lchmod (Makefile.am): Likewise.
35513         * modules/lchown (Makefile.am): Likewise.
35514         * modules/localcharset (Makefile.am): Likewise.
35515         * modules/long-options (Makefile.am): Likewise.
35516         * modules/lstat (Makefile.am): Likewise.
35517         * modules/malloc (Makefile.am): Likewise.
35518         * modules/mathl (Makefile.am): Likewise.
35519         * modules/mbchar (Makefile.am): Likewise.
35520         * modules/md2 (Makefile.am): Likewise.
35521         * modules/md4 (Makefile.am): Likewise.
35522         * modules/md5 (Makefile.am): Likewise.
35523         * modules/memcasecmp (Makefile.am): Likewise.
35524         * modules/memchr (Makefile.am): Likewise.
35525         * modules/memcmp (Makefile.am): Likewise.
35526         * modules/memcoll (Makefile.am): Likewise.
35527         * modules/memcpy (Makefile.am): Likewise.
35528         * modules/memmem (Makefile.am): Likewise.
35529         * modules/memmove (Makefile.am): Likewise.
35530         * modules/mempcpy (Makefile.am): Likewise.
35531         * modules/memrchr (Makefile.am): Likewise.
35532         * modules/memset (Makefile.am): Likewise.
35533         * modules/memxor (Makefile.am): Likewise.
35534         * modules/mkancesdirs (Makefile.am): Likewise.
35535         * modules/mkdir-p (Makefile.am): Likewise.
35536         * modules/mkdir (Makefile.am): Likewise.
35537         * modules/mkdtemp (Makefile.am): Likewise.
35538         * modules/mkstemp (Makefile.am): Likewise.
35539         * modules/mktime (Makefile.am): Likewise.
35540         * modules/modechange (Makefile.am): Likewise.
35541         * modules/mountlist (Makefile.am): Likewise.
35542         * modules/nanosleep (Makefile.am): Likewise.
35543         * modules/obstack (Makefile.am): Likewise.
35544         * modules/openat (Makefile.am): Likewise.
35545         * modules/pagealign_alloc (Makefile.am): Likewise.
35546         * modules/pathmax (Makefile.am): Likewise.
35547         * modules/physmem (Makefile.am): Likewise.
35548         * modules/poll (Makefile.am): Likewise.
35549         * modules/posixtm (Makefile.am): Likewise.
35550         * modules/posixver (Makefile.am): Likewise.
35551         * modules/putenv (Makefile.am): Likewise.
35552         * modules/quote (Makefile.am): Likewise.
35553         * modules/quotearg (Makefile.am): Likewise.
35554         * modules/raise (Makefile.am): Likewise.
35555         * modules/read-file (Makefile.am): Likewise.
35556         * modules/readline (Makefile.am): Likewise.
35557         * modules/readlink (Makefile.am): Likewise.
35558         * modules/readtokens (Makefile.am): Likewise.
35559         * modules/readutmp (Makefile.am): Likewise.
35560         * modules/realloc (Makefile.am): Likewise.
35561         * modules/regex (Makefile.am): Likewise.
35562         * modules/rename-dest-slash (Makefile.am): Likewise.
35563         * modules/rename (Makefile.am): Likewise.
35564         * modules/rijndael (Makefile.am): Likewise.
35565         * modules/rmdir (Makefile.am): Likewise.
35566         * modules/rpmatch (Makefile.am): Likewise.
35567         * modules/safe-read (Makefile.am): Likewise.
35568         * modules/safe-write (Makefile.am): Likewise.
35569         * modules/same-inode (Makefile.am): Likewise.
35570         * modules/same (Makefile.am): Likewise.
35571         * modules/save-cwd (Makefile.am): Likewise.
35572         * modules/savedir (Makefile.am): Likewise.
35573         * modules/setenv (Makefile.am): Likewise.
35574         * modules/settime (Makefile.am): Likewise.
35575         * modules/sha1 (Makefile.am): Likewise.
35576         * modules/sig2str (Makefile.am): Likewise.
35577         * modules/snprintf (Makefile.am): Likewise.
35578         * modules/stat-macros (Makefile.am): Likewise.
35579         * modules/stat-time (Makefile.am): Likewise.
35580         * modules/stdbool (Makefile.am): Likewise.
35581         * modules/stdint (Makefile.am): Likewise.
35582         * modules/stdlib-safer (Makefile.am): Likewise.
35583         * modules/stpcpy (Makefile.am): Likewise.
35584         * modules/stpncpy (Makefile.am): Likewise.
35585         * modules/strcase (Makefile.am): Likewise.
35586         * modules/strcasestr (Makefile.am): Likewise.
35587         * modules/strchrnul (Makefile.am): Likewise.
35588         * modules/strcspn (Makefile.am): Likewise.
35589         * modules/strdup (Makefile.am): Likewise.
35590         * modules/strerror (Makefile.am): Likewise.
35591         * modules/strftime (Makefile.am): Likewise.
35592         * modules/strndup (Makefile.am): Likewise.
35593         * modules/strnlen (Makefile.am): Likewise.
35594         * modules/strpbrk (Makefile.am): Likewise.
35595         * modules/strsep (Makefile.am): Likewise.
35596         * modules/strstr (Makefile.am): Likewise.
35597         * modules/strtod (Makefile.am): Likewise.
35598         * modules/strtoimax (Makefile.am): Likewise.
35599         * modules/strtok_r (Makefile.am): Likewise.
35600         * modules/strtol (Makefile.am): Likewise.
35601         * modules/strtoll (Makefile.am): Likewise.
35602         * modules/strtoul (Makefile.am): Likewise.
35603         * modules/strtoull (Makefile.am): Likewise.
35604         * modules/strtoumax (Makefile.am): Likewise.
35605         * modules/strverscmp (Makefile.am): Likewise.
35606         * modules/sys_socket (Makefile.am): Likewise.
35607         * modules/sys_stat (Makefile.am): Likewise.
35608         * modules/sysexits (Makefile.am): Likewise.
35609         * modules/time_r (Makefile.am): Likewise.
35610         * modules/timegm (Makefile.am): Likewise.
35611         * modules/timespec (Makefile.am): Likewise.
35612         * modules/tmpfile-safer (Makefile.am): Likewise.
35613         * modules/trim (Makefile.am): Likewise.
35614         * modules/unistd-safer (Makefile.am): Likewise.
35615         * modules/unlinkdir (Makefile.am): Likewise.
35616         * modules/unlocked-io (Makefile.am): Likewise.
35617         * modules/userspec (Makefile.am): Likewise.
35618         * modules/utime (Makefile.am): Likewise.
35619         * modules/utimecmp (Makefile.am): Likewise.
35620         * modules/utimens (Makefile.am): Likewise.
35621         * modules/vasnprintf (Makefile.am): Likewise.
35622         * modules/vasprintf (Makefile.am): Likewise.
35623         * modules/vsnprintf (Makefile.am): Likewise.
35624         * modules/xalloc (Makefile.am): Likewise.
35625         * modules/xgetcwd (Makefile.am): Likewise.
35626         * modules/xnanosleep (Makefile.am): Likewise.
35627         * modules/xreadlink (Makefile.am): Likewise.
35628         * modules/xstrtod (Makefile.am): Likewise.
35629         * modules/xstrtol (Makefile.am): Likewise.
35630         * modules/xstrtold (Makefile.am): Likewise.
35631         * modules/yesno (Makefile.am): Likewise.
35632         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
35633
35634 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
35635
35636         * modules/error (Makefile.am): Distribute files through
35637         EXTRA_DIST, not lib_SOURCES.
35638
35639 2006-10-12  Eric Blake  <ebb9@byu.net>
35640
35641         * modules/error (Makefile.am): Distribute files in /lib.
35642         * modules/obstack (Makefile.am): Likewise.
35643
35644 2006-10-12  Bruno Haible  <bruno@clisp.org>
35645
35646         * modules/acl (Makefile.am): Distribute all files in lib/ through
35647         EXTRA_DIST.
35648         * modules/arcfour (Makefile.am): Likewise.
35649         * modules/arctwo (Makefile.am): Likewise.
35650         * modules/argmatch (Makefile.am): Likewise.
35651         * modules/argz (Makefile.am): Likewise.
35652         * modules/atexit (Makefile.am): Likewise.
35653         * modules/backupfile (Makefile.am): Likewise.
35654         * modules/c-strtod (Makefile.am): Likewise.
35655         * modules/c-strtold (Makefile.am): Likewise.
35656         * modules/calloc (Makefile.am): Likewise.
35657         * modules/canon-host (Makefile.am): Likewise.
35658         * modules/canonicalize (Makefile.am): Likewise.
35659         * modules/chdir-long (Makefile.am): Likewise.
35660         * modules/chdir-safer (Makefile.am): Likewise.
35661         * modules/check-version (Makefile.am): Likewise.
35662         * modules/chown (Makefile.am): Likewise.
35663         * modules/cloexec (Makefile.am): Likewise.
35664         * modules/close-stream (Makefile.am): Likewise.
35665         * modules/closeout (Makefile.am): Likewise.
35666         * modules/crc (Makefile.am): Likewise.
35667         * modules/cycle-check (Makefile.am): Likewise.
35668         * modules/des (Makefile.am): Likewise.
35669         * modules/dirfd (Makefile.am): Likewise.
35670         * modules/dirname (Makefile.am): Likewise.
35671         * modules/dup2 (Makefile.am): Likewise.
35672         * modules/euidaccess (Makefile.am): Likewise.
35673         * modules/exclude (Makefile.am): Likewise.
35674         * modules/exitfail (Makefile.am): Likewise.
35675         * modules/fcntl-safer (Makefile.am): Likewise.
35676         * modules/file-type (Makefile.am): Likewise.
35677         * modules/fileblocks (Makefile.am): Likewise.
35678         * modules/filemode (Makefile.am): Likewise.
35679         * modules/filenamecat (Makefile.am): Likewise.
35680         * modules/fnmatch (Makefile.am): Likewise.
35681         * modules/fopen-safer (Makefile.am): Likewise.
35682         * modules/fpending (Makefile.am): Likewise.
35683         * modules/fprintftime (Makefile.am): Likewise.
35684         * modules/free (Makefile.am): Likewise.
35685         * modules/fsusage (Makefile.am): Likewise.
35686         * modules/ftruncate (Makefile.am): Likewise.
35687         * modules/fts (Makefile.am): Likewise.
35688         * modules/gc (Makefile.am): Likewise.
35689         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
35690         * modules/getaddrinfo (Makefile.am): Likewise.
35691         * modules/getcwd (Makefile.am): Likewise.
35692         * modules/getdelim (Makefile.am): Likewise.
35693         * modules/getdomainname (Makefile.am): Likewise.
35694         * modules/getgroups (Makefile.am): Likewise.
35695         * modules/gethostname (Makefile.am): Likewise.
35696         * modules/gethrxtime (Makefile.am): Likewise.
35697         * modules/getline (Makefile.am): Likewise.
35698         * modules/getloadavg (Makefile.am): Likewise.
35699         * modules/getlogin_r (Makefile.am): Likewise.
35700         * modules/getopt (Makefile.am): Likewise.
35701         * modules/getpass (Makefile.am): Likewise.
35702         * modules/getpass-gnu (Makefile.am): Likewise.
35703         * modules/getsubopt (Makefile.am): Likewise.
35704         * modules/gettime (Makefile.am): Likewise.
35705         * modules/gettimeofday (Makefile.am): Likewise.
35706         * modules/getugroups (Makefile.am): Likewise.
35707         * modules/getusershell (Makefile.am): Likewise.
35708         * modules/glob (Makefile.am): Likewise.
35709         * modules/group-member (Makefile.am): Likewise.
35710         * modules/hard-locale (Makefile.am): Likewise.
35711         * modules/hash (Makefile.am): Likewise.
35712         * modules/hmac-md5 (Makefile.am): Likewise.
35713         * modules/hmac-sha1 (Makefile.am): Likewise.
35714         * modules/human (Makefile.am): Likewise.
35715         * modules/idcache (Makefile.am): Likewise.
35716         * modules/imaxabs (Makefile.am): Likewise.
35717         * modules/imaxdiv (Makefile.am): Likewise.
35718         * modules/inet_ntop (Makefile.am): Likewise.
35719         * modules/inet_pton (Makefile.am): Likewise.
35720         * modules/inttostr (Makefile.am): Likewise.
35721         * modules/isapipe (Makefile.am): Likewise.
35722         * modules/lchown (Makefile.am): Likewise.
35723         * modules/long-options (Makefile.am): Likewise.
35724         * modules/lstat (Makefile.am): Likewise.
35725         * modules/malloc (Makefile.am): Likewise.
35726         * modules/mathl (Makefile.am): Likewise.
35727         * modules/mbchar (Makefile.am): Likewise.
35728         * modules/md2 (Makefile.am): Likewise.
35729         * modules/md4 (Makefile.am): Likewise.
35730         * modules/md5 (Makefile.am): Likewise.
35731         * modules/memcasecmp (Makefile.am): Likewise.
35732         * modules/memchr (Makefile.am): Likewise.
35733         * modules/memcmp (Makefile.am): Likewise.
35734         * modules/memcoll (Makefile.am): Likewise.
35735         * modules/memcpy (Makefile.am): Likewise.
35736         * modules/memmem (Makefile.am): Likewise.
35737         * modules/memmove (Makefile.am): Likewise.
35738         * modules/mempcpy (Makefile.am): Likewise.
35739         * modules/memrchr (Makefile.am): Likewise.
35740         * modules/memset (Makefile.am): Likewise.
35741         * modules/memxor (Makefile.am): Likewise.
35742         * modules/mkancesdirs (Makefile.am): Likewise.
35743         * modules/mkdir (Makefile.am): Likewise.
35744         * modules/mkdir-p (Makefile.am): Likewise.
35745         * modules/mkdtemp (Makefile.am): Likewise.
35746         * modules/mkstemp (Makefile.am): Likewise.
35747         * modules/mktime (Makefile.am): Likewise.
35748         * modules/modechange (Makefile.am): Likewise.
35749         * modules/mountlist (Makefile.am): Likewise.
35750         * modules/nanosleep (Makefile.am): Likewise.
35751         * modules/openat (Makefile.am): Likewise.
35752         * modules/pagealign_alloc (Makefile.am): Likewise.
35753         * modules/physmem (Makefile.am): Likewise.
35754         * modules/poll (Makefile.am): Likewise.
35755         * modules/posixtm (Makefile.am): Likewise.
35756         * modules/posixver (Makefile.am): Likewise.
35757         * modules/putenv (Makefile.am): Likewise.
35758         * modules/quote (Makefile.am): Likewise.
35759         * modules/quotearg (Makefile.am): Likewise.
35760         * modules/raise (Makefile.am): Likewise.
35761         * modules/read-file (Makefile.am): Likewise.
35762         * modules/readline (Makefile.am): Likewise.
35763         * modules/readlink (Makefile.am): Likewise.
35764         * modules/readtokens (Makefile.am): Likewise.
35765         * modules/readutmp (Makefile.am): Likewise.
35766         * modules/realloc (Makefile.am): Likewise.
35767         * modules/regex (Makefile.am): Likewise.
35768         * modules/rename (Makefile.am): Likewise.
35769         * modules/rename-dest-slash (Makefile.am): Likewise.
35770         * modules/rijndael (Makefile.am): Likewise.
35771         * modules/rmdir (Makefile.am): Likewise.
35772         * modules/rpmatch (Makefile.am): Likewise.
35773         * modules/safe-read (Makefile.am): Likewise.
35774         * modules/safe-write (Makefile.am): Likewise.
35775         * modules/same (Makefile.am): Likewise.
35776         * modules/save-cwd (Makefile.am): Likewise.
35777         * modules/savedir (Makefile.am): Likewise.
35778         * modules/setenv (Makefile.am): Likewise.
35779         * modules/settime (Makefile.am): Likewise.
35780         * modules/sha1 (Makefile.am): Likewise.
35781         * modules/sig2str (Makefile.am): Likewise.
35782         * modules/snprintf (Makefile.am): Likewise.
35783         * modules/stdlib-safer (Makefile.am): Likewise.
35784         * modules/stpcpy (Makefile.am): Likewise.
35785         * modules/stpncpy (Makefile.am): Likewise.
35786         * modules/strcase (Makefile.am): Likewise.
35787         * modules/strcasestr (Makefile.am): Likewise.
35788         * modules/strchrnul (Makefile.am): Likewise.
35789         * modules/strcspn (Makefile.am): Likewise.
35790         * modules/strdup (Makefile.am): Likewise.
35791         * modules/strerror (Makefile.am): Likewise.
35792         * modules/strftime (Makefile.am): Likewise.
35793         * modules/strndup (Makefile.am): Likewise.
35794         * modules/strnlen (Makefile.am): Likewise.
35795         * modules/strpbrk (Makefile.am): Likewise.
35796         * modules/strsep (Makefile.am): Likewise.
35797         * modules/strstr (Makefile.am): Likewise.
35798         * modules/strtod (Makefile.am): Likewise.
35799         * modules/strtoimax (Makefile.am): Likewise.
35800         * modules/strtok_r (Makefile.am): Likewise.
35801         * modules/strtol (Makefile.am): Likewise.
35802         * modules/strtoll (Makefile.am): Likewise.
35803         * modules/strtoul (Makefile.am): Likewise.
35804         * modules/strtoull (Makefile.am): Likewise.
35805         * modules/strtoumax (Makefile.am): Likewise.
35806         * modules/strverscmp (Makefile.am): Likewise.
35807         * modules/time_r (Makefile.am): Likewise.
35808         * modules/timegm (Makefile.am): Likewise.
35809         * modules/tmpfile-safer (Makefile.am): Likewise.
35810         * modules/unistd-safer (Makefile.am): Likewise.
35811         * modules/unlinkdir (Makefile.am): Likewise.
35812         * modules/userspec (Makefile.am): Likewise.
35813         * modules/utime (Makefile.am): Likewise.
35814         * modules/utimecmp (Makefile.am): Likewise.
35815         * modules/utimens (Makefile.am): Likewise.
35816         * modules/vasnprintf (Makefile.am): Likewise.
35817         * modules/vasprintf (Makefile.am): Likewise.
35818         * modules/vsnprintf (Makefile.am): Likewise.
35819         * modules/xalloc (Makefile.am): Likewise.
35820         * modules/xgetcwd (Makefile.am): Likewise.
35821         * modules/xnanosleep (Makefile.am): Likewise.
35822         * modules/xreadlink (Makefile.am): Likewise.
35823         * modules/xstrtod (Makefile.am): Likewise.
35824         * modules/xstrtol (Makefile.am): Likewise.
35825         * modules/xstrtold (Makefile.am): Likewise.
35826         * modules/yesno (Makefile.am): Likewise.
35827
35828 2006-10-12  Jim Meyering  <jim@meyering.net>
35829
35830         * m4/getloadavg.m4: Revert the change below.
35831
35832         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
35833         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
35834         fail with a symlink, which is what coreutils' ./bootstrap now
35835         creates by default.
35836
35837 2006-10-12  Bruno Haible  <bruno@clisp.org>
35838
35839         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
35840         mingw.
35841         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
35842         MSVC and mingw explicitly.
35843
35844 2006-10-11  Simon Josefsson  <jas@extundo.com>
35845             Bruno Haible  <bruno@clisp.org>
35846
35847         Add support for multiple gnulib-tool invocations in the scope of a
35848         single configure.ac file.
35849         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
35850         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
35851         with the same contents as the _LIBADD variable.
35852         (func_emit_initmacro_start, func_emit_initmacro_end,
35853         func_emit_initmacro_done): New functions.
35854         (func_import, func_create_testdir): Invoke them. Allow the identifiers
35855         gl_LIBOBJS and gl_LTLIBOBJS.
35856
35857 2006-10-11  Bruno Haible  <bruno@clisp.org>
35858
35859         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
35860         (func_create_testdir): Don't create po/Makefile.am, don't invoke
35861         autoreconf. Instead, invoke autopoint explicitly but move back the
35862         *.m4 files from gnulib.
35863
35864 2006-10-11  Bruno Haible  <bruno@clisp.org>
35865
35866         * gnulib-tool (func_usage): Make module names after --create-testdir
35867         optional.
35868         (func_create_testdir): If no module was specified, use nearly all
35869         modules.
35870
35871 2006-10-12  Jim Meyering  <jim@meyering.net>
35872
35873         Big performance improvement for fts-based tools that use FTS_NOSTAT.
35874         Avoid spurious inode-mismatch problems on non-POSIX file systems.
35875         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
35876         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
35877         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
35878         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
35879         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
35880         (fts_set_stat_required): New function.
35881         (fts_open): Defer the calls to fts_stat, if possible or requested.
35882         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
35883         into fts_stat itself.
35884         (fts_read): Perform any required (deferred) fts_stat call.
35885         (fts_build): Likewise, for the directory we're about to open and read.
35886         In the readdir loop, carefully decide whether each entry will require
35887         an eventual call to fts_stat, using dirent.d_type info if available.
35888         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
35889         a command line argument into this function.  Update all callers.
35890         Map a return value of FTS_DOT to FTS_D for a command line argument.
35891         * modules/fts (Depends-on): Add d-type.  Alphabetize.
35892         Thanks to Miklos Szeredi for his tenacity and for the initial
35893         bug report about "find" failing on a FUSE-based file system.
35894
35895         * lib/fts.c (fts_open): Use consistent indentation.
35896
35897 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
35898
35899         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
35900         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
35901         reported by Jim Meyering.  All uses of cache variables renamed
35902         to match Autoconf's.
35903         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
35904         the other one.
35905
35906         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
35907         Fix misspelling in diagnostic.
35908
35909 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
35910
35911         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
35912         defined.  Problem reported by Matthew Woehlke.
35913
35914         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
35915         Add support for Tandem NonStop R series.
35916         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
35917         Use new macro.
35918
35919         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
35920         (has_trailing_slash): Omit size arg; all callers changed.
35921         Omit 'inline', since it doesn't help performance and we'd
35922         need to configure it.
35923         Don't count //, ///, etc. as having a trailing slash.
35924         As a side effect, this removes a C99ism reported by Matthew Woehlke.
35925         (rpl_rename_dest_slash): On failure, use rename's errno rather
35926         than (in some cases) an incorrect or junk errno.
35927         Simplify code by removing need to compute length; this does
35928         cause it to make two passes instead of one over the file name,
35929         but it's worth it.
35930
35931         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
35932         change, since Autoconf's version may no longer be appropriate now
35933         that we are using CVS Autoconf's version.  Add support for Tandem.
35934
35935 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
35936             Bruno Haible  <bruno@clisp.org>
35937
35938         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
35939         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
35940         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
35941         gl_AC_TYPE_LONG_LONG.
35942
35943         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
35944         instead of HAVE_LONG_LONG.
35945         * lib/printf-args.c (printf_fetchargs): Likewise.
35946         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
35947         * lib/vasnprintf.c (VASNPRINTF): Likewise.
35948         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
35949         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
35950         gl_AC_TYPE_LONG_LONG.
35951
35952 2006-10-11  Bruno Haible  <bruno@clisp.org>
35953
35954         * m4/longlong.m4: Add comments.
35955         * m4/ulonglong.m4: Likewise.
35956
35957 2006-10-10  Bruno Haible  <bruno@clisp.org>
35958
35959         Make it possible to #define stpcpy, strdup to aliases.
35960         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
35961         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
35962
35963 2006-10-10  Bruno Haible  <bruno@clisp.org>
35964
35965         Make it possible to #define gcd to an alias.
35966         * lib/gcd.c: Include config.h.
35967
35968 2006-10-10  Bruno Haible  <bruno@clisp.org>
35969
35970         Make it possible to #define c_isascii to an alias.
35971         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
35972         defined. Undefine the macros before defining them, to avoid gcc
35973         warnings.
35974         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
35975         define NO_C_CTYPE_MACROS early.
35976
35977 2006-10-10  Bruno Haible  <bruno@clisp.org>
35978
35979         Make it possible to #define set_program_name to an alias.
35980         * lib/progname.c: Don't undefine set_program_name; instead, undefine
35981         ENABLE_RELOCATABLE early.
35982
35983 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
35984
35985         Port to Tandem NSK OSS, which has 64-bit signed int but at most
35986         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
35987         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
35988         More generally, don't assume that 64-bit signed int is available
35989         if unsigned int is, and vice versa.
35990         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
35991         unsigned symbols, not on their signed counterparts.
35992         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
35993         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
35994         (UINT64_C, UINTMAX_C):
35995         Likewise.
35996         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
35997         unsigned counterparts.
35998         (Have_long_long, Unsigned): New macros.
35999         (Int): Renamed from INT.
36000         (strtoimax): Use the new macros.
36001         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
36002         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
36003         * modules/inttypes (inttypes.h): Substitute
36004         HAVE_UNSIGNED_LONG_LONG_INT.
36005         * modules/stdint (stdint.h): Likewise.
36006         (Files): Add m4/ulonglong.m4.
36007
36008 2006-10-10  Bruno Haible  <bruno@clisp.org>
36009
36010         Fix a gcc -Wshadow warning.
36011         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
36012         to 'bucket'.
36013         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
36014         gl_linked_indexof_from_to): Likewise.
36015         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
36016         Likewise.
36017         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
36018         Likewise.
36019         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
36020         Reported by Eric Blake.
36021
36022 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
36023
36024         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
36025         for NetBSD.  Problem reported by Bruno Haible.
36026
36027 2006-10-09  Jim Meyering  <jim@meyering.net>
36028
36029         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
36030         Patch from Bruno Haible.
36031
36032 2006-10-09  Jim Meyering  <jim@meyering.net>
36033
36034         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
36035         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
36036         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
36037
36038 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
36039
36040         Don't include <config.h> twice; this doesn't work in some cases,
36041         e.g., when config.h has "#define intmax_t long long int" and
36042         we include <config.h>, <inttypes.h>, <config.h> in that order.
36043         Problem reported by Matthew Woehlke in:
36044         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
36045         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
36046         * lib/fts-cycle.c: Don't include config.h.
36047         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
36048         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
36049         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
36050         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
36051         inttypes.h.
36052         * lib/xstrtoumax.c: Likewise.
36053         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
36054         __strtol and the like, so that this module is more like its siblings.
36055         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
36056         Remove; no longer needed now that we assume gnulib inttypes.h.
36057
36058 2006-10-08  Bruno Haible  <bruno@clisp.org>
36059
36060         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
36061         option.
36062
36063 2006-10-07  Jim Meyering  <jim@meyering.net>
36064
36065         * modules/inttypes (inttypes.h): Revert what seems to have been
36066         an inadvertent part of today's change: use "|", not "/" in the
36067         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
36068
36069 2006-10-07  Bruno Haible  <bruno@clisp.org>
36070
36071         * modules/sublist: New file.
36072
36073 2006-10-07  Bruno Haible  <bruno@clisp.org>
36074
36075         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
36076         * modules/argz (argz.h): Likewise.
36077         * modules/arpa_inet (arpa/inet.h): Likewise.
36078         * modules/byteswap (byteswap.h): Likewise.
36079         * modules/configmake (configmake.h): Likewise.
36080         * modules/fcntl (fcntl.h): Likewise.
36081         * modules/fnmatch (fnmatch.h): Likewise.
36082         * modules/getopt (getopt.h): Likewise.
36083         * modules/glob (glob.h): Likewise.
36084         * modules/inttypes (inttypes.h): Likewise.
36085         * modules/netinet_in (netinet/in.h): Likewise.
36086         * modules/poll (poll.h): Likewise.
36087         * modules/stdbool (stdbool.h): Likewise.
36088         * modules/stdint (stdint.h): Likewise.
36089         * modules/sys_select (sys/select.h): Likewise.
36090         * modules/sys_socket (sys/socket.h): Likewise.
36091         * modules/sys_stat (sys/stat.h): Likewise.
36092         * modules/sysexits (sysexits.h): Likewise.
36093         * modules/unistd (unistd.h): Likewise.
36094         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
36095         Add a "DO NOT EDIT" comment to the generated file.
36096         (func_import): Likewise for gnulib-comp.m4.
36097
36098 2006-10-07  Bruno Haible  <bruno@clisp.org>
36099
36100         * lib/gl_sublist.h: New file.
36101         * lib/gl_sublist.c: New file.
36102
36103 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
36104
36105         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
36106         name (relative to the original working directory) and the file
36107         name component (relative to the temporary working directory).  All
36108         callers changed.
36109         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
36110         * lib/mkdir-p.c (make_dir_parents): Likewise.
36111         * lib/mkdir-p.h (make_dir_parents): Likewise.
36112
36113 2006-10-06  Eric Blake  <ebb9@byu.net>
36114
36115         Define several macros for use by the clean-temp module.
36116         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
36117         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
36118         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
36119
36120         * lib/clean-temp.h (close_stream_temp): New declaration.
36121         * lib/clean-temp.c (includes): Pull in headers according to what
36122         other modules are in use.
36123         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
36124
36125 2006-10-06  Bruno Haible  <bruno@clisp.org>
36126
36127         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
36128         instead of fopen, fwriteerror.
36129
36130 2006-10-06  Bruno Haible  <bruno@clisp.org>
36131
36132         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
36133         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
36134         int.
36135         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
36136         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
36137         Return an error indicator.
36138         Suggested by Eric Blake.
36139
36140 2006-10-06  Bruno Haible  <bruno@clisp.org>
36141
36142         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
36143         Reported by Eric Blake.
36144
36145 2006-10-06  Bruno Haible  <bruno@clisp.org>
36146
36147         * modules/closeout (Description): Mention stderr too.
36148
36149 2006-10-06  Bruno Haible  <bruno@clisp.org>
36150         and Paul Eggert  <eggert@cs.ucla.edu>
36151
36152         * lib/closeout.c (close_stdout): Also close stderr.
36153         * lib/closeout.h: Update comment.
36154
36155 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
36156
36157         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
36158         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
36159         * lib/dirchownmod.c: Include lchown.h.
36160         * lib/lchown.c: Don't include files that lchown.h now includes.
36161         Don't declare chown, since lchown.h now does that.
36162         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
36163         (lchown): Define to rpl_chown if lchown is declared but
36164         does not exist.  Declare using a prototype if lchown is not
36165         declared.  Add a copyright notice.
36166         * lib/mkstemp.h: Include <unistd.h>.
36167         * lib/openat.c: Include lchown.h.
36168
36169         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
36170         we now test for that separately.
36171         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
36172         rather than O_NOFOLLOW, when testing whether it's possible to
36173         avoid a race condition reliably.
36174         * lib/savewd.c (savewd_chdir): Likewise.
36175
36176         Remove macros that are no longer needed now that stdint.h is
36177         reliable.
36178         * lib/fsusage.c (UINTMAX_MAX): Remove.
36179         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
36180         * lib/utimecmp.c (SIZE_MAX): Remove.
36181
36182         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
36183
36184         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
36185         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
36186         O_NOATIME works.
36187
36188 2006-10-05  Bruno Haible  <bruno@clisp.org>
36189
36190         * lib/gl_list.h (gl_sortedlist_search_from_to,
36191         gl_sortedlist_indexof_from_to): New declarations.
36192         (gl_list_implementation): New fields sortedlist_search_from_to,
36193         sortedlist_indexof_from_to.
36194         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
36195         inline functions.
36196         * lib/gl_list.c (gl_sortedlist_search_from_to,
36197         gl_sortedlist_indexof_from_to): New functions.
36198         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
36199         function.
36200         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
36201         (gl_array_sortedlist_search_from_to): New function.
36202         (gl_array_list_implementation): Update.
36203         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
36204         function.
36205         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
36206         (gl_carray_sortedlist_search_from_to): New function.
36207         (gl_carray_list_implementation): Update.
36208         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
36209         gl_linked_sortedlist_indexof_from_to): New functions.
36210         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
36211         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
36212         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
36213         gl_tree_sortedlist_indexof_from_to): New functions.
36214         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
36215         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
36216         Update.
36217         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
36218         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
36219         Update.
36220
36221 2006-10-05  Bruno Haible  <bruno@clisp.org>
36222
36223         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
36224         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
36225         (struct gl_list_implementation): Add fields search_from_to,
36226         indexof_from_to. Remove fields search, indexof.
36227         (gl_list_search): Use the search_from_to method.
36228         (gl_list_search_from, gl_list_search_from_to): New functions.
36229         (gl_list_indexof): Use the indexof_from_to method.
36230         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
36231         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
36232         (gl_list_search_from, gl_list_search_from_to): New functions.
36233         (gl_list_indexof): Use the indexof_from_to method.
36234         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
36235         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
36236         gl_array_indexof. Add start_index, end_index arguments.
36237         (gl_array_search_from_to): Renamed from gl_array_search. Add
36238         start_index, end_index arguments.
36239         (gl_array_remove, gl_array_list_implementation): Update.
36240         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
36241         gl_carray_indexof. Add start_index, end_index arguments.
36242         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
36243         start_index, end_index arguments.
36244         (gl_carray_remove, gl_carray_list_implementation): Update.
36245         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
36246         gl_linked_search. Add start_index, end_index arguments.
36247         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
36248         start_index, end_index arguments.
36249         (gl_linked_remove): Update.
36250         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
36251         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
36252         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
36253         field to 'size_t'.
36254         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
36255         gl_tree_search. Add start_index, end_index arguments.
36256         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
36257         start_index, end_index arguments.
36258         (gl_tree_remove): Update.
36259         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
36260         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
36261         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
36262         function.
36263         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
36264         gl_tree_search. Add start_index, end_index arguments.
36265         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
36266         start_index, end_index arguments.
36267         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
36268         Update.
36269         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
36270
36271 2006-10-05  Bruno Haible  <bruno@clisp.org>
36272
36273         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
36274
36275         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
36276         fwriteerror_temp): New declarations.
36277         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
36278         (descriptors): New variable.
36279         (cleanup): First, close the descriptors.
36280         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
36281         fclose_temp, fwriteerror_temp): New functions.
36282
36283 2006-10-04  Jim Meyering  <jim@meyering.net>
36284
36285         * lib/fts.c (fts_open): Tiny comment change.
36286
36287 2006-10-04  Bruno Haible  <bruno@clisp.org>
36288
36289         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
36290         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
36291         gl_LOCK_BODY.
36292         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
36293         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
36294         gl_LOCK_EARLY_BODY.
36295         (gl_LOCK): Require gl_LOCK_BODY.
36296
36297 2006-10-04  Bruno Haible  <bruno@clisp.org>
36298
36299         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
36300         (gl_oset_search_atleast): New declaration.
36301         (struct gl_oset_implementation): Add field 'search_atleast'.
36302         (gl_oset_search_atleast): New inline function.
36303         * lib/gl_oset.c (gl_oset_search_atleast): New function.
36304         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
36305         (gl_array_oset_implementation): Update.
36306         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
36307         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
36308         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
36309
36310 2006-10-04  Bruno Haible  <bruno@clisp.org>
36311
36312         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
36313
36314 2006-10-03  Bruno Haible  <bruno@clisp.org>
36315
36316         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
36317         from gl_avltreehash_list_implementation.
36318
36319 2006-10-03  Bruno Haible  <bruno@clisp.org>
36320
36321         * lib/gl_oset.c (gl_oset_add): Fix return type.
36322
36323 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
36324
36325         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
36326
36327 2006-10-02  Eric Blake  <ebb9@byu.net>
36328
36329         * modules/strnlen (Depends-on): Add extensions.
36330
36331 2006-10-02  Eric Blake  <ebb9@byu.net>
36332
36333         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
36334         definition in 2.60+.
36335
36336 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
36337
36338         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
36339         checks.
36340
36341 2006-10-02  Bruno Haible  <bruno@clisp.org>
36342
36343         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
36344         to the AUTOMAKE_OPTIONS.
36345         Reported by Jim Meyering.
36346
36347 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
36348
36349         Work around bug in Solaris 10 /proc file system:
36350         /proc/self/fd/NNN/.. isn't the parent directory of
36351         the directory whose file descriptor is NNN.  This needs to
36352         be worked around at run time, not compile time, since a
36353         program might be built on Solaris 8, where things work, and
36354         run on Solaris 10.
36355         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
36356         to use the following interface instead:
36357         (OPENAT_BUFFER_SIZE): New macro.
36358         (openat_proc_name): New function.
36359         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
36360         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
36361         Likewise.
36362         * lib/openat-proc.c: New file.
36363         * modules/openat (Files): Add lib/openat-proc.c.
36364         (Depends-on): Add same-inode, stdbool.
36365         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
36366
36367 2006-09-29  Bruno Haible  <bruno@clisp.org>
36368
36369         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
36370         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
36371         argument. Set stdout_closed before testing for ferror, not after.
36372         (fwriteerror, fwriteerror_no_ebadf): New functions.
36373
36374 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36375
36376         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
36377
36378 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
36379
36380         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
36381         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
36382
36383 2006-09-28  Jim Meyering  <jim@meyering.net>
36384
36385         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
36386         Include <unistd.h>.
36387
36388 2006-09-28  Bruno Haible  <bruno@clisp.org>
36389
36390         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
36391         * modules/linkedhash-list (Depends-on): Likewise.
36392         * modules/rbtreehash-list (Depends-on): Likewise.
36393
36394 2006-09-28  Bruno Haible  <bruno@clisp.org>
36395
36396         * lib/strndup.h: Simplify the redefinition of strndup.
36397         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
36398         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
36399
36400 2006-09-28  Bruno Haible  <bruno@clisp.org>
36401
36402         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
36403         * lib/gl_linkedhash_list.c: Likewise.
36404         * lib/gl_rbtreehash_list.c: Likewise.
36405
36406 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
36407
36408         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
36409         getaddrinfo.
36410
36411         * lib/__fpending.h: Don't include <stdio_ext.h> unless
36412         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
36413         it causes <stdio_ext.h> to cause a compile-time error.
36414         Problem reported by Nelson H. F. Beebe.
36415         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
36416         of HAVE_DECL___PENDING.
36417
36418         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
36419         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
36420         declaration.
36421
36422 2006-09-27  Jim Meyering  <jim@meyering.net>
36423
36424         This file could end up with a definition for a function
36425         named __strndup, rather than rpl_strndup on a system with
36426         incomplete weak_alias support.
36427         * lib/strndup.c (strndup): Rename from __strndup.
36428         Remove #defines that used to map __strndup to strndup.
36429         Don't use K&R prototypes.
36430         Remove LIBC-related code, since this file is not sync'd with glibc.
36431         * lib/strndup.h: Revamp, accordingly.
36432         * m4/strndup.m4: Modernize.
36433
36434 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
36435
36436         * modules/savewd (Depends-on): Add 'raise'.
36437         * lib/savewd.c: Include <signal.h>, for 'raise'.
36438
36439 2006-09-26  Jim Meyering  <jim@meyering.net>
36440
36441         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
36442         when we detect Darwin 8.7.0's acl_get_file bug.
36443         Rearrange to perform the new (below) run-test while $LIBS
36444         contains any acl-related library.  Set USE_ACL at the end.
36445         (gl_ACL_GET_FILE): New function.
36446
36447 2006-09-26  Eric Blake  <ebb9@byu.net>
36448
36449         * lib/verror.c: Include <config.h> unconditionally.
36450
36451 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
36452
36453         * modules/clock-time (Maintainer): Add self.
36454         * modules/getlogin_r (Depends-on): Add extensions.
36455
36456 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36457
36458         * modules/clock-time: New module.
36459         * modules/nanosleep (Depends-on): Add clock-time.
36460         * modules/gethrxtime (Depends-on): Likewise.
36461         * modules/gettime (Depends-on): Likewise.
36462         * modules/settime (Depends-on): Likewise.
36463
36464         * modules/fts-lgpl: Depend on openat.
36465         * modules/mkancesdirs: Depend on savewd.
36466         * modules/mkdir-p: Likewise.
36467
36468 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36469
36470         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
36471
36472         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
36473         `gl_have_arbitrary_file_name_length_limit' to
36474         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
36475         actually works between configure runs.
36476
36477 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36478             Bruno Haible  <bruno@clisp.org>
36479
36480         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
36481
36482 2006-09-25  Jim Meyering  <jim@meyering.net>
36483
36484         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
36485         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
36486
36487 2006-09-25  Eric Blake  <ebb9@byu.net>
36488
36489         * gnulib-tool (func_import, func_create_testdir): Fix typos in
36490         exec's in 2006-09-18 patch when shuffling fds.
36491
36492 2006-09-25  Bruno Haible  <bruno@clisp.org>
36493
36494         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
36495         Reported by Jim Meyering.
36496
36497 2006-09-24  Jim Meyering  <jim@meyering.net>
36498
36499         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
36500         compare a pointer against a literal "0".  That caused failures with
36501         at least HP-UX's hpcc.
36502
36503 2006-09-22  Simon Josefsson  <jas@extundo.com>
36504
36505         * modules/gc-sha1:
36506         * modules/gc-md4:
36507         * modules/gc-hmac-sha1:
36508         * modules/gc-hmac-md5:
36509         * modules/gc-des:
36510         * modules/gc-arcfour: Distribute more files.
36511
36512 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36513
36514         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
36515         (gl_linked_iterator_from_to): Initialize struct completely.
36516         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
36517         (gl_tree_iterator_from_to): Likewise
36518         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
36519         * lib/gl_array_list.c [lint] (gl_array_iterator)
36520         (gl_array_iterator_from_to): Likewise.
36521         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
36522         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
36523         (gl_carray_iterator_from_to): Likewise.
36524
36525         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
36526         * lib/md4.c (md4_process_block): Remove unused variable.
36527         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
36528         parentheses for clarity.
36529
36530 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36531
36532         * modules/bison-i18n (Depends-on): Add gettext.
36533
36534 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36535
36536         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
36537         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
36538         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
36539         also add missing comma that caused broken test.
36540         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
36541         stdlib.h, for `abort'.
36542         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
36543         variables.
36544         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
36545         include unistd.h if present, for `rmdir'.
36546         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
36547         variables.
36548         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
36549         in the process include standard headers for prototypes.
36550         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
36551         gets declared on GNU/Linux.
36552         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
36553         unistd.h, for `rmdir'.
36554         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
36555
36556         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
36557         always true.
36558         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
36559
36560         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
36561
36562 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36563
36564         * gnulib-tool (func_version): Create output all at once.  This
36565         may help avoid triggering unnecessary SIGPIPEs, and at any
36566         rate it doesn't hurt.
36567
36568 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36569             Bruno Haible  <bruno@clisp.org>
36570
36571         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
36572         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
36573         * m4/signed.m4 (bh_C_SIGNED): Likewise.
36574
36575         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
36576         (gl_FUNC_VASPRINTF): Invoke it.
36577
36578 2006-09-22  Bruno Haible  <bruno@clisp.org>
36579
36580         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
36581         getloadavg.c as first argument.
36582
36583 2006-09-22  Bruno Haible  <bruno@clisp.org>
36584
36585         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
36586         at the beginning of the gl_INIT macro.
36587         * modules/getloadavg (configure.ac): Pass $gl_source_base to
36588         gl_GETLOADAVG.
36589
36590 2006-09-22  Bruno Haible  <bruno@clisp.org>
36591
36592         * gnulib-tool (func_create_megatestdir): Don't include the config-h
36593         module.
36594         Suggested by Ralf Wildenhues.
36595
36596 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
36597
36598         Import this patch from libc:
36599
36600         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
36601
36602         * lib/regex_internal.c (re_string_reconstruct): Handle
36603         offset < pstr->valid_raw_len && pstr->offsets_needed case.
36604         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
36605         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
36606         re_string_context_at.
36607
36608         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
36609         now requires it.
36610         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
36611         gl_REGEX now does it for us.
36612         (gl_REGEX): Add test taken from
36613         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
36614
36615         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
36616         Check that large offsets work.  Modernize Autoconf usages.
36617         Prefer "yes" to mean a good thing rather than a bad.
36618         Don't put "#define mkstemp" in config.h, as this might interfere
36619         with standard system headers that "#define mkstemp mkstemp64".
36620
36621         * modules/mkstemp (Depends-on): Add extensions, so that
36622         mkstemp is visible on some platforms.
36623         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
36624         (Include): Change to "mkstemp.h" from <stdlib.h>.
36625         (Files): Add mkstemp.h.
36626
36627         * lib/mkstemp.h: New file, since some standard headers
36628         #define mkstemp.
36629         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
36630         Include "mkstemp.h".
36631         Make the _LIBC code resemble glibc original more,
36632         e.g., use K&R style.
36633         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
36634         (mkstemp): Remove, since mkstemp.h does this for us.
36635         * lib/stdlib--.h: Include mkstemp.h.
36636
36637         Import this patch from libc:
36638
36639         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
36640
36641         * lib/tempname.c (__gen_tempname): Change attempts_min
36642         into a macro.  Use preprocessor to decide how to initialize
36643         attempts [Coverity CID 67].
36644
36645 2006-09-20  Bruno Haible  <bruno@clisp.org>
36646
36647         * lib/mkdtemp.c: Import from libc.
36648         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
36649                 * sysdeps/posix/tempname.c (__gen_tempname): Change
36650                 attempts_min into a macro.  Use preprocessor to decide how to
36651                 initialize attempts [Coverity CID 67].
36652         2001-11-27  Paul Eggert  <eggert@twinsun.com>
36653                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
36654                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
36655
36656 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36657
36658         * gnulib-tool (func_exit): New function, to allow to pass the
36659         exit status portably through the trap.  Use everywhere.
36660         (--help, --version): Signal a write error.
36661         (trap): catch SIGPIPE, for write errors.
36662         Exit at the end of the trap, with the correct exit status.
36663
36664 2006-09-19  Karl Berry  <karl@gnu.org>
36665
36666         * doc/gnulib.texi: note about the license texinfo files.
36667
36668 2006-09-19  Eric Blake  <ebb9@byu.net>
36669
36670         * gnulib-tool: Avoid space-tab.
36671
36672 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
36673
36674         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
36675         that prevented coreutils 6.1 from building.  Problem reported
36676         by Petter Reinholdtsen.
36677
36678 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
36679
36680         * gnulib-tool (avoidlist): Fix typo that broke options like
36681         --avoid=lock that are used by coreutils bootstrap.
36682
36683 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
36684
36685         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
36686         more systematically.
36687
36688 2006-09-18  Jim Meyering  <jim@meyering.net>
36689
36690         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
36691
36692 2006-09-18  Bruno Haible  <bruno@clisp.org>
36693
36694         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
36695
36696 2006-09-18  Bruno Haible  <bruno@clisp.org>
36697
36698         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
36699         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
36700         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
36701         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
36702         * m4/gettext.m4: Require autoconf >= 2.52.
36703         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
36704         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
36705         of gl_cv_header_inttypes_h.
36706
36707 2006-09-18  Bruno Haible  <bruno@clisp.org>
36708
36709         * lib/javaversion.c: Include configmake.h.
36710
36711 2006-09-18  Bruno Haible  <bruno@clisp.org>
36712
36713         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
36714         avoid that the while loops be executed in a subshell.
36715
36716 2006-09-18  Bruno Haible  <bruno@clisp.org>
36717
36718         * MODULES.html.sh (func_module): Break long lines.
36719         Suggested by Bruce Korb <bkorb@gnu.org>.
36720
36721 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36722
36723         Speed up by a factor of 1.12.
36724         * gnulib-tool (nl): New variable.
36725         (func_import): Rewrite include directive extraction to only read each
36726         directive once.
36727
36728 2006-09-17  Bruno Haible  <bruno@clisp.org>
36729
36730         * modules/javaversion (Makefile.am): Remove DEFS setting.
36731         (Depends-on): Add configmake, for PKGDATADIR definition.
36732
36733 2006-09-17  Bruno Haible  <bruno@clisp.org>
36734
36735         * gnulib-tool (func_create_testdir): Rewrite all files at once.
36736
36737 2006-09-17  Bruno Haible  <bruno@clisp.org>
36738
36739         * gnulib-tool (func_append): New function, stolen from libtool.m4.
36740         (func_modules_transitive_closure, func_modules_add_dummy,
36741         func_modules_to_filelist, func_import, func_create_testdir,
36742         func_create_megatestdir, ...): Use it wherever possible.
36743         Suggested by Ralf Wildenhues.
36744
36745 2006-09-16  Karl Berry  <karl@gnu.org>
36746
36747         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
36748         to avoid sectioning errors.
36749         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
36750         [ifinfo]: blank line after @center-ed titles.
36751         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
36752         Spell FSF address consistently with others.
36753         (These changes approved by rms.)
36754
36755 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36756
36757         Speed up by a factor of 1.61.
36758         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
36759         already checked module names again.
36760
36761 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36762
36763         Speed up by a factor of 1.13.
36764         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
36765         for new_files, and the input to func_add_or_update.
36766
36767 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36768
36769         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
36770         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
36771
36772 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
36773
36774         * modules/mkancesdirs (Depends-on): Add fcntl.
36775         * modules/savewd: New file.
36776         * MODULES.html.sh (File system functions): Add savewd.
36777
36778         * modules/configmake (Makefile.am): Add support for the
36779         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
36780
36781 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
36782
36783         * m4/savewd.m4: New file.
36784
36785 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
36786
36787         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
36788         (dirchownmod): New arg FD.  All callers changed.
36789         Use FD rather than opening the directory ourself, as opening is
36790         now the caller's responsibility.
36791         * lib/dirchownmod.h: Likewise.
36792         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
36793         hosts that require <sys/types.h> before <sys/stat.h>.  Include
36794         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
36795         (test_dir): Remove.
36796         (mkancesdirs): Return length of prefix of FILE that has already
36797         been made, or -2 if there is a child doing the work.  Redo
36798         algorithm so that it is O(N) rather than O(N**2).  Optimize away
36799         ".", and treat ".." specially since it might stray back into
36800         already-created areas.  Use a subprocess if necessary.  New arg
36801         WD; all users changed.  MAKE_DIR function should now return 1
36802         if it creates a directory that is not readable.  Return -2 if
36803         a child process is spun off.
36804         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
36805         Adjust signature to match code.
36806         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
36807         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
36808         all users changed.
36809         * lib/savewd.c, lib/savewd.h: New files.
36810
36811 2006-09-15  Jim Meyering  <jim@meyering.net>
36812
36813         * modules/rename-dest-slash: New module.
36814         * MODULES.html.sh (posix_compat): Add it here.
36815
36816         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
36817
36818 2006-09-15  Jim Meyering  <jim@meyering.net>
36819
36820         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
36821         file.
36822
36823         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
36824
36825 2006-09-15  Jim Meyering  <jim@meyering.net>
36826
36827         * lib/rename-dest-slash.c (has_trailing_slash): Use
36828         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
36829         (rpl_rename_dest_slash): Perform the cheaper trailing slash
36830         test before testing whether SRC is a directory.
36831         Suggestions from Bruno Haible.
36832
36833         Avoid a warning about an unused variable.
36834         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
36835         into the #ifdef block where it's used.
36836
36837         * lib/rename-dest-slash.c: New file.
36838
36839 2006-09-14  Bruno Haible  <bruno@clisp.org>
36840
36841         * lib/allocsa.c: Include <config.h> unconditionally.
36842         * lib/asnprintf.c: Likewise.
36843         * lib/asprintf.c: Likewise.
36844         * lib/c-strcasecmp.c: Likewise.
36845         * lib/c-strcasestr.c: Likewise.
36846         * lib/c-strncasecmp.c: Likewise.
36847         * lib/c-strstr.c: Likewise.
36848         * lib/classpath.c: Likewise.
36849         * lib/clean-temp.c: Likewise.
36850         * lib/concatpath.c: Likewise.
36851         * lib/copy-file.c: Likewise.
36852         * lib/csharpcomp.c: Likewise.
36853         * lib/csharpexec.c: Likewise.
36854         * lib/execute.c: Likewise.
36855         * lib/fatal-signal.c: Likewise.
36856         * lib/findprog.c: Likewise.
36857         * lib/fwriteerror.c: Likewise.
36858         * lib/gl_array_list.c: Likewise.
36859         * lib/gl_array_oset.c: Likewise.
36860         * lib/gl_avltree_list.c: Likewise.
36861         * lib/gl_avltree_oset.c: Likewise.
36862         * lib/gl_avltreehash_list.c: Likewise.
36863         * lib/gl_carray_list.c: Likewise.
36864         * lib/gl_linked_list.c: Likewise.
36865         * lib/gl_linkedhash_list.c: Likewise.
36866         * lib/gl_list.c: Likewise.
36867         * lib/gl_oset.c: Likewise.
36868         * lib/gl_rbtree_list.c: Likewise.
36869         * lib/gl_rbtree_oset.c: Likewise.
36870         * lib/gl_rbtreehash_list.c: Likewise.
36871         * lib/imaxabs.c: Likewise.
36872         * lib/imaxdiv.c: Likewise.
36873         * lib/javacomp.c: Likewise.
36874         * lib/javaexec.c: Likewise.
36875         * lib/javaversion.c: Likewise.
36876         * lib/linebreak.c: Likewise.
36877         * lib/localcharset.c: Likewise.
36878         * lib/lock.c: Likewise.
36879         * lib/mbchar.c: Likewise.
36880         * lib/mbswidth.c: Likewise.
36881         * lib/mkdtemp.c: Likewise.
36882         * lib/pipe.c: Likewise.
36883         * lib/printf-args.c: Likewise.
36884         * lib/printf-parse.c: Likewise.
36885         * lib/progname.c: Likewise.
36886         * lib/progreloc.c: Likewise.
36887         * lib/readlink.c: Likewise.
36888         * lib/sh-quote.c: Likewise.
36889         * lib/stpcpy.c: Likewise.
36890         * lib/stpncpy.c: Likewise.
36891         * lib/strcasecmp.c: Likewise.
36892         * lib/strcasestr.c: Likewise.
36893         * lib/strcspn.c: Likewise.
36894         * lib/striconv.c: Likewise.
36895         * lib/strncasecmp.c: Likewise.
36896         * lib/strnlen1.c: Likewise.
36897         * lib/strstr.c: Likewise.
36898         * lib/strtok_r.c: Likewise.
36899         * lib/tls.c: Likewise.
36900         * lib/tmpdir.c: Likewise.
36901         * lib/unicodeio.c: Likewise.
36902         * lib/unsetenv.c: Likewise.
36903         * lib/vasnprintf.c: Likewise.
36904         * lib/vasprintf.c: Likewise.
36905         * lib/wait-process.c: Likewise.
36906         * lib/xallocsa.c: Likewise.
36907         * lib/xsetenv.c: Likewise.
36908         * lib/xstriconv.c: Likewise.
36909
36910 2006-09-13  Simon Josefsson  <jas@extundo.com>
36911
36912         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
36913         that internally, suggested by Ralf Wildenhues
36914         <Ralf.Wildenhues@gmx.de>.
36915
36916 2006-09-13  Simon Josefsson  <jas@extundo.com>
36917
36918         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
36919         @LIBOBJS@.
36920         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
36921
36922 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
36923
36924         * lib/_fpending.c: Include <config.h> unconditionally, since we no
36925         longer worry about uses that don't define HAVE_CONFIG_H.
36926         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
36927         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
36928         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
36929         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
36930         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
36931         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
36932         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
36933         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
36934         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
36935         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
36936         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
36937         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
36938         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
36939         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
36940         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
36941         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
36942         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
36943         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
36944         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
36945         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
36946         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
36947         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
36948         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
36949         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
36950         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
36951         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
36952         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
36953         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
36954         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
36955         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
36956         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
36957         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
36958         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
36959         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
36960         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
36961         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
36962         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
36963         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
36964         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
36965         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
36966         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
36967         Likewise.
36968
36969 2006-09-13  Eric Blake  <ebb9@byu.net>
36970
36971         * lib/getopt.c: Fix typo in last commit.
36972
36973 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
36974
36975         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
36976         dgettext.
36977
36978 2006-09-12  Jim Meyering  <jim@meyering.net>
36979
36980         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
36981         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
36982         Reported by Nelson H. F. Beebe.
36983
36984 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
36985
36986         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
36987         program_invocation_name and program_invocation_short_name are
36988         initialized.
36989         * lib/argp-namefrob.h: Move declarations of program_invocation_name
36990         and program_invocation_short_name to argp.h, so they are visible
36991         to user programs.
36992         * lib/argp.h: Likewise
36993
36994 2006-09-10  Bruno Haible  <bruno@clisp.org>
36995
36996         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
36997         m4/inttypes_h.m4, m4/uintmax_t.m4.
36998
36999 2006-09-10  Bruno Haible  <bruno@clisp.org>
37000
37001         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
37002         gl_AC_TYPE_UINTMAX_T.
37003
37004 2006-09-10  Bruno Haible  <bruno@clisp.org>
37005
37006         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
37007
37008 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
37009
37010         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
37011         convention.  Text proposed by Bruno Haible.
37012         (struct argp_option): Document the use of N_() wrappers.
37013
37014         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
37015         '\v', and translate the two parts separately, instead of feeding
37016         the whole string to gettext.  This allows to exclude
37017         '\v' from the strings visible to the translator by writing doc
37018         strings as N_("..") "\v" N_("..").
37019
37020 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
37021
37022         * config/srclist.txt: Undo latest change; the bug was fixed.
37023
37024 2006-09-09  Bruno Haible  <bruno@clisp.org>
37025
37026         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
37027         assignments if building a library without libtool.
37028         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
37029         in func_emit_lib_Makefile_am.
37030         (func_import): When building a static library libfoo.a, arrange to
37031         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
37032         (func_create_testdir): Likewise.
37033         * modules/gc (configure.ac, Makefile.am): If building statically,
37034         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
37035         * modules/iconvme (configure.ac, Makefile.am): Likewise.
37036         * modules/striconv (configure.ac, Makefile.am): Likewise.
37037         Based on a suggestion by Ralf Wildenhues.
37038
37039 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37040
37041         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
37042         Check for unistd.h too, since Autoconf doesn't assume POSIX.
37043         Also:
37044
37045         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37046         Add year_2050_test to catch glibc bug 2821
37047         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
37048
37049         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
37050         Prefer #ifdef to #if.
37051
37052         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
37053         Return from 'main' instead of calling 'exit'.
37054
37055 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37056
37057         * lib/mktime.c (guess_time_tm): Fix bug where mktime
37058         returned the maximum time_t value rather than (time_t) -1.
37059         Problem originally reported by William Bardwell
37060         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
37061
37062         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
37063         Moved to here ...
37064         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
37065         ... from here.
37066
37067 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37068
37069         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
37070         2821 is fixed.
37071
37072 2006-09-08  Jim Meyering  <jim@meyering.net>
37073
37074         Don't make generated files read-only.  That would bother too many
37075         people.  However, do retain the ability to work when targets are
37076         read-only: remove the destination and temporary files before writing
37077         them (when generated via sed or echo), or by using the -f option for
37078         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
37079         * modules/alloca-opt, modules/argz, modules/arpa_inet:
37080         * modules/byteswap, modules/configmake, modules/fcntl:
37081         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
37082         * modules/localcharset, modules/netinet_in, modules/poll:
37083         * modules/stdbool, modules/stdint, modules/sys_select:
37084         * modules/sys_socket, modules/sys_stat, modules/sysexits:
37085
37086 2006-09-08  Jim Meyering  <jim@meyering.net>
37087
37088         Avoid new build failure on FreeBSD 6.0.
37089         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
37090         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
37091         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
37092
37093 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37094
37095         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
37096
37097 2006-09-07  Jim Meyering  <jim@meyering.net>
37098
37099         Fix global typo in last change: use chmod u-w, not chmod u-x.
37100         Spotted by Paul Eggert and Bruce Korb.
37101         * modules/alloca-opt, modules/argz, modules/arpa_inet:
37102         * modules/byteswap, modules/configmake, modules/fcntl:
37103         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
37104         * modules/localcharset, modules/netinet_in, modules/poll:
37105         * modules/stdbool, modules/stdint, modules/sys_select:
37106         * modules/sys_socket, modules/sys_stat, modules/sysexits:
37107
37108 2006-09-06  Jim Meyering  <jim@meyering.net>
37109
37110         Make generated files be read-only.
37111         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
37112         Ensure that each generated file is now read-only.
37113         * modules/argz: Likewise.
37114         * modules/arpa_inet: Likewise.
37115         * modules/byteswap: Likewise.
37116         * modules/configmake: Likewise.
37117         * modules/fcntl: Likewise.
37118         * modules/fnmatch: Likewise.
37119         * modules/getopt: Likewise.
37120         * modules/glob: Likewise.
37121         * modules/inttypes: Likewise.
37122         * modules/netinet_in: Likewise.
37123         * modules/poll: Likewise.
37124         * modules/stdbool: Likewise.
37125         * modules/stdint: Likewise.
37126         * modules/sys_select: Likewise.
37127         * modules/sys_socket: Likewise.
37128         * modules/sys_stat: Likewise.
37129         * modules/sysexits: Likewise.
37130         * modules/localcharset: Same as above, but continue using temporary
37131         file named "t-$@" (why different?) rather than the "$@-t" used
37132         everywhere else.
37133
37134         * modules/sysexits (Makefile.am): Replace literal occurrences
37135         of "sysexit.h" more readable, and more consistent, "$@".
37136
37137 2006-09-06  Bruno Haible  <bruno@clisp.org>
37138
37139         * modules/striconv: New file.
37140         * modules/xstriconv: New file.
37141         * MODULES.html.sh (Internationalization functions): Add striconv,
37142         xstriconv.
37143
37144 2006-09-06  Bruno Haible  <bruno@clisp.org>
37145
37146         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
37147         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
37148         not using libtool correctly.
37149
37150 2006-09-06  Bruno Haible  <bruno@clisp.org>
37151
37152         * lib/striconv.h: New file.
37153         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
37154         iconvstring.c.
37155         * lib/xstriconv.h: New file.
37156         * lib/xstriconv.c: New file.
37157
37158 2006-09-06  Bruno Haible  <bruno@clisp.org>
37159
37160         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
37161         lib_..._LDFLAGS.
37162
37163 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37164
37165         * lib/argz_.h: Sync from Libtool.
37166
37167         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
37168                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
37169
37170         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
37171
37172 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
37173
37174         * modules/trim: New file.
37175
37176 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
37177
37178         * lib/trim.h: New file.
37179         * lib/trim.c: New file.
37180
37181 2006-09-05  Bruno Haible  <bruno@clisp.org>
37182
37183         * MODULES.html.sh (String handling): Add trim.
37184
37185 2006-09-04  Karl Berry  <karl@gnu.org>
37186
37187         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
37188         until next release.
37189
37190 2006-09-03  Bruno Haible  <bruno@clisp.org>
37191
37192         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
37193         correctly.
37194
37195 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37196
37197         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
37198         not gl_GETLOADAVG.  Omit unneeded semicolons.
37199         Problems reported by Ralf Wildenhues in
37200         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
37201         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
37202         at the end, which is the usual gnulib style.
37203
37204         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
37205         of doing all the work ourselves.
37206         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
37207         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
37208
37209 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37210
37211         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
37212         Problem reported by Ralf Wildenhues in
37213         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
37214
37215         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
37216         HAVE_STRUCT_STATFS_F_FSTYPENAME.
37217
37218 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37219
37220         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
37221         yesterday's patch by changing test -n to test -z.
37222
37223 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37224
37225         * modules/getloadavg (Files): Add m4/getloadavg.m4.
37226         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
37227         the former is now obsolescent.
37228
37229         * modules/chdir-long (Depends-on): Add fcntl.
37230
37231 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37232
37233         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
37234         obsolescent, and programs should use gnulib instead.
37235         * m4/getloadavg.m4: New file, with contents taken from Autoconf
37236         but with prefixes changed.
37237
37238 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37239
37240         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
37241         or stdbool.h, because they might not exist while configuring.
37242
37243         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
37244         Don't include unistd.h or limits.h; not needed, since chdir-long.h
37245         does that for us.
37246         (O_DIRECTORY): Remove.
37247
37248 2006-08-31  Eric Blake  <ebb9@byu.net>
37249
37250         * gnulib-tool: Don't let emacs change spaces to TAB.
37251
37252 2006-08-31  Bruno Haible  <bruno@clisp.org>
37253
37254         * gnulib-tool: When calling func_import more than once, do it in a
37255         subshell.
37256         Reported by Eric Blake <ebb9@byu.net>.
37257
37258 2006-08-31  Bruno Haible  <bruno@clisp.org>
37259
37260         * gnulib-tool (nl): Remove variable.
37261         (sed_transform_lib_file): Use more robust test for config-h module.
37262         (func_import): Fix typo in 2006-08-25 patch.
37263
37264 2006-08-31  Bruno Haible  <bruno@clisp.org>
37265
37266         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
37267         specified, augment Makefile.am variables instead of assigning them.
37268
37269 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37270
37271         Work around a bug in both the Linux and SunOS 64-bit kernels:
37272         nanosleep mishandles sleeps for longer than 2**31 seconds.
37273         Problem reported by Frank v Waveren in
37274         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
37275         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
37276         Check for nanosleep bug.
37277         (LIB_NANOSLEEP): Append clock_gettime library if needed.
37278
37279 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37280
37281         Work around a bug in both the Linux and SunOS 64-bit kernels:
37282         nanosleep mishandles sleeps for longer than 2**31 seconds.
37283         Problem reported by Frank v Waveren in
37284         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
37285         * lib/nanosleep.c (BILLION): New constant.
37286         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
37287         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
37288         implementation.
37289
37290 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37291
37292         * modules/nanosleep (Depends-on): Add gettime.
37293
37294 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37295         and Simon Josefsson  <jas@extundo.com>
37296         and Oskar Liljeblad  <oskar@osk.mine.nu>
37297
37298         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
37299         * gnulib-tool (func_import): New license type 'unmodifiable license
37300         text'.
37301         * modules/fdl: Use it.  Longer description.
37302         * module/gpl, module/lgpl: New files.
37303
37304 2006-08-30  Jim Meyering  <jim@meyering.net>
37305
37306         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
37307         shadowing the parameter.
37308
37309 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37310
37311         Sync from Libtool:
37312
37313         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37314
37315         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
37316         sharing with gnulib.  Report by Eric Blake.
37317
37318 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37319
37320         * modules/isapipe: New file.
37321         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
37322
37323 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37324
37325         * modules/configmake (Makefile.am): Add a comment, and omit
37326         the CONFIGMAKE_ prefix from generated macro names.  Suggested
37327         by Bruno Haible.
37328
37329 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37330
37331         * m4/isapipe.m4: New file.
37332
37333 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37334
37335         * lib/isapipe.c, lib/isapipe.h: New files.
37336
37337 2006-08-29  Jim Meyering  <jim@meyering.net>
37338
37339         * modules/configmake (Makefile.am): Make configmake.h depend on
37340         Makefile.  Otherwise, a stale configmake.h could hang around.
37341
37342 2006-08-29  Eric Blake  <ebb9@byu.net>
37343
37344         * lib/error.c (error_at_line, print_errno_message): Match libc, after
37345         resolution of upstream bug 3044.
37346
37347 2006-08-29  Bruno Haible  <bruno@clisp.org>
37348
37349         * modules/localcharset (Depends-on): Add configmake.
37350         (Makefile.am): Remove setting of LIBDIR through DEFS.
37351
37352 2006-08-29  Bruno Haible  <bruno@clisp.org>
37353
37354         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
37355         defined.
37356
37357 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37358
37359         * modules/fcntl: New file.
37360         * modules/chdir-safer (Depends-on): Add fcntl.
37361         * modules/fts: Likewise.
37362         * modules/mkdir-p: Likewise.
37363
37364         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
37365         This undoes the most recent change, since we're now addressing the
37366         problem in a different way.
37367
37368         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
37369         into output, since the output might be called Makefile.am even
37370         if $makefile_name is something different.
37371         (func_import): Use $makefile_am rather than
37372         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
37373         empty.
37374
37375         * modules/inttypes (Files): Add m4/inttypes-h.m4.
37376
37377 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37378
37379         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
37380         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
37381         recent change to stdint.m4, since we're now addressing the problem in a
37382         different way.
37383
37384 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37385
37386         * m4/fcntl_h.m4: New file.
37387
37388 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37389
37390         * lib/fcntl_.h: New file.
37391         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
37392         the fcntl module.
37393         * lib/dirchownmod.c: Likewise.
37394         * lib/fts.c: Likewise.
37395
37396         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
37397         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
37398         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
37399         just before including <inttypes.h>, to avoid circular inclusion.
37400
37401 2006-08-28  Jim Meyering  <jim@meyering.net>
37402
37403         * doc/visibility.texi: Actually read and correct the grammar of the
37404         sentence affected by yesterday's change.
37405
37406 2006-08-28  Eric Blake  <ebb9@byu.net>
37407
37408         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
37409         needs wrapper.
37410
37411 2006-08-28  Eric Blake  <ebb9@byu.net>
37412
37413         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
37414
37415 2006-08-28  Eric Blake  <ebb9@byu.net>
37416
37417         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
37418
37419 2006-08-28  Bruno Haible  <bruno@clisp.org>
37420
37421         * modules/c-strstr: New file, from GNU gettext.
37422         * MODULES.html.sh (String handling): Add c-strstr.
37423
37424 2006-08-28  Bruno Haible  <bruno@clisp.org>
37425
37426         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
37427         macros.
37428         Reported by Eric Blake.
37429
37430 2006-08-28  Bruno Haible  <bruno@clisp.org>
37431
37432         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
37433         (VASNPRINTF): Return a string of length > INT_MAX without failing.
37434         * lib/vasprintf.c: Include errno.h, limits.h.
37435         (EOVERFLOW): New fallback definition.
37436         (vasprintf): Test here whether the string length is > INT_MAX.
37437         * lib/vsnprintf.c: Include errno.h, limits.h.
37438         (EOVERFLOW): New fallback definition.
37439         (vsnprintf): Fix bug when generated string was too long for the buffer.
37440         Test here whether the string length is > INT_MAX.
37441
37442 2006-08-28  Bruno Haible  <bruno@clisp.org>
37443
37444         * lib/inttypes_.h (SCNX*): Remove definitions.
37445         Reported by Eric Blake.
37446
37447 2006-08-28  Bruno Haible  <bruno@clisp.org>
37448
37449         * lib/c-strstr.h: New file, from GNU gettext.
37450         * lib/c-strstr.c: New file, from GNU gettext.
37451
37452 2006-08-28  Bruno Haible  <bruno@clisp.org>
37453
37454         * gnulib-tool: Reorder some statements.
37455
37456 2006-08-28  Bruno Haible  <bruno@clisp.org>
37457
37458         * gnulib-tool: New option --makefile-name.
37459         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
37460         $makefile_name.
37461         (func_import): Write $makefile_name to the cache file, and read it from
37462         there unless explicitly specified. Use $makefile_name as file name
37463         instead of Makefile.am. Adjust the recommendations accordingly.
37464
37465 2006-08-28  Bruno Haible  <bruno@clisp.org>
37466
37467         * gnulib-tool (func_verify_module): Check against misapplying patch.
37468
37469 2006-08-28  Bruno Haible  <bruno@clisp.org>
37470
37471         * gnulib-tool (func_relativize, func_relconcat): New functions.
37472         Give an error if --local-dir is given with --update.
37473         Remove trailing slashes from $local_gnulib_dir.
37474         (func_import): Store the relativized $local_gnulib_dir in
37475         gnulib-cache.m4, and read it from there if not specified explicitly.
37476
37477 2006-08-28  Bruno Haible  <bruno@clisp.org>
37478
37479         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
37480         is the current directory. Respect also $local_gnulib_dir.
37481
37482 2006-08-28  Bruno Haible  <bruno@clisp.org>
37483             Simon Josefsson  <jas@extundo.com>
37484
37485         BeOS portability.
37486         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
37487
37488 2006-08-27  Jim Meyering  <jim@meyering.net>
37489
37490         * doc/visibility.texi: Remove duplicate word: "pointer".
37491
37492 2006-08-26  Bruno Haible  <bruno@clisp.org>
37493
37494         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
37495         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
37496         (Makefile.am): Create inttypes.h from inttypes_.h.
37497         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
37498
37499         * modules/imaxabs: New file.
37500
37501         * modules/imaxdiv: New file.
37502
37503 2006-08-26  Bruno Haible  <bruno@clisp.org>
37504
37505         * m4/inttypes.m4: New file.
37506         * m4/_inttypes_h.m4: Remove file.
37507         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
37508         PRI_MACROS_BROKEN.
37509         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
37510
37511         * m4/imaxabs.m4: New file.
37512
37513         * m4/imaxdiv.m4: New file.
37514
37515 2006-08-26  Bruno Haible  <bruno@clisp.org>
37516
37517         * lib/inttypes_.h: New file.
37518         * lib/inttypes.h: Remove file.
37519         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
37520
37521         * lib/imaxabs.c: New file.
37522
37523         * lib/imaxdiv.c: New file.
37524
37525 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37526
37527         New config-h module, so that "make" output needn't be cluttered
37528         by -DHAVE_CONFIG_H.
37529         * MODULES.html.sh (Support for building libraries and executables):
37530         Add config-h.
37531         * modules/config-h: New file.
37532         * gnulib-tool (nl, sed_transform_lib_file): New vars.
37533         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
37534         the config-h module is used.
37535
37536         New configmake module, so that "make" output needn't be cluttered
37537         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
37538         * MODULES.html.sh (Support for building libraries and executables):
37539         Add configmake.
37540         * modules/configmake: New file.
37541
37542 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37543
37544         * m4/config-h.m4: New file.
37545
37546 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
37547
37548         * config/srclist.txt: Add elisp-comp.
37549
37550 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
37551
37552         * MODULES.html.sh (Support for building libraries and executables):
37553         Add elisp-comp.
37554         * build-aux/elisp-comp: New file.
37555         * modules/elisp-comp: New file.
37556
37557 2006-08-24  Bruno Haible  <bruno@clisp.org>
37558
37559         * gnulib-tool (func_create_testdir): Use non-default values of
37560         sourcebase and m4base.
37561
37562 2006-08-24  Bruno Haible  <bruno@clisp.org>
37563
37564         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
37565         HTML structure.
37566
37567 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
37568
37569         * modules/openat (Depends-on): Add lchown.
37570
37571 2006-08-23  Bruno Haible  <bruno@clisp.org>
37572
37573         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
37574         of gl_LOCK_EARLY instead of gl_LOCK.
37575
37576 2006-08-23  Bruno Haible  <bruno@clisp.org>
37577
37578         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
37579         on OSF/1 to no.
37580         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
37581
37582 2006-08-23  Bruno Haible  <bruno@clisp.org>
37583
37584         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
37585         as unusable.
37586
37587         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
37588         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
37589         (gl_LOCK): New macro.
37590
37591 2006-08-22  Simon Josefsson  <jas@extundo.com>
37592
37593         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
37594         to md5 module.
37595
37596 2006-08-22  Simon Josefsson  <jas@extundo.com>
37597
37598         * MODULES.html.sh: Add "Support for maintaining and release
37599         projects".
37600
37601         * build-aux/gnupload: New file, from coreutils.
37602
37603 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37604
37605         Avoid the need for AC_LIBSOURCES in m4 macros.
37606         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
37607         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
37608         * modules/check-version (EXTRA_DIST): Add check-version.h.
37609         * modules/crc (EXTRA_DIST): Add crc.h.
37610         * modules/des (EXTRA_DIST): Add des.h.
37611         * modules/gc (EXTRA_DIST): Add gc.h.
37612         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
37613         * modules/getline (EXTRA_DIST): Add getline.h.
37614         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
37615         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
37616         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
37617         * modules/md2 (EXTRA_DIST): Add md2.h.
37618         * modules/md4 (EXTRA_DIST): Add md4.h.
37619         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
37620         * modules/read-file (EXTRA_DIST): Add read-file.h.
37621         * modules/readline (EXTRA_DIST): Add readline.h.
37622         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
37623         rijndael-api-fst.h.
37624
37625 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37626
37627         * m4/rijndael.m4 (gl_ARCFOUR):
37628         * m4/arctwo.m4 (gl_ARCTWO):
37629         * m4/check-version.m4 (gl_CHECK_VERSION):
37630         * m4/crc.m4 (gl_CRC):
37631         * m4/des.m4 (gl_DES):
37632         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
37633         * m4/gc.m4 (gl_GC):
37634         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
37635         * m4/getline.m4 (gl_FUNC_GETLINE):
37636         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
37637         * m4/hmac-md5.m4 (gl_HMAC_MD5):
37638         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
37639         * m4/md2.m4 (gl_MD2):
37640         * m4/md4.m4 (gl_MD4):
37641         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
37642         * m4/read-file.m4 (gl_FUNC_READ_FILE):
37643         * m4/readline.m4 (gl_FUNC_READLINE):
37644         * m4/rijndael.m4 (gl_RIJNDAEL):
37645         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
37646         to get the necessary .h files and whatnot.
37647
37648 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37649
37650         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
37651         gnulib rather than the other way around.
37652         * config/srclistvars.sh (COREUTILS): Remove.
37653
37654 2006-08-22  Jim Meyering  <jim@meyering.net>
37655
37656         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
37657
37658         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
37659
37660 2006-08-22  Eric Blake  <ebb9@byu.net>
37661
37662         * modules/regexprops-generic: New file.
37663         * MODULES.html.sh (Support for building documentation): List it.
37664
37665 2006-08-22  Eric Blake  <ebb9@byu.net>
37666
37667         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
37668         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
37669         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
37670         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
37671
37672 2006-08-22  Bruno Haible  <bruno@clisp.org>
37673
37674         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
37675         and lib_LTLIBRARIES like the other lib_* variables.
37676
37677 2006-08-22  Bruno Haible  <bruno@clisp.org>
37678
37679         * build-aux/x-to-1.in: New file, from GNU gettext.
37680
37681 2006-08-22  Bruno Haible  <bruno@clisp.org>
37682
37683         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
37684         <utmpx.h> exists.
37685
37686 2006-08-22  Bruno Haible  <bruno@clisp.org>
37687
37688         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
37689         <utmpx.h> exists.
37690
37691 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37692
37693         BeOS portability.
37694         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
37695         exist.
37696         Problem reported by Bruno Haible.
37697
37698 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37699
37700         Avoid the need for AC_LIBSOURCES in m4 macros.
37701         * modules/acl (EXTRA_DIST): Add acl.h.
37702         * modules/argmatch (Files): Add m4/argmatch.m4.
37703         (configure.ac): Add gl_ARGMATCH.
37704         (EXTRA_DIST): Renamed from lib_SOURCES, for
37705         consistency with the other modules.  Remove argmatch.c.
37706         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
37707         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
37708         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
37709         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
37710         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
37711         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
37712         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
37713         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
37714         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
37715         * modules/closeout (EXTRA_DIST): Add closeout.h.
37716         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
37717         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
37718         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
37719         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
37720         dirname.h; remove basename.c and stripslash.c.
37721         * modules/exclude (EXTRA_DIST): Add exclude.h.
37722         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
37723         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
37724         * modules/file-type (EXTRA_DIST): Add file-type.h.
37725         * modules/filemode (EXTRA_DIST): Add filemode.h.
37726         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
37727         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
37728         * modules/fpending (EXTRA_DIST): Add __fpending.h.
37729         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
37730         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
37731         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
37732         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
37733         * modules/getdate (EXTRA_DIST): Add getdate.c.
37734         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
37735         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
37736         * modules/getpass (EXTRA_DIST): Add getpass.h.
37737         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
37738         * modules/group-member (EXTRA_DIST): Add group-member.h.
37739         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
37740         * modules/hash (EXTRA_DIST): Add hash.h.
37741         * modules/human (EXTRA_DIST): Add human.h.
37742         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
37743         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
37744         * modules/lchown (EXTRA_DIST): Add lchown.h.
37745         * modules/long-options (EXTRA_DIST): Add long-options.h.
37746         * modules/lstat (EXTRA_DIST): Add lstat.h.
37747         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
37748         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
37749         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
37750         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
37751         * modules/memxor (EXTRA_DIST): Add memxor.h.
37752         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
37753         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
37754         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
37755         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
37756         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
37757         * modules/physmem (EXTRA_DIST): Add physmem.h.
37758         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
37759         * modules/posixver (EXTRA_DIST): Add posixver.h.
37760         * modules/quote (EXTRA_DIST): Add quote.h.
37761         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
37762         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
37763         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
37764         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
37765         regex_internal.h regexec.c.
37766         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
37767         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
37768         * modules/same (EXTRA_DIST): Add same.h.
37769         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
37770         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
37771         * modules/savedir (EXTRA_DIST): Add savedir.h.
37772         * modules/sha1 (EXTRA_DIST): Add sha1.h.
37773         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
37774         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
37775         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
37776         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
37777         * modules/strdup (EXTRA_DIST): Add strdup.h.
37778         * modules/strftime (EXTRA_DIST): Add strftime.h.
37779         * modules/strndup (EXTRA_DIST): Add strndup.h.
37780         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
37781         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
37782         * modules/time_r (EXTRA_DIST): Add time_r.h.
37783         * modules/timespec (EXTRA_DIST): Add timespec.h.
37784         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
37785         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
37786         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
37787         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
37788         * modules/userspec (EXTRA_DIST): Add userspec.h.
37789         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
37790         * modules/utimens (EXTRA_DIST): Add utimens.h.
37791         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
37792         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
37793         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
37794         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
37795         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
37796         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
37797         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
37798         * modules/yesno (EXTRA_DIST): Add yesno.h.
37799
37800 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37801
37802         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
37803
37804         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
37805         * m4/dev-ino.m4, same-inode.m4: Remove.
37806
37807         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
37808         * m4/acl.m4 (AC_FUNC_ACL):
37809         * m4/backupfile.m4 (gl_BACKUPFILE):
37810         * m4/c-strtod.m4 (gl_C99_STRTOLD):
37811         * m4/canon-host.m4 (gl_CANON_HOST):
37812         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
37813         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
37814         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
37815         * m4/cloexec.m4 (gl_CLOEXEC):
37816         * m4/close-stream.m4 (gl_CLOSE_STREAM):
37817         * m4/closeout.m4 (gl_CLOSEOUT):
37818         * m4/dirfd.m4 (gl_FUNC_DIRFD):
37819         * m4/dirname.m4 (gl_DIRNAME):
37820         * m4/exclude.m4 (gl_EXCLUDE):
37821         * m4/exitfail.m4 (gl_EXITFAIL):
37822         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
37823         * m4/file-type.m4 (gl_FILE_TYPE):
37824         * m4/filemode.m4 (gl_FILEMODE):
37825         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
37826         * m4/fpending.m4 (gl_FUNC_FPENDING):
37827         * m4/fprintftime.m4 (gl_FPRINTFTIME):
37828         * m4/fts.m4 (gl_FUNC_FTS):
37829         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
37830         * m4/getdate.m4 (gl_GETDATE):
37831         * m4/gethrxtime.m4 (gl_GETHRXTIME):
37832         * m4/getpagesize.m4 (gl_GETPAGESIZE):
37833         * m4/getpass.m4 (gl_FUNC_GETPASS):
37834         * m4/gettime.m4 (gl_GETTIME):
37835         * m4/getugroups.m4 (gl_GETUGROUPS):
37836         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
37837         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
37838         * m4/hard-locale.m4 (gl_HARD_LOCALE):
37839         * m4/hash.m4 (gl_HASH):
37840         * m4/idcache.m4 (gl_IDCACHE):
37841         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
37842         * m4/lchown.m4 (gl_FUNC_LCHOWN):
37843         * m4/long-options.m4 (gl_LONG_OPTIONS):
37844         * m4/lstat.m4 (gl_FUNC_LSTAT):
37845         * m4/md5.m4 (gl_MD5):
37846         * m4/memcasecmp.m4 (gl_MEMCASECMP):
37847         * m4/memcoll.m4 (gl_MEMCOLL):
37848         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
37849         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
37850         * m4/memxor.m4 (gl_MEMXOR):
37851         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
37852         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
37853         * m4/modechange.m4 (gl_MODECHANGE):
37854         * m4/mountlist.m4 (gl_MOUNTLIST):
37855         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
37856         * m4/openat.m4 (gl_FUNC_OPENAT):
37857         * m4/pathmax.m4 (gl_PATHMAX):
37858         * m4/physmem.m4 (gl_PHYSMEM):
37859         * m4/posixtm.m4 (gl_POSIXTM):
37860         * m4/posixver.m4 (gl_POSIXVER):
37861         * m4/quote.m4 (gl_QUOTE):
37862         * m4/quotearg.m4 (gl_QUOTEARG):
37863         * m4/readtokens.m4 (gl_READTOKENS):
37864         * m4/readutmp.m4 (gl_READUTMP):
37865         * m4/regex.m4 (gl_REGEX):
37866         * m4/safe-read.m4 (gl_SAFE_READ):
37867         * m4/safe-write.m4 (gl_SAFE_WRITE):
37868         * m4/same.m4 (gl_SAME):
37869         * m4/save-cwd.m4 (gl_SAVE_CWD):
37870         * m4/savedir.m4 (gl_SAVEDIR):
37871         * m4/settime.m4 (gl_SETTIME):
37872         * m4/sha1.m4 (gl_SHA1):
37873         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
37874         * m4/stat-macros.m4 (gl_STAT_MACROS):
37875         * m4/stat-time.m4 (gl_STAT_TIME):
37876         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
37877         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
37878         * m4/strdup.m4 (gl_FUNC_STRDUP):
37879         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
37880         * m4/strndup.m4 (gl_FUNC_STRNDUP):
37881         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
37882         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
37883         * m4/time_r.m4 (gl_TIME_R):
37884         * m4/timespec.m4 (gl_TIMESPEC):
37885         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
37886         * m4/unlinkdir.m4 (gl_UNLINKDIR):
37887         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
37888         * m4/userspec.m4 (gl_USERSPEC):
37889         * m4/utimecmp.m4 (gl_UTIMECMP):
37890         * m4/utimens.m4 (gl_UTIMENS):
37891         * m4/xalloc.m4 (gl_XALLOC):
37892         * m4/xgetcwd.m4 (gl_XGETCWD):
37893         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
37894         * m4/xreadlink.m4 (gl_XREADLINK):
37895         * m4/xstrtod.m4 (gl_XSTRTOD):
37896         * m4/yesno.m4 (gl_YESNO):
37897         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
37898         to get the necessary .h files and whatnot.
37899
37900 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
37901             Bruno Haible  <bruno@clisp.org>
37902
37903         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
37904         /bin/sh understanding of '!' conditional negation.
37905
37906 2006-08-21  Jim Meyering  <jim@meyering.net>
37907
37908         * modules/openat (Depends-on): Really alphabetize.
37909
37910         * modules/acl (Depends-on): Add error and quote.
37911
37912         * check-module (find_included_lib_files): Add at-func.c to the
37913         ok-to-include-more-than-once white list.
37914
37915         * modules/openat (Depends-on): Add lstat.  Alphabetize.
37916
37917 2006-08-21  Bruno Haible  <bruno@clisp.org>
37918
37919         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
37920         Emit a pkgdata_DATA variable only if some snippets add contents to it.
37921         Reported by Martin Lambers <marlam@marlam.de>.
37922
37923 2006-08-21  Bruno Haible  <bruno@clisp.org>
37924
37925         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
37926         specify an installation location, don't emit a noinst_LIBRARIES or
37927         noinst_LTLIBRARIES assignment.
37928
37929 2006-08-21  Bruno Haible  <bruno@clisp.org>
37930
37931         BeOS portability.
37932         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
37933         BeOS has mbrtowc() but no <wctype.h>.
37934
37935 2006-08-21  Bruno Haible  <bruno@clisp.org>
37936
37937         BeOS portability.
37938         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
37939         exist.
37940
37941 2006-08-21  Bruno Haible  <bruno@clisp.org>
37942
37943         BeOS portability.
37944         * lib/mbchar.h: Include <wctype.h> only if it exists.
37945
37946 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37947
37948         Remove files that are no longer needed by their respective modules.
37949         * m4/obstack.m4: Remove.
37950         * m4/strerror_r.m4: Remove.
37951         * m4/uint32_t.m4: Remove.
37952         * m4/uintptr_t.m4: Remove.
37953         * m4/ullong_max.m4: Remove.
37954         * m4/xstrtoimax.m4: Remove.
37955         * m4/xstrtoumax.m4: Remove.
37956
37957         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
37958         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
37959         dependencies now capture this.
37960
37961         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
37962         Do not use AC_LIBSOURCES, since gnulib modules now do this.
37963         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
37964         * m4/human.m4 (gl_HUMAN): Likewise.
37965         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
37966         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
37967
37968         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
37969
37970         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
37971         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
37972         stdint.
37973         * m4/human.m4 (gl_HUMAN): Likewise.
37974         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
37975         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
37976         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
37977         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
37978         * m4/xstrtol (gl_XSTRTOL): Likewise.
37979
37980         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
37981         AC_TYPE_LONG_LONG_INT.
37982         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
37983         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
37984         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
37985         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
37986
37987         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
37988         on stdbool.
37989
37990         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
37991         (gl_PREREQ_XSTRTOUL): Remove.
37992
37993         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
37994
37995         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
37996         mode.
37997
37998 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37999
38000         Add and change modules to make it easier for coreutils to use
38001         gnulib-tool.
38002         * modules/backupfile (Files): Remove m4/d-ino.m4.
38003         (Depends-on): Add d-ino.
38004         * modules/cycle-check (Depends-on): Add stdint.
38005         (lib_SOURCES): Add cycle-check.h.
38006         * modules/d-ino: New module.
38007         * modules/d-type: New module.
38008         * modules/error (Files): Remove m4/strerror_r.m4.
38009         * modules/filemode (Files): Add m4/st_dm_mode.m4.
38010         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
38011         m4/inttypes_h.m4, m4/uintmax_t.m4.
38012         (Depends-on): Add stdint.
38013         (lib_SOURCES): Add fsusage.h.
38014         * modules/getcwd (Files): Remove d-ino.m4.
38015         (Depends-on): Add d-ino.
38016         * modules/getndelim2 (Depends-on): Add stdint.
38017         * modules/glob (Files): Remove m4/d-type.m4.
38018         (Depends-on): Add d-type.
38019         * modules/host-os: New module.
38020         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
38021         m4/inttypes_h.m4, m4/uintmax_t.m4.
38022         * Depends-on: Add stdint.
38023         (lib_SOURCES): Add human.h.
38024         * modules/inttostr (Files): Remove m4/intmax_t.m4,
38025         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
38026         m4/uintmax_t.m4, m4/ulonglong.m4.
38027         (Depends-on): Add stdint.
38028         (EXTRA_DIST): Add inttostr.h.
38029         * modules/lchmod: New module.
38030         * modules/link-follow: New module.
38031         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
38032         (Depends-on): Add lchmod.
38033         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
38034         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
38035         (Depends-on): Add stdint.
38036         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
38037         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
38038         (Depends-on): Add stdint.
38039         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
38040         * modules/perl: New module.
38041         * modules/regex (Depends-on): Add stdint.
38042         * modules/rmdir-errno: New module.
38043         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
38044         m4/intmax_t.m4.
38045         (Depends-on): Add stdint.
38046         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
38047         m4/uintmax_t.m4.
38048         (Depends-on): Add stdint.
38049         * modules/unlink-busy: New module.
38050         * modules/utimecmp (Depends-on): Add stdint.
38051         * modules/uptime: New module.
38052         * modules/winsz-ioctl: New module.
38053         * modules/winsz-termios: New module.
38054         * modules/xnanosleep (Depends-on): Add nanosleep.
38055         * modules/ullong_max: Remove.
38056         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
38057         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
38058         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
38059         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
38060         (Depends-on): Add inttypes.
38061         (lib_SOURCES): Add xstrtol.h.
38062         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
38063         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
38064         * MODULES.html.sh: Move 'assert' into the assert section.
38065         Move 'dummy' into the linking section.
38066         Remove ullong_max.
38067         Add section for compatibility checks for POSIX:2001 functions,
38068         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
38069         winsz-ioctl, and winsz-termios into it.
38070         Add lchmod.
38071         Add top-level Misc section and put host-os, perl, and uptime
38072         into it.
38073
38074 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38075
38076         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
38077         now assume the stdint module.  Do not include inttypes.h.
38078         * lib/fsusage.h: Likewise.
38079         * lib/getndelim2.c: Likewise.
38080         * lib/human.h: Likewise.
38081         * lib/inttostr.h: Likewise.
38082         * lib/obstack.c: Likewise.
38083         * lib/regex_internal.h: Likewise.
38084         * lib/tempname.c: Likewise.
38085         * lib/utimecmp.c: Likewise.
38086         * lib/xstrtol.h: Likewise.
38087
38088         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
38089
38090         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
38091         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
38092         * lib/xtime.h: Likewise.
38093
38094 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38095
38096         * modules/openat (Files): Add lib/fchmodat.c.
38097         Fixes problem reported by Jay Youngman.
38098
38099 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38100
38101         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
38102         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
38103
38104 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
38105             Bruno Haible  <bruno@clisp.org>
38106
38107         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
38108         and is a script that invokes bison. Tighten the code. Add comments.
38109
38110 2006-08-18  Jim Meyering  <jim@meyering.net>
38111
38112         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
38113         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
38114         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
38115         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
38116
38117 2006-08-18  Bruno Haible  <bruno@clisp.org>
38118
38119         * modules/bison-i18n: New file.
38120         * MODULES.html.sh (Internationalization functions): Add it.
38121
38122 2006-08-18  Bruno Haible  <bruno@clisp.org>
38123
38124         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
38125         sys/statvfs.h. When getmntinfo was found, check its declaration and
38126         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
38127
38128 2006-08-18  Bruno Haible  <bruno@clisp.org>
38129
38130         * m4/bison-i18n.m4: New file, from bison.
38131
38132 2006-08-18  Bruno Haible  <bruno@clisp.org>
38133
38134         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
38135         (ME_DUMMY): Treat "kernfs" as a dummy.
38136         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
38137
38138 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38139
38140         Update from coreutils.
38141
38142         2006-08-15  Jim Meyering  <jim@meyering.net>
38143
38144         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
38145
38146         2006-01-17  Jim Meyering  <jim@meyering.net>
38147
38148         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
38149
38150         2006-01-11  Jim Meyering  <jim@meyering.net>
38151
38152         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
38153         Check for the lchmod function.
38154
38155 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38156
38157         Update from coreutils.
38158
38159         * lib/__fpending.h: Add copyright notice.
38160         * lib/fprintftime.h: Likewise.
38161         * lib/savedir.c: Use (C) in copyright notice.
38162         * lib/savedir.h: Likewise.
38163
38164         2006-08-15  Jim Meyering  <jim@meyering.net>
38165
38166         * lib/at-func.c: New file, with the logic of all emulated at-functions.
38167         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
38168         in support of the EXPECTED_ERRNO macro.
38169         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
38170         definitions.  Instead, define the appropriate symbols and include
38171         "at-func.c".
38172         * lib/mkdirat.c (mkdirat): Likewise.
38173         * lib/fchmodat.c (fchmodat): Likewise.
38174         (ENOSYS): Remove definition.
38175         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
38176         it.  Don't include "unistd--.h" -- it wasn't ever used.
38177
38178         2006-01-17  Jim Meyering  <jim@meyering.net>
38179
38180         Rewrite fts.c not to change the current working directory,
38181         by using openat, fstatat, fdopendir, etc..
38182
38183         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
38184         (HAVE_OPENAT_SUPPORT): Define.
38185         [_LIBC] (fchdir): Don't undef or define; no longer used.
38186         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
38187         Now, this `function' always succeeds, and consumes its file descriptor
38188         parameter -- so callers must not close such FDs.  Update callers.
38189         (diropen_fd, opendirat, cwd_advance_fd): New functions.
38190         (diropen): Add parameter, SP.  Adjust all callers.
38191         Implement using diropen_fd, rather than open.
38192         (fts_open): Initialize new member, fts_cwd_fd.
38193         Remove fts_rft-setting code.
38194         (fts_close): Close fts_cwd_fd, if necessary.
38195         (__opendir2): Define in terms of opendir or opendirat,
38196         depending on whether the FST_NOCHDIR flag is set.
38197         (fts_build): Since fts_safe_changedir consumes its FD, and since
38198         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
38199         and close the dup'd file descriptor upon failure.
38200         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
38201         (fts_safe_changedir): Tweak semantics to reflect that this function
38202         now calls cwd_advance_fd and hence consumes its FD argument.
38203         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
38204         [struct FTS] (fts_rft): Remove now-unused member.
38205         [struct FTS] (fts_cycle.state): Improve comment.
38206
38207         * lib/openat.c (openat_needs_fchdir): New function.
38208         * lib/openat.h (openat_needs_fchdir): Declare it.
38209
38210 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
38211
38212         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
38213         Problem and fix reported by Pádraig Brady in
38214         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
38215
38216 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38217
38218         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
38219
38220 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38221
38222         * lib/memcoll.c (memcoll): Optimize for the common case where the
38223         arguments are bytewise equal.
38224
38225 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38226
38227         * doc/regexprops-generic.texi: Add a copyright notice.
38228
38229 2006-08-15  Bruno Haible  <bruno@clisp.org>
38230
38231         * modules/tmpdir (License): Change to LGPL.
38232
38233 2006-08-15  Bruno Haible  <bruno@clisp.org>
38234
38235         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
38236         module.
38237
38238 2006-08-14  Simon Josefsson  <jas@extundo.com>
38239
38240         * config/srclist.txt: Add gnupload.
38241
38242 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38243
38244         Change copyright notice from LGPL 2 to GPL 2, since that's the
38245         standard form used in the gnulib repository.
38246         * tests/test-lock.c: Likewise.
38247         * tests/test-stdint.c: Likewise.
38248         * tests/test-tls.c: Likewise.
38249
38250         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
38251         prelude-manager.  User shorter URLs for GNU projects, without '?'.
38252         Add copyright notice.
38253
38254         * check-module: Add copyright notice.  Output a copyright
38255         notice if "--version" is specified.
38256         * modules/COPYING: New file.
38257         * tests/test-getaddrinfo.c: Add copyright notice.
38258         * tests/test-verify.c: Likewise.
38259
38260 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38261
38262         Change copyright notice from LGPL 2 to GPL 2, since that's the
38263         standard form used in the gnulib repository.
38264         * lib/lock.c: LGPL -> GPL.
38265         * lib/lock.h: Likewise.
38266         * lib/strnlen1.c: Likewise.
38267         * lib/strnlen1.h: Likewise.
38268         * lib/tls.c: Likewise.
38269         * lib/tls.h: Likewise.
38270         * lib/tmpdir.c: Likewise.
38271
38272         * lib/TODO: Remove; this belongs only in coreutils.
38273
38274 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38275
38276         Add copyright notices to long-enough files that lack them, since
38277         otherwise the files aren't clearly free.  Use the same notice that
38278         getdate.texi already uses.
38279         * doc/alloca-opt.texi: Add copyright notice.
38280         * doc/alloca.texi: Likewise.
38281         * doc/ctime.texi: Likewise.
38282         * doc/functions.texi: Likewise.
38283         * doc/gcd.texi: Likewise.
38284         * doc/gnulib-tool.texi: Likewise.
38285         * doc/inet_ntoa.texi: Likewise.
38286         * doc/visibility.texi: Likewise.
38287
38288         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
38289         * doc/quote.texi: Add copyright notice.
38290
38291         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
38292         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
38293         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
38294         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
38295         is now obsolete, and give a pointer to the Sun list.
38296         Add copyright notice.
38297
38298 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38299
38300         * config/srclistvars.sh: Add copyright notice.
38301
38302 2006-08-14  Eric Blake  <ebb9@byu.net>
38303
38304         Import the following change from libc:
38305
38306         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
38307
38308         Upstream bug 2997.
38309         * lib/misc/error.c: Add space between program name and message if file
38310         name is missing.
38311
38312 2006-08-12  Karl Berry  <karl@gnu.org>
38313
38314         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
38315         remove, these originate in gnulib now.
38316
38317 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38318
38319         * doc/Makefile (standards.info standards.html standards.dvi):
38320         Also depend on make-stds.texi.
38321
38322 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
38323
38324         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
38325         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
38326
38327         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
38328         in wchar_t.  Problem reported by Eric Blake.
38329
38330         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
38331         LEN is smaller than SIZE.  Suggested by Bruno Haible.
38332         Also, help the compiler to keep LEN in a register.
38333
38334 2006-08-11  Eric Blake  <ebb9@byu.net>
38335
38336         * users.txt: Sort.  Add tar.
38337
38338 2006-08-11  Bruno Haible  <bruno@clisp.org>
38339
38340         * users.txt: New file.
38341
38342 2006-08-11  Bruno Haible  <bruno@clisp.org>
38343
38344         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
38345         before <wchar.h>. Needed for OSF/1 and BSD/OS.
38346
38347 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38348
38349         * modules/snprintf (Depends-on): Remove minmax.
38350         (Maintainer): Add self and Bruno.
38351
38352 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38353
38354         * lib/.cppi-disable: Add snprintf.h, socket_.h.
38355         * lib/snprintf.c: Include <errno.h> and <limits.h>.
38356         (EOVERFLOW): Define if the system does not.
38357         Do not include "minmax.h"; it wasn't used.
38358         (snprintf): Don't assume size_t promotes to an unsigned type.
38359         Fix bug when generated string was too long for the buffer: the
38360         buffer's contents are supposed to be the initial prefix of the
38361         output.  Don't assume vasnprintf returns EOVERFLOW if the size
38362         exceeds INT_MAX; do the check ourselves.
38363
38364         Import the following changes from libc:
38365
38366         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
38367
38368         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
38369         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
38370         set wc to the byte which couldn't be converted.
38371         (re_string_reconstruct): Don't clear valid_raw_len before calling
38372         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
38373         tip_context using re_string_context_at.
38374
38375         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
38376
38377         * lib/posix/regex.h: g++ still cannot handled [restrict].
38378
38379         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
38380
38381         * lib/posix/regex.h: Remove special handling for VMS.
38382
38383 2006-08-10  Jim Meyering  <jim@meyering.net>
38384
38385         * modules/same-inode: New module.
38386         * modules/dev-ino: New module.
38387         * modules/cycle-check: Depend on these modules, rather than simply
38388         including their .h files.
38389         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
38390         required via m4/cycle-check.m4.
38391         * modules/same: Depend on new same-inode module, rather than
38392         including same-inode.h.
38393         * modules/chdir-safer: New file.
38394
38395         * modules/chown (Depends-on): Add stat-macros.
38396
38397 2006-08-10  Jim Meyering  <jim@meyering.net>
38398
38399         * m4/cycle-check.m4: New file.
38400         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
38401         * m4/dev-ino.m4, m4/same-inode.m4: New files.
38402
38403 2006-08-10  Eric Blake  <ebb9@byu.net>
38404
38405         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
38406         in from original proposal.
38407
38408 2006-08-10  Eric Blake  <ebb9@byu.net>
38409         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
38410
38411         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
38412         namespace.
38413
38414 2006-08-10  Bruno Haible  <bruno@clisp.org>
38415
38416         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
38417         as well.
38418
38419 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38420
38421         Sync from coreutils.
38422
38423         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
38424
38425         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
38426         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
38427
38428 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38429
38430         * modules/restrict: Remove; no longer needed now that we assume
38431         Autoconf 2.59 or later.
38432         * MODULES.html.sh: Remove 'restrict'.
38433         * modules/argp (Depends-on): Remove 'restrict'.
38434         * modules/base64 (Depends-on): Likewise.
38435         * modules/gc (Depends-on): Likewise.
38436         * modules/getaddrinfo (Depends-on): Likewise.
38437         * modules/glob (Depends-on): Likewise.
38438         * modules/inet_ntop (Depends-on): Likewise.
38439         * modules/inet_pton (Depends-on): Likewise.
38440         * modules/memxor (Depends-on): Likewise.
38441         * modules/regex (Depends-on): Likewise.
38442         * modules/strtok_r (Depends-on): Likewise.
38443         * modules/time_r (Depends-on): Likewise.
38444
38445 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38446
38447         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
38448         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
38449         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
38450         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
38451         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
38452         * m4/memxor.m4 (gl_MEMXOR): Likewise.
38453         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
38454         gl_C_RESTRICT replaced by AC_C_RESTRICT.
38455
38456         Merge from coreutils.
38457         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
38458         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
38459         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
38460         * m4/time_r.m4 (gl_TIME_R): Likewise.
38461
38462 2006-08-09  Karl Berry  <karl@gnu.org>
38463
38464         * config/srclist.txt: no more gettext-tools, per Bruno.
38465
38466 2006-08-08  Eric Blake  <ebb9@byu.net>
38467
38468         * modules/verror: New module.
38469         * MODULES.html.sh: Document it.
38470
38471 2006-08-08  Eric Blake  <ebb9@byu.net>
38472
38473         * lib/verror.h, lib/verror.c: New files.
38474
38475 2006-08-08  Eric Blake  <ebb9@byu.net>
38476
38477         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
38478         verror_at_line output complies with GNU Coding Standards even when
38479         file is NULL.
38480
38481 2006-08-07  Bruno Haible  <bruno@clisp.org>
38482
38483         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
38484         versions of AIX.
38485         Reported by Ralf Wildenhues.
38486
38487 2006-08-07  Bruno Haible  <bruno@clisp.org>
38488
38489         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
38490         in an AC_DEFUN. Needed so that the autoconf snippets can use
38491         AC_REQUIRE.
38492
38493 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38494
38495         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38496         Initialize pkgdata_DATA.
38497         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
38498         overriding it.
38499
38500 2006-08-06  Eric Blake  <ebb9@byu.net>
38501
38502         * lib/error.h: Fold in some upstream changes from glibc.
38503         * lib/error.c: Likewise.
38504
38505 2006-08-04  Bruno Haible  <bruno@clisp.org>
38506
38507         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38508         Make the mostlyclean-local rule depend on mostlyclean-generic.
38509         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
38510
38511 2006-07-31  Bruno Haible  <bruno@clisp.org>
38512
38513         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
38514         <stdlib.h>, <string.h>.
38515
38516 2006-07-30  Bruno Haible  <bruno@clisp.org>
38517
38518         * modules/readlink (License): Change to LGPL.
38519
38520 2006-07-30  Bruno Haible  <bruno@clisp.org>
38521
38522         * modules/javaversion (Makefile.am): Distribute javaversion.java and
38523         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
38524         set PKGDATADIR to point to it.
38525
38526 2006-07-30  Bruno Haible  <bruno@clisp.org>
38527
38528         * modules/csharpexec (configure.ac): Comment out macro invocation.
38529         * modules/javaexec (configure.ac): Likewise.
38530         * modules/javacomp-script (configure.ac): Likewise.
38531
38532         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
38533
38534 2006-07-30  Bruno Haible  <bruno@clisp.org>
38535
38536         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
38537         linked-list.
38538
38539 2006-07-30  Bruno Haible  <bruno@clisp.org>
38540
38541         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
38542
38543 2006-07-30  Bruno Haible  <bruno@clisp.org>
38544
38545         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38546         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
38547         get removed.
38548
38549 2006-07-29  Bruno Haible  <bruno@clisp.org>
38550
38551         Make it possible for gnulib-tool to work with locally modified or
38552         augmented gnulib repositories.
38553         * gnulib-tool (func_usage): Document --local-dir option.
38554         (local_gnulib_dir): New variable.
38555         Handle --local-dir option.
38556         (func_lookup_file): New function.
38557         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
38558         (func_get_description, func_get_filelist, func_get_description,
38559         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
38560         func_get_automake_snippet, func_get_include_directive,
38561         func_get_license, func_get_maintainer): Use func_lookup_file.
38562         (func_import, func_create_testdir): Use func_lookup_file.
38563
38564 2006-07-29  Bruno Haible  <bruno@clisp.org>
38565
38566         * modules/setenv (Depends-on): Add unistd.
38567
38568 2006-07-29  Bruno Haible  <bruno@clisp.org>
38569
38570         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
38571
38572 2006-07-29  Bruno Haible  <bruno@clisp.org>
38573
38574         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
38575
38576 2006-07-29  Bruno Haible  <bruno@clisp.org>
38577
38578         * gnulib-tool (import, update): If there is no Makefile.am, look at
38579         aclocal.m4, instead of bailing out.
38580
38581 2006-07-29  Bruno Haible  <bruno@clisp.org>
38582
38583         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
38584         Categorize the options by when they are useful.
38585
38586 2006-07-29  Bruno Haible  <bruno@clisp.org>
38587
38588         * gnulib-tool (func_usage): Document option --no-libtool.
38589         Handle option --no-libtool.
38590         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
38591         for changed semantics of $libtool variable.
38592         (func_import): Likewise. If libtool is not used, show this through
38593         an option --no-libtool.
38594         (func_create_testdir): Update.
38595
38596 2006-07-29  Bruno Haible  <bruno@clisp.org>
38597
38598         * gnulib-tool (func_import): Extend error message about missing
38599         --doc-base.
38600
38601 2006-07-29  Bruno Haible  <bruno@clisp.org>
38602
38603         * gnulib-tool (func_import): Don't create the $docbase directory if
38604         there is no file to store there.
38605
38606 2006-07-29  Bruno Haible  <bruno@clisp.org>
38607
38608         * gnulib-tool (autoconf_minversion): If a --dir option is given and
38609         relevant, look for configure.ac there, not in the current directory.
38610         Also use a simple search for AC_PREREQ, not "autoconf --trace".
38611
38612 2006-07-29  Bruno Haible  <bruno@clisp.org>
38613
38614         * gnulib-tool (SORT): New variable.
38615         (func_usage): Undocument --assume-autoconf option.
38616         Remove --assume-autoconf option handling.
38617         (autoconf_minversion): Determine from the contents of configure.ac.
38618         (func_import): Remove autoconf_minversion handling.
38619         Suggested by Eric Blake.
38620
38621 2006-07-29  Bruno Haible  <bruno@clisp.org>
38622
38623         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
38624
38625 2006-07-29  Bruno Haible  <bruno@clisp.org>
38626
38627         * config/srclist.txt (*setenv.[ch]): Remove rules.
38628
38629 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38630
38631         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
38632
38633 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38634
38635         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
38636         arpa/inet.h.
38637
38638 2006-07-28  Simon Josefsson  <jas@extundo.com>
38639
38640         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
38641         * modules/inet_pton (Depends-on): Likewise.
38642
38643 2006-07-28  Simon Josefsson  <jas@extundo.com>
38644
38645         * m4/netinet_in_h.m4: New file.
38646
38647 2006-07-28  Simon Josefsson  <jas@extundo.com>
38648
38649         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
38650         #include's.
38651
38652 2006-07-28  Simon Josefsson  <jas@extundo.com>
38653
38654         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
38655         #include's.
38656
38657 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
38658
38659         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
38660         setgid on directories only if they set these bits.
38661         * lib/modechange.h: Remove obsolete comment about masks.
38662
38663 2006-07-28  Eric Blake  <ebb9@byu.net>
38664
38665         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
38666         macro expansion.
38667
38668 2006-07-28  Bruno Haible  <bruno@clisp.org>
38669
38670         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
38671
38672 2006-07-28  Bruno Haible  <bruno@clisp.org>
38673
38674         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
38675
38676 2006-07-28  Bruno Haible  <bruno@clisp.org>
38677
38678         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
38679         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
38680         Define fallbacks.
38681         Avoids link error on FreeBSD 4.x.
38682         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
38683
38684         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
38685         encoding.
38686         * lib/mbswidth.c (iswcntrl): Likewise.
38687
38688 2006-07-27  Bruno Haible  <bruno@clisp.org>
38689
38690         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
38691         test.
38692
38693 2006-07-27  Bruno Haible  <bruno@clisp.org>
38694
38695         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
38696         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
38697         defined.
38698
38699 2006-07-26  Eric Blake  <ebb9@byu.net>
38700
38701         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
38702
38703 2006-07-26  Eric Blake  <ebb9@byu.net>
38704
38705         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
38706         like mingw that lack mkstemp.
38707         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
38708         avoid compilation warning on mingw.
38709
38710 2006-07-26  Bruno Haible  <bruno@clisp.org>
38711
38712         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
38713         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
38714         INT_FAST*_MIN, INTPTR_MIN.
38715
38716 2006-07-25  Bruno Haible  <bruno@clisp.org>
38717
38718         * modules/version-etc (Depends-on): Add stdarg.
38719
38720 2006-07-25  Bruno Haible  <bruno@clisp.org>
38721
38722         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
38723         complex commands.
38724
38725 2006-07-25  Bruno Haible  <bruno@clisp.org>
38726
38727         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
38728         defined in <stdarg.h> or config.h.
38729
38730 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
38731
38732         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
38733         (gl_STDIO_SAFER): Remove.
38734
38735 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
38736
38737         * MODULES.html.sh (File stream based Input/Output):
38738         Add fopen-safer, tmpfile-safer; remove stdio-safer.
38739         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
38740         * modules/fopen-safer, modules/tmpfile-safer: New files.
38741         * modules/stdio-safer: Remove.
38742
38743 2006-07-24  Bruno Haible  <bruno@clisp.org>
38744
38745         * modules/tmpdir: New file.
38746         * MODULES.html.sh (File system functions): Add it.
38747
38748 2006-07-24  Bruno Haible  <bruno@clisp.org>
38749
38750         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
38751         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
38752
38753 2006-07-24  Bruno Haible  <bruno@clisp.org>
38754
38755         * modules/clean-temp: New file.
38756
38757 2006-07-24  Bruno Haible  <bruno@clisp.org>
38758
38759         * m4/tmpdir.m4: New file, from GNU gettext.
38760
38761 2006-07-24  Bruno Haible  <bruno@clisp.org>
38762
38763         * lib/tmpdir.h: New file, from GNU gettext.
38764         * lib/tmpdir.c: New file, from GNU gettext.
38765
38766 2006-07-24  Bruno Haible  <bruno@clisp.org>
38767
38768         * lib/clean-temp.h: New file, from GNU gettext.
38769         * lib/clean-temp.c: New file, from GNU gettext.
38770
38771 2006-07-23  Eric Blake  <ebb9@byu.net>
38772
38773         * modules/stdio-safer (Files): Add tmpfile-safer.c.
38774         (Depends-on): Add binary-io.
38775
38776 2006-07-23  Eric Blake  <ebb9@byu.net>
38777
38778         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
38779
38780 2006-07-23  Eric Blake  <ebb9@byu.net>
38781
38782         * lib/tmpfile-safer.c: New file.
38783         * lib/stdio-safer.h (fopen_safer): Add prototype.
38784         * lib/stdio--.h (tmpfile): Make safer.
38785
38786 2006-07-23  Bruno Haible  <bruno@clisp.org>
38787
38788         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
38789         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
38790         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
38791         gl_linked_remove_at): Use it.
38792
38793 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38794         and Simon Josefsson <jas@extundo.com>
38795
38796         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
38797
38798         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
38799
38800 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38801
38802         * modules/close-stream: New file.
38803         * modules/closeout (Description): Make it clear that it exits
38804         with a diagnostic on error.
38805         (Depends-on): Add close-stream.  Remove fpending, stdbool.
38806         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
38807
38808 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38809
38810         * m4/close-stream.m4: New file.
38811
38812 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38813
38814         * lib/close-stream.c, lib/close-stream.h: New files.
38815
38816 2006-07-22  Bruno Haible  <bruno@clisp.org>
38817
38818         Merge from GNU gettext 0.15.
38819
38820         2006-05-01  Bruno Haible  <bruno@clisp.org>
38821
38822                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
38823
38824         2006-07-22  Bruno Haible  <bruno@clisp.org>
38825
38826                 * modules/javaversion: New file.
38827                 * MODULES.html.sh (Java): Add javaversion.
38828
38829         2006-03-12  Bruno Haible  <bruno@clisp.org>
38830
38831                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
38832
38833         2005-12-04  Bruno Haible  <bruno@clisp.org>
38834
38835                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
38836                 (untested).
38837
38838         2006-06-21  Bruno Haible  <bruno@clisp.org>
38839
38840                 Avoid warnings from recent versions of mcs.
38841                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
38842                 -o, -L, -r any more. Use options documented since mcs-1.0
38843                 instead. Similarly for -g.
38844
38845         2005-12-04  Bruno Haible  <bruno@clisp.org>
38846
38847                 * build-aux/csharpcomp.sh.in: Suffix for resources is
38848                 .resources, not .resource.
38849
38850         2005-07-09  Bruno Haible  <bruno@clisp.org>
38851
38852                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
38853                 add a .dll suffix.
38854                 Reported by Mark Junker <mjscod@gmx.de>.
38855
38856         2006-07-22  Bruno Haible  <bruno@clisp.org>
38857
38858                 * modules/gettext: Upgrade to gettext-0.15.
38859                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
38860                 m4/visibility.m4.
38861                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
38862
38863 2006-07-22  Bruno Haible  <bruno@clisp.org>
38864
38865         Merge from GNU gettext 0.15.
38866
38867         2006-03-25  Bruno Haible  <bruno@clisp.org>
38868
38869                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
38870
38871         2006-07-21  Bruno Haible  <bruno@clisp.org>
38872
38873                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
38874                 "1.1".
38875
38876         2006-05-09  Bruno Haible  <bruno@clisp.org>
38877
38878                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
38879                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
38880                 for the conftestver execution.
38881
38882         2006-05-01  Bruno Haible  <bruno@clisp.org>
38883
38884                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
38885                 optional target-version argument. Verify that the compiler
38886                 groks source of the specified source-version, or add -source
38887                 option as necessary. Verify that the compiler produces
38888                 bytecode in the specified target-version, or add -target and
38889                 -source options as necessary. Make the result of the test
38890                 available as variable CONF_JAVAC. Also log error output in
38891                 config.log.
38892
38893         2006-03-11  Bruno Haible  <bruno@clisp.org>
38894
38895                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
38896
38897         2006-05-09  Bruno Haible  <bruno@clisp.org>
38898
38899                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
38900                 CLASSPATH_SEPARATOR to a semicolon.
38901
38902         2006-03-12  Bruno Haible  <bruno@clisp.org>
38903
38904                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
38905                 available as variable CONF_JAVA, for subsequent autoconf
38906                 tests. Also log error output in config.log.
38907
38908         2006-07-19  Bruno Haible  <bruno@clisp.org>
38909
38910                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
38911                 that getline works on glibc2 systems. Needed to avoid trouble
38912                 in relocatable.c.
38913                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
38914
38915         2005-12-04  Bruno Haible  <bruno@clisp.org>
38916
38917                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
38918                 launcher (untested).
38919
38920         2005-12-04  Bruno Haible  <bruno@clisp.org>
38921
38922                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
38923
38924         2006-07-22  Bruno Haible  <bruno@clisp.org>
38925
38926                 * gettext.m4: Update from GNU gettext-0.15.
38927                 * nls.m4: Likewise.
38928                 * po.m4: Likewise.
38929                 * inttypes-pri.m4: Likewise.
38930                 * inttypes-h.m4: Renamed from inttypes.m4.
38931                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
38932
38933 2006-07-22  Bruno Haible  <bruno@clisp.org>
38934
38935         Merge from GNU gettext 0.15.
38936
38937         2005-07-05  Bruno Haible  <bruno@clisp.org>
38938
38939                 * printf-args.c (printf_fetchargs): Work around broken
38940                 definition of wint_t on mingw.
38941
38942         2005-02-12  Bruno Haible  <bruno@clisp.org>
38943
38944                 * xallocsa.h: Add extern "C" for C++.
38945
38946         2006-05-17  Bruno Haible  <bruno@clisp.org>
38947
38948                 Cygwin portability.
38949                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
38950
38951         2006-04-30  Bruno Haible  <bruno@clisp.org>
38952
38953                 * progreloc.c: Include <mach-o/dyld.h> if available.
38954                 (find_executable): Use _NSGetExecutablePath when possible.
38955
38956         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
38957
38958                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
38959                 function.
38960
38961         2005-12-29  Bruno Haible  <bruno@clisp.org>
38962
38963                 * progreloc.c (set_program_name_and_installdir): Fix
38964                 compilation error.
38965
38966         2005-12-04  Bruno Haible  <bruno@clisp.org>
38967
38968                 Cygwin portability.
38969                 * progreloc.c: Include <windows.h> also on Cygwin.
38970                 (find_executable): Add support for Cygwin.
38971                 (set_program_name_and_installdir): Handle also platforms with
38972                 nonempty EXEEXT.
38973
38974         2006-07-11  Bruno Haible  <bruno@clisp.org>
38975
38976                 * javacomp.c: Fix a comment.
38977                 Reported by Jim Meyering.
38978
38979         2006-04-30  Bruno Haible  <bruno@clisp.org>
38980
38981                 * javacomp.h (compile_java_class): Add source_version,
38982                 target_version arguments.
38983                 * javacomp.c: Rewritten to choose only a compiler that
38984                 respects the specified source_version and target_version.
38985
38986         2006-06-27  Bruno Haible  <bruno@clisp.org>
38987
38988                 Assume correct S_ISDIR macro.
38989                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
38990
38991         2006-07-22  Bruno Haible  <bruno@clisp.org>
38992
38993                 * javaversion.h: New file, from GNU gettext.
38994                 * javaversion.c: New file, from GNU gettext.
38995                 * javaversion.java: New file, from GNU gettext.
38996                 * javaversion.class: New file, from GNU gettext.
38997
38998         2006-05-17  Bruno Haible  <bruno@clisp.org>
38999
39000                 Cygwin portability.
39001                 * javaexec.c (execute_java_class): Test for jview program
39002                 also on Cygwin.
39003
39004         2006-04-09  Bruno Haible  <bruno@clisp.org>
39005
39006                 * fatal-signal.c: Don't include string.h.
39007                 (at_fatal_signal): Use a copying loop instead of memcpy.
39008
39009         2005-12-04  Bruno Haible  <bruno@clisp.org>
39010
39011                 * csharpexec.c: Add support for 'clix' launcher (untested).
39012                 (execute_csharp_using_sscli): New function.
39013                 (execute_csharp_program): Call it.
39014
39015         2006-06-21  Bruno Haible  <bruno@clisp.org>
39016
39017                 Avoid warnings from recent versions of mcs.
39018                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
39019                 -o, -L, -r any more. Use options documented since mcs-1.0
39020                 instead. Similarly for -g.
39021
39022         2005-07-09  Bruno Haible  <bruno@clisp.org>
39023
39024                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
39025                 add a .dll suffix.
39026                 Reported by Mark Junker <mjscod@gmx.de>.
39027
39028         2006-06-17  Bruno Haible  <bruno@clisp.org>
39029
39030                 * config.charset: Update for NetBSD 3.0.
39031
39032         2006-05-17  Bruno Haible  <bruno@clisp.org>
39033
39034                 Cygwin portability.
39035                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
39036
39037         2006-05-16  Bruno Haible  <bruno@clisp.org>
39038
39039                 * localcharset.c [CYGWIN]: Include <windows.h>.
39040                 (get_charset_aliases): For Cygwin, return the same CPxxx
39041                 aliases list as under WIN32.
39042                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
39043                 the environment variables. Fall back to GetACP().
39044
39045         2006-04-05  Bruno Haible  <bruno@clisp.org>
39046
39047                 * config.charset: Update Juan Manuel Guerrero's address.
39048
39049         2005-02-12  Bruno Haible  <bruno@clisp.org>
39050
39051                 * allocsa.h: Add extern "C" for C++.
39052
39053         2005-02-10  Bruno Haible  <bruno@clisp.org>
39054
39055                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
39056                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
39057
39058         2006-07-22  Bruno Haible  <bruno@clisp.org>
39059
39060                 * gettext.h: Update to GNU gettext-0.15.
39061
39062 2006-07-22  Bruno Haible  <bruno@clisp.org>
39063
39064         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
39065         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
39066         lib-prefix.m4, longdouble.m4, ssize_t.m4.
39067
39068 2006-07-21  Eric Blake  <ebb9@byu.net>
39069
39070         * modules/stdlib-safer: New file.
39071         * MODULES.html.sh (File stream based Input/Output): Add
39072         stdlib-safer.
39073
39074 2006-07-21  Eric Blake  <ebb9@byu.net>
39075
39076         * lib/stdlib-safer.h: New file from coreutils, required by
39077         stdlib--.h.
39078
39079 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
39080
39081         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
39082
39083 2006-07-20  Bruno Haible  <bruno@clisp.org>
39084
39085         * gnulib-tool: Recognize new option --assume-autoconf.
39086         (autoconf_minversion): New variable.
39087         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
39088
39089 2006-07-20  Bruno Haible  <bruno@clisp.org>
39090
39091         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
39092
39093 2006-07-19  Derek R. Price  <derek@ximbiot.com>
39094
39095         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
39096         Reindent and repaginate.
39097
39098 2006-07-19  Derek Price  <derek@ximbiot.com>
39099
39100         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
39101         Correct grammar.
39102
39103 2006-07-17  Bruno Haible  <bruno@clisp.org>
39104
39105         * modules/list: New file.
39106         * modules/array-list: New file.
39107         * modules/carray-list, modules/carray-list-tests: New files.
39108         * modules/linked-list, modules/linked-list-tests: New files.
39109         * modules/avltree-list, modules/avltree-list-tests: New files.
39110         * modules/rbtree-list, modules/rbtree-list-tests: New files.
39111         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
39112         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
39113         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
39114         * modules/oset: New file.
39115         * modules/array-oset: New file.
39116         * modules/avltree-oset, modules/avltree-oset-tests: New files.
39117         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
39118         * tests/test-carray_list.c: New file.
39119         * tests/test-linked_list.c: New file.
39120         * tests/test-avltree_list.c: New file.
39121         * tests/test-rbtree_list.c: New file.
39122         * tests/test-linkedhash_list.c: New file.
39123         * tests/test-avltreehash_list.c: New file.
39124         * tests/test-rbtreehash_list.c: New file.
39125         * tests/test-avltree_oset.c: New file.
39126         * tests/test-rbtree_oset.c: New file.
39127         * MODULES.html.sh (Container data structures): New section.
39128
39129 2006-07-17  Bruno Haible  <bruno@clisp.org>
39130
39131         * m4/gl_list.m4: New file.
39132
39133 2006-07-17  Bruno Haible  <bruno@clisp.org>
39134
39135         * lib/gl_list.h: New file.
39136         * lib/gl_list.c: New file.
39137         * lib/gl_array_list.h: New file.
39138         * lib/gl_array_list.c: New file.
39139         * lib/gl_carray_list.h: New file.
39140         * lib/gl_carray_list.c: New file.
39141         * lib/gl_linked_list.h: New file.
39142         * lib/gl_linked_list.c: New file.
39143         * lib/gl_anylinked_list1.h: New file.
39144         * lib/gl_anylinked_list2.h: New file.
39145         * lib/gl_avltree_list.h: New file.
39146         * lib/gl_avltree_list.c: New file.
39147         * lib/gl_anyavltree_list1.h: New file.
39148         * lib/gl_anyavltree_list2.h: New file.
39149         * lib/gl_rbtree_list.h: New file.
39150         * lib/gl_rbtree_list.c: New file.
39151         * lib/gl_anyrbtree_list1.h: New file.
39152         * lib/gl_anyrbtree_list2.h: New file.
39153         * lib/gl_anytree_list1.h: New file.
39154         * lib/gl_anytree_list2.h: New file.
39155         * lib/gl_linkedhash_list.h: New file.
39156         * lib/gl_linkedhash_list.c: New file.
39157         * lib/gl_anyhash_list1.h: New file.
39158         * lib/gl_anyhash_list2.h: New file.
39159         * lib/gl_avltreehash_list.h: New file.
39160         * lib/gl_avltreehash_list.c: New file.
39161         * lib/gl_rbtreehash_list.h: New file.
39162         * lib/gl_rbtreehash_list.c: New file.
39163         * lib/gl_anytreehash_list1.h: New file.
39164         * lib/gl_anytreehash_list2.h: New file.
39165
39166         * lib/gl_oset.h: New file.
39167         * lib/gl_oset.c: New file.
39168         * lib/gl_array_oset.h: New file.
39169         * lib/gl_array_oset.c: New file.
39170         * lib/gl_avltree_oset.h: New file.
39171         * lib/gl_avltree_oset.c: New file.
39172         * lib/gl_rbtree_oset.h: New file.
39173         * lib/gl_rbtree_oset.c: New file.
39174         * lib/gl_anytree_oset.h: New file.
39175
39176 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39177
39178         * m4/mkancesdirs.m4: New file.
39179         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
39180         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
39181         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
39182         it.
39183
39184 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39185
39186         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
39187         * lib/mkancesdirs.h: New files.
39188         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
39189         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
39190         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
39191         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
39192         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
39193         callers changed.  Revamp internals significantly, by not
39194         attempting to create directories that are temporarily more
39195         permissive than the final results.  Do not attempt to use
39196         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
39197         This removes some race conditions, fixes some bugs, and simplifies
39198         things.  Use new dirchownmod function to do owner and mode changes.
39199         * lib/mkdir-p.h: Likewise.
39200         * lib/modechange.c (octal_to_mode): New function.
39201         (struct mode_change): New member mentioned.
39202         (make_node_op_equals): New arg mentioned.  All callers changed.
39203         (mode_compile): Keep track of which mode bits the user has explicitly
39204         mentioned.
39205         (mode_adjust): New arg DIR, so that we implement the X op correctly.
39206         New arg PMODE_BITS, to keep track of which mode bits the user
39207         mentioned; it treats S_ISUID and S_ISGID speciall.
39208         All callers changed.
39209         * lib/modechange.h: Likewise.
39210
39211 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39212
39213         * MODULES.html.sh: Add mkancestors.
39214         * modules/mkancesdirs: New module.
39215         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
39216         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
39217         The chdir-safer and afs files are now orphans; I'll remove them
39218         unless someone speaks up.
39219         Add lib/dirchownmod.c, lib/dirchownmod.h.
39220         (Depends-on): Remove alloca, chown, save-cwd, dirname.
39221         Add lchown, mkancesdirs.
39222         (Maintainer): Add self.
39223
39224 2006-07-15  Karl Berry  <karl@gnu.org>
39225
39226         * gnulib-tool: help message wording/arrangement.
39227
39228 2006-07-14  Simon Josefsson  <jas@extundo.com>
39229
39230         * doc/gnulib.texi (Libtool and Windows): New section.
39231
39232 2006-07-12  Simon Josefsson  <jas@extundo.com>
39233
39234         * modules/gendocs (License): Fix license, approved by Karl.
39235
39236 2006-07-12  Eric Blake  <ebb9@byu.net>
39237
39238         * MODULES.html.sh: Add gendocs.
39239
39240 2006-07-11  Eric Blake  <ebb9@byu.net>
39241
39242         * modules/fdl: New module, to install doc/fdl.texi.
39243         * MODULES.html.sh: Add new section for documentation modules.
39244         * gnulib-tool: Avoid space-tab.
39245         (--doc-base): New option, to manage files from doc.
39246
39247 2006-07-11  Eric Blake  <ebb9@byu.net>
39248
39249         * m4/absolute-header.m4: Fix comments to match recent change.
39250
39251 2006-07-11  Eric Blake  <ebb9@byu.net>
39252
39253         * gnulib-tool: List --doc-base before --tests-base.
39254
39255 2006-07-11  Derek R. Price  <derek@ximbiot.com>
39256
39257         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
39258
39259 2006-07-11  Bruno Haible  <bruno@clisp.org>
39260
39261         * README: Mention where to put documentation.
39262
39263 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39264
39265         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
39266
39267 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
39268
39269         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
39270         to stdint.m4.
39271
39272 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
39273
39274         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
39275         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
39276         "no/such/file/stdint.h" when there is no such file, so that
39277         the resulting C code can be parsed by dodgy compilers.
39278         Problems reported by Bob Proulx.
39279
39280 2006-07-10  Derek R. Price  <derek@ximbiot.com>
39281
39282         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
39283         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
39284         macros into the GNU _D_EXACT_NAMLEN.
39285         * lib/savedir.c:  Likewise.
39286         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
39287
39288 2006-07-10  Derek R. Price  <derek@ximbiot.com>
39289         and Paul Eggert  <eggert@cs.ucla.edu>
39290
39291         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
39292         * m4/savedir.m4:
39293         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
39294         macros into the GNU _D_EXACT_NAMLEN.
39295
39296 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39297
39298         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
39299         around the absolute name, to work around a problem with the HP-UX
39300         11.23 native C compiler, reported by Bob Proulx.
39301
39302 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39303
39304         * doc/maintain.texi, make-stds.texi: Sync from
39305         <http://savannah.gnu.org/projects/gnustandards>.
39306
39307 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39308
39309         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
39310
39311 2006-07-09  Jim Meyering  <jim@meyering.net>
39312
39313         * m4/glob.m4: Remove a doubled word in a comment.
39314
39315 2006-07-09  Jim Meyering  <jim@meyering.net>
39316
39317         * lib/argp-pv.c: Remove a doubled word in a comment.
39318         * lib/check-version.c (check_version): Likewise.
39319         * lib/javacomp.c (compile_java_class): Likewise.
39320
39321 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
39322
39323         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
39324         for the benefit of people using Autoconf 2.60.  If you want to
39325         support older Autoconf versions you can copy m4/onceonly_2_57.m4
39326         (or m4/onceonly.m4, if pre-2.57) manually.
39327
39328 2006-07-08  Jim Meyering  <jim@meyering.net>
39329
39330         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
39331         comment.
39332         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
39333         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
39334         comment.
39335
39336 2006-07-08  Jim Meyering  <jim@meyering.net>
39337
39338         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
39339
39340 2006-07-07  Simon Josefsson  <jas@extundo.com>
39341
39342         * tests/test-crc.c: Change expected crc value, the test vector
39343         were probably computed using the old broken crc.c?
39344
39345 2006-07-06  Simon Josefsson  <jas@extundo.com>
39346
39347         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
39348         now the canonical place for the M4 file).
39349
39350         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
39351         from the sys_socket dependency now.
39352
39353         * modules/inet_pton (Files): Ditto.
39354
39355         * modules/inet_ntop (Files): Ditto.
39356
39357 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
39358
39359         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
39360         not gl_PREREQ_GETUSERSHELL.
39361
39362 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39363
39364         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
39365         with only one argument, for Autoconf 2.60.
39366         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
39367         expand to nothing, so add a shell command to avoid syntax error.
39368         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
39369
39370 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39371
39372         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
39373
39374 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39375
39376         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
39377         no longer needed.  Check for isblank decl.
39378         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
39379         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
39380         of existence.
39381
39382 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39383
39384         * lib/getloadavg.c: Use __VMS, not VMS.
39385         * lib/getopt.c: Likewise.
39386         * lib/getpagesize.h: Likewise.
39387         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
39388         and probably does not work.
39389
39390 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39391
39392         * lib/.cppi-disable: Add wcwidth.
39393         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
39394         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
39395         (ISGRAPH): Remove.  All uses changed to isgraph.
39396         (FOLD) [!defined _LIBC]: Remove special case.
39397         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
39398         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
39399         HAVE_ISBLANK.
39400         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
39401         case.
39402
39403 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
39404
39405         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
39406         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
39407         brackets.  Other minor changes to suppress some compiler
39408         warnings.
39409
39410 2006-07-06  Derek R. Price  <derek@ximbiot.com>
39411         and Paul Eggert  <eggert@cs.ucla.edu>
39412
39413         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
39414         of invoking obsolescent AC_HEADER_DIRENT macro.
39415         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
39416         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
39417         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
39418         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
39419         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
39420         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
39421         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
39422         * m4/readdir.m4: Remove; no longer needed.
39423
39424 2006-07-06  Derek R. Price  <derek@ximbiot.com>
39425         and Paul Eggert  <eggert@cs.ucla.edu>
39426
39427         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
39428         Don't worry about this obsolete case any more.
39429         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
39430         directories.
39431         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
39432         worry about this obsolete case any more.
39433         * lib/fts.c: Likewise.
39434         * lib/getcwd.c: Likewise.
39435         * lib/glob.h: Likewise.
39436         * lib/savedir.c: Likewise.
39437
39438 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39439
39440         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
39441         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
39442         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
39443         needed.
39444         All uses removed.
39445         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39446         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
39447         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
39448         needed.
39449         * m4/getdate.m4 (gl_GETDATE): Likewise.
39450         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
39451         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
39452         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
39453         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39454         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
39455         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39456         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
39457         needed.
39458
39459 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39460
39461         * lib/memcasecmp.c: Include <limits.h>.
39462         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
39463         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
39464         Don't assume isdigit succeeds only on '0' through '9'.
39465
39466 2006-07-05  Eric Blake  <ebb9@byu.net>
39467
39468         * modules/getaddrinfo (Depends-on): Add snprintf.
39469
39470 2006-07-05  Eric Blake  <ebb9@byu.net>
39471
39472         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
39473         to avoid 'header present but could not be compiled' on cygwin.
39474
39475 2006-07-05  Eric Blake  <ebb9@byu.net>
39476
39477         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
39478         missing from netdb.h.
39479         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
39480
39481 2006-07-05  Derek R. Price  <derek@ximbiot.com>
39482
39483         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
39484         no longer needed.
39485         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
39486         * m4/getdate.m4 (gl_GETDATE): Likewise.
39487         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
39488         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
39489         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
39490         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39491         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39492
39493 2006-07-05  Derek R. Price  <derek@ximbiot.com>
39494
39495         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
39496         All uses of is_space replaced by isspace.
39497         * lib/exit.h: Don't talk about STDC_HEADERS.
39498         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
39499         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
39500         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
39501         replaced by isprint etc.
39502         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
39503         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
39504         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
39505         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
39506         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
39507         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
39508
39509 2006-07-05  Bruno Haible  <bruno@clisp.org>
39510
39511         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
39512         the function exists, before testing against AIX.
39513         Reported by Martin Lambers <marlam@marlam.de>.
39514
39515 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
39516
39517         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
39518         From Mark D. Baushke.
39519
39520 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
39521
39522         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
39523         to the absolute name, not just one, to bypass Sun C 5.8's
39524         "warning: #include of /usr/include/... may be non-portable".
39525
39526 2006-07-04  Eric Blake  <ebb9@byu.net>
39527
39528         * modules/dirname-tests: New test module.
39529         * tests/test-dirname.c: New file, replacing dirname.c
39530         TEST_DIRNAME section that was recently deleted.
39531
39532 2006-07-04  Bruno Haible  <bruno@clisp.org>
39533
39534         Assume ANSI C header files and <ctype.h> functions.
39535         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
39536         (mbsnwidth): Use isprint, iscntrl instead.
39537
39538 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39539
39540         Merge from coreutils.
39541         * MODULES.html.sh: Add xstrtold.
39542         * modules/xstrtold: New file.
39543         * modules/cycle-check (Files): Add lib/same-inode.h.
39544         * modules/dirname (Files): Add m4/double-slash-root.m4.
39545         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
39546         * modules/mkdir-p (Files): Add lib/same-inode.h.
39547         * modules/same (Files): Add lib/same-inode.h.
39548
39549 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39550
39551         * m4/absolute-header.m4: Renamed from full-header-path.m4.
39552         This is to keep the terminology clean; POSIX talks about
39553         "absolute pathnames", not "full pathnames", but the GNU
39554         Coding Standards say to use "path" for something else;
39555         so use "absolute" to keep both sides happy.
39556         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
39557         Set gl_absolute_header, not gl_full_header_path.
39558         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
39559         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
39560         All uses changed.
39561
39562         Merge from coreutils.
39563
39564         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
39565
39566         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
39567         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
39568         want to require the building of c-strtod.o.
39569         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
39570         needs -lm directly.
39571         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
39572
39573         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
39574
39575         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
39576         --as-needed option if available.  Problem reported by Albert Chin in
39577         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
39578         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
39579         cc merely issues a bunch of annoying warnings for --as-needed
39580         (this problem was reported by Bob Proulx).  Also, try linking with
39581         -lm to detect a bug in binutils 2.16 (this problem was reported
39582         by Ralf Wildenhues).
39583
39584         2006-06-18  Jim Meyering  <jim@meyering.net>
39585
39586         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
39587         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
39588         macro.
39589         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
39590         also check for glibc-2.4's abort-inducing bug.
39591
39592         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
39593         Low-probability clean-up should be to use rmdir to get rid of
39594         the just-created directory, not unlink.
39595
39596         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
39597         configure fail, and request a bug report to inform us about it.
39598         Add a comment that, barring reports to the contrary, in 2007 we'll
39599         assume ftruncate is universally available.
39600
39601         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
39602
39603         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
39604
39605         2006-03-12  Jim Meyering  <jim@meyering.net>
39606
39607         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
39608         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
39609         * m4/same.m4 (gl_SAME): Likewise.
39610         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
39611
39612         2006-03-11  Eric Blake  <ebb9@byu.net>
39613
39614         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
39615         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
39616         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
39617         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
39618
39619 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39620
39621         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
39622         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
39623         reported by Mark D. Baushke, one in
39624         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
39625
39626         Merge from coreutils.
39627
39628         * lib/.cppi-disable: Add stdint_.h.
39629         * lib/.cvsignore: Add stdint.h.
39630
39631         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
39632
39633         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
39634         both double and long double versions.
39635         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
39636         * lib/xstrtold.c: New file.
39637         * lib/xstrtod.h (xstrtold): New decl.
39638
39639         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
39640
39641         * lib/filemode.c (setst): Remove.
39642         (strmode): Rewrite to avoid setst.  This makes the code shorter,
39643         (arguably) clearer, and the generated code is a bit smaller on my
39644         Debian GNU/Linux stable x86 host.
39645
39646         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
39647
39648         * lib/filemode.c: Include "filemode.h" first, to test the interface.
39649         Assume that filemode.h includes sys/types.h and sys/stat.h.
39650         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
39651         (ftypelet): Reorder to put common cases first, for efficiency.
39652         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
39653         to do 'M'.
39654         (strmode): Renamed from mode_string, and now stores 12 bytes instead
39655         of 10, for compatibility with FreeBSD.  All callers changed.
39656         (filemodestring): Now stores 12 bytes instead of 10, and sets file
39657         types that can't be deduced solely from st_mode.  First arg is now a
39658         const pointer.
39659         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
39660         (strmode): Renamed from mode_string.
39661         (filemodestring): New decl.
39662         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
39663         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
39664         needed.
39665         (S_ISPORT, S_ISWHT): New macros, if not already defined.
39666
39667         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
39668
39669         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
39670         fsusage.h now does that.  Include fsusage.h first, to test interface.
39671         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
39672         at most one method (the old code could have generated decls that
39673         didn't conform to C89, not that this was ever exercised).
39674         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
39675
39676         2006-03-19  Jim Meyering  <jim@meyering.net>
39677
39678         Work even in a chroot where d_ino values for entries in "/"
39679         don't match the stat.st_ino values for the same names.
39680         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
39681         number, iterate through all entries again, using lstat instead.
39682         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
39683         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
39684
39685         * lib/getcwd.c (__getcwd): Clarify a comment.
39686         Use memcpy in place of a call to strcpy.
39687
39688         2006-03-12  Jim Meyering  <jim@meyering.net>
39689
39690         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
39691         matches that of the current directory (which we're about to chdir ".."
39692         out of), then save the dev-ino of the parent, instead.
39693
39694         * lib/same-inode.h (SAME_INODE): New file/macro.
39695         * lib/chdir-safer.c (SAME_INODE): Remove definition.
39696         Include "same-inode.h", instead.
39697         * lib/same.c: Likewise.
39698         * lib/cycle-check.h: Include "same-inode.h".
39699         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
39700         * lib/cycle-check.c (SAME_INODE): Remove definition.
39701         * lib/root-dev-ino.h: Include "same-inode.h".
39702
39703         2006-03-11  Eric Blake  <ebb9@byu.net>
39704
39705         * lib/same.c (same_name): s/base_name/last_component/
39706         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
39707         * lib/filenamecat.c (file_name_concat): Likewise.
39708
39709         2006-03-11  Eric Blake  <ebb9@byu.net>,
39710                     Paul Eggert  <eggert@cs.ucla.edu>
39711
39712         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
39713         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
39714         drive prefix.
39715         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
39716         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
39717         (last_component): New method.
39718         * lib/dirname.c (dir_len): Determine when drive letters need a
39719         subsequent slash.  Preserve // when it is special.
39720         (dir_name): Don't append dot when drive letter is absolute.
39721         [TEST_DIRNAME]: Move into a full-blown gnulib test.
39722         * lib/basename.c (base_name): New semantics - malloc the result.
39723         Preserve // when it is special.  Preserve relative files that look
39724         like drive letters.
39725         (base_len): Preserve // when it is special.
39726         (last_component): New method, similar to old base_name semantics.
39727         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
39728         base_name.  Strip redundant slashes from ///.
39729
39730 2006-07-03  Jim Meyering  <jim@meyering.net>
39731
39732         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
39733         macro is used before the first cycle_check call.
39734
39735 2006-07-03  Eric Blake  <ebb9@byu.net>
39736
39737         * modules/dirname (Depends-on): Add xstrndup.
39738
39739 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
39740
39741         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
39742         test cases, so that config.log is a bit easier to follow.
39743
39744 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
39745
39746         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
39747         both are 64 bits, since this seems to be the tradition, and this
39748         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
39749         we ever run into a host that prefers long long to long in this
39750         case, we'll need another configure-time test.  Problem reported by
39751         Jim Meyering.
39752
39753 2006-07-02  Eric Blake  <ebb9@byu.net>
39754
39755         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
39756
39757 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39758
39759         * modules/inttypes (Depends-on): No longer depends on stdint.
39760         * modules/stdint (Description): Say more about assumptions.
39761         Say that the fast types might differ.  Say macros are used.
39762         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
39763         (Makefile.am): Revise list of substituted symbols to match
39764         new stdint.m4.
39765         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
39766         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
39767         * tests/test-stdint.c (verify_same_types)
39768         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
39769         the code conforms to C99/C89.
39770         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
39771         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
39772
39773 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39774
39775         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
39776         but fix a bug, by requiring at least 64 bits.
39777         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
39778         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
39779         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
39780         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
39781
39782         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
39783         changes.  Make 2.59 a prerequisite.  Check and substitute for
39784         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
39785         inttypes.h.  Do not use special include files; just use the
39786         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
39787         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
39788         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
39789         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
39790         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
39791         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
39792         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
39793         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
39794         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
39795         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
39796         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
39797         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
39798         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
39799         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
39800         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
39801         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
39802         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
39803         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
39804         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
39805         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
39806         WINT_MAX.  Check for C99 conformance more strictly, by detecting
39807         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
39808         not check for things that C99 does not require, e.g., int8_t.  If
39809         a test isn't needed unless <stdint.h> isn't working, and is
39810         unlikely to be needed for any other reason, then don't do it
39811         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
39812         size_t, since we assume C89 freestanding at least.  Do not check
39813         for sig_atomic_t, wchar_t, or wint_t, since the code now does
39814         the right thing even if the types are not defined.  Instead use:
39815         (gl_STDINT_TYPE_PROPERTIES): New macro.
39816         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
39817         testing whether <sys/types.h> clashes, as Autoconf does this for
39818         us now.  All uses removed.
39819         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
39820         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
39821         (gl_CHECK_TYPE_SAME):
39822         Remove; no longer needed.
39823         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
39824         exists, since we'll return 0 anyway in that case.
39825         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
39826
39827 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39828
39829         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
39830         possible collision with system files.
39831         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
39832         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
39833         WCHAR_MIN and WCHAR_MAX in this case.
39834         (<stddef.h>): Do not include; no longer needed.
39835         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
39836         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
39837         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
39838         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
39839         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
39840         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
39841         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
39842         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
39843         !defined(__c99))]: Include in this case too, since it's harmless
39844         now.
39845         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
39846         dangerous to do so.
39847         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
39848         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
39849         (_STDINT_MIN, _STDINT_MAX): New macros.
39850         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
39851         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
39852         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
39853         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
39854         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
39855         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
39856         macros, not typedefs; this simplifies things quite a bit.
39857         Use long int for all types narrower than int64_t.
39858         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
39859         Define in terms of long long int or int64_t or long int,
39860         not int64_t or int32_t.  This saves some compile-time testing.
39861         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
39862         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
39863         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
39864         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
39865         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
39866         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
39867         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
39868         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
39869         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
39870         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
39871         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
39872         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
39873         undef any previous version and define our own version, for
39874         simplicity and consistency with the new macros for types.
39875         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
39876         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
39877         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
39878         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
39879         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
39880         @WINT_T_SUFFIX@ to keep things simple here.
39881         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
39882         Simplify by assuming typical 8/16/32/64 host, since we're
39883         already doing that elsewhere anyway.
39884         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
39885         and assume long long int is 64 bits if available.  This
39886         speeds up 'configure'.
39887
39888 2006-07-01  Eric Blake  <ebb9@byu.net>
39889
39890         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
39891         Reported by Andreas Buening.
39892
39893 2006-07-01  Eric Blake  <ebb9@byu.net>
39894
39895         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
39896
39897 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
39898
39899         * lib/getaddrinfo.c: fixed typo
39900
39901 2006-06-29  Jim Meyering  <jim@meyering.net>
39902
39903         * modules/strftime (Maintainer): Add my name, since with the
39904         FPRINTFTIME changes strftime.c has forked from glibc.
39905
39906 2006-06-29  Eric Blake  <ebb9@byu.net>
39907
39908         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
39909
39910 2006-06-29  Eric Blake  <ebb9@byu.net>
39911
39912         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
39913
39914 2006-06-29  Eric Blake  <ebb9@byu.net>
39915
39916         * lib/stat_.h: New file.
39917
39918 2006-06-29  Eric Blake  <ebb9@byu.net>
39919
39920         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
39921         unused static function.
39922
39923 2006-06-29  Eric Blake  <ebb9@byu.net>
39924
39925         * doc/functions.texi (Function Portability): Document missing lstat
39926         on mingw.
39927
39928 2006-06-29  Eric Blake  <ebb9@byu.net>
39929
39930         * MODULES.html.sh: Add sys_stat.
39931         * modules/sys_stat: New module.
39932         * modules/mkstemp (Depends-on): Add sys_stat.
39933
39934 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39935
39936         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
39937
39938 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39939
39940         * m4/c-bs-a.m4: Removed.
39941
39942 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39943
39944         * lib/strftime.c: Assume strftime() exists.
39945
39946 2006-06-29  Derek Price  <derek@ximbiot.com>
39947
39948         * modules/c-bs-a: Removed - \a is C89.
39949         * MODULES.html.sh: Remove c-bs-a.
39950
39951 2006-06-29  Bruno Haible  <bruno@clisp.org>
39952
39953         * modules/wcwidth (License): Change to LGPL.
39954
39955 2006-06-28  Simon Josefsson  <jas@extundo.com>
39956
39957         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
39958         on _WIN32.
39959
39960         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
39961         getnameinfo.
39962
39963 2006-06-28  Simon Josefsson  <jas@extundo.com>
39964
39965         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
39966
39967 2006-06-28  Simon Josefsson  <jas@extundo.com>
39968
39969         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
39970         functions there.  It will succeed on Windows XP, but on Windows
39971         2000 and (presumably) earlier, it will fail, and use the internal
39972         re-implementation.
39973         (use_win32_p): New function.
39974         (getaddrinfo): Use strtoul on servname, to support numeric ports.
39975         Support AI_NUMERICSERV to disable getservbyname.
39976         (getnameinfo): New function, only supports
39977         NI_NUMERICHOST|NI_NUMERICSERV for now.
39978
39979         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
39980         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
39981         getnameinfo.
39982
39983 2006-06-28  Eric Blake  <ebb9@byu.net>
39984
39985         * modules/wcwidth: New file.
39986         * modules/mbchar (Depends-on): Add wcwidth.
39987         * modules/mbswidth (Depends-on): Add wcwidth.
39988         * MODULES.html.sh: Add wcwidth.
39989
39990 2006-06-28  Eric Blake  <ebb9@byu.net>
39991
39992         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
39993         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
39994
39995 2006-06-28  Eric Blake  <ebb9@byu.net>
39996
39997         * lib/xvasprintf.h: Fix comments.
39998
39999 2006-06-28  Eric Blake  <ebb9@byu.net>
40000
40001         * lib/mbchar.h (wcwidth): Include wcwidth.h.
40002         * lib/mbswidth.c (wcwidth): Move from here...
40003         * lib/wcwidth.h: ...to this new file.
40004
40005 2006-06-28  Derek R. Price  <derek@ximbiot.com>
40006
40007         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
40008
40009         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
40010         it's obsolete.
40011         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
40012
40013 2006-06-28  Derek R. Price  <derek@ximbiot.com>
40014
40015         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
40016         Autoconf 2.60 says this stuff was obsolete.
40017
40018 2006-06-28  Bruno Haible  <bruno@clisp.org>
40019
40020         * modules/wcwidth (Files): Add m4/wchar_t.m4.
40021
40022 2006-06-28  Bruno Haible  <bruno@clisp.org>
40023
40024         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
40025         gt_TYPE_WCHAR_T.
40026
40027 2006-06-28  Bruno Haible  <bruno@clisp.org>
40028
40029         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
40030         declaration for wcwidth.
40031         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
40032
40033 2006-06-28  Bruno Haible  <bruno@clisp.org>
40034
40035         * lib/mkdtemp.c [MINGW]: Include <io.h>.
40036         (mkdir): Define using _mkdir.
40037
40038 2006-06-28  Bruno Haible  <bruno@clisp.org>
40039
40040         * lib/getaddrinfo.h: Fix POSIX URL.
40041         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
40042         _WIN32.
40043         (use_win32_p): Make static.
40044         (getaddrinfo): Reject service name if it is empty or does not consist
40045         solely of decimal digits, or if its value is > 65535.
40046         (getnameinfo): Remove useless casts.
40047
40048 2006-06-27  Simon Josefsson  <jas@extundo.com>
40049
40050         * modules/sys_select: New file, suggested by Bruno Haible, Paul
40051         Eggert and Martin Lambers.
40052
40053 2006-06-27  Simon Josefsson  <jas@extundo.com>
40054
40055         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
40056         Eggert and Martin Lambers.
40057
40058 2006-06-27  Bruno Haible  <bruno@clisp.org>
40059
40060         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
40061         result to 0, not to empty.
40062         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
40063
40064 2006-06-27  Bruno Haible  <bruno@clisp.org>
40065
40066         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
40067
40068 2006-06-26  Simon Josefsson  <jas@extundo.com>
40069
40070         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
40071         present.
40072
40073 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
40074
40075         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
40076         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
40077         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
40078
40079 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
40080
40081         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
40082
40083 2006-06-26  Bruno Haible  <bruno@clisp.org>
40084
40085         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
40086
40087 2006-06-26  Bruno Haible  <bruno@clisp.org>
40088
40089         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
40090
40091 2006-06-26  Bruno Haible  <bruno@clisp.org>
40092
40093         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
40094         SGI C compiler in pre-C99 mode.
40095         Suggested by Mark D. Baushke and Larry Jones.
40096
40097 2006-06-26  Bruno Haible  <bruno@clisp.org>
40098
40099         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
40100         WCHAR_MAX.
40101         Reported by Mark D. Baushke and Larry Jones.
40102
40103 2006-06-26  Bruno Haible  <bruno@clisp.org>
40104
40105         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
40106         in pre-C99 mode.
40107         Suggested by Mark D. Baushke and Larry Jones.
40108
40109 2006-06-23  Simon Josefsson  <jas@extundo.com>
40110             Bruno Haible  <bruno@clisp.org>
40111
40112         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
40113         Emit mostlyclean-local rule.
40114         (func_emit_tests_Makefile_am): Likewise.
40115         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
40116
40117 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
40118
40119         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
40120
40121 2006-06-23  Bruno Haible  <bruno@clisp.org>
40122
40123         * tests/test-stdint.c: Update to match ISO C 99 Technical
40124         Corrigendum 1.
40125
40126 2006-06-23  Bruno Haible  <bruno@clisp.org>
40127
40128         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
40129
40130 2006-06-23  Bruno Haible  <bruno@clisp.org>
40131
40132         * lib/stdint_.h: Treat IRIX like OpenBSD.
40133
40134 2006-06-23  Bruno Haible  <bruno@clisp.org>
40135
40136         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
40137         ISO C 99 Technical Corrigendum 1.
40138
40139 2006-06-22  Simon Josefsson  <jas@extundo.com>
40140
40141         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
40142         MinGW.
40143
40144 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
40145
40146         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
40147         needed.  Some compiler complained about some of them.  Problem reported
40148         by Larry Jones in
40149         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
40150
40151 2006-06-21  Simon Josefsson  <jas@extundo.com>
40152
40153         * tests/test-getaddrinfo.c: New file.
40154
40155         * modules/getaddrinfo-tests: New file.
40156
40157         * MODULES.html.sh: Add inet_pton.
40158
40159         * modules/inet_pton: New file.
40160
40161 2006-06-21  Simon Josefsson  <jas@extundo.com>
40162
40163         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
40164         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
40165         of using the (limited) gnulib implementation on Windows XP.
40166
40167         * m4/inet_pton.m4: New file.
40168
40169 2006-06-21  Simon Josefsson  <jas@extundo.com>
40170
40171         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
40172         variable.
40173
40174         * lib/socket_.h: Don't define WINVER.
40175
40176         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
40177         slightly modified to work in gnulib.
40178
40179 2006-06-21  Simon Josefsson  <jas@extundo.com>
40180
40181         * doc/gnulib.texi (Windows sockets): Add.
40182
40183 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
40184
40185         * lib/read-file.c (fread_file): Start with buffer allocation of
40186         0 bytes rather than 1 byte; this simplifies the code.
40187         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
40188         code to free buffer and save/restore errno.
40189         (internal_read_file): Remove unused local.
40190
40191 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
40192
40193         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
40194         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
40195         Problem reported by Denis Excoffier in
40196         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
40197
40198 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40199
40200         * modules/sys_socket, modules/socklen: Include sys/types since
40201         FreeBSD 4.x's sys/socket.h needs it.
40202
40203 2006-06-19  Simon Josefsson  <jas@extundo.com>
40204
40205         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
40206
40207 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
40208
40209         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
40210
40211 2006-06-19  Bruno Haible  <bruno@clisp.org>
40212
40213         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
40214         and FULL_PATH_INTTYPES_H in angle brackets.
40215         Reported by Mark D. Baushke <mdb@gnu.org>.
40216
40217 2006-06-17  Eric Blake  <ebb9@byu.net>
40218
40219         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
40220         errno.
40221
40222 2006-06-17  Bruno Haible  <bruno@clisp.org>
40223
40224         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
40225         <sys/inttypes.h>.
40226
40227 2006-06-17  Bruno Haible  <bruno@clisp.org>
40228
40229         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
40230         whether errno is declared. Assume <errno.h> declares errno.
40231
40232 2006-06-17  Bruno Haible  <bruno@clisp.org>
40233
40234         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
40235
40236 2006-06-17  Bruno Haible  <bruno@clisp.org>
40237
40238         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
40239         problem on Solaris 2.5.1.
40240
40241 2006-06-16  Eric Blake  <ebb9@byu.net>
40242
40243         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
40244         * lib/unicodeio.c [!defined errno]: Likewise.
40245         * lib/strtol.c [!defined errno]: Likewise.
40246         * lib/strtod.c [!defined errno]: Likewise.
40247
40248 2006-06-15  Eric Blake  <ebb9@byu.net>
40249
40250         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
40251
40252 2006-06-15  Eric Blake  <ebb9@byu.net>
40253
40254         * config/srclist.txt (ssize_t.m4): Lose sync.
40255
40256 2006-06-15  Bruno Haible  <bruno@clisp.org>
40257
40258         * modules/stdint (Files): Include m4/full-header-path.m4,
40259         m4/size_max.m4, m4/wchar_t.m4.
40260         (Makefile.am): Many more substitutions.
40261         * modules/stdint-tests: New file.
40262         * tests/test-stdint.c: New file.
40263
40264 2006-06-15  Bruno Haible  <bruno@clisp.org>
40265
40266         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
40267         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
40268         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
40269         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
40270         gl_CHECK_TYPE_SAME): New macros.
40271
40272 2006-06-15  Bruno Haible  <bruno@clisp.org>
40273
40274         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
40275
40276 2006-06-15  Bruno Haible  <bruno@clisp.org>
40277
40278         * lib/stdint_.h: Rewritten to be fully auto-configured.
40279         Fixes bug on HP-UX/IA64.
40280
40281 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
40282
40283         * lib/getdate.y (__attribute__): Don't define if already defined.
40284         Problem reported by Larry Jones.
40285         * lib/utimens.c (__attribute__): Likewise.
40286
40287 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
40288
40289         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
40290         reported by Andreas Schwab.
40291
40292 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40293             Bruno Haible  <bruno@clisp.org>
40294
40295         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
40296         check for the declaration of strnlen and a run test that exposes the
40297         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
40298         rpl_strndup.
40299
40300 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40301             Bruno Haible  <bruno@clisp.org>
40302
40303         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
40304
40305 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40306
40307         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
40308         compile test, for Tru64 4.0D.
40309
40310 2006-05-28  Karl Berry  <karl@gnu.org>
40311
40312         * config/srclist.txt (printf-args.c): lose sync.
40313
40314 2006-05-26  Martin Lambers  <marlam@marlam.de>
40315
40316         * lib/getpass.c: Updates the test for the native W32 API, and adds
40317         missing includes, thus fixing compilation warnings.
40318
40319 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
40320
40321         * lib/exclude.c (exclude_fnmatch): New function.
40322         (excluded_file_name): Call exclude_fnmatch.
40323         * lib/exclude.h (excluded_file_name): New prototype
40324
40325 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
40326
40327         * lib/tempname.c (small_open, large_open): New macros.
40328         (__open, __open64) [!_LIBC]: Remove.
40329         (__gen_tempname): Use small_open and large_open instead of __open
40330         and __open64.  This fixes a portability bug on HP-UX 11.11i
40331         reported by Simon Wing-Tang in
40332         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
40333
40334 2006-05-24  Bruno Haible  <bruno@clisp.org>
40335
40336         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
40337         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
40338         Reported by Thorsten Maerz <torte@netztorte.de> via
40339         Aaron Stone <aaron@serendipity.cx>.
40340
40341 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
40342
40343         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
40344         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
40345         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
40346         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
40347         not really conditional on the cache.
40348         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
40349
40350 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
40351
40352         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
40353         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
40354         (my_usleep): Don't mishandle maximum value.
40355
40356 2006-05-19  Jim Meyering  <jim@meyering.net>
40357
40358         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
40359
40360 2006-05-17  Bruno Haible  <bruno@clisp.org>
40361
40362         Cygwin portability.
40363         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
40364
40365 2006-05-17  Bruno Haible  <bruno@clisp.org>
40366
40367         * lib/stdint_.h: Fix recognition of Cygwin.
40368
40369 2006-05-15  Bruno Haible  <bruno@clisp.org>
40370
40371         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
40372         on libtool patch by Ralf Wildenhues.
40373
40374 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
40375
40376         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
40377         test for C99 conformance; (bool) 0.5 is an integer constant
40378         expression, but (bool) -0.5 is not.  Problem reported by Fedor
40379         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
40380
40381 2006-05-11  Simon Josefsson  <jas@extundo.com>
40382
40383         * m4/xvasprintf.m4: Fix obvious typo.
40384
40385 2006-05-11  Jim Meyering  <jim@meyering.net>
40386
40387         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
40388         James Lemley.
40389
40390 2006-05-10  Simon Josefsson  <jas@extundo.com>
40391
40392         * lib/md4.c: Typo fix, update copyright years.
40393         (K1, K2): Don't use L because it turn computations into 64-bit on
40394         64-bit platforms.
40395
40396 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
40397
40398         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
40399         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
40400         unwanted sign propagation, e.g., on hosts with 64-bit int.
40401         There still are some problems with reeelly weird theoretical hosts
40402         (e.g., 33-bit int) but it's not worth worrying about now.
40403         * lib/sha1.c (rol): Likewise.
40404         (K1, K2, K3, K4): Remove unnecessary L suffix.
40405
40406 2006-05-10  Bruno Haible  <bruno@clisp.org>
40407
40408         * lib/des.c: Cast to avoid warnings.
40409
40410 2006-05-09  Bruno Haible  <bruno@clisp.org>
40411
40412         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
40413         (Depends-on): Depend also on xsize, stdarg.
40414         (configure.ac): Add gl_XVASPRINTF.
40415
40416 2006-05-09  Bruno Haible  <bruno@clisp.org>
40417
40418         * m4/xvasprintf.m4: New file.
40419
40420 2006-05-09  Bruno Haible  <bruno@clisp.org>
40421
40422         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
40423         (EOVERFLOW): Define fallback value.
40424         (xstrcat): New function.
40425         (xvasprintf): Recognize the special case of a string concatenation.
40426
40427 2006-05-08  Eric Blake  <ebb9@byu.net>
40428
40429         * gnulib-tool (func_version): Base copyright year on CVS date.
40430         (func_emit_copyright_notice): New function.
40431         (func_emit_lib_Makefile_am): Use it.
40432         (func_emit_tests_Makefile_am): Likewise.
40433         (func_import): Likewise.
40434
40435 2006-05-08  Bruno Haible  <bruno@clisp.org>
40436
40437         * modules/stdarg: New file.
40438         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
40439
40440 2006-05-08  Bruno Haible  <bruno@clisp.org>
40441
40442         * m4/stdarg.m4: New file, from GNU gettext.
40443
40444 2006-05-08  Bruno Haible  <bruno@clisp.org>
40445
40446         * config/srclist.txt (build-aux/config.rpath): different from latest
40447         release.
40448
40449 2006-05-08  Bruno Haible  <bruno@clisp.org>
40450
40451         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
40452
40453 2006-05-05  Jim Meyering  <jim@meyering.net>
40454
40455         * m4/warning.m4: New file, derived from bison's file by the same name.
40456
40457 2006-05-03  Bruno Haible  <bruno@clisp.org>
40458
40459         * lib/stdint_.h: Shorter URL.
40460         * lib/inttypes.h: Likewise.
40461
40462 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40463
40464         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
40465
40466 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40467
40468         * lib/verify.h: Document the internals better.  Most of this change
40469         was written by Bruno Haible.
40470
40471 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40472
40473         * doc/verify.texi: New file, partly based on a proposal by
40474         Bruno Haible.
40475
40476 2006-05-02  Bruno Haible  <bruno@clisp.org>
40477
40478         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
40479         test from here...
40480         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
40481
40482 2006-04-29  Bruno Haible  <bruno@clisp.org>
40483
40484         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
40485         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
40486
40487 2006-04-29  Bruno Haible  <bruno@clisp.org>
40488
40489         * gnulib-tool: Make --update option actually work.
40490
40491 2006-04-29  Bruno Haible  <bruno@clisp.org>
40492
40493         * doc/gcd.texi: New file.
40494         * doc/gnulib.texi: Include it.
40495
40496 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
40497
40498         * lib/getdate.y (get_date): When adding relative date, start with the
40499         initial time, not with the result of the first mktime call.
40500
40501 2006-04-25  Bruno Haible  <bruno@clisp.org>
40502
40503         * gnulib-tool (func_import): Output the include directives in three
40504         blocks, sorted separately.
40505         Reported by Ben Pfaff <blp@cs.stanford.edu>.
40506
40507 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
40508
40509         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
40510         to define main with arguments, for C++.  Reported by Eric Blake.
40511         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
40512         Prefer 'int main ()' to 'int main (void)', for C++.
40513         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
40514         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
40515         for 'main', for C99 and C++.
40516
40517 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
40518
40519         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
40520         Don't assume that exit status -1 is valid.
40521         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
40522         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
40523         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
40524         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
40525         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
40526         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
40527         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
40528         functions can be used without declaring them, or that you can
40529         exit with status -1.
40530         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
40531
40532 2006-04-24  Karl Berry  <karl@gnu.org>
40533
40534         * config/srclist.txt (longdouble.m4): sync lost.
40535
40536 2006-04-24  Eric Blake  <ebb9@byu.net>
40537
40538         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
40539
40540 2006-04-24  Bruno Haible  <bruno@clisp.org>
40541
40542         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
40543         poll() implementation in AIX.
40544         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40545
40546 2006-04-24  Bruno Haible  <bruno@clisp.org>
40547
40548         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
40549         assigned exactly once.
40550
40551 2006-04-23  Claudio Fontana  <claudio@gnu.org>
40552             Bruno Haible  <bruno@clisp.org>
40553
40554         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
40555         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
40556         for AM_CPPFLAGS.
40557
40558 2006-04-23  Bruno Haible  <bruno@clisp.org>
40559
40560         * modules/copy-file: Depend on unistd.
40561         * modules/execute: Likewise.
40562         * modules/fatal-signal: Likewise.
40563         * modules/findprog: Likewise.
40564         * modules/mkdtemp : Likewise.
40565         * modules/pipe: Likewise.
40566         * modules/wait-process: Likewise.
40567
40568 2006-04-23  Bruno Haible  <bruno@clisp.org>
40569
40570         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
40571         condition was already detected.
40572         Reported by Ben Pfaff <blp@cs.stanford.edu>.
40573
40574 2006-04-23  Bruno Haible  <bruno@clisp.org>
40575
40576         * lib/copy-file.c: Include <unistd.h> unconditionally.
40577         * lib/execute.c: Likewise.
40578         * lib/fatal-signal.c: Likewise.
40579         * lib/findprog.c: Likewise.
40580         * lib/mkdtemp.c: Likewise.
40581         * lib/pipe.h: Likewise.
40582         * lib/pipe.c: Likewise.
40583         * lib/wait-process.h: Likewise.
40584
40585 2006-04-23  Bruno Haible  <bruno@clisp.org>
40586
40587         * gnulib-tool (func_usage): Fix --import description. Document
40588         --update.
40589         (func_import): Create temporary file in a temporary directory, if
40590         --dry-run is specified. Silence errors from 'grep' when there are no
40591         m4 files in $m4dir.
40592         (func_create_testdir): Silence errors from 'grep' when there are no
40593         m4 files in $m4dir.
40594         Reported by Karl Berry <karl@freefriends.org>.
40595
40596 2006-04-20  Bruno Haible  <bruno@clisp.org>
40597
40598         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
40599         one argument, so that the code will be portable to Autoconf 2.60.
40600         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
40601         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
40602         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
40603
40604 2006-04-19  Derek Price  <derek@ximbiot.com>
40605             Eric Blake  <ebb9@byu.net>
40606
40607         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
40608         rather than "/full/path.h".  Update comment to match.  Shorten &
40609         generalize m4_translit call via AS_TR_CPP.
40610
40611 2006-04-19  Derek Price  <derek@ximbiot.com>
40612             Eric Blake  <ebb9@byu.net>
40613
40614         * lib/inttypes.h: Correct grammar in comment.
40615
40616 2006-04-18  Derek Price  <derek@ximbiot.com>
40617             Paul Eggert  <eggert@cs.ucla.edu>
40618
40619         * modules/inttypes: New file.
40620         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
40621
40622 2006-04-18  Derek Price  <derek@ximbiot.com>
40623             Paul Eggert  <eggert@cs.ucla.edu>
40624
40625         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
40626         New files.
40627
40628 2006-04-18  Derek Price  <derek@ximbiot.com>
40629             Paul Eggert  <eggert@cs.ucla.edu>
40630
40631         * lib/inttypes.h: New file.
40632         * lib/strtoimax.c: Assume <inttypes.h>.
40633
40634 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
40635
40636         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
40637         isn't mounted.  Problem reported by Kir Kolyshkin.
40638
40639 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
40640
40641         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
40642         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
40643         Derek R. Price.
40644         * lib/regex.h (RE_DUP_MAX): Update comment to match current
40645         implementation.
40646
40647 2006-04-12  Eric Blake  <ebb9@byu.net>
40648
40649         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
40650         is now done automatically by the corresponding Autoconf macro.
40651
40652 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
40653
40654         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
40655         time_r.h.
40656
40657 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40658
40659         Merge regex changes from libc, removing some of our
40660         POSIX-conformance changes that were rejected and redoing them in a
40661         less-intrusive way.
40662
40663         * lib/regcomp.c (re_compile_internal, init_dfa):
40664         Length arg is now size_t, not Idx.  All uses changed.
40665         (peek_token): Forward decl now says internal_function.
40666         (__re_error_msgid, __re_error_msgid_idx):
40667         Now static rather than extern with attribute_hidden.
40668         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
40669         For some reason libc prefers K&R style defns for external functions.
40670         (regerror) [!defined _LIBC]: Likewise.
40671         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
40672         (seek_collating_symbol_entry, lookup_collation_sequence_value):
40673         (build_range_exp, build_collating_symbol):
40674         Use K&R-style defn.
40675         (re_compile_fastmap): Use '\0' to memset, not 0.
40676         (utf8_sb_map): Make the calculations more obvious.
40677         (init_dfa, parse_bracket_exp, build_charclass_op):
40678         Call calloc and cast result, as glibc does.
40679         (init_word_char, fetch_token, peek_token, peek_token_bracket):
40680         (build_range_exp, build_collating_symbol):
40681         Now internal functions.
40682
40683         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
40684
40685         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
40686         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
40687         Don't depend on VMS; depend on __VMS instead, for POSIX
40688         namespace cleanness.
40689         (regoff_t): Define to ssize_t, not long int.
40690
40691         Remove the REG_ macros named below.  Instead, make the old names
40692         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
40693         __USE_GNU_REGEX.
40694         (REG_BACKSLASH_ESCAPE_IN_LISTS):
40695         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
40696         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
40697         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
40698         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
40699         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
40700         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
40701         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
40702         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
40703         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
40704         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
40705         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
40706         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
40707         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
40708         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
40709         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
40710         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
40711         (REG_NREGS):
40712         Remove.  All uses replaced by the old RE_* names.
40713         (RE_BACKSLASH_ESCAPE_IN_LISTS):
40714         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
40715         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
40716         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
40717         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
40718         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
40719         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
40720         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
40721         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
40722         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
40723         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
40724         Don't bother having these macros be independent of each others'
40725         values, since they no longer exist in the POSIX name space.
40726
40727         Rename the following member names back to their old names,
40728         unless !__USE_GNU_REGEX.  All uses changed back.
40729         (buffer): Renamed from re_buffer.
40730         (allocated): Renamed from re_allocated.
40731         (used): Renamed from re_used.
40732         (syntax): Renamed from re_syntax.
40733         (fastmap): Renamed from re_fastmap.
40734         (translate): Renamed from re_translate.
40735         (can_be_null): Renamed from re_can_be_null.
40736         (regs_allocated): Renamed from re_regs_allocated.
40737         (fastmap_accurate): Renamed from re_fastmap_accurate.
40738         (no_sub): Renamed from re_no_sub.
40739         (not_bol): Renamed from re_not_bol.
40740         (not_eol): Renamed from re_not_eol.
40741         (newline_anchor): Renamed from re_newline_anchor.
40742         (num_regs): Renamed from rm_num_regs.
40743         (start): Renamed from rm_start.
40744         (end): Renamed from rm_end.
40745
40746         (free_state): Move up a bit.
40747
40748         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
40749         #define to be empty.
40750         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
40751         when that is what is intended.
40752         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
40753         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
40754         (MAX): New macro.
40755         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
40756         All uses changed back to re_malloc, etc.  It's now the caller's
40757         responsibility to check for overflow; all callers changed.
40758         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
40759         (re_x2nrealloc): Remove.
40760         (free_state): Remove decl.
40761
40762         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
40763         (re_set_registers, re_exec):
40764         Use K&R-style defn.
40765
40766         2006-01-31  Roland McGrath  <roland@redhat.com>
40767
40768         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
40769         Reported by Mike Frysinger <vapier@gentoo.org>.
40770
40771         2006-01-15  Andreas Jaeger  <aj@suse.de>
40772
40773         [BZ #1950]
40774         * lib/regex_internal.c (re_string_reconstruct): Adjust for
40775         build_wcs_upper_buffer change.
40776         (build_wcs_upper_buffer): Change return type.
40777
40778         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
40779
40780         * lib/regex_internal.h: Include <stdint.h> if available.
40781
40782         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
40783
40784         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
40785
40786         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
40787
40788         * lib/regcomp.c: Adjust for changed secondary hash function.
40789
40790         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
40791
40792         * lib/regex.h: Pretty printing.
40793         Clean up namespace a bit.
40794
40795         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
40796
40797         * lib/regexec.c (update_cur_sifted_state, check_arrival,
40798         check_arrival_add_next_nodes): Avoid using uninitialized variable.
40799
40800         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
40801                     Ulrich Drepper  <drepper@redhat.com>
40802
40803         [BZ #1302]
40804         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
40805         changed.
40806         (bitset_word_t): Renamed from bitset_word.  All uses changed.
40807
40808         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
40809
40810         [BZ #281]
40811         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
40812         * lib/regcomp.c: Remove unnecessary uses of
40813         unsigned RE_TRANSLATE_TYPE.
40814         * lib/regex_internal.h: Likewise.
40815         * lib/regex_internal.c: Likewise.
40816         * lib/regexec.c: Likewise.
40817         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
40818
40819         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
40820
40821         * lib/regexec.c (find_recover_state): Remove unnecessary
40822         initialization.
40823         (transit_state_bkref): Make DFA a const pointer.
40824         (get_subexp): Likewise.
40825         (check_arrival): Likewise.
40826         (update_cur_sifted_state): Likewise.
40827         (re_search_internal): Likewise.
40828         (prune_impossible_nodes): Likewise.
40829         (acquire_init_state_context): Likewise.
40830         (proceed_next_node): Likewise.
40831         (set_regs): Likewise.
40832         (free_fail_stack_return): Likewise.
40833         (check_arrival_expand_ecl): Mark DFA parameter as const.
40834         (check_arrival_expand_ecl_sub): Likewise.
40835         (check_subexp_limits): Likewise.
40836         (sub_epsilon_src_nodes):  Likewise.
40837         (add_epsilon_src_nodes):  Likewise.
40838         (merge_state_array): Likewise.
40839         (update_regs): Likewise.
40840         (build_trtable): Likewise.
40841         (sift_states_backward): Mark MCTX parameter as const.
40842         (build_sifted_states): Likewise.
40843         (update_cur_sifted_state): Likewise.
40844         (sift_states_mkref): Likewise.
40845         (check_arrival_expand_ecl): Mark eclosure as const.
40846         (check_dst_limits_calc_pos_1): Likewise.
40847         * lib/regex_internal.h (re_match_context_t): Make dfa a const
40848         pointer.
40849
40850         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
40851
40852         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
40853         (transit_state_sb): Likewise.
40854         (transit_state_mb): Likewise.
40855         (sift_states_iter_mb): Likewise.
40856         (check_arrival_add_next_nodes): Likewise.
40857         (check_node_accept_bytes): Change first parameter to pointer-to-const.
40858         [_LIBC] (re_search_2_stub): Use mempcpy.
40859
40860         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
40861         mbrtowc for very simple UTF-8 case.
40862
40863         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
40864         a pointer-to-const.
40865         (re_acquire_state_context): Likewise.
40866         * lib/regex_internal.h: Adjust prototypes.
40867
40868         * lib/regex.c: Prevent using C++ compilers.
40869
40870         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
40871         (re_acquire_state_context): Likewise.
40872
40873 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40874
40875         * modules/regex (Depends-on): Add ssize_t.
40876
40877 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40878
40879         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
40880         translation table.
40881
40882 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40883
40884         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
40885
40886 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
40887             Bruno Haible  <bruno@clisp.org>
40888
40889         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
40890         <sys/types.h> and <inttypes.h>.
40891
40892 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40893
40894         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
40895         `__error_t_defined', so argp.h will not typedef the former.
40896
40897 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
40898
40899         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
40900         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
40901         glibc names.  Even if glibc is changed to conform to POSIX, the
40902         traditional names will be available anyway, since regex depends on
40903         the extensions module.  Also, fix a longstanding typo in the
40904         implementation of Spencer ERE test #75 from grep 2.3.  Problems
40905         reported by Emanuele Giaquinta.  Also, change sense of cached
40906         variable, so that the message makes sense.
40907
40908 2006-03-24  Simon Josefsson  <jas@extundo.com>
40909
40910         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
40911         including some doc fixes.
40912         (base64_encode_alloc): Fix +1 bug on allocation failures.
40913
40914 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40915
40916         * lib/base64.c (base64_encode): Do not read past end of array with
40917         unsanitized input on systems with CHAR_BIT > 8.
40918
40919 2006-03-24  Eric Blake  <ebb9@byu.net>
40920
40921         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
40922
40923 2006-03-22  Karl Berry  <karl@gnu.org>
40924
40925         * config/srclist.txt (*setenv.[ch]): get from coreutils.
40926         * config/srclistvars.sh (COREUTILS): new var.
40927
40928 2006-03-17  Jim Meyering  <jim@meyering.net>
40929
40930         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
40931         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
40932
40933 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
40934
40935         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
40936         no longer needs it.  Instead, check that regoff_t is as least
40937         as wide as ptrdiff_t.
40938
40939         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
40940         so that our regex.h stays compatible with the installed regex.
40941         This is helpful for installers who configure --without-included-regex.
40942         Problem reported by Emanuele Giaquinta.
40943
40944 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
40945
40946         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
40947         Typedef to long int, not to off_, as POSIX will likely change
40948         in that direction.
40949
40950 2006-03-15  Eric Blake  <ebb9@byu.net>
40951
40952         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
40953
40954 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
40955
40956         * lib/argp-help.c (validate_uparams): Fix typo
40957         * lib/argp-parse.c (argp_default_options): Consistently begin help
40958         messages with a lowercase letter.
40959
40960 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
40961
40962         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
40963         overrun buffers and shouldn't be used (much as gets shouldn't be
40964         used).
40965         * lib/time_r.c (asctime_r, ctime_r): Likewise.
40966
40967 2006-03-08  Simon Josefsson  <jas@extundo.com>
40968
40969         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
40970         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40971
40972 2006-03-08  Simon Josefsson  <jas@extundo.com>
40973
40974         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
40975         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40976
40977 2006-03-08  Simon Josefsson  <jas@extundo.com>
40978
40979         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
40980         signal that configure disabled the device.
40981
40982 2006-03-08  Simon Josefsson  <jas@extundo.com>
40983
40984         * build-aux/maint.mk: Fix refresh-po, to handle no translated
40985         languages.
40986
40987 2006-03-07  Simon Josefsson  <jas@extundo.com>
40988
40989         * modules/getopt (Depends-on): Add unistd.
40990
40991         * modules/unistd: New file.
40992
40993 2006-03-07  Simon Josefsson  <jas@extundo.com>
40994
40995         * modules/gc-random: New file.
40996
40997 2006-03-07  Simon Josefsson  <jas@extundo.com>
40998
40999         * m4/unistd_h.m4: New file.
41000
41001 2006-03-07  Simon Josefsson  <jas@extundo.com>
41002
41003         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
41004         test to be side-effect free by storing the result in the cache
41005         variable gl_cv_lib_readline, and moving the assignment of
41006         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
41007         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41008
41009 2006-03-07  Simon Josefsson  <jas@extundo.com>
41010
41011         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
41012         error on missing devices (the functions will return an error).
41013
41014         * m4/gc.m4: Move random stuff to gc-random.m4
41015
41016 2006-03-07  Simon Josefsson  <jas@extundo.com>
41017
41018         * lib/unistd_.h: New file.
41019
41020 2006-03-07  Simon Josefsson  <jas@extundo.com>
41021
41022         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
41023
41024 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
41025
41026         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
41027         Problem reported by Juan Manuel Guerrero.
41028
41029 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
41030
41031         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
41032         the unistd module.
41033         * lib/getlogin_r.c: Likewise.
41034         * lib/getlogin_r.h: Likewise.
41035         * lib/glob.c: Likewise.
41036         * lib/pagealign_alloc.c: Likewise.
41037         * lib/unistd_.h: Remove; no longer needed.
41038
41039 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
41040
41041         * MODULES.html.sh (Support for systems lacking POSIX:2001):
41042         Add unistd.
41043         * modules/c-stack (Depends-on): Add unistd.
41044         * modules/getlogin_r: Likewise.
41045         * modules/glob: Likewise.
41046         * modules/pagealign_alloc: Likewise.
41047         * modules/unistd (Files): Remove lib/unistd_.h.
41048         (EXTRA_DIST): Remove.
41049         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
41050         need unistd_.h.
41051         (MOSTLYCLEANFILES): Remove unistd.h-t.
41052
41053 2006-03-03  Simon Josefsson  <jas@extundo.com>
41054
41055         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
41056
41057 2006-03-03  Simon Josefsson  <jas@extundo.com>
41058
41059         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
41060         libidn and bison.
41061
41062 2006-03-03  Simon Josefsson  <jas@extundo.com>
41063
41064         * build-aux/maint.mk: Add indent target.
41065
41066 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
41067
41068         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
41069         our replacement poll.h in any case, to avoid a differing
41070         declaration from a system header.  Seen on AIX.
41071
41072 2006-03-01  Simon Josefsson  <jas@extundo.com>
41073
41074         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
41075         <kasal@ucw.cz>.
41076
41077 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
41078
41079         * modules/gettime (Depends-on): Add extensions module.
41080         * modules/nanosleep (Depends-on): Likewise.
41081         * modules/settime (Depends-on): Likewise.
41082
41083 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
41084
41085         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
41086         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
41087         pedantically.
41088         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
41089         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
41090
41091         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
41092         not "==".  Reported by Ralf Wildenhues.
41093
41094 2006-03-01  Karl Berry  <karl@gnu.org>
41095
41096         * doc/Copyright/request-*: new files, synced from gnuorg.
41097
41098 2006-03-01  Karl Berry  <karl@gnu.org>
41099
41100         * config/srclist.txt (Copyright/*): new entries.
41101
41102 2006-02-28  Simon Josefsson  <jas@extundo.com>
41103
41104         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
41105
41106 2006-02-27  Simon Josefsson  <jas@extundo.com>
41107
41108         * lib/base64.h: Indent #define's.  From Jim Meyering
41109         <jim@meyering.net>.
41110
41111 2006-02-27  Jim Meyering  <jim@meyering.net>
41112
41113         Revert the change of 2006-02-24, so these files can continue
41114         to be sync'd from gettext.
41115         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
41116         of `config.h'.
41117
41118 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
41119
41120         * modules/intprops: New file.
41121         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
41122         Add intprops.
41123         * modules/getloadavg (Files): Remove lib/intprops.h.
41124         (Depends-on): Add intprops.
41125         * modules/human: Likewise.
41126         * modules/inttostr: Likewise.
41127         * modules/openat: Likewise.
41128         * modules/sig2str: Likewise.
41129         * modules/userspec: Likewise.
41130         * modules/utimecmp: Likewise.
41131         * modules/xnanosleep: Likewise.
41132         * modules/xstrtol: Likewise.
41133
41134 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
41135
41136         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
41137         * modules/lock-tests (TESTS): Use $(EXEEXT).
41138         * modules/tls-tests: Likewise.
41139         * modules/argp-tests: Likewise.
41140         (check_PROGRAMS): New var, replacing...
41141         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
41142
41143 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41144
41145         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
41146         `config.h'.
41147
41148 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
41149
41150         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
41151
41152 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41153
41154         Sync from coreutils.
41155         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
41156         gl_CHDIR_SAFER.
41157
41158 2006-02-22  Jim Meyering  <jim@meyering.net>
41159
41160         Sync from coreutils.
41161         * m4/chdir-safer.m4: New file.
41162
41163 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
41164
41165         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
41166         AT_FDCWD exceeds INT_MAX.
41167         * lib/openat.h (AT_FDCWD): Likewise.
41168
41169 2006-02-17  Eric Blake  <address@hidden>
41170
41171         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
41172
41173 2006-02-16  Simon Josefsson  <jas@extundo.com>
41174
41175         * modules/getaddrinfo (Depends-on): Add sys_socket.
41176
41177 2006-02-15  Simon Josefsson  <jas@extundo.com>
41178
41179         * build-aux/maint.mk: Add dsyntax-check rule.
41180
41181 2006-02-15  Eric Blake  <ebb9@byu.net>
41182
41183         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
41184         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
41185         'present but cannot compile' warnings on cygwin.
41186         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
41187         use ws2tcpip.h if sys/socket.h works.
41188         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
41189         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
41190
41191 2006-02-14  Simon Josefsson  <jas@extundo.com>
41192
41193         * modules/maintainer-makefile (Files): Rename.
41194
41195         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
41196         and (the local) Makefile.cfg to maint-cfg.mk.
41197
41198         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
41199         to the latter.
41200
41201         * modules/maintainer-makefile: New module.
41202
41203         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
41204         severaly stripped to make it possible to build it up from scratch
41205         with reliable tests.
41206
41207         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
41208         fixes to permit overriding the default actions when configure and
41209         makefile are not available.
41210
41211 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
41212
41213         Sync from coreutils.
41214         * modules/lstat (Depends-on): Don't depend on xalloc.
41215         (License): Change from GPL to LGPL, since this is now simply a
41216         replacement for a libc function.
41217
41218 2006-02-14  Jim Meyering  <jim@meyering.net>
41219
41220         Sync from coreutils.
41221
41222         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
41223         failure on deficient systems, and simplify gnulib lgpl dependencies.
41224         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
41225         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
41226
41227         * lib/xalloc-die.c: Remove unused definition of N_.
41228
41229 2006-02-14  Jim Meyering  <jim@meyering.net>
41230
41231         Sync from coreutils.
41232         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
41233         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
41234         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
41235         double-quote uses of that variable, to accommodate the rare case in
41236         which getmntent is available in none of the libraries checked.  This
41237         happens at least on FreeBSD 5.0.
41238
41239 2006-02-13  Simon Josefsson  <jas@extundo.com>
41240
41241         * gnulib-tool (Usage): Fix --import, from
41242         karl@freefriends.org (Karl Berry).
41243
41244 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
41245
41246         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
41247
41248 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
41249
41250         * lib/argp-namefrob.h: Restore changes accidentally lost during the
41251         "autoupdate" on 2005-12-12.
41252
41253 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
41254
41255         * modules/closeout (Depends-on): Remove atexit.
41256
41257 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
41258
41259         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
41260         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
41261
41262 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
41263
41264         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
41265         __EXTENSIONS__ if this causes compilation to fail.  Problem
41266         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
41267         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
41268
41269 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
41270
41271         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
41272         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
41273         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
41274         All uses changed.
41275
41276 2006-01-26  Simon Josefsson  <jas@extundo.com>
41277
41278         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
41279         prototype is visible on mingw32.
41280
41281         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
41282         for mingw32.
41283
41284         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
41285         mingw32).
41286
41287 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
41288
41289         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
41290         attempt to open for write; this always fails, at least on POSIX
41291         hosts.  This reinstates the 2006-01-09 change, which was
41292         inadvertently removed.
41293
41294 2006-01-26  Bruno Haible  <bruno@clisp.org>
41295
41296         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
41297         Reported by Paul Eggert.
41298
41299 2006-01-26  Bruno Haible  <bruno@clisp.org>
41300             Paul Eggert  <eggert@cs.ucla.edu>
41301
41302         * lib/stdbool_.h (_Bool)
41303         [(! (defined __cplusplus || defined __BEOS__)
41304           && !defined __GNUC__
41305           && !(defined __HP_cc || defined __xlc__
41306                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
41307                || defined __sgi))]:
41308         #define to signed char in these cases too; this simplifies
41309         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
41310         etc., separately) and makes it more conservative.
41311
41312 2006-01-25  Simon Josefsson  <jas@extundo.com>
41313
41314         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
41315         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
41316         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
41317
41318 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
41319
41320         * lib/argp-namefrob.h: Bugfix. Remove stray #
41321
41322 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
41323
41324         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
41325         so that we test the test.
41326         Check for yet another HP-UX cc bug involving *bool |= bool.
41327
41328 2006-01-25  Karl Berry  <karl@gnu.org>
41329
41330         * config/srclist.txt (vasnprintf.c): sync lost.
41331
41332 2006-01-25  Jim Meyering  <jim@meyering.net>
41333
41334         Sync from the stable (b5) branch of coreutils:
41335
41336         * lib/fts.c (fts_children): Don't let close() clobber errno from
41337         failed fchdir().
41338
41339         * lib/fts.c (fts_stat): When following a symlink-to-directory,
41340         don't necessarily interpret stat-fails+lstat-succeeds as indicating
41341         a dangling symlink.  That can also happen at least for ELOOP.
41342         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
41343         FYI, this bug predates the inclusion of fts.c in coreutils.
41344
41345         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
41346         in their own block, so pre-c99 compilers don't object.
41347
41348         Avoid the double-free (first in fts_read, second in fts_close) that
41349         would occur when an `active' directory is made inaccessible (e.g.,
41350         via chmod a-x) during a traversal.
41351         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
41352         before returning.  Reproduce this failure by
41353         mkdir -p a/b; cd a; chmod a-x . b
41354         Reported by Stavros Passas.
41355
41356 2006-01-25  Jim Meyering  <jim@meyering.net>
41357
41358         * lib/fileblocks.c: Remove more useless parentheses.
41359         * lib/readutmp.h: Likewise.
41360
41361 2006-01-25  Bruno Haible  <bruno@clisp.org>
41362
41363         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
41364         warnings.
41365         Reported by Paul Eggert.
41366
41367 2006-01-25  Bruno Haible  <bruno@clisp.org>
41368
41369         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
41370         rid of a trap command. For Solaris sh.
41371         Reported by Mark D. Baushke <mdb@gnu.org>.
41372
41373 2006-01-24  Simon Josefsson  <jas@extundo.com>
41374
41375         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
41376         Bruno.
41377
41378 2006-01-24  Karl Berry  <karl@gnu.org>
41379
41380         * config/srclist.txt (argp-namefrob.h): sync lost.
41381
41382 2006-01-24  Jim Meyering  <jim@meyering.net>
41383
41384         * modules/openat (Files): Add lib/intprops.h.
41385         From Mark D. Baushke.
41386
41387 2006-01-24  Jim Meyering  <jim@meyering.net>
41388
41389         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
41390         Reported by Mark D. Baushke.
41391
41392 2006-01-24  Jim Meyering  <jim@meyering.net>
41393
41394         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
41395
41396 2006-01-24  Bruno Haible  <bruno@clisp.org>
41397
41398         * modules/strnlen (Maintainer): Change from glibc to all.
41399
41400 2006-01-24  Bruno Haible  <bruno@clisp.org>
41401
41402         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
41403         Patch by Paul Eggert.
41404
41405 2006-01-24  Bruno Haible  <bruno@clisp.org>
41406
41407         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
41408         already has it.
41409         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
41410         2005-11-26.
41411
41412         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
41413         'signed char' to avoid problems with the built-in _Bool type.
41414         Reported by Paul Eggert on 2005-11-26.
41415
41416 2006-01-24  Bruno Haible  <bruno@clisp.org>
41417
41418         * gnulib-tool (func_import): Avoid constructing complicated sed
41419         expressions inside backquote.
41420         Report and solution by Mark D. Baushke <mdb@gnu.org>.
41421
41422 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
41423
41424         These changes imported from libc.
41425         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
41426         test and two separate function calls.
41427         * lib/strndup.c (__strndup): Add libc_hidden_def.
41428
41429 2006-01-23  Simon Josefsson  <jas@extundo.com>
41430
41431         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
41432         Remove the test_*_SOURCES variable: automake infers it by default.
41433         * modules/tls-tests: Likewise.
41434
41435 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41436
41437         Work around porting bugs reported by Dieter in
41438         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
41439         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
41440         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
41441         Include "getopt.h" first, to check interface.
41442         (getenv): Declare only if defined HAVE_DECL_GETENV &&
41443         !HAVE_DECL_GETENV.
41444         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
41445         (__strndup): Revert to K&R-style function dfns, the glibc style.
41446         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
41447         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
41448         Include strnlen.h first, to get prototype properly.
41449         (strnlen): Renamed from __strnlen.
41450         Remove weak alias.
41451
41452 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41453
41454         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
41455
41456 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41457
41458         * config/srclist.txt: Adjust to reflect glibc reorganization.
41459         This affects only comments.
41460
41461 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
41462
41463          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
41464          Reported by Bruce Korb <bkorb@gnu.org>.
41465
41466 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
41467
41468         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
41469         to pacify gcc -Wswitch-default.
41470
41471 2006-01-22  Bruno Haible  <bruno@clisp.org>
41472
41473         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
41474         temporary buffer for sprintf, take into account the precision also
41475         for 'd', 'i', 'u', 'o', 'x', 'X'.
41476
41477 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
41478
41479         * modules/argp-tests: New module
41480         * tests/test-argp.c: New file
41481         * tests/test-argp-2.sh: New file
41482
41483 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
41484
41485         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
41486         (__argp_base_name): Removed
41487         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
41488         typo.
41489         (__argp_base_name): Provide macro definition or extern declaration
41490         depending on the configuration
41491
41492 2006-01-20  Simon Josefsson  <jas@extundo.com>
41493
41494         * modules/inet_ntop (Depends-on): Depend on sys_socket.
41495
41496 2006-01-20  Simon Josefsson  <jas@extundo.com>
41497
41498         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
41499
41500 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
41501
41502         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
41503         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
41504         Suggested by Bruno Haible.
41505
41506 2006-01-20  Karl Berry  <karl@gnu.org>
41507
41508         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
41509         until changes propagate, I guess.
41510
41511 2006-01-19  Simon Josefsson  <jas@extundo.com>
41512
41513         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
41514
41515 2006-01-19  Simon Josefsson  <jas@extundo.com>
41516
41517         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
41518
41519 2006-01-19  Simon Josefsson  <jas@extundo.com>
41520
41521         * gnulib-tool: Set check_PROGRAMS.
41522
41523         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
41524         modules/des-tests, modules/gc-arcfour-tests,
41525         modules/gc-arctwo-tests, modules/gc-des-tests,
41526         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
41527         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
41528         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
41529         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
41530         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
41531         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
41532         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
41533         test_*_SOURCES.
41534
41535 2006-01-18  Simon Josefsson  <jas@extundo.com>
41536
41537         * modules/socklen (Depends-on): Depend on sys_socket.
41538
41539 2006-01-18  Simon Josefsson  <jas@extundo.com>
41540
41541         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
41542         modules/des-tests, modules/gc-arcfour-tests,
41543         modules/gc-arctwo-tests, modules/gc-des-tests,
41544         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
41545         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
41546         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
41547         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
41548         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
41549         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
41550         $(EXEEXT) to automake TESTS variable, for mingw32.
41551
41552 2006-01-17  Simon Josefsson  <jas@extundo.com>
41553
41554         * modules/socklen (Include): Need sys/socket.h.
41555
41556 2006-01-17  Bruno Haible  <bruno@clisp.org>
41557
41558         * modules/ssize_t (Include): Add <sys/types.h>.
41559
41560 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
41561
41562         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
41563         it's not portable and it doesn't work with cross-compiles.
41564         Problem reported by Bruno Haible.  Fix missing-$ typo in
41565         'test "gl_cv_ignore_unused_libraries" ...' that prevented
41566         -zignore from being used with Sun's C compiler.
41567
41568 2006-01-12  Simon Josefsson  <jas@extundo.com>
41569
41570         * lib/base64.c: Fix warning, reported by Bruno Haible
41571         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
41572
41573 2006-01-12  Bruno Haible  <bruno@clisp.org>
41574
41575         * modules/ldd: New file.
41576         * build-aux/ldd.sh.in: New file.
41577         * MODULES.html.sh (Support for building libraries and executables): Add
41578         ldd.
41579
41580 2006-01-12  Bruno Haible  <bruno@clisp.org>
41581
41582         * m4/ldd.m4: New file.
41583
41584 2006-01-12  Bruno Haible  <bruno@clisp.org>
41585
41586         * gnulib-tool (func_import, func_create_testdir): Don't go into an
41587         endless loop while replacing $auxdir with build-aux.
41588
41589 2006-01-11  Simon Josefsson  <jas@extundo.com>
41590
41591         * lib/stdint_.h (SIZE_MAX): Add missing (.
41592
41593 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
41594
41595         Sync from coreutils.
41596         * lib/md5.c: Fix commentary typos.
41597         (alignof, UNALIGNED_P): No need for a GCC-specific version.
41598         * lib/md5.h (__attribute__): Remove; unused.
41599         * lib/sha1.c: Fix commentary to match md5 better.
41600         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
41601         so that we don't need to worry about alignment.  All uses changed.
41602         This merges the 2005-10-28 md5 change into sha1.
41603
41604 2006-01-11  Jim Meyering  <jim@meyering.net>
41605
41606         Sync from coreutils.
41607         * lib/md5.c (OP): Fix spacing.
41608
41609 2006-01-11  Bruno Haible  <bruno@clisp.org>
41610
41611         Ensure automatic ordering between gl_LOCK and gl_ARGP.
41612         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
41613         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
41614
41615 2006-01-11  Bruno Haible  <bruno@clisp.org>
41616
41617         Ensure automatic ordering between gl_LOCK and gl_ARGP.
41618         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
41619         the "early" section as well.
41620
41621 2006-01-11  Bruno Haible  <bruno@clisp.org>
41622
41623         Avoid "ar: no archive members specified" error on MacOS X.
41624         * gnulib-tool (func_modules_add_dummy): New function.
41625         (func_import, func_create_testdir): Invoke it.
41626
41627 2006-01-11  Bruno Haible  <bruno@clisp.org>
41628
41629         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
41630         with $auxdir in AC_CONFIG_FILES statements.
41631
41632 2006-01-11  Bruno Haible  <bruno@clisp.org>
41633
41634         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
41635         Initialize also noinst_HEADERS to empty.
41636
41637 2006-01-11  Bruno Haible  <bruno@clisp.org>
41638
41639         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
41640         variables.
41641         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
41642         autoreconf.
41643
41644 2006-01-11  Bruno Haible  <bruno@clisp.org>
41645
41646         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
41647         overridable by the user.
41648         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41649
41650 2006-01-10  Simon Josefsson  <jas@extundo.com>
41651
41652         * modules/sys_socket: New file.
41653
41654 2006-01-10  Simon Josefsson  <jas@extundo.com>
41655
41656         * m4/sys_socket_h.m4: New file.
41657
41658 2006-01-10  Simon Josefsson  <jas@extundo.com>
41659
41660         * lib/socket_.h: New file.
41661
41662 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41663
41664         * modules/readutmp (Maintainer): Add myself.
41665
41666 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41667
41668         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
41669         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
41670         People who are still concerned with buggy memcmp implementations
41671         can invoke gl_FUNC_MEMCMP themselves.
41672
41673 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41674
41675         * lib/regex_internal.h (BITSET_WORD_BITS):
41676         Work around a bug in 64-bit PGC (before version 6.1-2), where the
41677         preprocessor mishandles large unsigned values as if they were signed.
41678         Problem reported by Claudio Fontana in
41679         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
41680
41681 2006-01-10  Jim Meyering  <jim@meyering.net>
41682
41683         Avoid the double-free (first in fts_read, second in fts_close) that
41684         would occur when an `active' directory is made inaccessible (e.g.,
41685         via chmod a-x) during a traversal.
41686         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
41687         before returning.  Reproduce this failure by
41688         mkdir -p a/b; cd a; chmod a-x . b
41689         Reported by Stavros Passas.
41690
41691         Sync from coreutils.
41692         * lib/sha1.c: Tweak grammar in a comment.
41693
41694 2006-01-10  Jim Meyering  <jim@meyering.net>
41695
41696         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
41697         Patch by Joerg Sonnenberger.
41698
41699 2006-01-10  Bruno Haible  <bruno@clisp.org>
41700
41701         * modules/readutmp: Depend on module free.
41702         * modules/strtok_r: Depend on module restrict.
41703
41704 2006-01-10  Bruno Haible  <bruno@clisp.org>
41705
41706         * modules/gettext (configure.ac): Add an invocation of
41707         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
41708
41709 2006-01-10  Bruno Haible  <bruno@clisp.org>
41710
41711         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
41712         Reported by Werner Lemberg <wl@gnu.org>.
41713
41714 2006-01-10  Bruno Haible  <bruno@clisp.org>
41715
41716         * lib/localcharset.c: Update from GNU gettext.
41717
41718 2006-01-10  Bruno Haible  <bruno@clisp.org>
41719
41720         * lib/argp.h (__const): Remove macro. Use const instead.
41721         * lib/argp-fmtstream.h (__const): Likewise.
41722         * lib/glob_.h (__const): Remove macro.
41723         * lib/glob-libc.h: Use const instead of __const.
41724
41725 2006-01-10  Bruno Haible  <bruno@clisp.org>
41726
41727         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
41728         variable.
41729         Needed to avoid an automake error regarding the 'gettext' module.
41730
41731 2006-01-09  Simon Josefsson  <jas@extundo.com>
41732
41733         * modules/inet_ntop (Depends-on): Add restrict.
41734
41735 2006-01-09  Simon Josefsson  <jas@extundo.com>
41736
41737         * modules/gc-rijndael-tests (License): Put under LGPL.
41738
41739         * modules/gc-des-tests (License): Likewise.
41740
41741         * modules/gc-arcfour-tests (License): Likewise.
41742
41743         * modules/gc-arctwo-tests (License): Likewise.
41744
41745         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
41746
41747         * modules/gc-hmac-sha1-tests (Files): Likewise.
41748
41749         * modules/gc-hmac-md5-tests (License): Likewise.
41750
41751         * modules/gc-sha1-tests (License): Likewise.
41752
41753         * modules/gc-md5-tests (License): Likewise.
41754
41755         * modules/gc-md4-tests (License): Likewise.
41756
41757         * modules/gc-md2-tests (License): Likewise.
41758
41759         * modules/gc-tests (License): Likewise.
41760
41761         * modules/des-tests (License): Likewise.
41762
41763         * modules/md4-tests (License): Likewise.
41764
41765         * modules/md2-tests (License): Likewise.
41766
41767 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41768
41769         Sync from coreutils:
41770
41771         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
41772         * modules/lib-ignore: New file.
41773         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
41774         chdir-safer.m4, lchmod.m4.
41775         * modules/openat: Add mkdirat.c, openat-priv.h.
41776
41777 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41778
41779         Sync from coreutils.
41780         * m4/lib-ignore.m4: New file.
41781         * m4/lchmod.m4: New file.
41782
41783 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41784
41785         Sync from coreutils.
41786         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
41787         for write access: POSIX says that must fail.
41788         * lib/fts.c (diropen): Likewise.
41789         * lib/save-cwd.c (save_cwd): Likewise.
41790         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
41791         well, for minor improvements on hosts that lack O_DIRECTORY.
41792         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
41793         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
41794         Fall back on chown if open failed with EACCES.
41795
41796         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
41797         Report an error at compile-time if only a 1-second nominal clock
41798         resolution is found.
41799
41800         * lib/lchmod.h: New file.
41801         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
41802         (make_dir_parents): Use lchown rather than chown, and
41803         lchmod rather than chmod.
41804
41805         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
41806         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
41807         "proc" reported by n0dalus.
41808
41809         * lib/mountlist.c: Include <limits.h>.
41810         (dev_from_mount_options)
41811         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
41812         New function.  It no longer assumes "dev=" has the System V meaning
41813         on Linux (since it doesn't).  It also parses "dev=" more carefully.
41814         (read_file_system_list)
41815         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
41816         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
41817         dev= in that case.
41818
41819         * lib/posixtm.h (PDS_PRE_2000): New macro.
41820         * lib/posixtm.c (year): Arg is now syntax_bits rather than
41821         allow_century.  All usages changed.  Reject dates outside the range
41822         1969-1999 if PDS_PRE_2000 is used.
41823
41824 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41825
41826         Sync from coreutils.
41827         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
41828         (Time of day items): Mention the possibility of leap seconds.
41829         Problem reported by Dr. David Alan Gilbert.
41830
41831 2006-01-09  Jim Meyering  <jim@meyering.net>
41832
41833         Sync from coreutils.
41834
41835         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
41836
41837         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
41838
41839         * lib/modechange.c (mode_compile): Reject an invalid mode string
41840         that starts with an octal digit.  From Andreas Gruenbacher.
41841
41842         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
41843         and dup to open_safer and dup_safer, respectively.
41844         (openat_permissive): Fix typo in comment.
41845
41846         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
41847         "gettext.h"; either no longer needed or are guaranteed by openat.h.
41848         (_): Remove; no longer needed.
41849         (openat): Renamed from rpl_openat; no need for rpl_openat
41850         since openat.h renames openat for us.
41851         Replace most of the body with a call to openat_permissive,
41852         to avoid duplicate code.
41853         Port to (probably hypothetical) environments were mode_t is
41854         wider than int.
41855         (openat_permissive): Require mode arg, so that we can check
41856         types better.  Put it just after flags.  Change cwd failure
41857         indicator from pointer-to-bool to pointer-to-errno-value.
41858         All callers changed.
41859         Invoke openat_save_fail and/or openat_restore_fail if
41860         cwd_errno is null, so that openat can call us.
41861         (openat_permissive, fdopendir, fstatat, unlinkat):
41862         Simplify errno handling to avoid some duplicate code,
41863         as it's OK to set errno on success.
41864         * lib/openat.h: Revamp code so that function macros depend on
41865         __OPENAT_PREFIX only, not also on AT_FDCWD.
41866         (openat_ro): Remove.  Caller changed to use openat_permissive.
41867         (openat_permissive): Now a macro, if not a function.
41868         (openat_restore_fail, openat_save_fail): Now always functions,
41869         since mkdirat needs them even if __OPENAT_PREFIX is defined.
41870
41871         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
41872         and openat.c.
41873         * lib/mkdirat.c: Include openat-priv.h.
41874         Remove definitions of macros defined therein.
41875         * lib/openat.c: Likewise.
41876
41877         * lib/mkdirat.c (mkdirat): New file and function.
41878         * lib/openat.h (mkdirat): Declare.
41879
41880         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
41881
41882         * lib/openat.h (openat_permissive): Declare.
41883         (openat_ro): Define.
41884
41885         * lib/openat.c (EXPECTED_ERRNO): New macro.
41886         (openat_permissive): New function -- used in remove.c rewrite.
41887         (all functions): Set errno just before returning, only if there
41888         was an actual failure.
41889         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
41890
41891         Emulate openat-family functions using Linux's procfs, if possible.
41892         Idea and some code based on Ulrich Drepper's glibc changes.
41893
41894         * lib/openat.c: (BUILD_PROC_NAME): New macro.
41895         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
41896         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
41897         before falling back on save_cwd and restore_cwd.
41898         (fdopendir, fstatat, unlinkat): Likewise.
41899
41900         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
41901         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
41902
41903         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
41904         as second argument to va_arg.  Otherwise, some versions of gcc
41905         warn that `if this code is reached, the program will abort'.
41906
41907 2006-01-09  Jim Meyering  <jim@meyering.net>
41908
41909         Sync from coreutils.
41910         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
41911         Require openat-priv.h.
41912
41913 2006-01-09  Bruno Haible  <bruno@clisp.org>
41914
41915         * modules/strnlen (Include): Use strnlen.h.
41916
41917 2006-01-09  Bruno Haible  <bruno@clisp.org>
41918
41919         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
41920
41921 2006-01-09  Bruno Haible  <bruno@clisp.org>
41922
41923         * lib/sysexit_.h (EX_OK): New macro.
41924         Suggested by Martin Lambers <marlam@marlam.de>.
41925
41926 2006-01-09  Bruno Haible  <bruno@clisp.org>
41927
41928         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
41929         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
41930
41931 2006-01-09  Bruno Haible  <bruno@clisp.org>
41932
41933         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
41934         numbers.
41935
41936 2006-01-09  Bruno Haible  <bruno@clisp.org>
41937
41938         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
41939         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
41940         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
41941         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
41942
41943 2006-01-09  Bruno Haible  <bruno@clisp.org>
41944
41945         * build-aux/javacomp.sh.in: New file, moved from lib/.
41946         * modules/javacomp-script (Files): Update.
41947         (configure.ac): Add AC_CONFIG_FILES invocation.
41948         (EXTRA_DIST): Remove variable.
41949
41950         * build-aux/javaexec.sh.in: New file, moved from lib/.
41951         * modules/javaexec (Files): Update.
41952         (configure.ac): Add AC_CONFIG_FILES invocation.
41953         (EXTRA_DIST): Remove javaexec.sh.in.
41954
41955         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
41956         * modules/csharpcomp-script (Files): Update.
41957         (configure.ac): Add AC_CONFIG_FILES invocation.
41958         (EXTRA_DIST): Remove variable.
41959
41960         * build-aux/csharpexec.sh.in: New file, moved from lib/.
41961         * modules/csharpexec (Files): Update.
41962         (configure.ac): Add AC_CONFIG_FILES invocation.
41963         (EXTRA_DIST): Remove csharpexec.sh.in.
41964
41965 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
41966
41967         Sync from coreutils.
41968
41969         Add POSIX ACL support
41970         * lib/acl.h (copy_acl, set_acl): Add declarations.
41971         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
41972         systems other than Linux.
41973         (chmod_or_fchmod): New function: use fchmod when possible,
41974         and chmod otherwise.
41975         (file_has_acl): Add a POSIX ACL implementation, with a
41976         Linux-specific subcase.
41977         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
41978         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
41979         acls are unsupported.
41980         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
41981         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
41982         are unsupported.
41983
41984 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
41985
41986         Sync from coreutils.
41987         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
41988
41989 2006-01-07  Bruno Haible  <bruno@clisp.org>
41990
41991         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
41992         gl_EARLY.
41993
41994 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
41995
41996         * lib/strftime.c (tzname): Don't declare if it is already #defined.
41997         Problem reported for Mingw by Mark Junker.
41998
41999 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
42000
42001         * README: Gnulib normally doesn't generate a tarball.
42002
42003 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
42004
42005         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
42006         long int, not int, for nanosecond counts, so that people who are
42007         used to POSIX struct timespec won't be surprised.  Reported by Jim
42008         Meyering.
42009
42010 2005-12-28  Bruno Haible  <bruno@clisp.org>
42011
42012         * build-aux/config.rpath: Update from GNU gettext.
42013
42014 2005-12-16  Jim Meyering  <jim@meyering.net>
42015
42016         * modules/fprintftime: New module.
42017         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
42018
42019 2005-12-16  Jim Meyering  <jim@meyering.net>
42020
42021         * m4/fprintftime.m4: New file.
42022
42023 2005-12-16  Jim Meyering  <jim@meyering.net>
42024
42025         * lib/fprintftime.c, lib/fprintftime.h: New files.
42026
42027 2005-12-15  Simon Josefsson  <jas@extundo.com>
42028
42029         * modules/socklen (configure.ac): Fix M4 macro name, to align with
42030         new m4/socklen.m4.
42031
42032 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
42033
42034         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
42035         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
42036
42037 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
42038
42039         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
42040         * lib/argp-help.c (fill_in_uparams): Check if the constructed
42041         struct uparams is valid. Fall back to the default values if it is
42042         not.
42043
42044 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42045
42046         * modules/argp (Files): Add argp-pin.c
42047         (Depends-on): dirname
42048         (lib_SOURCES): Add argp-pin.c
42049
42050 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42051
42052         * m4/argp.m4:  Check if program_invocation_name and
42053         program_invocation_short_name are declared and define appropriate
42054         macros if they are not.
42055
42056 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42057
42058         * lib/argp-help.c (__argp_base_name): New function
42059         (__argp_short_program_name): Rewrite using __argp_base_name
42060         * lib/argp-namefrob.h: Define program_invocation_name and
42061         program_invocation_short_name if requested
42062         (__argp_base_name): Add prototype
42063         * lib/argp-parse.c (argp_def): Use gettext wrappers
42064         (argp_default_parser): Use __argp_base_name
42065         * lib/argp-pin.c: New file. Defines program_invocation_name and
42066         program_invocation_short_name on systems that lack them.
42067
42068 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
42069
42070         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
42071         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
42072         porting problem reported by Georg Schwarz in
42073         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
42074
42075 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
42076
42077         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
42078         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
42079         porting problem reported by Georg Schwarz in
42080         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
42081
42082 2005-12-05  Bruno Haible  <bruno@clisp.org>
42083
42084         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
42085         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
42086         Reported by Mark Junker <mjscod@gmx.de>.
42087
42088 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
42089
42090         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
42091         Use implementation from Albert Chin, with some
42092         comments/corrections by Stepan Kasal and myself.
42093
42094 2005-12-02  Bruno Haible  <bruno@clisp.org>
42095
42096         * gnulib-tool (func_import): Accept GPLed build tool modules when
42097         --lgpl is given.
42098         * modules/csharpcomp-script: New file.
42099         * modules/csharpcomp: Depend on it.
42100         * modules/javacomp-script: New file.
42101         * modules/javacomp: Depend on it.
42102         Suggested by Simon Josefsson.
42103
42104 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
42105
42106         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
42107         statement, to work around an HP-UX 10.20 compiler bug reported by
42108         Peter O'Gorman.
42109
42110 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
42111
42112         * modules/savedir (Depends-on): Add openat.
42113
42114 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
42115
42116         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
42117         (uintmax_t) [defined uintmax_t]: Do not declare.
42118         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
42119         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
42120         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
42121         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
42122         sake of portability to weird hosts that C allows (though we don't
42123         know of any practical examples).
42124
42125         * lib/savedir.h (fdsavedir): New decl.
42126         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
42127         contains most of the former guts of savedir.
42128         (savedir): Use savedirstream.
42129         Include "openat.h".
42130
42131 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
42132
42133         * modules/obstack (Files): Add m4/ulonglong.m4.
42134         Problem reported by Davide Angelocola.
42135
42136 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
42137
42138         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
42139         coreutils no longer futzes with rounding modes.
42140
42141 2005-11-14  Jim Meyering  <jim@meyering.net>
42142
42143         * lib/mkstemp-safer.c: Include <config.h>, required for possible
42144         replacement of mkstemp.
42145
42146 2005-11-10  Simon Josefsson  <jas@extundo.com>
42147
42148         * lib/readline.c: Remove EOL.
42149
42150 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42151
42152         * modules/gethrxtime (Depends-on): Add gettime.
42153
42154 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42155
42156         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
42157         or gettimeofday; no longer needed.
42158
42159 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42160
42161         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
42162         time business.
42163         (gethrxtime) [! (HAVE_NANOUPTIME
42164         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
42165         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
42166         our own approximation.
42167
42168 2005-11-08  Eric Blake  <ebb9@byu.net>
42169
42170         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
42171
42172 2005-11-08  Eric Blake  <ebb9@byu.net>
42173
42174         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
42175
42176 2005-11-04  Bruno Haible  <bruno@clisp.org>
42177
42178         * gnulib-tool: Implement --update mode.
42179
42180 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42181
42182         Fix porting problem reported by Theodoros V. Kalamatianos.
42183         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
42184         Don't assume that futimes failing means we must fail.
42185
42186 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42187
42188         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
42189         variables to suggest the intended function of the PATH_MAX check.
42190
42191 2005-10-30  Kean Johnston  <jkj@sco.com>
42192
42193         Trivial changes to support SCO systems.
42194         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
42195         as PATH_MAX.
42196         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
42197         where __ptr is null when no I/O is pending.
42198
42199 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
42200
42201         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
42202         leave errno alone.  Problem reported by Dmitry V. Levin.
42203
42204 2005-10-28  Simon Josefsson  <jas@extundo.com>
42205
42206         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
42207         Test more.
42208
42209         * tests/test-gc-md2.c, tests/test-md2.c: New files.
42210
42211         * modules/md2, modules/md2-tests: New files.
42212
42213 2005-10-28  Simon Josefsson  <jas@extundo.com>
42214
42215         * m4/inet_ntop.m4: More tests.
42216
42217         * m4/gc-md2.m4, md2.m4: New file.
42218
42219 2005-10-28  Simon Josefsson  <jas@extundo.com>
42220
42221         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
42222         "restrict" keywords, as per POSIX.  Protect the function
42223         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
42224         Don't use K&R prototypes.  Check the sprintf return values.
42225         Re-define EAFNOSUPPORT if not present.  Indent.
42226
42227         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
42228         suggested by Bruno Haible <bruno@clisp.org>.
42229
42230         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
42231
42232         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
42233
42234         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
42235         libgcrypt).
42236
42237         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
42238
42239         * lib/md2.h, lib/md2.c: New files.
42240
42241 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
42242
42243         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
42244         errno alone.  Problem reported by Frederic Jolliton.
42245
42246 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
42247
42248         * modules/verify (License): Change from GPL to LGPL.  This is a
42249         tiny module and there are apparently near-equivalents that are
42250         under the BSD license.
42251
42252 2005-10-24  Simon Josefsson  <jas@extundo.com>
42253
42254         * modules/sha1: Relicense to LGPL.
42255
42256 2005-10-24  Simon Josefsson  <jas@extundo.com>
42257
42258         * lib/md4.h: Shrink buffer size, now that we changed the type.
42259
42260 2005-10-23  Simon Josefsson  <jas@extundo.com>
42261
42262         * gnulib-tool (func_import): Fix --tests-base.
42263
42264 2005-10-22  Simon Josefsson  <jas@extundo.com>
42265
42266         * modules/arcfour (Depends-on): Need stdint.
42267
42268 2005-10-22  Simon Josefsson  <jas@extundo.com>
42269
42270         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
42271         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
42272
42273 2005-10-22  Simon Josefsson  <jas@extundo.com>
42274
42275         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
42276         suggested by Bruno Haible <bruno@clisp.org>.
42277
42278 2005-10-22  Simon Josefsson  <jas@extundo.com>
42279
42280         * lib/crc.h: Include stddef.h, for size_t.
42281
42282 2005-10-22  Simon Josefsson  <jas@extundo.com>
42283
42284         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
42285         arcfour_context struct (simplify test vector testing in GNU
42286         Shishi).
42287
42288 2005-10-21  Simon Josefsson  <jas@extundo.com>
42289
42290         * modules/des, modules/des-tests: New files.
42291
42292         * modules/gc-des, modules/gc-des-tests: New files.
42293
42294         * tests/test-des.c, tests/test-gc-des.c: New file.
42295
42296 2005-10-21  Simon Josefsson  <jas@extundo.com>
42297
42298         * modules/arctwo, modules/arctwo-tests: New files.
42299
42300         * tests/test-arctwo.c: New file.
42301
42302         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
42303
42304         * tests/test-gc-arctwo.c: New file.
42305
42306 2005-10-21  Simon Josefsson  <jas@extundo.com>
42307
42308         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
42309         Bruno Haible <bruno@clisp.org>.
42310
42311         * m4/gc-des.m4: New file.
42312
42313 2005-10-21  Simon Josefsson  <jas@extundo.com>
42314
42315         * m4/arctwo.m4: New file.
42316
42317         * m4/gc-arctwo.m4: New file.
42318
42319 2005-10-21  Simon Josefsson  <jas@extundo.com>
42320
42321         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
42322         block.
42323
42324 2005-10-21  Simon Josefsson  <jas@extundo.com>
42325
42326         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
42327         <bruno@clisp.org>.
42328
42329         * lib/hmac-sha1.c (hmac_sha1): Likewise.
42330
42331         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
42332         Bruno Haible <bruno@clisp.org>.
42333
42334         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
42335         <bruno@clisp.org>.
42336
42337 2005-10-21  Simon Josefsson  <jas@extundo.com>
42338
42339         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
42340
42341 2005-10-21  Simon Josefsson  <jas@extundo.com>
42342
42343         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
42344
42345 2005-10-21  Simon Josefsson  <jas@extundo.com>
42346
42347         * lib/des.h, lib/des.c: New files.
42348
42349         * lib/gc-gnulib.c: Support DES.c
42350
42351 2005-10-21  Simon Josefsson  <jas@extundo.com>
42352
42353         * lib/arctwo.h, lib/arctwo.c: New files.
42354
42355         * lib/gc-gnulib.c: Support ARCTWO.
42356
42357 2005-10-21  Simon Josefsson  <jas@extundo.com>
42358
42359         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
42360         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
42361
42362 2005-10-21  Simon Josefsson  <jas@extundo.com>
42363
42364         * gnulib-tool (func_import, func_create_testdir): Define automake
42365         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
42366         Makefile.am snippet),
42367         suggested by Bruno Haible <bruno@clisp.org>.
42368
42369         * modules/gc (Makefile.am): Use it.
42370
42371 2005-10-21  Bruno Haible  <bruno@clisp.org>
42372
42373         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
42374         patch.
42375
42376 2005-10-19  Simon Josefsson  <jas@extundo.com>
42377
42378         * tests/test-gc-rijndael.c: New file.
42379
42380         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
42381
42382 2005-10-19  Simon Josefsson  <jas@extundo.com>
42383
42384         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
42385         interface too.
42386
42387 2005-10-19  Simon Josefsson  <jas@extundo.com>
42388
42389         * tests/test-gc-arcfour.c: New file.
42390
42391         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
42392
42393 2005-10-19  Simon Josefsson  <jas@extundo.com>
42394
42395         * modules/gc-md4, modules/gc-md4-tests: New file.
42396
42397         * tests/test-gc-md4.c: New file.
42398
42399 2005-10-19  Simon Josefsson  <jas@extundo.com>
42400
42401         * m4/gc-md4.m4: New file.
42402
42403 2005-10-19  Simon Josefsson  <jas@extundo.com>
42404
42405         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
42406         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
42407         <kasal@ucw.cz>.
42408
42409 2005-10-19  Simon Josefsson  <jas@extundo.com>
42410
42411         * m4/gc-arcfour.m4: New file.
42412
42413         * m4/gc-rijndael.m4: New file.
42414
42415 2005-10-19  Simon Josefsson  <jas@extundo.com>
42416
42417         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
42418
42419 2005-10-19  Simon Josefsson  <jas@extundo.com>
42420
42421         * lib/gc-gnulib.c: Support ARCFOUR.
42422
42423 2005-10-19  Simon Josefsson  <jas@extundo.com>
42424
42425         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
42426         support.
42427
42428         * lib/gc.h: Add ECB enum type.
42429
42430         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
42431
42432 2005-10-18  Simon Josefsson  <jas@extundo.com>
42433
42434         * tests/test-md5.c: New file.
42435
42436         * modules/md5-tests: New file.
42437
42438 2005-10-18  Simon Josefsson  <jas@extundo.com>
42439
42440         * tests/test-md4.c: New file.
42441
42442         * modules/md4, modules/md4-tests: New files.
42443
42444 2005-10-18  Simon Josefsson  <jas@extundo.com>
42445
42446         * m4/md4.m4: New file.
42447
42448 2005-10-18  Simon Josefsson  <jas@extundo.com>
42449
42450         * lib/md4.h, lib/md4.c: New files, based on md5.?.
42451
42452 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
42453
42454         * gnulib-tool (func_create_testdir): Omit the second check whether
42455         BUILT_SOURCES in nonempty.
42456
42457 2005-10-17  Simon Josefsson  <jas@extundo.com>
42458
42459         * tests/test-rijndael.c: New file.
42460
42461 2005-10-17  Simon Josefsson  <jas@extundo.com>
42462
42463         * modules/sha1: Depend on stdint instead of md5.
42464
42465         * modules/md5: Depend on stdint, remove uint32_t.
42466
42467 2005-10-17  Simon Josefsson  <jas@extundo.com>
42468
42469         * modules/gc-sha1-tests: New file.
42470
42471         * tests/test-gc-sha1.c: New file.
42472
42473 2005-10-17  Simon Josefsson  <jas@extundo.com>
42474
42475         * m4/md5.m4: Remove call to uint32_t.m4.
42476
42477 2005-10-17  Simon Josefsson  <jas@extundo.com>
42478
42479         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
42480
42481         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
42482         md5.h.
42483
42484         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
42485
42486         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
42487
42488 2005-10-17  Simon Josefsson  <jas@extundo.com>
42489
42490         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
42491
42492 2005-10-17  Simon Josefsson  <jas@extundo.com>
42493
42494         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
42495
42496 2005-10-17  Simon Josefsson  <jas@extundo.com>
42497
42498         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
42499
42500         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
42501
42502 2005-10-17  Bruno Haible  <bruno@clisp.org>
42503
42504         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
42505         that it can also be used in a test.
42506
42507 2005-10-16  Bruno Haible  <bruno@clisp.org>
42508
42509         * gnulib-tool (func_emit_tests_Makefile_am): Also define
42510         TESTS_ENVIRONMENT, so that individual tests can augment it.
42511
42512         * gnulib-tool (func_create_testdir): Use an intermediate target for
42513         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
42514         macros, like $(ALLOCA_H), which cannot be passed through the command
42515         line.
42516
42517 2005-10-15  Simon Josefsson  <jas@extundo.com>
42518
42519         * modules/rijndael-tests: New file.
42520
42521         * modules/rijndael: New file.
42522
42523 2005-10-15  Simon Josefsson  <jas@extundo.com>
42524
42525         * m4/rijndael.m4: New file.
42526
42527 2005-10-15  Simon Josefsson  <jas@extundo.com>
42528
42529         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
42530
42531         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
42532
42533 2005-10-14  Simon Josefsson  <jas@extundo.com>
42534
42535         * tests/test-arcfour.c: New file.
42536
42537         * modules/arcfour, modules/arcfour-tests: New files.
42538
42539 2005-10-14  Simon Josefsson  <jas@extundo.com>
42540
42541         * m4/arcfour.m4: New file.
42542
42543 2005-10-14  Simon Josefsson  <jas@extundo.com>
42544
42545         * lib/arcfour.h, lib/arcfour.c: New files.
42546
42547 2005-10-14  Roland McGrath  <roland@redhat.com>
42548
42549         Import from libc.  [BZ #1331]
42550         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
42551         macro argument.
42552         Reported by Matej Vela <vela@debian.org>.
42553
42554 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42555
42556         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
42557         include <wchar.h>; no longer needed.
42558
42559 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42560
42561         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
42562
42563 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
42564         and  Ulrich Drepper  <drepper@redhat.com>
42565
42566         Import from libc.
42567         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
42568         instead of inline stream orientation test and two separate
42569         function calls.  Pay no attention to USE_IN_LIBIO.
42570
42571 2005-10-13  Simon Josefsson  <jas@extundo.com>
42572
42573         * modules/gc-hmac-md5-tests: New file.
42574
42575         * tests/test-gc-hmac-sha1.c: New file.
42576
42577         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
42578
42579         * modules/gc-hmac-md5-tests: New file.
42580
42581         * tests/test-gc-md5.c: New file.
42582
42583         * modules/gc-md5-tests: New file.
42584
42585 2005-10-13  Simon Josefsson  <jas@extundo.com>
42586
42587         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
42588         Move memory allocation outside of loop.
42589
42590 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
42591
42592         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
42593         intermediate directory is in a read-only file system.  Problem
42594         reported by Eric Blake.
42595
42596 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
42597
42598         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
42599
42600 2005-10-12  Simon Josefsson  <jas@extundo.com>
42601
42602         * tests/test-hmac-sha1.c: New file.
42603
42604         * modules/hmac-sha1-tests: New file.
42605
42606         * modules/hmac-sha1: New file.
42607
42608 2005-10-12  Simon Josefsson  <jas@extundo.com>
42609
42610         * modules/gc-sha1: New file.
42611
42612 2005-10-12  Simon Josefsson  <jas@extundo.com>
42613
42614         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
42615
42616         * tests/test-gc-pbkdf2-sha1.c: New file.
42617
42618 2005-10-12  Simon Josefsson  <jas@extundo.com>
42619
42620         * modules/gc-md5, modules/gc-hmac-md5: New files.
42621
42622         * modules/gc (Files): Remove md5, memxor and hmac files.
42623
42624 2005-10-12  Simon Josefsson  <jas@extundo.com>
42625
42626         * m4/gc-pbkdf2-sha1.m4: New file.
42627
42628         * m4/gc-hmac-sha1.m4: New file.
42629
42630         * m4/gc-sha1: New file.
42631
42632         * m4/hmac-sha1.m4: New file.
42633
42634 2005-10-12  Simon Josefsson  <jas@extundo.com>
42635
42636         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
42637
42638         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
42639
42640 2005-10-12  Simon Josefsson  <jas@extundo.com>
42641
42642         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
42643         suggested by Bruno Haible <bruno@clisp.org>.
42644
42645 2005-10-12  Simon Josefsson  <jas@extundo.com>
42646
42647         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
42648
42649 2005-10-12  Simon Josefsson  <jas@extundo.com>
42650
42651         * lib/gc-pbkdf2-sha1.c: New file.
42652
42653         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
42654
42655 2005-10-12  Simon Josefsson  <jas@extundo.com>
42656
42657         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
42658
42659         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
42660
42661 2005-10-12  Simon Josefsson  <jas@extundo.com>
42662
42663         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
42664         GC_USE_HMAC_MD5, respectively.
42665
42666         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
42667         (gc_md5): Fix typo.
42668
42669         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
42670
42671         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
42672
42673         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
42674
42675 2005-10-12  Bruno Haible  <bruno@clisp.org>
42676
42677         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
42678         Reported by Stepan Kasal <kasal@ucw.cz>.
42679
42680 2005-10-11  Simon Josefsson  <jas@extundo.com>
42681
42682         * tests/test-crc.c: New file.
42683
42684         * modules/crc, modules/crc-tests: New files.
42685
42686 2005-10-11  Simon Josefsson  <jas@extundo.com>
42687
42688         * m4/crc.m4: New file.
42689
42690 2005-10-11  Simon Josefsson  <jas@extundo.com>
42691
42692         * lib/gc.h: Add gc_hash and gc_hash_buffer.
42693
42694         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
42695
42696         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
42697
42698 2005-10-11  Simon Josefsson  <jas@extundo.com>
42699
42700         * lib/crc.h, lib/crc.c: New files.
42701
42702         * lib/gc.h (gc_hash_buffer): Add doc.
42703
42704 2005-10-11  Bruno Haible  <bruno@clisp.org>
42705
42706         * modules/c-strcasestr: New file.
42707         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
42708
42709 2005-10-11  Bruno Haible  <bruno@clisp.org>
42710
42711         * modules/c-strcase: New file.
42712         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
42713
42714 2005-10-11  Bruno Haible  <bruno@clisp.org>
42715
42716         * lib/strcasecmp.c: Include limits.h.
42717         (strcasecmp): Avoid integer overflow on exotic platforms.
42718         * lib/strncasecmp.c: Include limits.h.
42719         (strncasecmp): Avoid integer overflow on exotic platforms.
42720         Reported by Paul Eggert.
42721
42722 2005-10-11  Bruno Haible  <bruno@clisp.org>
42723
42724         * lib/c-strcasestr.h: New file, from GNU gettext.
42725         * lib/c-strcasestr.c: New file, from GNU gettext.
42726
42727 2005-10-11  Bruno Haible  <bruno@clisp.org>
42728
42729         * lib/c-strcase.h: New file, from GNU gettext.
42730         * lib/c-strcasecmp.c: New file, from GNU gettext.
42731         * lib/c-strncasecmp.c: New file, from GNU gettext.
42732
42733 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
42734
42735         * modules/mempcpy (License): GPL -> LGPL.
42736         * modules/strchrnul (License): Likewise.
42737         * modules/sysexits (License): Likewise.
42738
42739 2005-10-08  Simon Josefsson  <jas@extundo.com>
42740
42741         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
42742
42743 2005-10-07  Simon Josefsson  <jas@extundo.com>
42744
42745         * m4/memxor.m4: Remove gl_C_RESTRICT call.
42746
42747 2005-10-06  Simon Josefsson  <jas@extundo.com>
42748
42749         * tests/test-hmac-md5.c: New file.
42750
42751         * modules/hmac-md5-tests: New file.
42752
42753         * modules/hmac-md5: New file.
42754
42755 2005-10-06  Simon Josefsson  <jas@extundo.com>
42756
42757         * m4/hmac-md5.m4: New file.
42758
42759         * m4/memxor.m4: Require gl_C_RESTRICT.
42760
42761 2005-10-06  Simon Josefsson  <jas@extundo.com>
42762
42763         * lib/memxor.c (memxor): Avoid casts and warnings.
42764
42765 2005-10-06  Simon Josefsson  <jas@extundo.com>
42766
42767         * lib/hmac-md5.c: New file.
42768
42769         * lib/hmac.h: New file.
42770
42771 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
42772
42773         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
42774         promotes to int, not unsigned int, to catch the AIX 5.3
42775         compiler bug.
42776
42777 2005-10-05  Simon Josefsson  <jas@extundo.com>
42778
42779         * modules/memxor: New file.
42780
42781         * modules/iconv (Files): Move config.rpath to havelib, it is used
42782         there.
42783
42784         * modules/havelib (Files): Add config.rpath.
42785
42786 2005-10-05  Simon Josefsson  <jas@extundo.com>
42787
42788         * m4/memxor.m4: New file.
42789
42790 2005-10-05  Simon Josefsson  <jas@extundo.com>
42791
42792         * lib/memxor.c (memxor): Fix compiler error.
42793
42794         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
42795         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
42796
42797         * lib/memxor.h, lib/memxor.c: New files.
42798
42799         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
42800         we assume all systems have it, suggested by Jim Meyering
42801         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
42802         any systems lack sys/socket.h; mingw32 is known to lack it, but we
42803         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
42804         same reasons.
42805
42806 2005-10-05  Simon Josefsson  <jas@extundo.com>
42807
42808         * config/srclist.txt: Add glibc bug 1423 for md5.h.
42809
42810 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
42811
42812         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
42813         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
42814         needed, since the source code now assumes these .h files.
42815
42816 2005-10-05  Derek Price  <derek@ximbiot.com>
42817
42818         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
42819
42820 2005-10-05  Bruno Haible  <bruno@clisp.org>
42821
42822         * modules/stdint (License): Change to LGPL.
42823
42824 2005-10-04  Simon Josefsson  <jas@extundo.com>
42825
42826         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
42827         D. Baushke" <mdb@gnu.org>.
42828
42829 2005-10-04  Bruno Haible  <bruno@clisp.org>
42830
42831         * lib/verify.h (verify_true): Provide alternative definition for C++.
42832
42833 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
42834
42835         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
42836         (SSIZE_MAX): New macro, if not already defined.
42837         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
42838         than 2 GiB.
42839
42840 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42841
42842         Sync from coreutils.
42843         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
42844         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
42845         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
42846         ULLONG_MAX doesn't work with 2.7.2.1.
42847
42848 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42849
42850         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
42851         From Ben Pfaff.
42852
42853         * modules/exclude (Depends-on): Depend on verify.
42854         * modules/strtoimax (Depends-on): Likewise.
42855         * modules/utimecmp (Depends-on): Likewise.
42856
42857 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42858
42859         * lib/exclude.c: Include verify.h.
42860         (verify): Remove.  All callers changed to use verify.h's version.
42861         * lib/strtoimax.c: Likewise.
42862         * lib/utimecmp.c: Likewis.e
42863
42864         Sync from coreutils.
42865         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
42866         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
42867         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
42868         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
42869         bother returning ENOSYS if settimeofday or stime fails; just let
42870         them return whatever errno they want to return.
42871         * lib/utimens.c: Include unistd.h, for dup2.
42872         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
42873         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
42874
42875 2005-10-02  Jim Meyering  <jim@meyering.net>
42876
42877         Sync from coreutils.
42878         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
42879         from glibc-2.2.5 that fails for read-only files.
42880
42881 2005-10-02  Jim Meyering  <jim@meyering.net>
42882
42883         Sync from coreutils.
42884         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
42885         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
42886         `#if HAVE_CONFIG_H'.
42887         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
42888         Remove AT_FDCWD test.
42889         Do not consume the fd unless successful.
42890         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
42891         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
42892         block, so that we don't even try to compile it if settimeofday is
42893         available.  This works around a compilation failure on OSF1 V5.1,
42894         due to stime requiring a `long int*' while tv_sec is `int'.
42895
42896 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
42897
42898         Sync from coreutils.
42899         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
42900         against `yes', rather than just testing for nonempty.
42901
42902 2005-10-01  Simon Josefsson  <jas@extundo.com>
42903
42904         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
42905         and Darwin.
42906
42907         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
42908         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
42909         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
42910         freeaddrinfo and gai_strerror are declared by the POSIX headers.
42911         Check if struct addrinfo is declared.
42912
42913 2005-10-01  Simon Josefsson  <jas@extundo.com>
42914
42915         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
42916         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
42917         AI_* and EAI_* definitions.  Protect function declarations.
42918
42919 2005-10-01  Jim Meyering  <jim@meyering.net>
42920
42921         Sync from coreutils.
42922
42923         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
42924         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
42925         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
42926         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
42927         in the inet and nsl libraries.  Required on Solaris 5.7.
42928
42929 2005-10-01  Jim Meyering  <jim@meyering.net>
42930
42931         Sync from coreutils.
42932         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
42933         in the inet and nsl libraries.  Required on Solaris 5.7.
42934
42935 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
42936
42937         * lib/getdelim.c (getdelim): Remove unused variables.
42938
42939 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
42940
42941         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
42942         so that the code works even with ancient cpp.  Portability problem
42943         with GCC 2.7.2.1 reported by Thomas M.Ott.
42944
42945 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
42946
42947         * modules/regex (Depends-on): Add strcase.
42948
42949         * modules/gethostname (Licence): Change from GPL to LGPL, since
42950         gethostname.c is a trivial implementation of a standard library
42951         function.
42952         * modules/poll (License): Change from GPL to LGPL, since it's
42953         derived from LGPL code.
42954
42955 2005-09-27  Jim Meyering  <jim@meyering.net>
42956
42957         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
42958         HAVE_CONFIG_H.
42959
42960         * lib/intprops.h (signed_type_or_expr__): Define.
42961         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
42962         for unsigned types.
42963
42964 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
42965
42966         * lib/verify.h (verify_expr): Remove, replacing with:
42967         (verify_true): New macro that returns true instead of void.
42968         (verify_type__): Remove.
42969         (verify): Use verify_true rather than verify_type__.
42970
42971 2005-09-26  Bruno Haible  <bruno@clisp.org>
42972
42973         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
42974         is necessary.
42975         (lib_SOURCES): Remove mbchar.c.
42976         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
42977         (Files): Add m4/mbrtowc.m4.
42978         * modules/mbiter: Likewise.
42979         * modules/mbuiter: Likewise.
42980
42981 2005-09-26  Bruno Haible  <bruno@clisp.org>
42982
42983         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
42984         compile mbchar.c if they are not both present.
42985         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
42986         * m4/mbiter.m4 (gl_MBITER): Likewise.
42987         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
42988         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
42989         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
42990
42991 2005-09-25  Jim Meyering  <jim@meyering.net>
42992
42993         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
42994         also uses socklen_t.
42995
42996 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
42997
42998         * lib/utimens.c (ENOSYS): Define if not already defined.
42999         (futimens): Support having a null PATH if the file descriptor
43000         is nonnegative.
43001
43002         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
43003         Remove.
43004         (__attribute): Define to empty unless GCC 3.1 or later.
43005         This works around a core dump on OpenBSD 3.4, which has GCC
43006         2.95.3, which dumps core when given __attribute__(()).  It also
43007         simplifies other tests, since we really don't want to bother with
43008         worrying about which ancient version of GCC supported what.
43009         Original problem reported by Yoann Vandoorselaere, with part of
43010         the fix suggested by Derek Price.
43011
43012 2005-09-24  Jim Meyering  <jim@meyering.net>
43013
43014         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
43015         so we can once again use a positive bitfield width of 1 -- now we
43016         don't have to explain why we were using a bitfield width of 2.
43017
43018 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
43019
43020         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
43021         and similarly for the other external symbols.  Problem reported
43022         by James Gallager.
43023
43024         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
43025         bug reported by Jim Meyering.
43026
43027         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
43028         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
43029         not needed, since socklen is a prerequisite module.
43030
43031 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
43032
43033         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
43034         Problem reported by Eric Blake.
43035         (getaddrinfo): Initialize se so that it's not garbage.
43036         Redo internal storage allocation so that it doesn't make unportable
43037         assumptions about alignment.
43038         Fix a memory leak.
43039
43040         * lib/utimens.c (futimens): Use futimesat if available.
43041         Prefer it to futimes since it doesn't have the futimes bug.
43042
43043         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
43044         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
43045         Instead, declare a function that returns a pointer to an array,
43046         and use verify_type__ to declare the size of the array.
43047         Problem and germ of a solution reported by Bruno Haible.
43048         (verify_type__): Use 2, not 1, for bitfield size, to avoid
43049         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
43050
43051 2005-09-23  Jim Meyering  <jim@meyering.net>
43052
43053         Sync from coreutils.
43054         Correct build failure (socklen_t not defined) on at least
43055         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
43056         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
43057
43058 2005-09-23  Jim Meyering  <jim@meyering.net>
43059
43060         * modules/getaddrinfo (Depends-on): Add socklen.
43061
43062 2005-09-23  Bruno Haible  <bruno@clisp.org>
43063
43064         * tests/test-verify.c: New file.
43065
43066 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43067
43068         Sync from coreutils.
43069
43070         * modules/argmatch (Depends-on): Add verify.
43071         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
43072         unistd-safer.
43073         * modules/save-cwd (Depends-on): Likewise.
43074
43075         * modules/openat (Files): Add lib/openat-die.c.
43076         (Depends-on): Remove error, exitfail.
43077         Add dirname.
43078
43079         * modules/verify: New file.
43080         * MODULES.html.sh (Diagnostics <assert.h>): New section,
43081         with "verify" module.
43082
43083 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43084
43085         Sync from coreutils.
43086
43087         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
43088         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
43089         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
43090         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
43091         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
43092         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
43093         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
43094         Don't bother checking for string.h, stdlib.h, unistd.h.
43095         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
43096         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
43097         module's job.
43098         * m4/jm-macros.m4 (gl_MACROS): Likewise.
43099         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
43100
43101         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
43102         (gl_GETDATE): Use it.
43103
43104         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
43105
43106 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43107
43108         Sync from coreutils.
43109
43110         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
43111         stat-time.h.
43112         * lib/argmatch.h: Include verify.h
43113         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
43114         (ARGMATCH_ASSERT): Remove; unused.
43115         * lib/canonicalize.c: Assume STDC_HEADERS.
43116         * lib/exclude.c: Include "strcase.h".
43117         * lib/regex_internal.h [!defined _LIBC]: Likewise.
43118         * lib/getusershell.c: Include stdio--.h rather than stdio.h
43119         and stdio-safer.h.
43120         (getusershell): Call fopen, not fopen_safer.
43121         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
43122         Do not include unistd-safer.h.
43123         (save_cwd): Don't call fd_safer; no longer needed
43124         now that we include fcntl--.h.
43125
43126         * lib/getdate.y (relative_time): New type.
43127         (RELATIVE_TIME_0): New constant.
43128         (parser_control): Use relative_time instead of doing it ourselves.
43129         (%union): Add new relative_time rel member.
43130         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
43131         Now typeless.
43132         (relunit, relunit_snumber): Now of type rel.
43133         (zone, rel, relunit, get_date): Adjust to above changes.
43134
43135         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
43136         Do not include unistd-safer.h.
43137         (getloadavg): Don't call fd_safer; no longer needed
43138         now that we include fcntl--.h.
43139
43140         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
43141         (make_dir_parents): Treat ENOSYS like EEXIST.
43142
43143         Improve quality of diagnostics on restore_cwd failure.
43144         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
43145         (make_dir_parents): Last arg is now int * (for errno), not bool *.
43146         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
43147         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
43148         each time through the loop.  Do not diagnose restore_cwd failure;
43149         that is the caller's job (and perhaps the caller does not care).
43150
43151         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
43152         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
43153         If the file already exists but is not a directory, don't bother
43154         to try to make its parents.
43155         Close potential file descriptor leak if we can't chdir("/") (!).
43156         Don't always return true if chdir($PWD) fails; return true only
43157         if the requested action was done successfully (except for the
43158         chdir($PWD)).
43159         Don't log final directory unless we actually made it.
43160         Refactor to avoid duplicate code to fix up permissions.
43161         Don't attempt to fix up parent permissions if chdir($PWD) fails.
43162
43163         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
43164         to make it a bit faster and (I hope) clearer.
43165         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
43166         Fix bug in formats like %2N.
43167
43168         * lib/verify.h: New file.
43169
43170 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43171
43172         Sync from coreutils.
43173         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
43174
43175 2005-09-22  Jim Meyering  <jim@meyering.net>
43176
43177         Sync from coreutils.
43178
43179         * m4/lstat.m4 (gl_FUNC_LSTAT):
43180         Use AC_LIBSOURCES to require lstat.c and lstat.h.
43181         Remove obsolete comment.
43182         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
43183         * m4/xstrtod.m4: Likewise.
43184
43185         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
43186
43187 2005-09-22  Jim Meyering  <jim@meyering.net>
43188
43189         Sync from coreutils.
43190
43191         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
43192
43193         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
43194         the .tm_year member, since otherwise gcc-4.0 would now warn about
43195         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
43196
43197         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
43198         order to avoid an unsuppressible warning from gcc on 64-bit systems.
43199
43200         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
43201         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
43202         when run in a time zone for which daylight savings time is in effect
43203         for the starting date.
43204
43205         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
43206         stop us from restricting permissions of just-created absolute-named
43207         directories.
43208         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
43209         to restore initial working directory.
43210         * lib/mkdir-p.c (make_dir_parents): New parameter:
43211         different_working_dir, to tell caller if/when we change the working
43212         directory and are unable to return to the initial one.
43213         * lib/mkdir-p.h (make_dir_parents): Update prototype.
43214         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
43215         `return false'.  This fixes a bug introduced on 2004-07-30.
43216
43217         * lib/openat.c (fdopendir): Be sure to close the supplied
43218         file descriptor before returning.  This makes our replacement
43219         implementation a little closer to Solaris's, where fdopendir
43220         ties the file descriptor to the returned DIR* pointer.
43221         * lib/openat.c (unlinkat): New function.
43222         * lib/openat.h (unlinkat): Add prototype.
43223         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
43224         (openat_restore_fail): Rename from openat_restore_die.
43225         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
43226
43227         Provide an alternative to exiting immediately upon save_cwd or
43228         restore_cwd failure.  Now, an application can arrange e.g.,
43229         to perform a longjump in that case.
43230         * lib/openat.c: Include dirname.h.
43231         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
43232         (rpl_openat, fdopendir, fstatat): Call openat_save_die
43233         and openat_restore_die rather than calling error directly.
43234         Don't include "error.h" or "exitfail.h"; they're no longer needed.
43235
43236         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
43237         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
43238         define.
43239
43240         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
43241         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
43242                             int utc, int nanoseconds);
43243         Background:
43244         date should not have to allocate a megabyte of virtual memory to
43245         handle a format argument like +%1048575T.  When implemented with
43246         strftime, it must allocate such a buffer, use strftime to fill it
43247         in, print it, then free it.
43248         With fprintftime, it simply prints everything and exits.
43249         With no need for memory allocation, that's one fewer way to fail.
43250         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
43251         optional field width, not before, so we accept %9:z, not %:9z.
43252         (my_strftime): Be sure to use L_('x') for literals.
43253
43254         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
43255         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
43256         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
43257         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
43258         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
43259         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
43260         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
43261         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
43262         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
43263         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
43264         * lib/xgethostname.c, lib/xreadlink.c:
43265         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
43266
43267         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
43268         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
43269         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
43270         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
43271         and don't include <sys/file.h>).
43272
43273 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
43274
43275         Sync from coreutils.
43276
43277         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
43278         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
43279         [!LDAV_DONE]: Avoid unused variable warning.
43280
43281 2005-09-21  Bruno Haible  <bruno@clisp.org>
43282
43283         * lib/unicodeio.h (unicode_to_mb): New declaration.
43284
43285 2005-09-20  Derek Price  <derek@ximbiot.com>
43286
43287         * lib/getaddrinfo.c: Don't include <netdb.h> included from
43288         getaddrinfo.h.
43289
43290 2005-09-20  Bruno Haible  <bruno@clisp.org>
43291
43292         * gnulib-tool: Remove trailing slashes from the values specified for
43293         --source-base, --m4-base, --tests-base, --aux-dir.
43294         Suggested by Simon Josefsson <jas@extundo.com>.
43295
43296 2005-09-20  Bruno Haible  <bruno@clisp.org>
43297
43298         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
43299         func_modules_to_filelist, func_import, func_create_testdir): Make all
43300         sorting results locale-independent, so that gnulib-cache.m4 doesn't
43301         change when gnulib-tool is invoked in a different locale.
43302
43303 2005-09-19  Simon Josefsson  <jas@extundo.com>
43304
43305         * m4/socklen.m4: Fix typo.
43306
43307 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43308
43309         Use a consistent style for including <config.h>.
43310         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
43311         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
43312         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
43313         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
43314         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
43315         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
43316         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
43317         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
43318         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
43319         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
43320         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
43321         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
43322         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
43323         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
43324         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
43325         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
43326         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
43327         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
43328         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
43329         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
43330         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
43331         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
43332         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
43333         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
43334         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
43335         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
43336         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
43337         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
43338         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
43339         lib/xstrtoumax.c, lib/yesno.c:
43340         Standardize inclusion of config.h.
43341         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
43342         lib/inttostr.h:  Removed inclusion of config.h from header files.
43343         * lib/inttostr.c:  Adjusted in-tree users.
43344         * lib/timespec.h: Remove superfluous warning to include config.h.
43345         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
43346         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
43347         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
43348         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
43349         config.h with HAVE_CONFIG_H.
43350
43351 2005-09-19  Jim Meyering  <jim@meyering.net>
43352
43353         * modules/pathmax (License): Change to LGPL.
43354
43355 2005-09-19  Derek Price  <derek@ximbiot.com>
43356
43357         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
43358
43359 2005-09-19  Bruno Haible  <bruno@clisp.org>
43360
43361         * gnulib-tool (import): Provide default for --tests-base.
43362
43363 2005-09-19  Bruno Haible  <bruno@clisp.org>
43364
43365         * doc/quote.texi: New file, extracted from gnulib.texi.
43366         * doc/ctime.texi: New file, extracted from gnulib.texi.
43367         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
43368         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
43369         * doc/gnulib.texi: Include them.
43370
43371 2005-09-18  Bruno Haible  <bruno@clisp.org>
43372
43373         Portability fix.
43374         * gnulib-tool (func_readlink): New function.
43375         (func_ln_if_changed): Use it.
43376
43377 2005-09-18  Bruno Haible  <bruno@clisp.org>
43378
43379         * gnulib-tool: Support --with-tests also with --import.
43380         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
43381         (func_import): Use variables $testsbase and $inctests. Emit a
43382         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
43383         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
43384         SUBDIRS += $testsdir.
43385         (func_create_testdir): Update.
43386
43387 2005-09-18  Bruno Haible  <bruno@clisp.org>
43388
43389         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
43390         instead of $dry_run.
43391         (func_cp_if_changed, func_mv_if_changed): Remove functions.
43392         (func_ln_if_changed): Don't handle dry-run here.
43393         (func_import): In dry-run mode, detect more precisely which actions
43394         would be performed, and don't use "...ing" verbs.
43395
43396 2005-09-18  Bruno Haible  <bruno@clisp.org>
43397
43398         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
43399         (func_import): Use join on two temporary files instead of three nested
43400         loops, in order to determine which files are new or old.
43401
43402 2005-09-18  Bruno Haible  <bruno@clisp.org>
43403
43404         * gnulib-tool (func_import): Comment out code that spits out the
43405         new files with --dry-run.
43406
43407 2005-09-18  Bruno Haible  <bruno@clisp.org>
43408
43409         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
43410
43411 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43412
43413         * lib/stat-time.h: New file.
43414         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
43415         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
43416         in a different way.
43417         (timespec_cmp): New function.
43418         * lib/utimecmp.c: Include stat-time.h.
43419         (SYSCALL_RESOLUTION): Depend on whether various struct stat
43420         members exist, not on the obsolescent ST_MTIM_NSEC.
43421         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
43422
43423 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43424
43425         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
43426
43427 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43428
43429         * MODULES.html.sh (File system functions): Add stat-time.
43430         * modules/stat-time: New file.
43431         * modules/timespec (Files): Remove m4/st_mtim.m4; this
43432         is now done in a different way, by the stat-time module.
43433         * modules/utimecmp (Depends-on): Add stat-time.
43434
43435 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43436
43437         * m4/st_mtim.m4: Remove.  Superseded by...
43438         * m4/stat-time.m4: New file.
43439         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
43440         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
43441
43442 2005-09-15  Derek Price  <derek@ximbiot.com>
43443
43444         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
43445
43446 2005-09-15  Derek Price  <derek@ximbiot.com>
43447
43448         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
43449         * lib/regex_internal.c: Ditto, using this...
43450         (__GNUC_PREREQ): ...new macro.
43451         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
43452         using...
43453         (__GNUC_PREREQ): ...this new macro.
43454
43455         * lib/strstr.h: Include string.h. Define strstr as a macro here.
43456
43457 2005-09-15  Derek Price  <derek@ximbiot.com>
43458             Paul Eggert  <eggert@cs.ucla.edu>
43459
43460         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
43461         changes, consolidating in...
43462         * lib/regex_internal.h: ...this file.
43463
43464 2005-09-13  Jim Meyering  <jim@meyering.net>
43465
43466         * lib/canon-host.c: Filter through gnu indent and reword comments
43467         slightly.
43468         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
43469
43470 2005-09-13  Derek Price  <derek@ximbiot.com>
43471
43472         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
43473         failure.
43474         Reported by Jim Meyering  <jim@meyering.net>.
43475
43476 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
43477
43478         * lib/base64.c: Typo.
43479         (base64_encode): Put b64str in initialized data section.
43480
43481 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
43482
43483         Merge glibc and coreutils changes into gnulib, plus a few
43484         extra fixes.
43485         * lib/md5.c: Use #error rather than a string.
43486         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
43487         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
43488         (__attribute__): Define to empty for non recent-GCC.
43489         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
43490         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
43491         Renamed from their non-__ counterparts, with new macros replacing
43492         them if not _LIBC.  Add __THROW attribute.
43493         (rol): Remove.
43494         (struct md5_ctx): Align buffer if using GCC.
43495         * lib/sha1.h (struct sha1_ctx): Likewise.
43496         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
43497         The old name was backwards.
43498         (NOTSWAP): Remove; not used.
43499         (rol): New macro, moved here from md5.h.
43500         (sha1_process_block): Remove a FIXME that doesn't make sense.
43501
43502 2005-09-12  Derek Price  <derek@ximbiot.com>
43503
43504         Return usable errors from canon-host.
43505         * lib/canon-host.h: New file.
43506         * lib/canon-host.c (canon_host): Wrap...
43507         (canon_host_r): ...this new function, which now relies exclusively on
43508         getaddrinfo.
43509         (ch_strerror): New function.
43510         (last_cherror): New global.
43511         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
43512         interface.
43513         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
43514         void *.
43515         (freeaddrinfo): Free ai->ai_canonname when set.
43516
43517 2005-09-12  Derek Price  <derek@ximbiot.com>
43518
43519         Make canon-host require getaddrinfo.
43520         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
43521         AC_LIBSOURCE canon-host.h.  Call...
43522         (gl_PREREQ_CANON_HOST): ...this new function, which requires
43523         gl_GETADDRINFO.
43524         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
43525
43526 2005-09-12  Derek Price  <derek@ximbiot.com>
43527
43528         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
43529         LGPL.
43530         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
43531
43532 2005-09-12  Derek Price  <derek@ximbiot.com>
43533
43534         * lib/gai_strerror.c: Include config.h when available.  Include
43535         getaddrinfo.h before other headers to test interface.
43536         Reported by Larry Jones <lawrence.jones@ugs.com>.
43537
43538 2005-09-12  Derek Price  <derek@ximbiot.com>
43539             Paul Eggert  <eggert@cs.ucla.edu>
43540
43541         * modules/glob (Files): Add glob-libc.h.
43542
43543 2005-09-12  Derek Price  <derek@ximbiot.com>
43544             Paul Eggert  <eggert@cs.ucla.edu>
43545
43546         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
43547         glob_.h, glob-libc.h.
43548         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
43549
43550 2005-09-12  Derek Price  <derek@ximbiot.com>
43551             Paul Eggert  <eggert@cs.ucla.edu>
43552
43553         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
43554         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
43555         protecting things that should be done only in gnulib contexts.
43556         * lib/glob_.h: New file, containing only the glob things needed for
43557         gnulib.
43558         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
43559         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
43560         (glob, globfree, glob_pattern_p): Now defined simply in terms of
43561         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
43562         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
43563         and to respect the namespace rules better.
43564
43565 2005-09-08  Simon Josefsson  <jas@extundo.com>
43566
43567         * modules/socklen: New file.
43568
43569 2005-09-08  Simon Josefsson  <jas@extundo.com>
43570
43571         * m4/socklen.m4: New file.
43572
43573 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43574
43575         * modules/utimens (Files): Add m4/utimbuf.m4, since
43576         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
43577         Reported by Sergey Poznyakoff.
43578
43579 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43580
43581         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
43582         definitions, since that's the preferred style in glibc.
43583         Fix a minor spacing issue, and update copyright notice to match
43584         glibc's.
43585
43586 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43587
43588         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
43589
43590 2005-09-06  Simon Josefsson  <jas@extundo.com>
43591
43592         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
43593         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
43594
43595 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43596
43597         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
43598         warning.
43599
43600 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43601
43602         * config/srclist.txt: Add glibc bug 1302.
43603
43604 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
43605
43606         Change bitset word type from unsigned int to unsigned long int,
43607         as this has better performance on typical 64-bit hosts.
43608         Port bitset code to hosts with unusual word sizes.
43609         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
43610         (build_collating_symbol):
43611         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
43612         argument is a bitset.  This is merely a style issue, but it makes
43613         it clearer that an entire array is expected.
43614         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
43615         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
43616         Port to the case where bitset_word is not the same as unsigned int.
43617         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
43618         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
43619         Likewise.
43620         * lib/regexec.c (check_dst_limits_calc_pos_1,
43621         check_subexp_matching_top):
43622         (build_trtable, group_nodes_into_DFAstates):
43623         Likewise.
43624         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
43625         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
43626         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
43627         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
43628         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
43629         * lib/regcomp.c (optimize_subexps, lower_subexp):
43630         Work even if bitset_word has holes in its bitwise representation.
43631         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
43632         * lib/regexec.c (check_dst_limits_calc_pos_1,
43633         check_subexp_matching_top):
43634         Likewise.
43635         * lib/regex_internal.c (re_string_reconstruct):
43636         Don't assume UCHAR_MAX == 255.
43637         * lib/regex_internal.h (bitset_set_all): Likewise.
43638         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
43639         All uses changed.
43640         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
43641         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
43642         All uses changed.
43643         (BITSET_WORD_MAX): New macro.
43644         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
43645         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
43646         (bitset_empty, bitset_copy):
43647         Prefer sizeof (bitset) to multiplying it out ourselves.
43648         (bitset_not_merge): Remove; unused.
43649         (bitset_contain): Return bool, not unsigned int with one bit on.
43650         All callers changed.
43651         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
43652         alignment than re_node_set; do this by defining a new internal
43653         type struct dests_alloc and using it to allocate memory.
43654
43655 2005-09-05  Bruno Haible  <bruno@clisp.org>
43656
43657         * gnulib-tool (func_import): Fix comparison in handling of symbolic
43658         links.
43659
43660 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
43661
43662         * modules/size_max (Makefile.am): Add size_max.h
43663
43664 2005-09-04  Derek Price  <derek@ximbiot.com>
43665
43666         * gnulib-tool (func_import): Fix reversed $symbolic logic.
43667
43668 2005-09-03  Simon Josefsson  <jas@extundo.com>
43669
43670         * gnulib-tool: Fix typo.
43671
43672 2005-09-03  Simon Josefsson  <jas@extundo.com>
43673
43674         * config/srclist.txt: Add glibc bug 1293.
43675
43676 2005-09-03  Derek Price  <derek@ximbiot.com>
43677
43678         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
43679         From Larry Jones <lawrence.jones@ugs.com>.
43680
43681 2005-09-02  Simon Josefsson  <jas@extundo.com>
43682
43683         * modules/socklen: New file.
43684
43685 2005-09-02  Simon Josefsson  <jas@extundo.com>
43686
43687         * modules/havelib: New module.
43688
43689         * modules/gettext, modules/iconv, modules/lock, modules/readline:
43690         Use havelib.
43691
43692 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
43693
43694         Check for arithmetic overflow when calculating sizes, to prevent
43695         some buffer-overflow issues.  These patches are conservative, in the
43696         sense that when I couldn't determine whether an overflow was possible,
43697         I inserted a run-time check.
43698         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
43699         macros.
43700         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
43701         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
43702         (re_xnrealloc, re_x2nrealloc): New inline functions.
43703         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
43704         parse_bracket_exp):
43705         (build_equiv_class, build_charclass): Check for arithmetic overflow
43706         in size expression calculations.
43707         * lib/regex_internal.c (re_string_realloc_buffers):
43708         (build_wcs_upper_buffer, re_node_set_add_intersect):
43709         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
43710         (re_dfa_add_node, register_state): Likewise.
43711         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
43712         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
43713         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
43714         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
43715
43716 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
43717
43718         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
43719         m4/ulonglong.m4.  Problem reported by Martin Lambers.
43720
43721 2005-09-02  Bruno Haible  <bruno@clisp.org>
43722
43723         Support for lib vs. lib64 distinction on biarch platforms.
43724         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
43725         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
43726         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
43727
43728 2005-09-02  Bruno Haible  <bruno@clisp.org>
43729
43730         * gnulib-tool (import): In the other first-use case, provide defaults
43731         as well.
43732
43733 2005-09-02  Bruno Haible  <bruno@clisp.org>
43734
43735         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
43736         patches not yet found in the latest gettext release.
43737
43738 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43739
43740         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
43741         to avoid a collision with bits/local_lim.h in glibc.
43742         All uses changed.  Problem reported by Dmitry V. Levin in
43743         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
43744
43745         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
43746         bugs in int versus size_t comparisons.
43747         (re_string_context_at): Fix bug where the code assumed that
43748         Idx is signed.
43749
43750         Use bool where appropriate.
43751         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
43752         All callers changed.
43753         (calc_eclosure_iter): Likewise, for ROOT arg.
43754         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
43755         (build_charclass_op): Likewise, for NON_MATCH arg.
43756         * lib/regex_internal.c (re_string_allocate, re_string_construct):
43757         (re_string_construct_common): Likewise, for ICASE arg.
43758         * lib/regexec.c (re_search_2_stub, re_search_stub):
43759         Likewise, for RET_LEN arg.
43760         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
43761         (set_regs): Likewise, for FL_BACKTRACK arg.
43762         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
43763         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
43764         (calc_eclosure_iter, parse_bracket_exp):
43765         Use bool for internal variables that are booleans.
43766         * lib/regexec.c (re_search_internal, check_matching,
43767         proceed_next_node):
43768         (set_regs, build_sifted_states, sift_states_bkref):
43769         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
43770         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
43771         (find_collation_sequence_value):
43772         Likewise.
43773         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
43774         (re_node_set_compare):
43775         Return bool, not int. All callers changed.
43776         * lib/regexec.c (check_halt_node_context, check_dst_limits):
43777         (build_trtable, check_node_accept): Likewise.
43778         * lib/regex_internal.h: Include stdbool.h.
43779
43780         Fix bugs uncovered when converting to bool.
43781         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
43782         failure instead of charging ahead blindly.
43783         * lib/regex_internal.c (register_state): Likewise.
43784         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
43785         for freeing internal storage.
43786         (group_nodes_into_DFA_states): Use unsigned int, not int, for
43787         bitset pieces used as boolean, to avoid undefined behavior
43788         on hosts that do int overflow checking.
43789
43790 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43791
43792         * config/srclist.txt: Add glibc bugs 1285-1287.
43793
43794 2005-09-01  Jim Meyering  <jim@meyering.net>
43795
43796         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
43797         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
43798         Require gl_STAT_MACROS, too.
43799
43800 2005-09-01  Bruno Haible  <bruno@clisp.org>
43801
43802         * gnulib-tool (import): In the first-use case, provide defaults.
43803
43804 2005-09-01  Bruno Haible  <bruno@clisp.org>
43805
43806         * gnulib-tool (func_import): Remove the .tmp files.
43807
43808 2005-09-01  Bruno Haible  <bruno@clisp.org>
43809
43810         * gnulib-tool (func_import): Fix handling of symbolic links.
43811
43812 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43813
43814         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
43815         old glibc regex code mishandles strings longer than 2**31 bytes.
43816         This patch fixes this when the regex code is used in gnulib
43817         (i.e., outside glibc).
43818
43819         This patch should not affect the use of the regex code inside
43820         glibc.  No doubt this problem also needs to be handled for glibc
43821         as well, but the result will be an incompatible change to the
43822         glibc ABI, and the old ABI will have to be supported too.  That
43823         can be the the subject for another patch.
43824
43825         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
43826         governing whether the rest of this patch is active.  By default,
43827         the macro is disabled and the patch has no effect.
43828         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
43829         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
43830         (struct re_pattern_buffer, re_search, re_search_2, re_match):
43831         (re_match_2, re_set_registers): Use the new types.
43832         * lib/regex_internal.h (Idx, re_hashval_t): New types.
43833         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
43834         New macros.
43835         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
43836         (re_string_context_at, bin_tree_t, re_dfastate_t):
43837         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
43838         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
43839         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
43840         (re_string_char_size_at, re_string_wchar_at):
43841         (re_string_elem_size_at):
43842         Use the new types and macros to port to 64-bit hosts.
43843         Use unsigned types for internal values, so that the code
43844         mostly works even for arrays larger than SSIZE_MAX.
43845         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
43846         (search_duplicated_node, calc_eclosure_iter, fetch_number):
43847         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
43848         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
43849         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
43850         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
43851         (calc_inveclosure, parse_dup_op, build_range_exp):
43852         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
43853         (fetch_number, create_token_tree, mark_opt_subexp):
43854         Likewise.
43855         * lib/regex_internal.c (re_string_construct_common,
43856         create_ci_newstate):
43857         (create_cd_newstate, re_string_allocate, re_string_construct):
43858         (re_string_realloc_buffers, build_wcs_upper_buffer):
43859         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
43860         (re_string_reconstruct, re_string_peek_byte_case):
43861         (re_string_fetch_byte_case, re_string_context_at):
43862         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
43863         (re_node_set_init_copy, re_node_set_add_intersect):
43864         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
43865         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
43866         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
43867         (re_acquire_state, re_acquire_state_context, register_state):
43868         Likewise.
43869         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
43870         search_cur_bkref_entry):
43871         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
43872         (re_search_internal, re_search_2_stub, re_search_stub)
43873         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
43874         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
43875         (update_cur_sifted_state, check_dst_limits):
43876         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
43877         (check_subexp_limits, sift_states_bkref, merge_state_array):
43878         (check_subexp_matching_top, get_subexp, get_subexp_sub):
43879         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
43880         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
43881         (expand_bkref_cache, check_node_accept_bytes):
43882         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
43883         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
43884         (acquire_init_state_context, check_halt_node_context):
43885         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
43886         (sift_states_backward, clean_state_log_if_needed):
43887         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
43888         (find_recover_state, transit_state_sb, transit_state_mb):
43889         (transit_state_bkref, build_trtable, match_ctx_clean):
43890         Likewise.
43891         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
43892         to work around an assumption that REG_MISSING is negative.
43893
43894         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
43895         (seek_collating_symbol_entry) [defined _LIBC]:
43896         (lookup_collation_sequence_value) [defined _LIBC]:
43897         (build_range_exp, build_collating_symbol) [defined _LIBC]:
43898         Use prototypes rather than old-style function definitions.
43899         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
43900         (transit_state_sb) [0]:
43901         (find_collation_sequence_value) [defined _LIBC]: Likewise.
43902
43903         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
43904         rm_eo.
43905
43906         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
43907         (optimize_subexps, lower_subexp):
43908         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
43909         since the signed shift might overflow.  Use 1u<<31 instead.
43910         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
43911         Likewise.
43912         * lib/regexec.c (check_dst_limits_calc_pos_1,
43913         check_subexp_matching_top): Likewise.
43914
43915         * lib/regcomp.c (optimize_subexps, lower_subexp):
43916         Use CHAR_BIT rather than 8, for clarity.
43917         * lib/regexec.c (check_dst_limits_calc_pos_1):
43918         (check_subexp_matching_top): Likewise.
43919         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
43920         have to worry about portability issues when shifting it left.
43921         Remove no-longer-needed test for table_size > 0.
43922         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
43923         in a word, as the resulting behavior is undefined.
43924         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
43925         in one case, a <= should have been an <, and in another case the
43926         whole test was missing.
43927         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
43928         the standard name CHAR_BIT.
43929         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
43930         this is not true on one's complement and signed-magnitude hosts.
43931
43932         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
43933         next_last_offset.
43934         (struct re_dfa_t): Remove unused member states_alloc.
43935         * lib/regcomp.c (init_dfa): Don't initialize unused members.
43936
43937 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43938
43939         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
43940         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
43941         and large-file glibc and in 32-bit large-file Solaris.
43942
43943 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43944
43945         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
43946         lengths fit in regoff_t; this isn't true if regoff_t is the same
43947         width as size_t.
43948         * lib/regex.c (re_search_internal): 5th arg is LAST_START
43949         (= START + RANGE) instead of RANGE.  This avoids overflow
43950         problems when regoff_t is the same width as size_t.
43951         All callers changed.
43952         (re_search_2_stub): Check for overflow when adding the
43953         sizes of the two strings.
43954         (re_search_stub): Check for overflow when adding START
43955         to RANGE; if it occurs, substitute the extreme value.
43956
43957 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43958
43959         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
43960
43961 2005-08-31  Jim Meyering  <jim@meyering.net>
43962
43963         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
43964         a pointer-to-const.
43965         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
43966         (register_state): Likewise.
43967         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
43968         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
43969         (group_nodes_into_DFAstates): Likewise.
43970
43971 2005-08-31  Jim Meyering  <jim@meyering.net>
43972
43973         * check-module: Add a FIXME comment.
43974
43975 2005-08-31  Eric Blake  <ebb9@byu.net>
43976
43977         * modules/unistd-safer (Files): Add unistd--.h.
43978         * modules/stdio-safer (Files): Add stdio--.h.
43979
43980 2005-08-31  Derek Price  <derek@ximbiot.com>
43981
43982         * lib/getdelim.c (getdelim): Return EOF on EOF.
43983         Reported by Larry Jones <lawrence.jones@ugs.com>.
43984
43985 2005-08-31  Bruno Haible  <bruno@clisp.org>
43986
43987         Avoid unnecessary diffs in the generated lib/Makefile.am.
43988         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
43989         the generated files.
43990         (func_import): Don't set cmd.
43991
43992 2005-08-31  Bruno Haible  <bruno@clisp.org>
43993
43994         * lib/strstr.c: Include <stddef.h>, for NULL.
43995         * lib/strcasestr.c: Likewise.
43996         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
43997
43998 2005-08-31  Bruno Haible  <bruno@clisp.org>
43999
44000         * gnulib-tool: New option --macro-prefix.
44001         (func_import): Use macro_prefix.
44002         (import): Handle option --macro-prefix.
44003
44004 2005-08-31  Bruno Haible  <bruno@clisp.org>
44005
44006         * gnulib-tool (import): Rename most ac_* variables to cached_*.
44007         Also use new variables cached_lgpl, cached_libtool.
44008
44009 2005-08-31  Bruno Haible  <bruno@clisp.org>
44010
44011         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
44012         always instantiating them.
44013
44014 2005-08-31  Bruno Haible  <bruno@clisp.org>
44015
44016         * gnulib-tool (func_import): Read the previous cached settings
44017         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
44018         earlier added by gnulib but are now dropped. Warn when a gnulib file
44019         overwrites a non-gnulib file.
44020
44021 2005-08-31  Bruno Haible  <bruno@clisp.org>
44022
44023         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
44024         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
44025         projects that don't keep autogenerated files in CVS. Put into
44026         actioncmd only the specified modules, not the transitive closure.
44027
44028 2005-08-31  Bruno Haible  <bruno@clisp.org>
44029
44030         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
44031         Create directories that shall be filled.
44032         (import): Don't look for gl_* macros in configure.ac. Recurse across
44033         all directories containing a gnulib-cache.m4 files, if meaningful.
44034
44035 2005-08-31  Bruno Haible  <bruno@clisp.org>
44036
44037         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
44038         (import): Set seen_libtool when we see gl_LIBTOOL.
44039
44040 2005-08-31  Bruno Haible  <bruno@clisp.org>
44041
44042         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
44043         declaration macro definitions from generated gnulib.m4.
44044
44045 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
44046
44047         * lib/iconvme.h: Add prototype for iconv_alloc.
44048
44049 2005-08-29  Simon Josefsson  <jas@extundo.com>
44050
44051         * lib/iconvme.c: Fix errno.
44052
44053 2005-08-29  Bruno Haible  <bruno@clisp.org>
44054
44055         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
44056         that it works when the directory contains spaces.
44057
44058 2005-08-29  Bruno Haible  <bruno@clisp.org>
44059
44060         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
44061
44062 2005-08-29  Bruno Haible  <bruno@clisp.org>
44063
44064         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
44065         Emit more advice.
44066
44067 2005-08-29  Bruno Haible  <bruno@clisp.org>
44068         and Stepan Kasal  <kasal@ucw.cz>
44069
44070         * check-module: If more parameters are given, check each of them
44071         separately; add more exceptions, as noted by Jim Meyering.
44072         (check_module): New procedure.
44073         (%exempt_header): Now contains all exceptions.
44074
44075 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
44076
44077         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
44078
44079 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
44080
44081         * lib/iconvme.c: Split iconv_string into iconv_alloc.
44082
44083 2005-08-28  Bruno Haible  <bruno@clisp.org>
44084
44085         * m4/gnulib-tool.m4: New file.
44086
44087 2005-08-27  Jim Meyering  <jim@meyering.net>
44088
44089         * modules/unistd-safer (Files): Add pipe-safer.c.
44090         * modules/fcntl-safer (Files): Add creat-safer.c.
44091
44092 2005-08-27  Jim Meyering  <jim@meyering.net>
44093
44094         * m4/stdlib-safer.m4: New file.  From coreutils.
44095         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
44096         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
44097         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
44098         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
44099         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
44100
44101 2005-08-27  Jim Meyering  <jim@meyering.net>
44102
44103         * lib/fopen-safer.c: Merge minor changes from coreutils.
44104         * lib/dup-safer.c: Likewise.
44105         * lib/fd-safer.c: Likewise.
44106
44107         Merge from coreutils.
44108         * lib/stdio--.h: New file.
44109         * lib/stdlib--.h: New file.
44110         * lib/mkstemp-safer.c: New file.
44111
44112         GNU tar needs these.
44113         * lib/pipe-safer.c: New file.
44114         * lib/creat-safer.c: New file.
44115         * lib/fcntl--.h (creat): Define to creat_safer.
44116         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
44117         * lib/unistd--.h (pipe): Define to pipe_safer.
44118         * lib/unistd-safer.h: Declare pipe_safer.
44119
44120 2005-08-26  Simon Josefsson  <jas@extundo.com>
44121
44122         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
44123         Haible <bruno@clisp.org>.
44124
44125 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
44126
44127         * lib/regex_internal.h: Remove all references to
44128         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
44129         or better.
44130         (bitset_not, bitset_merge, bitset_not_merge):
44131         (bitset_mask, re_string_allocate, re_string_construct):
44132         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
44133         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
44134         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
44135         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
44136         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44137         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44138         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
44139         (re_acquire_state_context):
44140         Remove unnecessary forward decls.
44141         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
44142         Put __attribute at function definition,
44143         now that the function decl has been removed.
44144         * lib/regex_internal.c (re_string_peek_byte_case):
44145         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
44146         Likewise.
44147
44148 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
44149
44150         * m4/regex.m4: Add AC_PREREQ(2.50).
44151         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
44152
44153 2005-08-25  Simon Josefsson  <jas@extundo.com>
44154
44155         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
44156         __fsetlocking.
44157
44158 2005-08-25  Simon Josefsson  <jas@extundo.com>
44159
44160         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
44161         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
44162         GLIBC specific code.
44163
44164 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44165
44166         Make regex safe for g++.  This fixes one real bug (an "err"
44167         that should have been "*err").  g++ problem reported by
44168         Sam Steingold.
44169         * lib/regex_internal.h (re_calloc): New macro, consistent with
44170         re_malloc etc.  All callers of calloc changed to use re_calloc.
44171         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
44172         not int.  All callers changed.
44173         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
44174         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
44175         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
44176         (find_recover_state): Change "err" to "*err"; this fixes what
44177         appears to be a real bug.
44178         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
44179         versus int.
44180
44181 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44182
44183         * modules/regex (Depends-on): Add malloc, since the code
44184         assumes that !malloc(0) means failure.
44185
44186 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44187
44188         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
44189
44190         alloca modernization/simplification for regex.
44191         * lib/regex.c: Remove portability cruft for alloca.  This no longer
44192         needs to be at the start of the file, and can be moved into
44193         regex_internal.h and simplified.
44194         * lib/regex_internal.h: Include <alloca.h>.
44195         (__libc_use_alloca) [!defined _LIBC]: New macro.
44196         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
44197         now works outside glibc.
44198
44199 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44200
44201         * config/srclist.txt: Add glibc bugs 1241, 1245.
44202
44203 2005-08-25  Jim Meyering  <jim@meyering.net>
44204
44205         * lib/open-safer.c: Include <config.h>.
44206         Otherwise, we'd lose LARGEFILE support in any file using
44207         e.g. "fcntl--.h"
44208
44209 2005-08-25  Bruno Haible  <bruno@clisp.org>
44210
44211         * m4/minmax.m4: Require autoconf 2.52.
44212         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
44213         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
44214         alternatives of translit over the alphabet.
44215         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
44216
44217 2005-08-24  Simon Josefsson  <jas@extundo.com>
44218
44219         * tests/test-getpass.c: New file.
44220
44221 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44222
44223         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
44224         for GNU regex features.
44225
44226 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44227
44228         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
44229         * lib/regex.h (regerror): Likewise.
44230
44231         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
44232         requires this.  (The code never needed it.)
44233
44234         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
44235         All uses of recently-renamed identifiers changed to use the new,
44236         POSIX-compliant names.  The code will build and run just fine
44237         without these changes, but it's better to eat our own dog food
44238         and use the standard-conforming names.
44239
44240         * lib/regex.h: Fix a multitude of POSIX name space violations.
44241         These changes have an effect only for programs that define
44242         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
44243         do not change anything for programs compiled in the normal way.
44244         Also, there is no effect on the ABI.
44245
44246         (_REGEX_SOURCE): New macro.
44247         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
44248         defined and _GNU_SOURCE is not; this fixes a name space violation.
44249
44250         Rename the following macros to obey POSIX requirements.
44251         The old names are still visible as macros if _REGEX_SOURCE is defined.
44252         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
44253         RE_BACKSLASH_ESCAPE_IN_LISTS.
44254         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
44255         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
44256         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
44257         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
44258         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
44259         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
44260         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
44261         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
44262         (REG_INTERVALS): renamed from RE_INTERVALS.
44263         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
44264         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
44265         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
44266         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
44267         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
44268         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
44269         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
44270         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
44271         RE_UNMATCHED_RIGHT_PAREN_ORD.
44272         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
44273         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
44274         (REG_DEBUG): renamed from RE_DEBUG.
44275         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
44276         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
44277         unusual, since we can't clash with the POSIX REG_ICASE.
44278         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
44279         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
44280         (REG_NO_SUB): renamed from RE_NO_SUB.
44281         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
44282         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
44283         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
44284         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
44285         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
44286         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
44287         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
44288         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
44289         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
44290         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
44291         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
44292         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
44293         RE_SYNTAX_POSIX_MINIMAL_BASIC.
44294         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
44295         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
44296         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
44297         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
44298         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
44299         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
44300         (REG_FIXED): Renamed from REGS_FIXED.
44301         (REG_NREGS): Renamed from RE_NREGS.
44302
44303         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
44304         of other REG_* macros, since POSIX says the user is allowed to
44305         #undef these macros selectively.
44306
44307         (reg_errcode_t): Update comment stating what other tables need
44308         to be consistent.
44309
44310         Rename the following enum values to obey POSIX requirements.
44311         The old names are still visible as macros.
44312         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
44313         is not defined, since GNU is supposed to be a superset of POSIX as
44314         much as possible, and since we want reg_errcode_t to be a signed
44315         type for implementation consistency.
44316         (_REG_NOERROR): Renamed from REG_NOERROR.
44317         (_REG_NOMATCH): Renamed from REG_NOMATCH.
44318         (_REG_BADPAT): Renamed from REG_BADPAT.
44319         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
44320         (_REG_ECTYPE): Renamed from REG_ECTYPE.
44321         (_REG_EESCAPE): Renamed from REG_EESCAPE.
44322         (_REG_ESUBREG): Renamed from REG_ESUBREG.
44323         (_REG_EBRACK): Renamed from REG_EBRACK.
44324         (_REG_EPAREN): Renamed from REG_EPAREN.
44325         (_REG_EBRACE): Renamed from REG_EBRACE.
44326         (_REG_BADBR): Renamed from REG_BADBR.
44327         (_REG_ERANGE): Renamed from REG_ERANGE.
44328         (_REG_ESPACE): Renamed from REG_ESPACE.
44329         (_REG_BADRPT): Renamed from REG_BADRPT.
44330         (_REG_EEND): Renamed from REG_EEND.
44331         (_REG_ESIZE): Renamed from REG_ESIZE.
44332         (_REG_ERPAREN): Renamed from REG_ERPAREN.
44333         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
44334         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
44335         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
44336         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
44337
44338         (_REG_RE_NAME, _REG_RM_NAME): New macros.
44339         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
44340         changed.  But support the old name if the new one is not defined
44341         and if _REGEX_SOURCE.
44342
44343         Change the following member names in struct re_pattern_buffer.
44344         The old names are still supported if !_REGEX_SOURCE.
44345         The new names are always supported, regardless of _REGEX_SOURCE.
44346         (re_buffer): Renamed from buffer.
44347         (re_allocated): Renamed from allocated.
44348         (re_used): Renamed from used.
44349         (re_syntax): Renamed from syntax.
44350         (re_fastmap): Renamed from fastmap.
44351         (re_translate): Renamed from translate.
44352         (re_can_be_null): Renamed from can_be_null.
44353         (re_regs_allocated): Renamed from regs_allocated.
44354         (re_fastmap_accurate): Renamed from fastmap_accurate.
44355         (re_no_sub): Renamed from no_sub.
44356         (re_not_bol): Renamed from not_bol.
44357         (re_not_eol): Renamed from not_eol.
44358         (re_newline_anchor): Renamed from newline_anchor.
44359
44360         Change the following member names in struct re_registers.
44361         The old names are still supported if !_REGEX_SOURCE.
44362         The new names are always supported, regardless of _REGEX_SOURCE.
44363         (rm_num_regs): Renamed from num_regs.
44364         (rm_start): Renamed from start.
44365         (rm_end): Renamed from end.
44366
44367         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
44368         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
44369         Prepend __ to parameter names.
44370
44371         Undo yesterday's changes.
44372
44373 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44374
44375         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
44376         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
44377         lib/regex.c.
44378
44379 2005-08-24  Jim Meyering  <jim@meyering.net>
44380
44381         Sync from coreutils.
44382         * m4/fcntl-safer.m4: New file.
44383
44384         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
44385         and object files for this module.
44386
44387 2005-08-24  Jim Meyering  <jim@meyering.net>
44388
44389         Sync from coreutils.
44390         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
44391
44392 2005-08-24  Jim Meyering  <jim@meyering.net>
44393
44394         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
44395         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
44396
44397 2005-08-24  Jim Meyering  <jim@meyering.net>
44398
44399         * modules/fcntl-safer: New module.
44400         * modules/fts (Depends-on): Add fcntl-safer.
44401         * MODULES.html.sh (File descriptor based Input/Output):
44402         Add fcntl-safer.
44403
44404 2005-08-24  Bruno Haible  <bruno@clisp.org>
44405
44406         Support for unit test modules.
44407         * modules/README: Mention tests modules.
44408         * modules/TEMPLATE-TESTS: New file.
44409         * gnulib-tool: New options --extract-tests-module, --with-tests and
44410         --tests-base (unused for the moment).
44411         (testsbase, inctests): New variables.
44412         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
44413         (func_verify_module): Exclude TEMPLATE-TESTS.
44414         (func_verify_nontests_module, func_verify_tests_module): New functions.
44415         (func_get_dependencies): Add implicit dependency for tests modules.
44416         (func_get_tests_module): New function.
44417         (func_modules_transitive_closure): When --with-tests was specified,
44418         include the unit tests as well, unless explicitly avoided.
44419         (func_emit_lib_Makefile_am): Ignore the tests modules here.
44420         (func_emit_tests_Makefile_am): New function.
44421         (func_create_testdir): When --with-tests was specified, emit a
44422         tests/ directory.
44423         * MODULES.html.sh (Future developments): Update.
44424
44425 2005-08-24  Bruno Haible  <bruno@clisp.org>
44426
44427         * modules/tls-tests: New file.
44428         * tests/test-tls.c: New file, from GNU gettext.
44429
44430 2005-08-24  Bruno Haible  <bruno@clisp.org>
44431
44432         * modules/lock-tests: New file.
44433         * tests/test-lock.c: New file, from GNU gettext.
44434
44435 2005-08-24  Bruno Haible  <bruno@clisp.org>
44436
44437         * lib/lock.h: Add multiple inclusion guard.
44438         * lib/tls.h: Add multiple inclusion guard.
44439
44440 2005-08-24  Bruno Haible  <bruno@clisp.org>
44441
44442         * gnulib-tool: Add support for the --aux-dir option to
44443         --create-testdir, --create-megatestdir, --test, --megatest.
44444         (func_create_testdir, func_create_megatestdir): Optionally emit a
44445         AC_CONFIG_AUX_DIR directive.
44446         (create-testdir, create-megatestdir, test, megatest): Provide a
44447         default value for $auxdir.
44448
44449 2005-08-24  Bruno Haible  <bruno@clisp.org>
44450
44451         * gnulib-tool (import): Use compound statement instead of subshell
44452         where possible.
44453
44454 2005-08-24  Bruno Haible  <bruno@clisp.org>
44455
44456         * gnulib-tool (import): Change --aux-dir default to "build-aux".
44457
44458 2005-08-24  Bruno Haible  <bruno@clisp.org>
44459
44460         * gnulib-tool (func_version): Update.
44461
44462 2005-08-24  Bruno Haible  <bruno@clisp.org>
44463
44464         * gnulib-tool (func_import, func_create_testdir,
44465         func_create_megatestdir): Quote all autoconf macro arguments.
44466
44467 2005-08-24  Bruno Haible  <bruno@clisp.org>
44468
44469         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
44470         option --force, because --force causes the aclocal.m4 of each
44471         subdirectory to be newer than the corresponding config.h.in.
44472
44473 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44474
44475         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
44476         All contents moved to gl_REGEX.
44477         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
44478         assume that it does.
44479
44480 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44481
44482         * lib/regex.h (REG_NOSYS)
44483         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
44484         Define, since POSIX requires it as of 2001.
44485         (_REG_ENOSYS)
44486         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
44487         New private symbol, used to keep the enum signed in all cases.
44488         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
44489         Youngman in
44490         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
44491
44492         * lib/regex_internal.c (re_string_skip_chars, register_state):
44493         (calc_state_hash):
44494         Remove forward decls; no longer needed now that we use prototypes.
44495         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
44496         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
44497         (clean_state_log_if_needed): Likewise.
44498
44499 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44500
44501         * config/srclist.txt: Add glibc bugs 1231-1233.
44502
44503 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44504
44505         Fix problems reported by Sam Steingold in
44506         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
44507         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
44508         assumed that reg_errcode_t is a signed type, which is not
44509         necessarily true if _XOPEN_SOURCE is not defined.
44510         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
44511         since some compilers warn about it otherwise.
44512
44513 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44514
44515         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
44516         (init_word_char, create_initial_state, duplicate_node_closure):
44517         (fetch_token, peek_token_bracket, build_range_exp):
44518         (build_collating_symbol): Remove forward decls; no longer needed
44519         now that we use prototypes.
44520
44521         * lib/regcomp.c:
44522         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
44523         (re_compile_fastmap_iter, regcomp, regerror, regfree):
44524         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
44525         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
44526         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
44527         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
44528         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
44529         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
44530         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
44531         (build_range_exp, build_collating_symbol, parse_bracket_exp):
44532         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
44533         (build_charclass, build_charclass_op, fetch_number, create_tree):
44534         (create_token_tree, mark_opt_subexp, duplicate_tree):
44535         Use prototypes rather than old-style definitions.
44536
44537         * lib/regex_internal.c:
44538         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
44539         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
44540         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
44541         (re_string_reconstruct, re_string_peek_byte_case):
44542         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
44543         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
44544         (re_node_set_init_copy, re_node_set_add_intersect):
44545         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44546         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44547         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
44548         (re_acquire_state, re_acquire_state_context, register_state):
44549         (create_ci_newstate, create_cd_newstate, free_state):
44550         Likewise.
44551         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
44552         re_search_2):
44553         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
44554         (re_search_internal, prune_impossible_nodes):
44555         (acquire_init_state_context, check_matching, static):
44556         (check_halt_node_context, check_halt_state_context, proceed_next_node):
44557         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
44558         (update_regs, sift_states_backward, build_sifted_states):
44559         (clean_state_log_if_needed, merge_state_array):
44560         (update_cur_sifted_state, add_epsilon_src_nodes):
44561         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
44562         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
44563         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
44564         (find_recover_state, check_subexp_matching_top, transit_state_mb):
44565         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
44566         (check_arrival, check_arrival_add_next_nodes):
44567         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
44568         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
44569         (check_node_accept_bytes, check_node_accept, extend_buffers):
44570         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
44571         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
44572         (sift_ctx_init):
44573         Likewise.
44574
44575         * lib/regex_internal.h:
44576         (re_string_allocate, re_string_construct, re_string_reconstruct):
44577         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
44578         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
44579         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
44580         (re_string_context_at, re_string_peek_byte_case):
44581         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
44582         is defined, since we now use prototypes always.
44583
44584         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
44585         C89 or better.  All uses removed.
44586
44587 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44588
44589         * config/srclist.txt: Add glibc bugs 1220-1227.
44590
44591 2005-08-20  Jim Meyering  <jim@meyering.net>
44592
44593         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
44594         of unused local, dfa.
44595
44596 2005-08-20  Bruno Haible  <bruno@clisp.org>
44597
44598         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
44599
44600 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44601
44602         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
44603         (re_node_set_insert_last, re_dfa_add_node):
44604         Rename local variables to avoid GCC shadowing warnings.
44605
44606 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44607
44608         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
44609         [defined lint]: Suppress bogus uninitialized-variable warnings.
44610
44611         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
44612         and let the caller return REG_ESPACE if out of space.  This
44613         removes an uninitialied-variable warning with GCC 4.0.1, and also
44614         avoids taking the address of a local variable.  All callers
44615         changed.
44616
44617 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44618
44619         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
44620         $LIBCSRC/posix/regexec.c.
44621         Add glibc bug 1217 for regcomp.c.
44622
44623 2005-08-19  Jim Meyering  <jim@meyering.net>
44624
44625         * lib/regexec.c (proceed_next_node): Redo local variables to
44626         avoid GCC shadowing warnings.
44627
44628 2005-08-18  Bruno Haible  <bruno@clisp.org>
44629
44630         * lib/strstr.c (strstr): Fix return value in multibyte case.
44631         * lib/strcasestr.c (strcasestr): Likewise.
44632
44633 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44634
44635         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
44636
44637 2005-08-17  Jim Meyering  <jim@meyering.net>
44638
44639         Make the %s format (seconds since the epoch) work for a negative
44640         number and when used with a zero-padded field width, e.g. %015s.
44641
44642         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
44643         label so that it precedes the code to set `digits'.  Otherwise,
44644         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
44645         print `00-22'.  Now, it prints `-0022', as it should.
44646
44647 2005-08-17  Bruno Haible  <bruno@clisp.org>
44648
44649         * modules/strstr (Files): Add m4/mbrtowc.m4.
44650         (Depends-on): Add mbuiter.
44651
44652 2005-08-17  Bruno Haible  <bruno@clisp.org>
44653
44654         * modules/strcasestr: New file.
44655         * MODULES.html.sh (String handling, based on ANSI C 89): Add
44656         strcasestr.
44657
44658 2005-08-17  Bruno Haible  <bruno@clisp.org>
44659
44660         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
44661
44662 2005-08-17  Bruno Haible  <bruno@clisp.org>
44663
44664         * modules/mbuiter: New file.
44665         * MODULES.html.sh (Extended multibyte and wide character utilities):
44666         Add mbuiter.
44667
44668 2005-08-17  Bruno Haible  <bruno@clisp.org>
44669
44670         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
44671         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
44672
44673 2005-08-17  Bruno Haible  <bruno@clisp.org>
44674
44675         * m4/strcasestr.m4: New file.
44676
44677 2005-08-17  Bruno Haible  <bruno@clisp.org>
44678
44679         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
44680         * lib/strstr.c: Completely rewritten, with multibyte locale support.
44681
44682 2005-08-17  Bruno Haible  <bruno@clisp.org>
44683
44684         * lib/strcasestr.h: New file.
44685         * lib/strcasestr.c: New file.
44686
44687 2005-08-17  Bruno Haible  <bruno@clisp.org>
44688
44689         * lib/strcasecmp.c: Use mbuiter.h.
44690
44691 2005-08-17  Bruno Haible  <bruno@clisp.org>
44692
44693         * lib/mbuiter.h: New file.
44694
44695 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
44696
44697         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
44698         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
44699         and gl_GETOPT are both invoked via different paths (as happens
44700         with GNU tar CVS because it uses both argp and getopt), the former
44701         wins.
44702
44703 2005-08-16  Bruno Haible  <bruno@clisp.org>
44704
44705         * modules/tls: New file.
44706         * MODULES.html.sh (Multithreading): Add tls.
44707
44708 2005-08-16  Bruno Haible  <bruno@clisp.org>
44709
44710         * modules/strnlen1: New file.
44711         * MODULES.html.sh (String handling): Add strnlen1.
44712
44713 2005-08-16  Bruno Haible  <bruno@clisp.org>
44714
44715         * modules/strcase (Files): Add m4/mbrtowc.m4.
44716         (Depends-on): Add strnlen1, mbchar.
44717
44718 2005-08-16  Bruno Haible  <bruno@clisp.org>
44719
44720         * modules/mbiter: New file.
44721         * MODULES.html.sh (Extended multibyte and wide character utilities):
44722         Add mbiter.
44723
44724 2005-08-16  Bruno Haible  <bruno@clisp.org>
44725
44726         * modules/mbfile: New file.
44727         * MODULES.html.sh (Extended multibyte and wide character utilities):
44728         Add mbfile.
44729
44730 2005-08-16  Bruno Haible  <bruno@clisp.org>
44731
44732         * modules/mbchar: New file.
44733         * MODULES.html.sh (Extended multibyte and wide character utilities):
44734         New section.
44735
44736 2005-08-16  Bruno Haible  <bruno@clisp.org>
44737
44738         * m4/tls.m4: New file, from GNU gettext.
44739
44740 2005-08-16  Bruno Haible  <bruno@clisp.org>
44741
44742         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
44743         always.
44744         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
44745
44746 2005-08-16  Bruno Haible  <bruno@clisp.org>
44747
44748         * m4/mbiter.m4: New file.
44749
44750 2005-08-16  Bruno Haible  <bruno@clisp.org>
44751
44752         * m4/mbfile.m4: New file.
44753
44754 2005-08-16  Bruno Haible  <bruno@clisp.org>
44755
44756         * m4/mbchar.m4: New file.
44757
44758 2005-08-16  Bruno Haible  <bruno@clisp.org>
44759
44760         * lib/tls.h: New file, from GNU gettext.
44761         * lib/tls.c: New file, from GNU gettext.
44762
44763 2005-08-16  Bruno Haible  <bruno@clisp.org>
44764
44765         * lib/strnlen1.h: New file.
44766         * lib/strnlen1.c: New file.
44767
44768 2005-08-16  Bruno Haible  <bruno@clisp.org>
44769
44770         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
44771         (mbi_init): Update.
44772         (mbi_avail, mbi_advance): Let the iteration end before the terminating
44773         NUL byte, not after it.
44774
44775 2005-08-16  Bruno Haible  <bruno@clisp.org>
44776
44777         * lib/strcase.h (strcasecmp): Add note in comments.
44778         * lib/strncasecmp.c: Use code from strcasecmp.c.
44779         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
44780         (strcasecmp): Work correctly in multibyte locales.
44781
44782 2005-08-16  Bruno Haible  <bruno@clisp.org>
44783
44784         * lib/mbiter.h: New file.
44785
44786 2005-08-16  Bruno Haible  <bruno@clisp.org>
44787
44788         * lib/mbfile.h: New file.
44789
44790 2005-08-16  Bruno Haible  <bruno@clisp.org>
44791
44792         * lib/mbchar.h: New file.
44793         * lib/mbchar.c: New file.
44794
44795 2005-08-16  Bruno Haible  <bruno@clisp.org>
44796
44797         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
44798         the valid ones. Makes the comparison operations transitive:
44799         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
44800         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
44801
44802 2005-08-15  Simon Josefsson  <jas@extundo.com>
44803
44804         * modules/ssize_t (License): Change to 'unlimited'.
44805
44806         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
44807
44808 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44809
44810         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
44811         Add comments for each pending glibc patch.
44812
44813 2005-08-15  Bruno Haible  <bruno@clisp.org>
44814
44815         * lib/regex.h (__restrict_arr): Don't define to __restrict if
44816         __cplusplus is defined.
44817
44818 2005-08-14  Jim Meyering  <jim@meyering.net>
44819
44820         Sync from coreutils.
44821
44822         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
44823         Use the hash-table-based cycle-detection code not just when
44824         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
44825         Reported by James Youngman in
44826         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
44827         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
44828         FTS_TIGHT_CYCLE_CHECK.
44829         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
44830         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
44831         once again.
44832         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
44833         * lib/fts.c (fd_safer): Remove decl.
44834         Include fcntl--.h rather than unistd-safer.h
44835         (fts_safe_changedir): Don't call fd_safer; no longer needed
44836         now that we include fcntl--.h.
44837
44838 2005-08-12  Simon Josefsson  <jas@extundo.com>
44839
44840         * modules/getndelim2: Use ssize_t module.
44841         * modules/getnline: Likewise.
44842         * modules/safe-read: Likewise.
44843         * modules/xreadlink: Likewise.
44844
44845         * modules/ssize_t: New file.
44846
44847 2005-08-12  Simon Josefsson  <jas@extundo.com>
44848
44849         * m4/readline.m4: Look for termcap, curses or ncurses if required.
44850
44851 2005-08-12  Simon Josefsson  <jas@extundo.com>
44852
44853         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
44854         ssize_t.
44855
44856 2005-08-12  Simon Josefsson  <jas@extundo.com>
44857
44858         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
44859         readline, getdelim and check_version.
44860         (Support for systems lacking ISO C 99: Sizes of integer types):
44861         Add size_max.
44862
44863 2005-08-12  Bruno Haible  <bruno@clisp.org>
44864
44865         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
44866
44867 2005-08-11  Simon Josefsson  <jas@extundo.com>
44868
44869         * modules/readline: New file.
44870
44871         * modules/strnlen (Files): Add strnlen.h.
44872
44873 2005-08-11  Simon Josefsson  <jas@extundo.com>
44874
44875         * m4/readline.m4: New file.
44876
44877 2005-08-11  Simon Josefsson  <jas@extundo.com>
44878
44879         * lib/readline.h, readline.c: New file.
44880
44881 2005-08-11  Simon Josefsson  <jas@extundo.com>
44882
44883         * doc/gnulib.texi (Initial import, Finishing touches): Mention
44884         gl_AVOID.
44885
44886 2005-08-11  Bruno Haible  <bruno@clisp.org>
44887
44888         * lib/strnlen.h (strnlen): Change parameter name to match comment.
44889
44890 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
44891
44892         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
44893
44894 2005-08-10  Simon Josefsson  <jas@extundo.com>
44895
44896         * tests/test-iconvme.c: New file.
44897
44898 2005-08-10  Simon Josefsson  <jas@extundo.com>
44899
44900         * m4/strnlen.m4: New file.
44901
44902         * m4/strndup.m4: Don't check for strnlen declaration, done in
44903         strnlen.m4.
44904
44905 2005-08-10  Simon Josefsson  <jas@extundo.com>
44906
44907         * lib/strndup.c: Use strnlen.h.
44908
44909         * lib/strnlen.h: New file.
44910
44911 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
44912
44913         * README: Typos.
44914
44915 2005-08-02  Simon Josefsson  <jas@extundo.com>
44916
44917         * modules/readline: New file.
44918
44919 2005-08-02  Simon Josefsson  <jas@extundo.com>
44920
44921         * modules/getdelim: New file.
44922
44923         * modules/getline: Rewrite, don't use getndelim2.
44924
44925 2005-08-02  Simon Josefsson  <jas@extundo.com>
44926
44927         * m4/getline.m4: Separate out getdelim stuff into separate module.
44928
44929         * m4/getdelim.m4: New file.
44930
44931 2005-08-02  Simon Josefsson  <jas@extundo.com>
44932
44933         * lib/getline.h, getline.c: Rewrite.
44934
44935         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
44936
44937 2005-07-31  Bruno Haible  <bruno@clisp.org>
44938
44939         * lib/lock.h (gl_lock_initializer): New macro.
44940         (gl_lock_define_initialized): Use it.
44941         (gl_rwlock_initializer): New macro.
44942         (gl_rwlock_define_initialized): Use it.
44943         (gl_recursive_lock_initializer): New macro.
44944         (gl_recursive_lock_define_initialized): Use it.
44945
44946 2005-07-30  Karl Berry  <karl@gnu.org>
44947
44948         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
44949         Report from Ben Pfaff, regarding getopt.
44950
44951 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
44952
44953         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
44954         normal way.
44955         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
44956         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
44957         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
44958         (gl_GETOPT): Use the new macros.  Most of the implementation
44959         is moved to the new macros.  This is for programs like Emacs
44960         that don't want all the functionality of gl_GETOPT.
44961
44962 2005-07-26  Bruno Haible  <bruno@clisp.org>
44963
44964         * m4/lock.m4: Update from GNU gettext.
44965
44966 2005-07-26  Bruno Haible  <bruno@clisp.org>
44967
44968         * lib/lock.h: Update from GNU gettext.
44969         * lib/lock.c: Update from GNU gettext.
44970
44971 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
44972
44973         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
44974         obsolescent AC_TRY_RUN.  Include the default includes files, for
44975         'exit'.
44976
44977 2005-07-24  Bruno Haible  <bruno@clisp.org>
44978
44979         * modules/visibility: New file.
44980         * MODULES.html.sh (Misc): Add visibility.
44981
44982 2005-07-24  Bruno Haible  <bruno@clisp.org>
44983
44984         * m4/visibility.m4: New file.
44985
44986 2005-07-24  Bruno Haible  <bruno@clisp.org>
44987
44988         * doc/visibility.texi: New file.
44989
44990 2005-07-22  Bruno Haible  <bruno@clisp.org>
44991
44992         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
44993         $(ALLOCA_H), redundant through BUILT_SOURCES.
44994         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
44995         redundant through BUILT_SOURCES.
44996         * modules/byteswap (Makefile.am): Remove explicit dependency on
44997         $(BYTESWAP_H), redundant through BUILT_SOURCES.
44998         * modules/fnmatch (Makefile.am): Remove explicit dependency on
44999         $(FNMATCH_H), redundant through BUILT_SOURCES.
45000         * modules/getopt (Makefile.am): Remove explicit dependency on
45001         $(GETOPT_H), redundant through BUILT_SOURCES.
45002         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
45003         redundant through BUILT_SOURCES.
45004         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
45005         redundant through BUILT_SOURCES.
45006         * modules/stdbool (Makefile.am): Remove explicit dependency on
45007         $(STDBOOL_H), redundant through BUILT_SOURCES.
45008         * modules/stdint (Makefile.am): Remove explicit dependency on
45009         $(STDINT_H), redundant through BUILT_SOURCES.
45010         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
45011         Remove explicit dependency on $(SYSEXITS_H).
45012         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
45013
45014 2005-07-18  Simon Josefsson  <jas@extundo.com>
45015
45016         * lib/check-version.c (check_version): Accept identical versions too.
45017
45018 2005-07-18  Bruno Haible  <bruno@clisp.org>
45019
45020         * modules/lock: New file.
45021         * MODULES.html.sh (Multithreading): New section.
45022
45023 2005-07-18  Bruno Haible  <bruno@clisp.org>
45024
45025         * m4/lock.m4: New file, from GNU gettext.
45026
45027 2005-07-18  Bruno Haible  <bruno@clisp.org>
45028
45029         * lib/lock.h: New file, from GNU gettext.
45030         * lib/lock.c: New file, from GNU gettext.
45031
45032 2005-07-18  Bruno Haible  <bruno@clisp.org>
45033
45034         * lib/lock.h (gl_once_t): New type.
45035         (gl_once_define, gl_once): New macros.
45036         * lib/lock.c (fresh_once): New variable.
45037         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
45038         functions.
45039
45040 2005-07-16  Simon Josefsson  <jas@extundo.com>
45041
45042         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
45043         workaround, suggested by Bruno.
45044
45045 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
45046
45047         * modules/xalloc (Depends-on): Add xalloc-die.
45048         * modules/xvasprintf (Depends-on): Add xalloc-die.
45049
45050 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
45051
45052         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
45053         with a minor change.
45054
45055 2005-07-15  Bruno Haible  <bruno@clisp.org>
45056
45057         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
45058         When using lib/poll.c, define poll as rpl_poll.
45059
45060 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
45061
45062         * modules/argp (Depends-on): Remove unlocked-io.
45063
45064 2005-07-14  Derek Price  <derek@ximbiot.com>
45065
45066         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
45067         for glob symlink bug.
45068
45069 2005-07-14  Bruno Haible  <bruno@clisp.org>
45070
45071         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
45072         Instead, test for *_unlocked function declarations directly.
45073
45074 2005-07-11  Simon Josefsson  <jas@extundo.com>
45075
45076         * modules/size_max: New file.
45077
45078         * modules/xsize: Depend on size_max module for size_max.m4.
45079
45080 2005-07-11  Simon Josefsson  <jas@extundo.com>
45081
45082         * lib/size_max.h: New file.
45083
45084 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
45085
45086         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
45087         copyright symbol and the year.
45088         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
45089         (version_etc_va): Use parameterized copyright notice.
45090         Reword to conform to the current GNU coding standards.
45091
45092 2005-07-11  Karl Berry  <karl@gnu.org>
45093
45094         * doc/gnulib.texi (Quoting): new node.
45095         (Initial import): more info, from Patrice.
45096
45097 2005-07-11  Bruno Haible  <bruno@clisp.org>
45098
45099         * gnulib-tool (func_usage): Document option --avoid.
45100         (Command line options): Handle --avoid.
45101         (func_acceptable): New function.
45102         (func_modules_transitive_closure): Use it.
45103
45104 2005-07-11  Bruno Haible  <bruno@clisp.org>
45105
45106         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
45107         Reported by Jim Meyering.
45108
45109 2005-07-10  Bruno Haible  <bruno@clisp.org>
45110
45111         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
45112         Needed when size_t is smaller than 'unsigned int'.
45113         Reported by Paul Eggert.
45114
45115 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
45116
45117         * modules/argp (Depends-on): Add unlocked-io
45118
45119 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
45120
45121         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
45122         block of defines.
45123
45124 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
45125
45126         * config/srclist.txt: Comment out regcomp.c, since we have a porting
45127         fix now.
45128
45129 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
45130         and Paul Eggert  <eggert@cs.ucla.edu>
45131
45132         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
45133         in wint_t, not wchar_t.  Remove now-unnecessary cast.
45134
45135 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45136
45137         * modules/regex (Files): Add lib/regex_internal.c,
45138         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
45139         (Depends-on): Add extensions.
45140         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
45141
45142 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45143
45144         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
45145         pathconf.
45146         * m4/same.m4 (gl_SAME): Likewise.
45147         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
45148
45149         * m4/regex.m4: Adjust to new libc regex implementation.
45150         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
45151         all the .c and .h parts of (the new) regex.
45152         Quote the m4 stuff better.
45153         Check for RE_ICASE bug of old gnulib.
45154         Check for REG_STARTEND of recent libc.
45155         Rename local variables from jm_* to gl_*.
45156         Quote operand of "test -f".
45157         Say "recent enough" version of libc, not "version 2".
45158         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
45159         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
45160         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
45161         Remove check for btowc, isascii.
45162         Require AM_LANGINFO_CODESET.
45163
45164 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45165
45166         * lib/regex.c, regex.h: Sync from libc.
45167         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
45168         * lib/regexec.c:
45169         New files, synced from libc, except that regex_internal.h
45170         currently has a small porting fix.
45171
45172 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45173
45174         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
45175         regex_internal.c, regexec.c.
45176         Add regex_internal.h too, but as a comment, since the libc version
45177         is currently broken in gnulib mode.
45178
45179 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45180
45181         Support programs like Emacs that use gnulib but not gettext.
45182         * MODULES.html.sh (Internationalization functions): Add gettext-h.
45183         * modules/gettext-h: New file.
45184         * modules/gettext (Files): Remove lib/gettext.h.
45185         (Depends-on): Add gettext-h.
45186         (Makefile.am): Remove lib_SOURCES.
45187         * modules/argmatch, modules/c-stack, modules/closeout:
45188         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
45189         * modules/execute, modules/file-type, modules/getaddrinfo:
45190         * modules/getopt, modules/human, modules/javacomp:
45191         * modules/javaexec, modules/mkdir-p, modules/obstack:
45192         * modules/openat, modules/pagealign_alloc, modules/pipe:
45193         * modules/quotearg, modules/regex, modules/rpmatch:
45194         * modules/unicodeio, modules/userspec, modules/version-etc:
45195         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
45196         * modules/xsetenv:
45197         Depend on gettext-h, not gettext.
45198
45199 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
45200
45201         * gnulib-tool (func_import): Add support for 'public domain' license.
45202         * modules/alloca, modules/atexit, modules/memmove:
45203         Now public domain, not GPL.
45204         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
45205         * modules/realloc, modules/strerror, modules/strtod:
45206         Now LGPL, not GPL.
45207
45208 2005-07-05  Bruno Haible  <bruno@clisp.org>
45209
45210         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
45211         autoconf CVS. Needed for mingw.
45212
45213 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45214
45215         Remove the dependency of the strftime module on the tzset module.
45216         * modules/strftime (Depends-on): Remove dependency on tzset.
45217
45218 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45219
45220         Remove the dependency of the strftime module on the tzset module.
45221         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
45222         gl_FUNC_TZSET_CLOBBER.
45223
45224 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45225
45226         Remove the dependency of the strftime module on the tzset module.
45227         * lib/strftime.c (my_strftime)
45228         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
45229         Copy the input structure, to work around some of the bug with
45230         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
45231         Solaris releases, you should also use the tzset module, but we won't
45232         require it as a dependency any more since we don't want LGPLed code
45233         to depend on GPLed code.
45234
45235 2005-07-02  Jim Meyering  <jim@meyering.net>
45236
45237         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
45238         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
45239         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
45240         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
45241
45242 2005-07-02  Jim Meyering  <jim@meyering.net>
45243
45244         * lib/backupfile.c (backup_args): Change a `0' to NULL.
45245
45246 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
45247
45248         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
45249         declares only 'struct timespec;' (!).
45250
45251 2005-07-01  Jim Meyering  <jim@meyering.net>
45252
45253         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
45254         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
45255         * lib/save-cwd.c, tempname.c:
45256         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
45257         and don't include <sys/file.h>).
45258
45259 2005-06-29  Jim Meyering  <jim@meyering.net>
45260
45261         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
45262         type name.  Use the variable name instead.
45263         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
45264         Likewise.
45265
45266 2005-06-28  Simon Josefsson  <jas@extundo.com>
45267
45268         * modules/check-version (Files): Add check-version.m4.
45269
45270 2005-06-28  Simon Josefsson  <jas@extundo.com>
45271
45272         * m4/check-version.m4: New file, suggested by Jim Meyering
45273         <jim@meyering.net>.
45274
45275 2005-06-28  Simon Josefsson  <jas@extundo.com>
45276
45277         * lib/check-version.h, lib/check-version.c: New files.
45278
45279 2005-06-28  Simon Josefsson  <jas@extundo.com>
45280
45281         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
45282         collision with global variable.  Better indentation.  Don't
45283         increment buffer pointer beyond buffer end.  Based on comments
45284         from Paul Eggert <eggert@cs.ucla.edu>.
45285
45286         * lib/base64.h: Indent.
45287
45288 2005-06-28  Simon Josefsson  <jas@extundo.com>
45289
45290         * doc/gnulib.texi (Library version handling): New section.
45291
45292 2005-06-28  Jim Meyering  <jim@meyering.net>
45293
45294         * check-module (find_included_lib_files): Hard-code another
45295         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
45296         but modules/fts-lgpl (correctly) does not list those files.
45297
45298         * modules/canonicalize (Files): Add lib/pathmax.h.
45299
45300 2005-06-25  Simon Josefsson  <jas@extundo.com>
45301
45302         * modules/check-version: New file.
45303
45304 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
45305
45306         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
45307         initializer of struct addrinfo, as an indication that we don't
45308         care how many members the structure has.
45309
45310 2005-06-24  Derek Price  <derek@ximbiot.com>
45311         and Bruno Haible  <bruno@clisp.org>
45312
45313         Remove stat module & update lstat.
45314         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
45315         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
45316         * m4/stat.m4: Remove this file.
45317
45318 2005-06-24  Derek Price  <derek@ximbiot.com>
45319         and Bruno Haible  <bruno@clisp.org>
45320
45321         Remove stat module & update lstat.
45322         * lib/stat.c: Remove this file...
45323         (slash_aware_lstat): ...moving this content and its support...
45324         * lib/lstat.c (rpl_lstat): ...into here.
45325         * lib/lstat.h: New file.
45326
45327 2005-06-24  Derek Price  <derek@ximbiot.com>
45328         and Bruno Haible  <bruno@clisp.org>
45329
45330         Remove stat module & update lstat.
45331         * config/srclist.txt (libc sources): Remove stat.
45332
45333 2005-06-24  Derek Price  <derek@ximbiot.com>
45334         and Bruno Haible  <bruno@clisp.org>
45335
45336         Remove stat module & update lstat.
45337         * MODULES.html.sh (stat): Remove.
45338         * MODULES.html: Regenerated.
45339         * modules/lstat (Description): Correct function name.
45340         (Files): Add "lstat.h".
45341         (Depends-on): Remove stat, add xalloc, stat-macros.
45342         * modules/stat: Remove this file.
45343         (Include): Add "lstat.h", remove <sys/stat.h>.
45344
45345 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
45346
45347         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
45348         (ranged_convert): Don't save conversion in a temporary struct.
45349         This causes a warning with GCC 4.0.0, and anyway in the typical
45350         case it's not worth the extra 100 bytes or so of code.
45351         (ranged_convert, __mktime_internal): When calling a function via a
45352         pointer P, use P () rather than (*P) (), as we now assume C89 or
45353         better.
45354
45355 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
45356
45357         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
45358         "who -r" failed to give output.  Problem reported by Tim Waugh.
45359
45360         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
45361         (xcalloc): Use it to avoid needless tests.
45362         Problem reported by Jim Meyering.
45363
45364 2005-06-20  Derek Price  <derek@ximbiot.com>
45365
45366         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
45367         unnecessary for Autoconfs > 2.59c.
45368
45369 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45370
45371         * lib/argp.h (__option_is_short): Check upper limit of
45372         __key. Isprint() requires its argument to have the value
45373         of an unsigned char or EOF.
45374
45375 2005-06-16  Jim Meyering  <jim@meyering.net>
45376
45377         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
45378         when either N or S is zero.
45379
45380 2005-06-16  Derek Price  <derek@ximbiot.com>
45381
45382         * m4/bison.m4: Declare YACC & YFLAGS precious.
45383
45384 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
45385
45386         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
45387         multibyte string or pattern, fall back on unibyte matching.
45388         Problem reported by James Youngman.
45389
45390 2005-06-08  Bruno Haible  <bruno@clisp.org>
45391
45392         * modules/csharpcomp: New file.
45393         * MODULES.html.sh (C#): Add csharpcomp.
45394
45395 2005-06-08  Bruno Haible  <bruno@clisp.org>
45396
45397         * m4/csharpcomp.m4: New file, from GNU gettext.
45398
45399 2005-06-08  Bruno Haible  <bruno@clisp.org>
45400
45401         * lib/csharpcomp.h: New file, from GNU gettext.
45402         * lib/csharpcomp.c: New file, from GNU gettext.
45403         * lib/csharpcomp.sh.in: New file, from GNU gettext.
45404
45405 2005-06-08  Bruno Haible  <bruno@clisp.org>
45406
45407         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
45408         warning on mingw.
45409
45410 2005-06-07  Derek Price  <derek@ximbiot.com>
45411
45412         Sync from CVS.
45413         * lib/glob_.h: Indent nested #ifdef.
45414
45415 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45416
45417         Sync from coreutils.
45418         Use "file name" when talking about file names, instead of "filename"
45419         or "path", as per the GNU coding standards.
45420         * lib/mkdir-p.c: Renamed from makepath.c.
45421         (make_dir_parents): Renamed from make_path.  All callers changed.
45422         * lib/mkdir-p.h: Likewise.  All includers changed.
45423         * lib/filenamecat.c: Renamed from path-concat.c.
45424         (file_name_concat): Renamed from path_concat.  All callers changed.
45425         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
45426         * lib/filenamecat.h: Likewise.  All includers changed.
45427         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
45428         in comments or local variable names.
45429         * lib/basename.c: Likewise.
45430         * lib/canonicalize.c, canonicalize.h: Likewise.
45431         * lib/dirname.c, dirname.h: Likewise.
45432         * lib/euidaccess.c: Likewise.
45433         * lib/exclude.c: Likewise
45434         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
45435         * lib/fsusage.c, fsuage.h: Likewise.
45436         * lib/fts.c, fts_.h: Likewise.
45437         * lib/getcwd.c: Likewise.
45438         * lib/getloadavg.c: Likewise.
45439         * lib/mkstemp.c: Likewise.
45440         * lib/mountlist.c, mountlist.h: Likewise.
45441         * lib/openat.c, openat.h: Likewise.
45442         * lib/readlink-stub.c: Likewise.
45443         * lib/readutmp.c, readutmp.h: Likewise.
45444         * lib/rename.c: Likewise.
45445         * lib/rmdir.c: Likewise.
45446         * lib/same.c: Likewise.
45447         * lib/savedir.c: Likewise.
45448         * lib/stripslash.c: Likewise.
45449         * lib/tempname.c: Likewise.
45450         * lib/xreadlink.c: Likewise.
45451         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
45452         All uses changed.
45453         * lib/exclude.h: Likewise.
45454
45455         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
45456         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45457         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
45458         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45459         * lib/pathmax.h: Include <limits.h> unconditionally, since other
45460         files have been getting away with it for years (MORE/BSD 4.3
45461         is extinct now).
45462         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
45463         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45464
45465         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
45466         Define to 256, not 255, as per modern POSIX.
45467
45468 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45469
45470         Sync from coreutils.
45471         Use "file name" when talking about file names, instead of "filename"
45472         or "path", as per the GNU coding standards.
45473         * MODULES.html.sh: mkdir-p renamed from makepath.
45474         filenamecat renamed from path-concat.
45475         * modules/filenamecat: Renamed from modules/path-concat.
45476         (Files): filenamecat.h and filenamecat.c renamed from
45477         path-concat.h and path-concat.c.
45478         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
45479         (Include): filenamecat.h, not path-concat.h.
45480         * modules/mkdir-p: Renamed from modules/makepath.
45481         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
45482         makepath.c.
45483         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
45484         (Include): mkdir-p.h, not makepath.h.
45485
45486 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45487
45488         Sync from coreutils.
45489         * m4/mkdir-p.m4: Renamed from makepath.m4.
45490         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
45491         Rename files from makepath.c to mkdir-p.c, and from
45492         makepath.h to mkdir-p.h.
45493         * m4/filenamecat.m4: Renamed from path-concat.m4.
45494         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
45495         Rename files from path-concat.c to filenamecat.c,
45496         and from path-concat.h to filenamecat.h.
45497         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
45498         "file name" in local variables or comments.
45499         * m4/rename.m4: Likewise.
45500
45501 2005-06-01  Bruno Haible  <bruno@clisp.org>
45502
45503         * modules/csharpexec: New file.
45504         * MODULES.html.sh (C#): New section.
45505
45506 2005-06-01  Bruno Haible  <bruno@clisp.org>
45507
45508         * m4/csharp.m4: New file, from GNU gettext.
45509         * m4/csharpexec.m4: New file, from GNU gettext.
45510
45511 2005-06-01  Bruno Haible  <bruno@clisp.org>
45512
45513         * lib/csharpexec.h: New file, from GNU gettext.
45514         * lib/csharpexec.c: New file, from GNU gettext.
45515         * lib/csharpexec.sh.in: New file, from GNU gettext.
45516
45517 2005-05-31  Derek Price  <derek@ximbiot.com>
45518             Paul Eggert  <eggert@cs.ucla.edu>
45519
45520         Sync from cvs.
45521         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
45522
45523 2005-05-31  Derek Price  <derek@ximbiot.com>
45524             Paul Eggert  <eggert@cs.ucla.edu>
45525
45526         Sync from cvs.
45527         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
45528
45529 2005-05-29  Derek Price  <derek@ximbiot.com>
45530
45531         * config/srclist.txt (glob_.h, glob.c): Add these files.
45532
45533 2005-05-29  Derek Price  <derek@ximbiot.com>
45534
45535         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
45536         * modules/glob: New file.
45537         * modules/getlogin_r: Add link to POSIX spec in description.
45538
45539 2005-05-29  Derek Price  <derek@ximbiot.com>
45540             Paul Eggert  <eggert@cs.ucla.edu>
45541
45542         * m4/glob.m4: New file.
45543
45544 2005-05-29  Derek Price  <derek@ximbiot.com>
45545             Paul Eggert  <eggert@cs.ucla.edu>
45546
45547         * lib/glob_.h, lib/glob.c: New files.
45548
45549 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45550
45551         * modules/fts (Files): Remove m4/inttypes-pri.m4.
45552         * modules/fts-lgpl (Depends-on): Remove gettext.
45553
45554 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45555
45556         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
45557         and don't require gt_INTTYPES_PRI.
45558
45559 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45560
45561         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
45562
45563         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
45564         the configuration hassle isn't worth it.
45565         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
45566         (LONGEST_MODIFIER, PRIuMAX): Remove.
45567
45568 2005-05-27  Bruno Haible  <bruno@clisp.org>
45569
45570         * lib/getlogin_r.h: Remove second include of <stddef.h>.
45571
45572 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
45573
45574         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
45575         _POSIX_PTHREAD_SEMANTICS for Solaris.
45576
45577 2005-05-25  Derek Price  <derek@ximbiot.com>
45578
45579         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
45580
45581 2005-05-25  Derek Price  <derek@ximbiot.com>
45582             Paul Eggert  <eggert@cs.ucla.edu>
45583
45584         * modules/getlogin_r, m4/getlogin_r.m4: New files.
45585         * lib/getlogin_r.c, getlogin_r.h: New files.
45586
45587 2005-05-25  Bruno Haible  <bruno@clisp.org>
45588             Derek Price  <derek@ximbiot.com>
45589
45590         * lib/getlogin_r.h: Simplify API documentation.
45591
45592 2005-05-23  Derek Price  <derek@ximbiot.com>
45593
45594         * modules/minmax (Files): Add m4/minmax.m4.
45595         (configure.ac): Add gl_MINMAX.
45596
45597 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
45598
45599         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
45600         so that unistd-safer.h (GPL'ed code) need not be included.
45601
45602 2005-05-22  Bruno Haible  <bruno@clisp.org>
45603
45604         * m4/minmax.m4: New file.
45605         Based on a patch by Derek Price <derek@ximbiot.com>.
45606
45607 2005-05-22  Bruno Haible  <bruno@clisp.org>
45608
45609         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
45610         (INT64_MIN): Fix definition.
45611         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
45612
45613         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
45614         NEED_SIGNED_INT_TYPES.
45615
45616         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
45617         HAVE_SYSTEM_INTTYPES.
45618
45619 2005-05-22  Bruno Haible  <bruno@clisp.org>
45620
45621         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
45622         Also include <sys/param.h> if it defines MIN, MAX.
45623         Based on a patch by Derek Price <derek@ximbiot.com>.
45624
45625 2005-05-21  Jim Meyering  <jim@meyering.net>
45626
45627         * modules/fts (Files): Add m4/inttypes-pri.m4.
45628         (Depends-on): Add lstat and remove gettext.  Alphabetize.
45629
45630 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45631
45632         New fts module.
45633         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
45634         (setup_dir, free_dir): New functions.
45635         (enter_dir, leave_dir): Define trivial
45636         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
45637         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
45638         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
45639         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
45640         Move to fts-cycle.c.
45641         (fts_open): Use setup_dir.
45642         (fts_close): Use free_dir.
45643         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
45644         This adds a label and some gotos, but the alternatives were messier.
45645         Check for memory allocation failure when entering a dir.
45646         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
45647         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
45648         (FTS): New member fts_cycle, that is a union that contains the
45649         old active_dir_ht and cycle_state.  All uses changed to mention
45650         fts_cycle.ht and fts_cycle.state.
45651         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
45652         fts.c, with the following changes:
45653         (setup_dir, free_dir): New functions.
45654         (enter_dir): Now returns bool.  Return true if successful, false
45655         if memory exhausted.  All callers changed.
45656         Do not bother partly cleaning up on
45657         memory allocation failure; that is free_dir's job.
45658         However, free ad if hash_insert fails, to avoid memory leak.
45659         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
45660         fts->fts_options to see which union member to use.
45661
45662 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45663
45664         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
45665         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
45666
45667 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45668
45669         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
45670
45671 2005-05-20  Jim Meyering  <jim@meyering.net>
45672
45673         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
45674         Now a macro, to pacify GCC.
45675
45676 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
45677
45678         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
45679         of -1.
45680
45681 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
45682
45683         * lib/chown.c (rpl_chown): Return -1 on failure.
45684
45685 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
45686
45687         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
45688         Don't check for stddef.h.
45689         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
45690         don't use its results.
45691         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
45692         since we include them unconditionally.  Don't require
45693         AM_STDBOOL_H, since stdbool is a prerequisite.
45694         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
45695         since we assume C89 or better.
45696         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
45697         as we don't use their results.
45698         Don't check for fchdir, memmove, memset, strrchr, as we use
45699         them unconditionally.
45700         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
45701         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
45702
45703 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
45704
45705         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
45706         Include <stddef.h> unconditionally, since we assume C89 now.
45707         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
45708         * lib/fts.c: Include fts_.h first, to check interface.
45709         Do not include intprops.h; no longer needed.
45710         Include cycle-check.h and hash.h, since fts_.h no longer does.
45711         Remove unnecessary casts of closedir to void.
45712         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
45713         decide whether to decrement nlinks.
45714         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
45715         (FTS): Use struct hash_table * instead of Hash_table, so that
45716         we no longer need to include hash.h here.
45717
45718 2005-05-18  Jim Meyering  <jim@meyering.net>
45719
45720         * modules/dirfd (License): Change to LGPL.  Most of the code
45721         is already in the public domain.
45722
45723 2005-05-18  Jim Meyering  <jim@meyering.net>
45724
45725         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
45726         Reported by Yoann Vandoorselaere.
45727
45728 2005-05-17  Jim Meyering  <jim@meyering.net>
45729
45730         * m4/fts.m4: New file, from coreutils.
45731
45732 2005-05-17  Jim Meyering  <jim@meyering.net>
45733
45734         * lib/fts.c, lib/fts_.h: New files, from coreutils.
45735
45736 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45737
45738         Sync from coreutils.
45739         * m4/unlinkdir.m4: New file.
45740
45741 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45742
45743         Sync from coreutils.
45744         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
45745         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
45746         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
45747         White space changes only.
45748         * lib/makepath.c (make_path): Port to hosts where leading "//" is
45749         special.
45750         * lib/yesno.c: Include getline.h, not ctype.h.
45751         (yesno): Don't remove leading white space; POSIX doesn't allow it.
45752         Use getline to remove arbitrary restriction on response length.
45753
45754 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45755
45756         * config/srclist-update: Spell out "Street" in FSF postal
45757         mail address; this is the style the FSF seems to prefer.
45758
45759         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
45760         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
45761         this updates FSF postal mail address.
45762
45763         Sync from coreutils.
45764         * modules/unlinkdir: New file.
45765         * modules/yesno (Depends-on): Add getline.
45766         * MODULES.html.sh (File system functions): Add unlinkdir.
45767
45768 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
45769
45770         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
45771         lib/strsep.h:
45772         Change the initial comment to refer to GPL, not LGPL.
45773         gnulib-tool will change it to LGPL as needed.
45774
45775         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
45776         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
45777         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
45778         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
45779         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
45780         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
45781         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
45782         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
45783         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
45784         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
45785         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
45786         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
45787         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
45788         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
45789         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
45790         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
45791         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
45792         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
45793         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
45794         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
45795         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
45796         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
45797         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
45798         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
45799         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
45800         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
45801         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
45802         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
45803         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
45804         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
45805         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
45806         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
45807         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
45808         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
45809         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
45810         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
45811         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
45812         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
45813         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
45814         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
45815         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
45816         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
45817         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
45818         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
45819         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
45820         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
45821         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
45822         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
45823         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
45824         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
45825         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
45826         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
45827         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
45828         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
45829         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
45830         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
45831         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
45832         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
45833         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
45834         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
45835         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
45836         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
45837         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
45838         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
45839         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
45840         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
45841         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
45842         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
45843         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
45844         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
45845         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
45846         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
45847         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
45848         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
45849         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
45850         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
45851         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
45852         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
45853         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
45854         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
45855         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
45856         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
45857         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
45858         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
45859         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
45860         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
45861         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
45862         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
45863         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
45864         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
45865         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
45866         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
45867         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
45868         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
45869         lib/yesno.c, lib/yesno.h:
45870         Update FSF postal mail address.
45871
45872 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
45873
45874         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
45875         tests/test-memmem.c, tests/test-stpncpy.c:
45876         Update FSF postal mail address.
45877
45878 2005-05-13  Bruno Haible  <bruno@clisp.org>
45879
45880         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
45881         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
45882         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
45883         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
45884         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
45885         Add support for 64-bit integers in the MSVC compiler.
45886
45887 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45888
45889         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
45890
45891 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
45892
45893         * gnulib-tool (func_import): Sort and uniquify recommended includes.
45894
45895 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
45896
45897         * doc/getdate.texi (General date syntax): Don't say that date
45898         date --iso-8601=ns generates acceptable dates; it doesn't yet.
45899         Problem reported by Nic Ferrier.
45900
45901 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45902
45903         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
45904         specified in ai_socktype. Fix invalid ai_protocol
45905         check. ai_protocol is usually set to 0 or depending on
45906         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
45907         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
45908         ai_socktype / ai_protocol in the returned addrinfo structure.
45909
45910 2005-05-10  Simon Josefsson  <jas@extundo.com>
45911
45912         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
45913         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
45914
45915 2005-05-10  Karl Berry  <karl@gnu.org>
45916
45917         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
45918         (from http://www.gnu.org/licenses).
45919         * doc/COPYING.LIB: also rename to COPYING.LESSER.
45920         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
45921         fdl.texi suffices.
45922
45923 2005-05-10  Karl Berry  <karl@gnu.org>
45924
45925         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
45926         (COPYING.DOC): remove.
45927
45928         * config/srclist-update: new FSF address.
45929
45930 2005-05-10  Derek Price  <derek@ximbiot.com>
45931
45932         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
45933         possible.
45934
45935 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45936             Bruno Haible  <bruno@clisp.org>
45937
45938         * modules/inet_ntop: New file.
45939         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
45940         inet_ntop.
45941
45942 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45943             Bruno Haible  <bruno@clisp.org>
45944
45945         * m4/inet_ntop.m4: New file.
45946
45947 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45948             Bruno Haible  <bruno@clisp.org>
45949
45950         * lib/inet_ntop.h: New file.
45951         * lib/inet_ntop.c: New file, from glibc with modifications.
45952
45953 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
45954
45955         * modules/time_r (License): Change to LGPL.
45956         * modules/extensions (License): Change to LGPL.  Actually,
45957         the license is more permissive than that, but currently gnulib-tool
45958         doesn't know how to handle more-permissive licenses.
45959
45960         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
45961         Problem reported by Dave Love.
45962
45963 2005-05-08  Jim Meyering  <jim@meyering.net>
45964
45965         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
45966         blank.
45967
45968 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
45969
45970         * modules/argmatch (Depends-on): Add stdbool.
45971         * modules/backupfile (Depends-on): Likewise.
45972         * modules/chdir-long (Depends-on): Likewise.
45973         * modules/closeout (Depends-on): Likewise.
45974         * modules/cycle-check (Depends-on): Likewise.
45975         * modules/dirname (Depends-on): Likewise.
45976         * modules/fnmatch (Depends-on): Likewise.
45977         * modules/fsusage (Depends-on): Likewise.
45978         * modules/fwriteerror (Depends-on): Likewise.
45979         * modules/getcwd (Depends-on): Likewise.
45980         * modules/getloadavg (Depends-on): Likewise.
45981         * modules/hard-locale (Depends-on): Likewise.
45982         * modules/makepath (Depends-on): Likewise.
45983         * modules/mountlist (Depends-on): Likewise.
45984         * modules/nanosleep (Depends-on): Likewise.
45985         * modules/posixtm (Depends-on): Likewise.
45986         * modules/quotearg (Depends-on): Likewise.
45987         * modules/readtokens (Depends-on): Likewise.
45988         * modules/readtokens0 (Depends-on): Likewise.
45989         * modules/readutmp (Depends-on): Likewise.
45990         * modules/save-cwd (Depends-on): Likewise.
45991         * modules/strftime (Depends-on): Likewise.
45992         * modules/userspec (Depends-on): Likewise.
45993         * modules/utimecmp (Depends-on): Likewise.
45994         * modules/xgetcwd (Depends-on): Likewise.
45995         * modules/xnanosleep (Depends-on): Likewise.
45996         * modules/xstrtod (Depends-on): Likewise.
45997         * modules/yesno (Depends-on): Likewise.
45998
45999 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
46000
46001         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
46002         needless checks.
46003
46004 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46005
46006         Merge from coreutils.  Among other things,
46007         add bulletproofing for cases where stdin, stdout, or stderr are closed.
46008         * lib/fd-safer.c: New file.
46009         * lib/fcntl-safer.h, open-safer.c: Remove.
46010         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
46011         * lib/dup-safer.c: Include unistd-safer.h first.
46012         Don't include errno.h.
46013         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
46014         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
46015         * lib/file-type.c: Rely on file-type.h change.
46016         * lib/getloadavg.c: Include unistd-safer.h.
46017         (getloadavg): Use safer open.
46018         * lib/getusershell.c: Include "stdio-safer.h".
46019         (getusershell): Use safer fopen.
46020         * lib/long-options.c (long_options): Use NULL rather than 0.
46021         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
46022         'free'.
46023         * lib/modechange.c: Likewise.
46024         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
46025         (MODE_DONE): New constant.
46026         (struct mode_change): Remove 'next' member.
46027         (make_node_op_equals): New function; like the old one of the
46028         same name, except it allocates an array.
46029         (mode_compile, mode_create_from_ref): Use it.
46030         (mode_compile): Allocate result as an array, not a linked list.
46031         Parse octal string ourself, so that we catch mistakes like "+0".
46032         (mode_adjust): Arg is an array, not a linked list.
46033         * lib/modechange.c: Include stat-macros.h, xalloc.h.
46034         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
46035         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
46036         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
46037         Remove.  This is now stat-macros.h's job.
46038         (talloc): Remove.  All callers replaced by xalloc, so that
46039         our invokers don't have to worry about reporting memory failures.
46040         (make_node_op_equals): Remove.
46041         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
46042         New constants.
46043         (struct mode_change): Moved here from modechange.h.
46044         (mode_append_entry): Remove.
46045         (mode_compile): Remove MASKED_OPS arg, since it encouraged
46046         apps to have incorrect behavior.  Use simpler algorithm for head
46047         and tail.  Don't futz with umask; that's now the job of mode_adjust.
46048         Detect more invalid usages rather than having somewhat-random behavior.
46049         Don't insert an "a=" action, as that leads to incorrect behavior.
46050         (mode_compile, mode_create_from_ref): Return NULL on error instead
46051         of an enum, since now there's only one way to have an error.  All
46052         callers changed.
46053         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
46054         at the correct time.  Simplify calculation of "+u" and its ilk.
46055         Don't mishandle "+X".
46056         (mode_free): Remove "register" and localize decls.
46057         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
46058         (struct mode_change): Move to modechange.c; callers don't
46059         need to see this stuff.
46060         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
46061         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
46062         (mode_change, mode_adjust): Reflect the new signatures noted above.
46063         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
46064         that might redefine system include files.
46065         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
46066         (my_usleep): Use NULL rather than (void *) 0.
46067         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
46068         Use siginterrupt to specify that system calls should be interrupted.
46069         (rpl_nanosleep): Move initialization of suspended closer to call of
46070         my_usleep.
46071         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
46072         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
46073         (desirable_utmp_entry): New function.
46074         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
46075         using x2nrealloc, to simplify logic.
46076         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
46077         size calculation.  Do not assume utmp file is a regular file.
46078         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
46079         (READ_UTMP_CHECK_PIDS): New constant.
46080         * lib/save-cwd.c: Include unistd-safer.h.
46081         (save_cwd): Use fd_safer.
46082         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
46083         [!_LIBC] Include "stat-macros.h" instead.
46084         * lib/unistd-safer.h (fd_safer): New decl.
46085
46086 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46087
46088         * modules/getloadavg (Depends-on): Add unistd-safer.
46089         * modules/getusershell (Depends-on): Add stdio-safer.
46090         * modules/lstat (Depends-on): Remove xalloc.
46091         * modules/mkstemp (Depends-on): Add stat-macros.
46092         * modules/modechange (Depends-on): Remove xstrtol.
46093         Add stat-macros, xalloc.
46094         * modules/save-cwd (Depends-on): Add unistd-safer.
46095         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
46096         * modules/unistd-safer (Files): Add lib/fd-safer.c
46097         (Makefile.am): Remove lib_SOURCES.
46098
46099         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
46100         Remove fcntl-safer; unistd-safer supersedes it.
46101
46102 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46103
46104         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
46105         AC_HEADER_STAT.
46106         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
46107         (gl_PREREQ_CHOWN): Remove.
46108         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
46109         it.  Don't require AC_HEADER_STAT.
46110         (gl_PREREQ_LSTAT): Remove.
46111         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
46112         Don't require AC_HEADER_STAT.
46113         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
46114         (gl_PREREQ_RMDIR): Remove.
46115         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
46116         mention stat-macros.h or AC_HEADER_STAT, since we'll make
46117         the stat-macros module a prerequisite.
46118         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
46119         * m4/filemode.m4 (gl_FILEMODE): Likewise.
46120         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
46121         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
46122         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
46123         variable names.
46124         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
46125         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
46126         variable prefixes.
46127         * m4/fcntl-safer.m4: Remove.
46128         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
46129         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
46130         Invoke gl_PREREQ_FD_SAFER.
46131         (gl_PREREQ_FD_SAFER): New macro.
46132         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
46133         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
46134         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
46135         Remove duplicate call to AC_LIBOBJ(readutmp).
46136         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
46137
46138         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
46139         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
46140
46141 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46142
46143         * MODULES.html.sh (Misc): Add byteswap.
46144
46145 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46146
46147         * modules/getcwd (Depends-on): Add extensions.
46148         * modules/openat (Depends-on): Likewise.
46149
46150 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46151
46152         * modules/byteswap: New file.
46153
46154 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46155
46156         * m4/byteswap.m4: New file.
46157
46158 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46159
46160         * lib/byteswap_.h: New file.
46161
46162 2005-04-25  Karl Berry  <karl@gnu.org>
46163
46164         * m4/gettext.m4: Update from GNU gettext 0.14.4.
46165
46166 2005-04-25  Albert Chin  <china@thewrittenword.com>
46167
46168         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
46169         Toolkit C bug.
46170
46171 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
46172
46173         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
46174         (func_ln_if_changed) Remove forcibly for no error message
46175         in case file does not exist.
46176
46177 2005-04-19  Simon Josefsson  <jas@extundo.com>
46178
46179         * gnulib-tool (Options): Make --symlink mean --symbolic.
46180
46181 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
46182
46183         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
46184
46185 2005-04-16  Simon Josefsson  <jas@extundo.com>
46186
46187         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
46188
46189 2005-04-15  Simon Josefsson  <jas@extundo.com>
46190
46191         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
46192
46193 2005-04-15  Simon Josefsson  <jas@extundo.com>
46194
46195         * gnulib-tool: Rename --symlink to --symbolic.
46196
46197 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
46198
46199         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
46200         symbolic links to files instead of copying/moving.  Add --aux-dir,
46201         specifying directory relative --dir where auxiliary build tools
46202         are placed.
46203
46204 2005-04-14  Bruno Haible  <bruno@clisp.org>
46205
46206         * modules/allocsa (License): Change to LGPL.
46207         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
46208
46209 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
46210
46211         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
46212         that "UTC +1 second" continues to work.  Problem reported
46213         by Dmitry V. Levin.
46214         (relunit_snumber): New rule.
46215         (relunit): Use it.
46216
46217 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
46218
46219         * lib/getdate.y (universal_time_zone_table): New constant.
46220         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
46221         universal_time_zone_table.
46222         (lookup_zone): Prefer universal_time_zone_table to
46223         local_time_zone_table, so that "GMT" time stamps are allowed in
46224         London during the summer.  Problem reported by Ian Abbott.
46225
46226 2005-04-12  Jim Meyering  <jim@meyering.net>
46227
46228         * lib/human.c (humblock): Set *options even when returning due to
46229         xstrtoumax conversion failure.  Thanks to a used-uninitialized
46230         warning from gcc-4.
46231
46232 2005-04-09  Jim Meyering  <jim@meyering.net>
46233
46234         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
46235         -Wuninitialized: initialize tm0.tm_year.
46236
46237 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
46238
46239         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
46240         count, since there's no maximum.  All uses changed.
46241         Add member dsts_seen.
46242         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
46243         not being INT_MAX.
46244         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
46245         Use pc_rels_seen to decide whther a date is absolute.
46246
46247         * lib/getdate.y (number): Don't overwrite year.
46248         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
46249         check.
46250
46251 2005-04-02  Simon Josefsson  <jas@extundo.com>
46252
46253         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
46254         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
46255
46256 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
46257
46258         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
46259         where no absolute path name can be longer than PATH_MAX.
46260
46261 2005-03-27  Jim Meyering  <jim@meyering.net>
46262
46263         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
46264
46265 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
46266
46267         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
46268         "one's complement" -> "ones' complement" in comment, as per Knuth.
46269         "value of type" -> "type or expression" in comment.
46270         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
46271
46272 2005-03-26  Jim Meyering  <jim@meyering.net>
46273
46274         Comment nits.
46275         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
46276         Correct typos: s/or/of/.
46277
46278 2005-03-26  Jim Meyering  <jim@meyering.net>
46279
46280         * modules/check-include-files: Move to ../ and rename to...
46281         * check-module: ...this.
46282
46283 2005-03-25  Jim Meyering  <jim@meyering.net>
46284
46285         * modules/xvasprintf (Files): Add xalloc.h.
46286
46287 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
46288
46289         * modules/gettext (Files): config/config.rpath ->
46290         build-aux/config.rpath
46291         * modules/iconv (Files): Likewise.
46292         Problem reported by Oskar Liljeblad.
46293
46294 2005-03-23  Jim Meyering  <jim@meyering.net>
46295
46296         * modules/check-include-files: New script to check for
46297         missing dependencies, multiple includes, etc.
46298
46299         * modules/c-strtold (Depends-on): Add xalloc.
46300         * modules/c-strtod (Depends-on): Add xalloc.
46301         * modules/hash (Depends-on): Add xalloc.
46302         (Files): Remove lib/xalloc.h.
46303
46304         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
46305         * modules/userspec (Files): Add lib/inttostr.h.
46306
46307 2005-03-23  Jim Meyering  <jim@meyering.net>
46308
46309         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
46310
46311 2005-03-22  Jim Meyering  <jim@meyering.net>
46312
46313         * modules/stat-macros: New module.
46314         * modules/canonicalize, modules/euidaccess, modules/file-type,
46315         * modules/filemode, modules/lchown, modules/makepath,
46316         * modules/rmdir, modules/stat: Depend on new stat-macros module
46317         rather than listing lib/stat-macros.h manually.
46318         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
46319
46320 2005-03-22  Jim Meyering  <jim@meyering.net>
46321
46322         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
46323
46324 2005-03-22  Bruno Haible  <bruno@clisp.org>
46325
46326         * config/srclist.txt: Replace target directory 'config' with
46327         'build-aux'.
46328         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
46329         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
46330         ../build-aux/.
46331
46332 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
46333
46334         * modules/chdir-long (Depends-on): Add mempcpy.
46335
46336         * modules/acl, modules/backupfile, modules/c-strtod,
46337         modules/c-strtold, modules/canon-host, modules/canonicalize,
46338         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
46339         modules/exclude, modules/exitfail, modules/file-type,
46340         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
46341         modules/getdate, modules/getline, modules/getpagesize,
46342         modules/getpass, modules/getugroups, modules/group-member,
46343         modules/hard-locale, modules/hash, modules/human, modules/idcache,
46344         modules/inttostr, modules/long-options, modules/makepath,
46345         modules/md5, modules/memcasecmp, modules/memcoll,
46346         modules/modechange, modules/mountlist, modules/path-concat,
46347         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
46348         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
46349         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
46350         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
46351         modules/strftime, modules/strndup, modules/strverscmp,
46352         modules/timespec, modules/unlocked-io, modules/userspec,
46353         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
46354         modules/yesno:
46355         Remove lib_SOURCES line from Makefile.am section, as this is now
46356         done automatically by the corresponding Autoconf macro.
46357
46358 2005-03-21  Jim Meyering  <jim@meyering.net>
46359
46360         Changes imported from coreutils.
46361
46362         * lib/cycle-check.c: Don't include xalloc.h.
46363
46364         * lib/path-concat.c: Don't include assert.h.
46365         (path_concat): Remove assertion that would have triggered
46366         for ABASE starting with more than one slash.
46367         Reported by Andreas Schwab.
46368
46369         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
46370         properly when ABASE is an absolute file name.
46371         Correct the description of this function.
46372         Include <assert.h>.
46373         Add an assertion and a test driver.
46374         This fixes a bug introduced on 2004-07-02.
46375         Andreas Schwab reported the resulting failure of cp --parents:
46376         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
46377
46378 2005-03-21  Jim Meyering  <jim@meyering.net>
46379
46380         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
46381         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
46382
46383 2005-03-21  Jim Meyering  <jim@meyering.net>
46384         and  Paul Eggert  <eggert@cs.ucla.edu>
46385
46386         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
46387         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
46388         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
46389         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
46390         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
46391         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
46392         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
46393         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
46394         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
46395         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
46396         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
46397         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
46398         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
46399         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
46400         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
46401         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
46402         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
46403         for these modules.
46404
46405 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
46406
46407         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
46408         (which shouldn't happen), generate nothing instead of returning 0
46409         immediately, so that nstrftime (NULL, ...) doesn't return 0.
46410
46411 2005-03-16  Bruno Haible  <bruno@clisp.org>
46412
46413         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
46414         HAVE_LONGLONG_64BIT.
46415
46416 2005-03-16  Bruno Haible  <bruno@clisp.org>
46417
46418         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
46419         HAVE_LONGLONG_64BIT.
46420
46421 2005-03-16  Bruno Haible  <bruno@clisp.org>
46422
46423         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
46424         HAVE_LONGLONG_64BIT.
46425
46426 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
46427
46428         * lib/strftime.c (my_strftime): Prepend space to format so that we can
46429         reliably distinguish strftime failure from empty output on POSIX
46430         hosts.
46431
46432 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
46433
46434         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
46435         (iconv_string): Don't guess a size-zero buffer, as that might cause
46436         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
46437         result would be 'too large', where 'too large' is (heuristically)
46438         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
46439         overflow concerns.  This will prevent some unwanted malloc failures
46440         when the inputs are very large.
46441
46442 2005-03-15  Karl Berry  <karl@gnu.org>
46443
46444         * config/srclist.txt (config.rpath): from gettext.
46445         * config/config.rpath: update.
46446
46447 2005-03-15  Bruno Haible  <bruno@clisp.org>
46448
46449         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
46450         to 'negate'.
46451
46452         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
46453         variable.
46454
46455         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
46456         results.
46457
46458 2005-03-14  Simon Josefsson  <jas@extundo.com>
46459
46460         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
46461         <fx@gnu.org>.
46462
46463 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
46464
46465         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
46466         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
46467         intprops.h.
46468         * lib/strtol.c: Likewise.
46469
46470 2005-03-14  Jim Meyering  <jim@meyering.net>
46471
46472         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
46473         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
46474         to be nonzero so that we (and caller) can detect the difference
46475         between a valid zero-length expansion and an error return, even
46476         when the underlying strftime fails before writing anything into
46477         that location.
46478
46479 2005-03-14  Bruno Haible  <bruno@clisp.org>
46480
46481         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
46482         Update from GNU gettext 0.14.3.
46483
46484 2005-03-10  Jim Meyering  <jim@meyering.net>
46485
46486         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
46487
46488 2005-03-10  Jim Meyering  <jim@meyering.net>
46489
46490         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
46491         so that this module works on systems without fchdir.
46492
46493 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
46494
46495         Factor int-properties macros into a single file, except for
46496         glibc-related files.
46497         * lib/intprops.h: New file.
46498         * lib/getloadavg.c: Include it instead of limits.h.
46499         (INT_STRLEN_BOUND): Remove.
46500         * lib/human.c: Include intprops.h.
46501         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
46502         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
46503         302/1000.
46504         * lib/inttostr.h: Include intprops.h instead of limits.h.
46505         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
46506         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
46507         for consistency with intprops.h.
46508         (time_t_is_integer, twos_complement_arithmetic): Use them.
46509         * lib/sig2str.h: Include <signal.h>, intprops.h.
46510         (INT_STRLEN_BOUND): Remove.
46511         * lib/strftime.c (TYPE_SIGNED): Remove.
46512         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
46513         * lib/strtol.c: Adjust comments to match intprops.h.
46514         * lib/userspec.c: Include intprops.h.
46515         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
46516         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
46517         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
46518         instead of rolling our own expressions.
46519         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
46520
46521         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
46522         instead of int.
46523         (my_strftime): Do not mishandle years close to INT_MAX, by doing
46524         the right thing even if adding 1900 would overflow.  Similarly
46525         for tm_mon + 1 and tm_yday + 1.
46526         Make %Y always equivalent to %C%y, and similarly for %G and %g.
46527         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
46528         (DO_SIGNED_NUMBER): New macro.
46529         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
46530
46531 2005-03-07  Bruno Haible  <bruno@clisp.org>
46532
46533         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
46534
46535 2005-03-07  Bruno Haible  <bruno@clisp.org>
46536
46537         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
46538
46539 2005-03-04  Derek R. Price  <derek@ximbiot.com>
46540
46541         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
46542         (func_import): Only replace files via --import when they have actually
46543         changed.
46544
46545 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46546
46547         * m4/mmap-anon.m4: New file.
46548         * m4/pagealign_alloc.m4: New file.
46549
46550 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46551             Bruno Haible  <bruno@clisp.org>
46552
46553         * modules/pagealign_alloc: New file.
46554         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
46555
46556 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46557             Bruno Haible  <bruno@clisp.org>
46558
46559         * lib/pagealign_alloc.h: New file.
46560         * lib/pagealign_alloc.c: New file.
46561
46562 2005-03-03  Bruno Haible  <bruno@clisp.org>
46563
46564         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
46565         Use an all-permissive copyright notice, recommended by RMS.
46566
46567 2005-03-02  Bruno Haible  <bruno@clisp.org>
46568
46569         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
46570         of AIX, the replacement has to be done only after <string.h> is
46571         included, therefore not in config.h. stpncpy.h does the replacement,
46572         and stpncpy.c uses it.
46573
46574 2005-03-02  Bruno Haible  <bruno@clisp.org>
46575
46576         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
46577         stpncpy.c uses it.
46578
46579 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46580
46581         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
46582         The workaround isn't strictly needed for POSIX conformance, and
46583         it's too much of a pain to configure and maintain.  We'll ask
46584         people to fix their kernels instead.
46585         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
46586         (NANOSLEEP_BUG_WORKAROUND): Remove.
46587         (xnanosleep): Remove the workaround.
46588
46589 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46590
46591         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
46592         Reported by Derek Price.
46593         (Include): Add "timespec.h".
46594
46595         * modules/xnanosleep (Depends-on): Remove gethrxtime.
46596
46597 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46598
46599         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
46600         to detect nanosleep bug.
46601
46602 2005-03-01  Bruno Haible  <bruno@clisp.org>
46603
46604         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
46605
46606 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
46607
46608         * modules/gethrxtime: New file.
46609         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
46610         (Depends-on): Add gethrxtime.
46611         (configure.ac): Add gl_XNANOSLEEP.
46612         (Makefile.am): Remove lib_SOURCES line.
46613
46614 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
46615
46616         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
46617         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
46618
46619 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
46620
46621         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
46622         * lib/timespec.h (gettime): Return void, since it always
46623         succeeds now.  All uses changed.
46624         * lib/gettime.c (gettime) Likewise.
46625         [HAVE_NANOTIME]: Prefer nanotime.
46626         Assume gettimeofday succeeds, as POSIX requires.
46627         Assime time () succeeds, since other code already does.
46628         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
46629         (timespec_subtract): Remove.
46630         (NANOSLEEP_BUG_WORKAROUND): New constant.
46631         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
46632         things considerably.  Use it only on GNU/Linux hosts, since the
46633         workaround shouldn't be needed elsewhere.
46634
46635 2005-02-24  Bruno Haible  <bruno@clisp.org>
46636
46637         * modules/gettext (Files): Add m4/glibc2.m4.
46638
46639 2005-02-24  Bruno Haible  <bruno@clisp.org>
46640
46641         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
46642         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
46643         * m4/progtest.m4:
46644         Update from GNU gettext 0.14.2.
46645         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
46646
46647 2005-02-24  Bruno Haible  <bruno@clisp.org>
46648
46649         * lib/localcharset.c: Update from GNU gettext 0.14.2.
46650         * lib/config.charset: Update from GNU gettext 0.14.2.
46651
46652 2005-02-24  Bruno Haible  <bruno@clisp.org>
46653
46654         * lib/gettext.h: Update from GNU gettext 0.14.2.
46655
46656 2005-02-23  Simon Josefsson  <jas@extundo.com>
46657
46658         * m4/iconvme.m4: New file.
46659
46660 2005-02-23  Jim Meyering  <jim@meyering.net>
46661
46662         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
46663         change.
46664         Thanks to Bruno Haible for catching it.
46665
46666 2005-02-22  Simon Josefsson  <jas@extundo.com>
46667
46668         * modules/iconvme: New file.
46669
46670         * MODULES.html.sh: Add iconvme.
46671
46672 2005-02-22  Simon Josefsson  <jas@extundo.com>
46673
46674         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
46675
46676 2005-02-22  Simon Josefsson  <jas@extundo.com>
46677
46678         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
46679
46680 2005-02-22  Jim Meyering  <jim@meyering.net>
46681
46682         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
46683         s/ifndef/ifdef/.
46684
46685 2005-02-20  Neil Conway  <neilc@samurai.com>
46686
46687         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
46688         returned by OSX/Darwin if the specified buffer is not large
46689         enough for the hostname.
46690
46691 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46692
46693         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
46694         pass it to _help, otherwise the latter coredumps trying to
46695         dereference state.root_argp.
46696
46697 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46698
46699         * modules/chdir-long (Depends-on): Add memrchr.
46700         * modules/memrchr (Files): Add lib/memrchr.h.
46701         (Include): "memrchr.h".
46702
46703 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46704
46705         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
46706
46707 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46708
46709         * lib/memrchr.h: New file.
46710         * lib/chdir-long.c: Include it.
46711         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
46712         Don't bother including stddef.h.
46713
46714 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
46715
46716         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
46717         inclusion.
46718         Include <sys/types.h>, for dev_t.
46719         (ME_DUMMY, ME_REMOTE): Move from here....
46720         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
46721         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
46722         Dmitry V. Levin.
46723         Include mountlist.h first, to test the interface.
46724
46725 2005-01-29  Bruno Haible  <bruno@clisp.org>
46726
46727         * lib/progname.c (program_name): Initialize.
46728         Needed when linking statically on MacOS X.
46729
46730 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
46731
46732         Sync from coreutils.
46733         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
46734         (Depends-on): Add c-strtod.
46735         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
46736
46737 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
46738
46739         Sync from coreutils.
46740         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
46741
46742         Remove files that are specific to coreutils.
46743         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
46744
46745 2005-01-28  Bruno Haible  <bruno@clisp.org>
46746
46747         * modules/javacomp: New file.
46748         * MODULES.html.sh (Java): Add javacomp.
46749
46750 2005-01-28  Bruno Haible  <bruno@clisp.org>
46751
46752         * m4/javacomp.m4: New file, from GNU gettext.
46753
46754 2005-01-28  Bruno Haible  <bruno@clisp.org>
46755
46756         * lib/javacomp.sh.in: New file, from GNU gettext.
46757         * lib/javacomp.h: New file, from GNU gettext.
46758         * lib/javacomp.c: New file, from GNU gettext.
46759
46760 2005-01-26  Simon Josefsson  <jas@extundo.com>
46761
46762         * lib/gai_strerror.c: Use GPL in header.
46763
46764 2005-01-26  Bruno Haible  <bruno@clisp.org>
46765
46766         * modules/javaexec: New file.
46767         * MODULES.html.sh (Java): Add javaexec.
46768
46769 2005-01-26  Bruno Haible  <bruno@clisp.org>
46770
46771         * m4/javaexec.m4: New file, from GNU gettext.
46772
46773 2005-01-26  Bruno Haible  <bruno@clisp.org>
46774
46775         * lib/javaexec.sh.in: New file, from GNU gettext.
46776         * lib/javaexec.h: New file, from GNU gettext.
46777         * lib/javaexec.c: New file, from GNU gettext.
46778
46779 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46780
46781         * modules/lchown (Depends-on): Remove lchown.h
46782
46783 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46784
46785         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
46786         must be defined if the header file was not found, in order
46787         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
46788
46789 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46790
46791         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
46792         initializers for struct pentry_state.
46793         (__argp_error): Check return value of __asprintf
46794         (__argp_failure): Translate error message
46795
46796         * lib/argp-parse.c: Removed braces around the expansion of N_()
46797
46798 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
46799
46800         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
46801         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
46802         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
46803         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
46804         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
46805         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
46806         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
46807         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
46808         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
46809         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
46810         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
46811         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
46812         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
46813         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
46814         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
46815         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
46816         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
46817         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
46818         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
46819         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
46820         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
46821         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
46822         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
46823         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
46824         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
46825         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
46826         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
46827         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
46828         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
46829         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
46830         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
46831         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
46832         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
46833         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
46834         xstrtol.m4, xstrtoumax.m4, yesno.m4:
46835         Use an all-permissive copyright notice, recommended by RMS.
46836
46837 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
46838
46839         * modules/chdir-long (Depends-on): Remove mempcpy.
46840
46841 2005-01-21  Jim Meyering  <jim@meyering.net>
46842
46843         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
46844         same value as for Solaris 9.
46845
46846         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
46847         component length.  This included changing the parameter to be
46848         of type `char *' rather than `char const *'.
46849         * lib/chdir-long.h (chdir_long): Update prototype.
46850
46851         * lib/openat.c (fdopendir, fstatat): New functions.
46852         * lib/openat.h: Include headers required for use of DIR and struct
46853         stat.
46854         [AT_SYMLINK_NOFOLLOW]: Define.
46855         (fdopendir, fstatat): Add prototypes.
46856
46857 2005-01-21  Bruno Haible  <bruno@clisp.org>
46858
46859         * modules/classpath: New file.
46860         * MODULES.html.sh (Java): Add classpath.
46861
46862 2005-01-21  Bruno Haible  <bruno@clisp.org>
46863
46864         * lib/classpath.h: New file, from GNU gettext.
46865         * lib/classpath.c: New file, from GNU gettext.
46866
46867 2005-01-20  Simon Josefsson  <jas@extundo.com>
46868
46869         * modules/version-etc-fsf: New file.
46870
46871 2005-01-20  Simon Josefsson  <jas@extundo.com>
46872
46873         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
46874         * lib/version-etc.c: Remove version_etc_copyright.
46875         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
46876         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
46877
46878 2005-01-20  Simon Josefsson  <jas@extundo.com>
46879
46880         * lib/base64.h (isbase64): Add.
46881
46882         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
46883         using a unsigned prototype, don't inline.
46884         (base64_decode): Use it.
46885
46886 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46887
46888         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
46889         it.
46890
46891 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46892
46893         * lib/save-cwd.c (save_cwd): Remove code to support the case
46894         where fchdir is missing or flaky.
46895
46896 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46897
46898         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
46899
46900 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
46901
46902         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
46903         AC_LIBSOURCES now does this.
46904         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
46905         with new ullong_max module.
46906
46907 2005-01-19  Bruno Haible  <bruno@clisp.org>
46908
46909         * modules/sh-quote: New file.
46910         * MODULES.html.sh (Executing programs): Add sh-quote.
46911
46912 2005-01-19  Bruno Haible  <bruno@clisp.org>
46913
46914         * lib/sh-quote.h: New file, from GNU gettext.
46915         * lib/sh-quote.c: New file, from GNU gettext.
46916
46917 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46918
46919         Merge from coreutils.
46920         * m4/ullong_max.m4: New file.
46921         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
46922         (gl_MACROS): Assume localeconv exists.
46923
46924 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46925
46926         Merge changes from coreutils, as described below in several
46927         changelogs dated today.
46928
46929         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
46930         (O_DIRECTORY): Remove; not needed here, since "." must be
46931         a directory.  All uses removed.
46932         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
46933         universal on Suns, and we also need to test for IRIX.
46934         Revamp code to use 'if' rather than '#if'.
46935         Avoid unnecessary comparison of cwd->desc to 0.
46936
46937         * lib/utimens.c (futimens): Robustify the previous patch, by checking
46938         for known valid error numbers rather than observed invalid ones.
46939
46940 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46941
46942         * modules/ullong_max: New file.
46943
46944         * modules/chdir-long, modules/openat: New files.
46945         * modules/save-cwd (Depends-on): Depend on chdir-long.
46946         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
46947
46948 2005-01-18  Jim Meyering  <jim@meyering.net>
46949
46950         Merge from coreutils.
46951         * m4/chdir-long.m4, m4/openat.m4: New files.
46952         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
46953         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
46954         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
46955         is sane and DOES follow symlinks.  Besides, testing 20 different
46956         systems found no broken chown implementations.
46957         Prompted by a change in rsync's copy of this macro.
46958         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
46959
46960         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
46961
46962         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
46963         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
46964         NULL-means-set-to-current-time semantics.
46965         Remove temporary file immediately, rather than waiting
46966         for configure's at-exit trap code to do it.
46967
46968 2005-01-18  Jim Meyering  <jim@meyering.net>
46969
46970         * lib/version-etc.c (version_etc_copyright): Update copyright date.
46971
46972         * lib/utimens.c (futimens): Account for the fact that futimes
46973         can also fail with errno == ENOSYS or errno == ENOENT.
46974         Patch from Dmitry V. Levin.
46975
46976         Change the name of the robust chdir function from chdir to chdir_long.
46977         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
46978         (restore_cwd): Use chdir_long, not chdir.
46979         * lib/chdir-long.c: Renamed from chdir.c.
46980         * lib/chdir-long.h: Renamed from chdir.h.
46981         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
46982         Hurd.
46983
46984 2005-01-18  Bruno Haible  <bruno@clisp.org>
46985
46986         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
46987         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
46988         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
46989         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
46990         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
46991         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
46992         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
46993         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
46994         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
46995         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
46996         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
46997         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
46998         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
46999         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
47000         Use an all-permissive copyright notice, recommended by RMS.
47001
47002 2005-01-18  Bob Proulx  <bob@proulx.com>
47003
47004         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
47005         simplify offsetof() macro construct to avoid compile failure with
47006         native HP-UX 11.0 ANSI C compiler.
47007
47008 2005-01-17  Bruno Haible  <bruno@clisp.org>
47009
47010         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
47011         redundant because stpncpy.m4 takes care of it.
47012
47013 2005-01-17  Bruno Haible  <bruno@clisp.org>
47014
47015         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
47016
47017 2005-01-17  Bruno Haible  <bruno@clisp.org>
47018
47019         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
47020         used.
47021
47022 2005-01-17  Bruno Haible  <bruno@clisp.org>
47023
47024         * lib/fwriteerror.h (fwriteerror): Change specification to include
47025         fclose.
47026         * lib/fwriteerror.c: Include <stdbool.h>.
47027         (fwriteerror): At the end, close the file stream. Record whether
47028         stdout was already closed.
47029
47030 2005-01-17  Bruno Haible  <bruno@clisp.org>
47031
47032         * lib/execute.c (environ): Declare if needed.
47033         * lib/pipe.c (environ): Likewise.
47034         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
47035
47036 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47037
47038         * modules/argp: Depend on vsnprintf
47039
47040 2005-01-10  Jim Meyering  <jim@meyering.net>
47041
47042         * modules/closeout (Depends-on): Add atexit.
47043
47044 2005-01-06  Bruno Haible  <bruno@clisp.org>
47045
47046         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
47047
47048 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
47049
47050         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
47051         definitions to be after all include files, to avoid collisions.
47052         Problem reported by Bob Proulx.
47053
47054 2005-01-04  Jim Meyering  <jim@meyering.net>
47055
47056         Changes imported from coreutils.
47057         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
47058         as the mkstemp template, use a temporary directory and an
47059         8.3-friendly template to avoid trouble on systems like DJGPP.
47060         Reported by Juan M. Guerrero via Stepan Kasal.
47061         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
47062         close. Remove the temporary directory right away, rather than waiting
47063         for configure's at-exit trap code to do it.
47064         Suggestion from Stepan Kasal.
47065
47066 2005-01-01  Simon Josefsson  <jas@extundo.com>
47067
47068         * gnulib-tool: Print #include directives when --import'ing.
47069
47070 2004-12-28  Simon Josefsson  <jas@extundo.com>
47071
47072         * tests/test-base64.c: Include required header files.  Remove
47073         unused variables.
47074
47075 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
47076
47077         * modules/error (Depends-on): Remove gettext.
47078
47079 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
47080
47081         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
47082         not needed.  This removes a dependency on the gettext module.
47083         [defined _LIBC]: Do not include <libintl.h>; not needed.
47084
47085 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
47086
47087         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
47088         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
47089
47090 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
47091
47092         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
47093         HAVE_DECL_STRTOLD.
47094
47095 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47096
47097         * modules/getdate (Depends-on): Remove alloca-opt.
47098
47099 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47100
47101         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
47102
47103 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47104
47105         * lib/argp-parse.c: Include <stddef.h>.
47106         (alignof, alignto): New macros.
47107         (parser_init): Don't assume that void * is aligned sufficiently
47108         for struct option.
47109
47110         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
47111         need to extend the stack.
47112         (YYINITDEPTH): New macro, so that the initial stack isn't overly
47113         large.
47114
47115 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47116
47117         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
47118
47119 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
47120
47121         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
47122         (2004-10-24) change.  Apparently this was a false alarm.
47123
47124         * modules/getdate: Depend on alloca-opt, not alloca.
47125
47126 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
47127
47128         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
47129         Remove now-obsolete comment about AIX.
47130         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
47131         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
47132         (YYMAXDEPTH): New macro.
47133
47134 2004-12-18  Simon Josefsson  <jas@extundo.com>
47135
47136         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
47137
47138 2004-12-18  Bruno Haible  <bruno@clisp.org>
47139
47140         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
47141
47142 2004-12-18  Bruno Haible  <bruno@clisp.org>
47143
47144         * lib/fatal-signal.c (fatal_signals): Make non-const.
47145         (init_fatal_signals): New function.
47146         (uninstall_handlers, install_handlers): Ignore signals that were set to
47147         SIG_IGN.
47148         (at_fatal_signal): Call init_fatal_signals.
47149         (init_fatal_signal_set): Likewise. Ignore signals that were set to
47150         SIG_IGN.
47151         Reported by Paul Eggert.
47152
47153 2004-12-18  Bruno Haible  <bruno@clisp.org>
47154
47155         * doc/alloca.texi: New file.
47156         * doc/alloca-opt.texi: New file.
47157
47158 2004-12-17  Jim Meyering  <jim@meyering.net>
47159
47160         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
47161         Otherwise, install-sh could exit with improper exit status when
47162         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
47163
47164 2004-12-16  Simon Josefsson  <jas@extundo.com>
47165
47166         * tests/test-base64.c: Add license.
47167
47168 2004-12-15  Stepan Kasal  <address@hidden>
47169
47170         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
47171
47172 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
47173
47174         * modules/getcwd (Files): Add m4/d-ino.m4.
47175         Suggested by Mark D. Baushke.
47176
47177 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
47178
47179         * lib/getdate.y (textint): New member "negative".
47180         (time_zone_hhmm): New function.
47181         Expect 14 shift-reduce conflicts, not 13.
47182         (o_colon_minutes): New rule.
47183         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
47184         (yylex): Set the "negative" member of signed numbers.
47185
47186 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
47187
47188         * doc/getdate.texi (Time of day items, Time zone items):
47189         Describe new formats +00:00, UTC+00:00.
47190
47191 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
47192
47193         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
47194         spurious "-l"s.  Problem reported by Stepan Kasal.
47195
47196 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
47197
47198         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
47199         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
47200
47201 2004-12-04  Simon Josefsson  <jas@extundo.com>
47202
47203         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
47204         Vandoorselaere <yoann@prelude-ids.org>.
47205
47206 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47207
47208         Changes imported from coreutils.
47209         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
47210         exist.
47211         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
47212
47213 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47214
47215         Changes imported from coreutils.
47216         * lib/hard-locale.c: Assume <locale.h> exists.
47217         Include "strdup.h".
47218         (GLIBC_VERSION): New macro.
47219         (hard_locale): Assume setlocale exists.
47220         Rewrite to avoid #ifdef.
47221         Use strdup rather than malloc + strcpy.
47222         * lib/human.c: Assume <locale.h> exists.
47223         (human_readable): Assume localeconv exists.
47224
47225 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47226
47227         * modules/hard-locale (Depends-on): Add strdup.
47228
47229 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
47230
47231         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
47232         convert T2, not T.  (Imported from libc.)
47233
47234 2004-11-30  Simon Josefsson  <jas@extundo.com>
47235
47236         * modules/restrict (License): Change to LGPL.
47237
47238 2004-11-30  Simon Josefsson  <jas@extundo.com>
47239
47240         * m4/restrict.m4: Add copyright and copying conditions.
47241
47242 2004-11-30  Simon Josefsson  <jas@extundo.com>
47243
47244         * m4/base64.m4: New file.
47245
47246 2004-11-30  Simon Josefsson  <jas@extundo.com>
47247
47248         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
47249         base64.
47250
47251         * tests/test-base64.c: New file.
47252
47253         * modules/base64: New file.
47254
47255 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
47256
47257         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
47258         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
47259
47260         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
47261
47262 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
47263
47264         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
47265         (__getcwd.c): Don't restore errno; glibc doesn't.
47266         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
47267         first, falling back to our code only if its results look suspicious.
47268         Ensure that the resulting buffer is only as large as necessary.
47269
47270         * lib/readutmp.c: Include readutmp.h first.
47271         Include <errno.h>, since readutmp.h no longer does that.
47272         * lib/readutmp.h: Don't include <errno.h>,
47273         <sys/param.h>, <time.h>; not needed to establish interface.
47274         (errno): Remove decl.
47275         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
47276         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
47277         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
47278
47279 2004-11-28  Simon Josefsson  <jas@extundo.com>
47280
47281         * lib/base64.h, base64.c: New file.
47282
47283 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
47284
47285         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
47286
47287 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
47288
47289         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
47290         (Depends-on): Remove pathmax, same.  Add mempcpy.
47291         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
47292         (Makefile.am): Append getcwd.h to lib_SOURCES.
47293         (Include): Add getcwd.h.
47294         (Maintainer): Change from Jim Meyering to "all, glibc",
47295         since getdate now uses intended-for-glibc code.
47296         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
47297         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
47298
47299 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
47300
47301         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
47302         HP's ANSI C compiler.
47303         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
47304         Declaring int functions causes warnings on some modern systems and
47305         shouldn't be needed to compile on ancient ones.
47306         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
47307         defined.
47308
47309         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
47310         with the following changes.
47311         (__set_errno): Parenthesize properly.
47312         Include <stdbool.h>.
47313         (MIN, MAX, MATCHING_INO): New macros.
47314         (__getcwd): Define with prototype, not K&R form.
47315         Use heuristics to allocate default buffer on stack if possible.
47316         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
47317         behavior, and to avoid the PATH_MAX limit when computing
47318         ../../../../...
47319         Use MATCHING_INO to compare inode number to file.
47320         Check for arithmetic overflow in size calculations.
47321         Fix bug in reallocation of dot array that caused getcwd to fail
47322         on directories nested deeper than 75.
47323         Be more careful about saving errno on error.
47324         Do not use realloc; use only free+malloc, as this is a bit
47325         more flexible and avoids a needless copy operation.
47326         Do not inspect st_dev and st_ino for symbolic links; POSIX
47327         doesn't specify the latter.
47328         Check for closedir errors.
47329         Avoid needless casts.
47330         Use "#ifdef weak_alias" around weak_alias, to be like other
47331         glibc code.
47332         The following changes to getcwd.c have effect only when used in
47333         gnulib; they have no effect inside glibc proper.
47334         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
47335         as alloca isn't used.
47336         (alloca, __alloca): Likewise.
47337         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
47338         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
47339         unconditionally, as gnulib assumes C89 or better.
47340         Do not include <sys/param.h>.
47341         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
47342         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
47343         better.
47344         (NULL) [!defined NULL]: Remove; we assume C89 or better.
47345         Include <dirent.h> in a way that is compatible with modern Autoconf.
47346         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
47347         New macros, if not already defined.
47348         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
47349         Use "_LIBC", not "defined _LIBC", for consistency.
47350         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
47351         a mempcpy module.
47352         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
47353         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
47354         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
47355         credit only to Jim Meyering and adjust the copyright dates.
47356         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
47357         <stdlib.h>, <unistd.h>, "pathmax.h".
47358         Instead, include "xgetcwd.h" (first) and "getcwd.h".
47359         (INITIAL_BUFFER_SIZE): Remove.
47360         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
47361
47362 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
47363
47364         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
47365         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
47366         Use the _ONCE methods, for efficiency.
47367         Check for fcntl.h.  In test program, include <errno.h>
47368         and <fcntl.h> if available.  Remove old K&R cruft from
47369         test program.  Check for common errors in GNU/Linux,
47370         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
47371         don't do AC_LIBOBJ, as that's getcwd.m4's job.
47372         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
47373         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
47374         name accordingly.
47375         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
47376         accommodate new getcwd.c.
47377         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
47378         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
47379         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
47380         that's all we need now.
47381
47382 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47383
47384         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
47385         argp-parse.c depends on getopt internals, that means we should
47386         always use our getopt, to be on the safe side.
47387         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
47388         order not to spoil the result of an eventual previous invocation
47389         of gl_GETOPT_SUBSTITUTE.
47390
47391 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47392
47393         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
47394         redefinition warnings. To avoid them, include the defines
47395         in `#if !defined __need_getopt ... #endif'. The only place
47396         where __getopt_argv_const is used is in definitions
47397         of getopt_long and getopt_long_only below, which are as well
47398         protected by `#ifndef __need_getopt'.
47399         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
47400         __need_getopt after including <stdio.h> and <unistd.h> These
47401         headers might have defined it.
47402
47403 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
47404
47405         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
47406
47407 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
47408
47409         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
47410         (futimens): New function, which uses futimes if available.
47411         (futimens, utimens): Support timespec==NULL, with same semantics
47412         as utime and utimens.
47413         * lib/utimens.h (futimens): New decl.
47414
47415 2004-11-23  Jim Meyering  <jim@meyering.net>
47416
47417         * lib/getopt_.h: Remove trailing blanks.
47418
47419 2004-11-23  Jim Meyering  <jim@meyering.net>
47420
47421         * lib/__fpending.c: Add comment.
47422
47423 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
47424
47425         * modules/canonicalize (Depends-on): Add xreadlink.
47426         Problem reported by James Youngman.
47427
47428 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
47429
47430         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
47431         New macros.
47432         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
47433         optopt): Use them instead of invoking ## directly; otherwise, the
47434         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
47435
47436 2004-11-19  Bruno Haible  <bruno@clisp.org>
47437
47438         * lib/strtok_r.c: Move comments from here...
47439         * lib/strtok_r.h: ... to here.
47440
47441 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
47442
47443         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
47444         implementations that mishandle size_t overflow.
47445
47446 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
47447
47448         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
47449         might fail.  Problem reported by Yoann Vandoorselaere.
47450         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
47451         implementations that mishandle size_t overflow.
47452
47453 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47454
47455         * modules/canon-host (Depends-on): Add strdup.
47456
47457 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47458
47459         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
47460
47461 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47462
47463         * lib/canon-host.c: Include "strdup.h".
47464         (canon_host): Use getaddrinfo if available, so that IPv6 works.
47465         Use strdup instead of malloc/strcpy to duplicate strings.
47466
47467         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
47468         (human_space_before_unit): New constant.
47469         * lib/human.c (human_readable): Support it.
47470
47471         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
47472         (xgetcwd): Set errno correctly when failing.
47473         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
47474         the failure is actually due to a PATH_MAX problem.
47475
47476         Further getopt changes to make it more likely that glibc will
47477         buy the changes back.
47478         * lib/getopt.c (POSIXLY_CORRECT): New constant.
47479         (getopt): Use it, so to preserve glibc semantic
47480         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
47481         when compiling for libc.
47482         * lib/getopt_.h (__getopt_argv_const): Bring it back.
47483         (getopt_long, getopt_long_only): Use it.
47484
47485         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
47486         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
47487         (getopt): Argv is now char * const *, as per standard.
47488         (_getopt_internal_r, _getopt_internal): Argv is now char **,
47489         not char *__getopt_argv_const *.
47490         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
47491         _getopt_long_only_r): Likewise.
47492         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
47493         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
47494         _getopt_long_r, _getopt_long_only_r): Likewise.
47495         * lib/getopt_.h (__getopt_argv_const): Remove.
47496         (getopt): Argv is now char * const *, as per standard.
47497
47498         * lib/getdate.y (tORDINAL): New token.
47499         (day, relunit): Allow it for relative times.
47500         (relative_time_table): Use tORDINAL for ordinals.
47501
47502 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47503
47504         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
47505         Document that "second" isn't allowed as an ordinal number.
47506
47507 2004-11-16  Jim Meyering  <jim@meyering.net>
47508
47509         * modules/closeout (Depends-on): Add fpending.
47510
47511 2004-11-15  Jim Meyering  <jim@meyering.net>
47512
47513         * lib/closeout.c: Include "__fpending.h" once again.
47514         Include <stdbool.h>.
47515         (close_stdout): Don't fail just because stdout was closed initially,
47516         since some programs don't write to stdout in the normal course of
47517         operation (other than --version and --help), and we don't want this
47518         function to make e.g. `touch file >&-' fail.
47519         But do fail if it was closed and someone has tried to write to it.
47520         E.g., `printf foo >&-' must fail.
47521
47522 2004-11-13  Jim Meyering  <jim@meyering.net>
47523
47524         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
47525
47526 2004-11-12  Simon Josefsson  <jas@extundo.com>
47527
47528         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
47529         small doc fix is still pending.
47530
47531 2004-11-11  Simon Josefsson  <jas@extundo.com>
47532
47533         * modules/strtok_r: New file.
47534
47535         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47536         strtok_r.
47537
47538 2004-11-11  Simon Josefsson  <jas@extundo.com>
47539
47540         * m4/strtok_r.m4: New file.
47541
47542         * m4/getopt.m4: Replace opterr.
47543
47544 2004-11-11  Simon Josefsson  <jas@extundo.com>
47545
47546         * lib/strtok_r.h, strtok_r.c: New file.
47547
47548 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
47549
47550         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
47551         of replacing opterr, getopt, etc.  This should handle the
47552         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
47553
47554 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
47555
47556         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
47557         we can stop lying to compilers about the constness of argv when we
47558         are compiled outside glibc.
47559         (getopt, getopt_long, getopt_long_only): Use it.
47560         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
47561         _getopt_internal, getopt): Likewise.
47562         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
47563         _getopt_long_only_r): Likewise.
47564         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
47565         _getopt_long_r, _getopt_long_only_r): Likewise.
47566
47567         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
47568         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
47569         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
47570         the other external symbols.
47571         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
47572         declaration, since the above renaming now works around collisions.
47573
47574 2004-11-11  Jim Meyering  <jim@meyering.net>
47575
47576         * lib/linebreak.c: Remove trailing blanks.
47577         * lib/alloca_.h: Likewise.
47578         * lib/acosl.c: Likewise.
47579         * lib/euidaccess.c: Likewise.
47580         * lib/allocsa.h: Likewise.
47581
47582 2004-11-10  Simon Josefsson  <jas@extundo.com>
47583
47584         * m4/getaddrinfo.m4: New file.
47585
47586 2004-11-10  Simon Josefsson  <jas@extundo.com>
47587
47588         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
47589
47590 2004-11-10  Simon Josefsson  <jas@extundo.com>
47591
47592         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47593         getaddrinfo.
47594
47595         * modules/getaddrinfo: New file.
47596
47597 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
47598
47599         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
47600
47601 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
47602
47603         * lib/mktime.c (SHR): New macro, which is a portable
47604         substitute for >> that should work even on Crays.
47605         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
47606         Problem reported by Mark D. Baushke in
47607         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
47608         * lib/getdate.y (SHR): Likewise.
47609         (tm_diff): Use it.
47610         * lib/strftime.c (SHR): Likewise.
47611         (tm_diff): Use it.
47612         * lib/quotearg.c (struct quoting_options): Use unsigned int for
47613         quote_these_too, so that right shifts are well defined.  All uses
47614         changed.
47615
47616 2004-11-10  Jim Meyering  <jim@meyering.net>
47617
47618         Ensure that no close failure goes unreported.
47619         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
47620         return early when it seems there's nothing to flush.
47621         Don't include __fpending.h.
47622
47623 2004-11-10  Jim Meyering  <jim@meyering.net>
47624
47625         * modules/closeout (Depends-on): Remove fpending.
47626
47627 2004-11-10  Jim Meyering  <jim@meyering.net>
47628
47629         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
47630
47631 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47632
47633         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
47634         gl_FUNC_STRFTIME.
47635         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
47636         and AC_REQUIRE when possible, to avoid duplicate checks.
47637         Check for <wchar.h>.
47638
47639 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47640
47641         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
47642
47643 2004-11-09  Bruno Haible  <bruno@clisp.org>
47644
47645         * m4/sockpfaf.m4: New file.
47646
47647 2004-11-05  Bruno Haible  <bruno@clisp.org>
47648
47649         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
47650         Reported by Mark D. Baushke <mdb@cvshome.org>.
47651
47652 2004-11-04  Bruno Haible  <bruno@clisp.org>
47653
47654         2004-09-11  Bruno Haible  <bruno@clisp.org>
47655                 * allocsa.valgrind: New file.
47656         2004-02-06  Bruno Haible  <bruno@clisp.org>
47657                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
47658                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
47659                 Reported by Christopher Seip <chris.seip@hp.com>.
47660
47661 2004-11-04  Bruno Haible  <bruno@clisp.org>
47662
47663         * modules/allocsa (Files): Add lib/allocsa.valgrind.
47664         (Makefile.am): Distribute it.
47665
47666 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
47667
47668         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
47669         with errno == ERANGE if the buffer is too small.
47670         Problem reported by Mark D. Baushke.
47671
47672 2004-11-03  Albert Chin  <china@thewrittenword.com>
47673             Paul Eggert  <eggert@cs.ucla.edu>
47674
47675         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
47676         equivalent, substitute $ac_type for equivalent type rather than
47677         blindly using uint32_t *always* which won't work if uint32_t is not
47678         available.  Define _UINT32_T to work around typedef of uint32_t if
47679         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
47680         2.5.1.
47681
47682 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47683
47684         * m4/jm-macros.m4: Sync from coreutils.
47685         (gl_MACROS): Check for mbrlen, for pathchk.
47686         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
47687
47688 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47689
47690         * lib/xreadlink.c (MAXSIZE): New macro.
47691         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
47692         size does not exceed MAXSIZE.  Avoid cast.
47693         As suggested by Mark D. Baushke in
47694         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
47695         if readlink fails with buffer size just under MAXSIZE, try again
47696         with MAXSIZE.
47697
47698 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47699
47700         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
47701
47702 2004-11-02  Derek R. Price  <derek@ximbiot.com>
47703         and  Paul Eggert  <eggert@cs.ucla.edu>
47704
47705         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
47706         (get_date): Overparenthesize to avoid GCC warning.
47707
47708 2004-11-02  Bruno Haible  <bruno@clisp.org>
47709
47710         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
47711         returns void.
47712
47713 2004-11-02  Bruno Haible  <bruno@clisp.org>
47714
47715         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
47716         function returns void.
47717
47718 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
47719
47720         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
47721         fflush_unlocked, flockfile, funlockfile, funlockfile,
47722         fputs_unlocked, putc_unlocked.
47723
47724 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
47725
47726         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
47727         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
47728         already declared.
47729
47730 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47731
47732         * modules/getdate (Files): Add doc/getdate.texi.
47733         (Depends-on): Add setenv, xalloc.
47734
47735 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47736
47737         * lib/getdate.y: Add support for TZ="foo" within a date string.
47738         Fix some bugs near time_t boundaries.  Reject dates with
47739         out-of-range components, e.g., "Sept 31".
47740         Include <stdlib.h>, "setenv.h", "xalloc.h".
47741         (ISDIGIT_LOCALE): Remove; unused.
47742         Note that the TZ and time functions used here are not reentrant.
47743         (mktime_ok, get_tz): New functions.
47744         (TZBUFSIZE): New constant.
47745         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
47746         This requires that we sometimes generate our own TZ="XXX..." setting.
47747
47748 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47749
47750         * doc/getdate.texi: New file, from coreutils with modifications for
47751         the new TZ parsing.
47752
47753 2004-10-27  Derek R. Price  <derek@ximbiot.com>
47754
47755         * lib/mktime.c (not_equal_tm): Remove redundant check.
47756
47757 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
47758
47759         * modules/regex (lib_SOURCES): Add regex.c.
47760         Reported by James Youngman in
47761         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
47762
47763 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
47764
47765         * lib/getdate.y: Use Bison 1.875 features, and some minor
47766         code cleanups.  This change does not affect semantics.
47767         Don't include <stdlib.h>; no longer needed.
47768         Don't include unlocked-io.h; only the "#if TEST" code uses
47769         stdio, and performance isn't crucial there.
47770         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
47771         Bison 1.875 features as described below.
47772         All uses of "PC." replaced by "pc->".
47773         (YYSTYPE): Add a forward declaration.
47774         (yylex, yyerror): Use full prototypes in forward decls.
47775         Use "%pure-parser" rather than obsolescent "%pure_parser".
47776         Use %parse-param and %lex-param instead of obsolescent
47777         YYPARSE_PARAM and YYLEX_PARAM.
47778         (meridian_table, month_and_day_table, time_units_table,
47779         relative_time_table, time_zone_table, military_table,
47780         lookup_zone, lookup_word, get_date):
47781         Use NULL instead of 0 where appropriate.
47782         (to_hour): Avoid abort (), to avoid a dependency on
47783         stdlib.h.
47784         (yyerror, yylex): Now accepts parser_control * arg.
47785         (main) [TEST]: Use '\0' rather than 0 for char.
47786
47787 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
47788
47789         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
47790
47791 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
47792
47793         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
47794         It's now the caller's responsibility to handle the case where
47795         !HAVE_GETPAGESIZE && !defined getpagesize.
47796
47797         * lib/mktime.c (leapyear): Arg is long int, not int.
47798
47799 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
47800
47801         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
47802
47803 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
47804
47805         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
47806         missing.  Problem reported by James Youngman.
47807
47808 2004-10-16  Simon Josefsson  <jas@extundo.com>
47809
47810         * gnulib-tool: Fix comments.  Fix parse problem.
47811         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
47812
47813 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
47814
47815         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
47816         implementation of getopt_long.  Problem reported by Alexander Taler in:
47817         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
47818
47819 2004-10-15  Bruno Haible  <bruno@clisp.org>
47820
47821         * gnulib-tool: Untabify. Initialize supplied_libname.
47822         (func_usage): More homogenous output.
47823         (func_modules_transitive_closure, func_modules_to_filelist,
47824         func_emit_lib_Makefile_am): New functions.
47825         (func_import): New function, extracted from big case statement. Use
47826         func_get_license, func_modules_transitive_closure,
47827         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
47828         opt_lgpl. Don't use test -a, as it's not portable.
47829         (func_create_testdir): Use func_modules_transitive_closure,
47830         func_modules_to_filelist, func_emit_lib_Makefile_am.
47831
47832 2004-10-15  Bruno Haible  <bruno@clisp.org>
47833
47834         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
47835
47836 2004-10-15  Bruno Haible  <bruno@clisp.org>
47837
47838         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
47839         the portions belonging to each module.
47840         Suggested by Derek Robert Price <derek@ximbiot.com>.
47841
47842 2004-10-12  Simon Josefsson  <jas@extundo.com>
47843
47844         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
47845         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
47846         to real functions.
47847
47848 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47849
47850         * modules/vsnprintf: New file.
47851
47852 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47853
47854         * m4/vsnprintf.m4: New file.
47855
47856 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47857
47858         * lib/vsnprintf.h: New file.
47859         * lib/vsnprintf.c: New file.
47860
47861 2004-10-11  Bruno Haible  <bruno@clisp.org>
47862
47863         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
47864         vsnprintf.
47865
47866 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
47867
47868         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
47869
47870 2004-10-07  Bruno Haible  <bruno@clisp.org>
47871
47872         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
47873         fits into the provided buffer.
47874
47875 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
47876
47877         * lib/diacrit.c, diacrit.h: Add GPL notice.
47878
47879         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
47880         notice.
47881         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
47882         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
47883         This avoids a potential constant-folding bug.
47884
47885 2004-10-05  Bruno Haible  <bruno@clisp.org>
47886
47887         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
47888         for the declaration of strsep.
47889
47890 2004-10-05  Bruno Haible  <bruno@clisp.org>
47891
47892         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
47893
47894 2004-10-04  Simon Josefsson  <jas@extundo.com>
47895
47896         * modules/memmem: New file.
47897         * tests/test-memmem.c: New file.
47898         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
47899
47900 2004-10-04  Simon Josefsson  <jas@extundo.com>
47901
47902         * m4/memmem.m4: New file.
47903
47904 2004-10-04  Simon Josefsson  <jas@extundo.com>
47905
47906         * lib/memmem.h: New file.
47907         * lib/memmem.c: New file, taken from glibc.
47908
47909 2004-10-04  Simon Josefsson  <jas@extundo.com>
47910
47911         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
47912         '#ifdef USE_UNLOCKED_IO'.
47913
47914 2004-10-04  Simon Josefsson  <jas@extundo.com>
47915
47916         * config/srclist.txt: Add memmem from glibc.
47917
47918 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47919
47920         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
47921
47922         * modules/argmatch, modules/argp, modules/closeout, modules/error,
47923         modules/exclude, modules/getdate, modules/getline,
47924         modules/getndelim2, modules/getpass, modules/getpass-gnu,
47925         modules/getusershell, modules/linebuffer, modules/md5,
47926         modules/mountlist, modules/posixtm, modules/readtokens,
47927         modules/readutmp, modules/regex, modules/sha1,
47928         modules/version-etc, modules/yesno:
47929         Remove dependency on unlocked-io.
47930
47931 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47932
47933         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
47934
47935         * m4/unlocked-io.m4: Add copyright notice.
47936         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
47937
47938 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47939
47940         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
47941         * lib/xmalloc.c (xmemdup): Likewise.
47942         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
47943         XFREE): Remove these long-obsolescent macros.
47944         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
47945         * lib/xstrdup.c: Remove.
47946
47947         * lib/regex.c (re_comp): Cast gettext return value to char *,
47948         Problem reported by Martin Neitzel via Mark D. Baushke.
47949
47950 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47951
47952         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
47953         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
47954         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
47955         regex.c, sha1.c, version-etc.c, yesno.c:
47956         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
47957         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
47958         the includer's responsibility.
47959
47960         Sync from coreutils.
47961
47962         * lib/modechange.c (mode_compile): Don't decrement a pointer that
47963         points to the start of a string, as the C Standard says the
47964         resulting behavior is undefined.
47965
47966         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
47967         simple -> simple_backups, numbered_existing ->
47968         numbered_existing_backups, numbered -> numbered_backups
47969         to avoid shadowing problems.  All uses changed.
47970         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
47971         * lib/backupfile.c (check_extension, numbered_backup):
47972         Rename locals to avoid shadowing 'basename'.
47973         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
47974         once.
47975
47976         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
47977         * lib/.cvsignore: Add getopt.h.
47978
47979 2004-10-04  Bruno Haible  <bruno@clisp.org>
47980
47981         * modules/README: New file.
47982         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
47983         not a module.
47984
47985 2004-10-02  Jim Meyering  <jim@meyering.net>
47986
47987         * lib/dirfd.h, getpagesize.h: Add copyright notice.
47988
47989 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47990
47991         * modules/strsep: New file.
47992
47993 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47994
47995         * m4/strsep.m4: New file.
47996
47997 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47998
47999         * lib/strsep.h: New file.
48000         * lib/strsep.c: New file.
48001
48002 2004-10-01  Simon Josefsson  <jas@extundo.com>
48003
48004         * lib/snprintf.c (snprintf): Handle size==0.
48005
48006 2004-10-01  Simon Josefsson  <jas@extundo.com>
48007             Bruno Haible  <bruno@clisp.org>
48008
48009         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
48010         (snprintf): Declare 'args'.
48011
48012 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
48013
48014         * lib/snprintf.c: Remove comments as to why each header is needed.
48015
48016 2004-10-01  Bruno Haible  <bruno@clisp.org>
48017
48018         * MODULES.html.sh: Add strsep.
48019
48020 2004-09-30  Simon Josefsson  <jas@extundo.com>
48021
48022         * modules/snprintf: New file.
48023
48024 2004-09-30  Simon Josefsson  <jas@extundo.com>
48025
48026         * m4/snprintf.m4: New file.
48027
48028 2004-09-30  Simon Josefsson  <jas@extundo.com>
48029
48030         * lib/snprintf.h, lib/snprintf.c: New files.
48031
48032 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
48033
48034         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
48035         (hol_entry_help): Never translate an empty string.
48036         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
48037         * lib/argp.h (OPTION_NO_TRANS): New option.
48038
48039 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
48040
48041         * modules/argp (Maintainer): Replace Simon Josefsson
48042         by Sergey Poznyakoff.
48043
48044 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
48045
48046         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
48047         changes merged back into glibc.
48048
48049 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
48050
48051         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
48052
48053 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
48054
48055         * lib/xvasprintf.c: Include xalloc.h.
48056         (xvasprintf): Use xalloc_die, not xmalloc_die.
48057
48058 2004-09-29  Bruno Haible  <bruno@clisp.org>
48059
48060         * modules/alloca-opt: New file, derived from modules/alloca.
48061         * modules/allocsa: Depend on alloca-opt instead of alloca.
48062         * modules/setenv: Likewise.
48063         * modules/vasnprintf: Likewise.
48064         * MODULES.html.sh: Add alloca-opt.
48065
48066 2004-09-28  Simon Josefsson  <jas@extundo.com>
48067
48068         * gnulib-tool: New parameter --lgpl, to asseert that modules are
48069         LGPL, and to replace license template from GPL to LGPL.
48070
48071 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
48072
48073         * modules/dummy: Change license to LGPL.
48074
48075 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
48076
48077         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
48078
48079 2004-09-24  Simon Josefsson  <jas@extundo.com>
48080
48081         * modules/minmax (License): Change from GPL to LGPL.
48082
48083 2004-09-23  Simon Josefsson  <jas@extundo.com>
48084
48085         * gnulib-tool (--import): Typo.
48086
48087 2004-09-23  Simon Josefsson  <jas@extundo.com>
48088
48089         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
48090
48091 2004-09-22  Bruno Haible  <bruno@clisp.org>
48092
48093         * modules/*: Add 'License' field.
48094         * gnulib-tool: Accept --extract-license option.
48095         (func_get_license): New function.
48096
48097 2004-09-21  Bruno Haible  <bruno@clisp.org>
48098
48099         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
48100         Reported by Simon Josefsson.
48101
48102 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
48103
48104         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
48105         gl_AC_TYPE_LONG_LONG.
48106
48107 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
48108
48109         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
48110
48111 2004-09-18  Simon Josefsson  <jas@extundo.com>
48112         and  Paul Eggert  <eggert@cs.ucla.edu>
48113
48114         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
48115         calls with autoreconf.  Define GL_LIB.
48116
48117 2004-09-14  Karl Berry  <karl@gnu.org>
48118
48119         * config/srclist.txt: unsync setenv.c, sigh.
48120
48121 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
48122
48123         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
48124         Problem reported by Bruno Haible in:
48125         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
48126
48127 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
48128
48129         * config/srclist.txt: Comment out argp-pvh.c.
48130
48131 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
48132
48133         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
48134         in case some system header has #define'd it.  Problem reported by
48135         Soeren D. Schulze in
48136         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
48137
48138 2004-09-09  Karl Berry  <karl@gnu.org>
48139
48140         * regex.[ch]: delete from the root.  These were supposed to be
48141                 synced with emacs cvs, but this has not happened for about
48142                 a year, and anyway nothing else uses emacs regex.[ch].
48143                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
48144                 lib/regex[.ch] is untouched.
48145
48146 2004-09-09  Bruno Haible  <bruno@clisp.org>
48147
48148         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
48149
48150 2004-09-09  Bruno Haible  <bruno@clisp.org>
48151
48152         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
48153         modifications.
48154         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
48155
48156 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
48157
48158         * modules/xvasprintf: New file.
48159         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
48160
48161 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
48162
48163         * lib/xvasprintf.h: New file.
48164         * lib/xvasprintf.c: New file.
48165         * lib/xasprintf.c: New file.
48166
48167 2004-09-08  Bruno Haible  <bruno@clisp.org>
48168
48169         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
48170
48171 2004-09-08  Bruno Haible  <bruno@clisp.org>
48172
48173         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
48174         length is > INT_MAX.
48175         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
48176         more.
48177
48178 2004-09-08  Bruno Haible  <bruno@clisp.org>
48179
48180         * lib/stdint_.h: New file, taken from GNU clisp.
48181
48182 2004-09-08  Bruno Haible  <bruno@clisp.org>
48183             Oskar Liljeblad  <oskar@osk.mine.nu>
48184
48185         * modules/stdint: New file.
48186         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
48187
48188 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48189
48190         Import from coreutils.
48191         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
48192         strings on unbounded length.  alloca's performance benefits aren't
48193         that important here.
48194         (V_STRDUP): Remove.
48195         (parse_with_separator): New function, with most of the internals
48196         of the old parse_user_spec.  Allow user to omit both user and group,
48197         for compatibility with FreeBSD.
48198         Clone only the user name, not the entire spec.
48199         Do not set *uid, *gid unless entirely successful.
48200         Avoid memory leak in some failing cases.
48201         Fix regression for USER.GROUP reported by Dmitry V. Levin in
48202         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
48203         (parse_user_spec): Rewrite to use parse_with_separator.
48204
48205 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48206
48207         * modules/userspec: Don't depend on alloca.
48208
48209 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48210
48211         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
48212
48213 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
48214
48215         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
48216         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
48217         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
48218
48219 2004-08-16  Simon Josefsson  <jas@extundo.com>
48220
48221         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
48222         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
48223         Add --dry-run for --import.
48224         Let user provided command line parameters override configure.ac
48225         settings.
48226
48227 2004-08-12  Simon Josefsson  <jas@extundo.com>
48228
48229         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
48230         as discussed with Paul Eggert in threads rooted at
48231         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
48232         and
48233         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
48234         Before, the test was empty, and relied on ELIDE_CODE in source
48235         code.)
48236         (gl_PREREQ_GETOPT): New macro.
48237         (gl_GETOPT): Use them.
48238
48239 2004-08-12  Simon Josefsson  <jas@extundo.com>
48240
48241         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
48242         * lib/getopt_.h: Renamed from getopt.h.
48243
48244 2004-08-12  Simon Josefsson  <jas@extundo.com>
48245
48246         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
48247         Change default library name from libfoo to libgnu.
48248         Now, if you have a configure.ac that says:
48249                 gl_SOURCE_BASE(gl)
48250                 gl_M4_BASE(gl/m4)
48251                 gl_MODULES(error getopt etcetera)
48252                 gl_INIT
48253         you can import all you need by running:
48254                 ../gnulib/gnulib-tool --import
48255
48256         * modules/getopt (Files): Rename getopt.h to getopt_.h.
48257         (Makefile.am): Rewrite, use logic from argz.
48258         (Include): Use <getopt.h> instead of "getopt.h".
48259
48260 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48261
48262         * modules/argp (Files): Add m4/unlocked-io.m4.
48263         (Depends-on): Add extensions.
48264
48265 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48266
48267         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
48268         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
48269         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
48270         Check for program_invocation_name, program_invocation_short_name,
48271         flockfile, funlockfile, features.h, _getopt_long_only_r.
48272
48273 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48274
48275         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
48276         its complicated substitute.
48277         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
48278         and program_invocation_name.
48279         (__argp_basename) [!_LIBC]: Remove; the only use was
48280         replaced by its body.
48281         (__argp_short_program_name): Change condition from
48282         !defined __argp_short_program_name to
48283         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
48284         to match argp-namefrob.h.
48285         (__argp_failure): Don't assume strerror_r returns char *.
48286         * lib/argp-parse.c (N_): Define unconditionally.
48287         (argp_default_options): Fill out initializers with 0 to avoid
48288         gcc warnings.
48289
48290 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48291
48292         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
48293         getopt1.c.
48294
48295 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48296
48297         Merge from coreutils.
48298
48299         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
48300
48301         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
48302         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
48303
48304 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48305
48306         Merge from coreutils.
48307
48308         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
48309         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
48310         for Reliant Unix 5.43.
48311
48312         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
48313         (union fooround): Use uintmax_t, not long int.
48314         The rest is a merge from libc:
48315         [defined _LIBC]: Include <shlib-compat.h>.
48316         (_obstack) [defined _LIBC]: Remove after 2.3.4.
48317
48318         * lib/settime.c (settime): Recode to avoid warning with
48319         Sun Forte C 6U2.
48320
48321         * lib/strverscmp.c: Convert to UTF-8.
48322
48323 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48324
48325         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
48326         m4/uintmax_t.m4.
48327
48328 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48329
48330         * modules/xalloc-die: New file.
48331         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
48332
48333         * modules/md5 (Files): Add m4/uint32_t.m4.
48334         * modules/sha1: Renamed from modules/sha.
48335         (Files):
48336         Rename lib/sha.h to lib/sha1.h.
48337         Rename lib/sha.c to lib/sha1.c.
48338         Rename m4/sha.m4 to m4/sha1.m4.
48339         (lib_SOURCES): Likewise.
48340         (configure.ac): Rename gl_SHA to gl_SHA1.
48341         (Include): sha.h -> sha1.h.
48342
48343 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48344
48345         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
48346         * m4/sha1.m4: Renamed from sha.m4.
48347         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
48348
48349 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48350
48351         * lib/obstack.h (obstack_empty_p):
48352         Don't assume that chunk->contents is suitably aligned.
48353         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
48354         Likewise. Problem reported by Benno in
48355         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
48356
48357         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
48358         readable.  This could be improved further but it'd take some work.
48359
48360 2004-08-08  Simon Josefsson  <jas@extundo.com>
48361
48362         * modules/xgethostname (Depends-on): Remove exit and error (not
48363         used).
48364
48365         * modules/getpass-gnu: Add getpass.h.
48366         (Depends-on): Add stdbool.
48367         * modules/getpass: Add getpass.h.
48368
48369 2004-08-08  Simon Josefsson  <jas@extundo.com>
48370
48371         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
48372         Check getpass declaration.
48373
48374 2004-08-08  Simon Josefsson  <jas@extundo.com>
48375
48376         * lib/xgethostname.c: Don't include error.h (not used).
48377
48378         * lib/getpass.h: Add.
48379         * lib/getpass.c: Include getpass.h first.
48380
48381 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
48382
48383         * lib/xalloc-die.c: New file.
48384         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
48385         All uses removed.
48386         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
48387         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
48388         xalloc-die.c.
48389         (_, N_, xalloc_die): Move to xalloc-die.c.
48390         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
48391         so that we needn't mess with xalloc_msg_memory_exhausted.
48392
48393         * lib/sha1.h: Renamed from sha.h.
48394         (SHA1_H): Renamed from _SHA_H.
48395         (sha1_ctx): Renamed from sha_ctx.
48396         (sha1_init_ctx): Renamed from sha_init_ctx.
48397         (sha1_process_block): Renamed from sha_process_block.
48398         (sha1_process_bytes): Renamed from sha_process_bytes.
48399         (sha1_finish_ctx): Renamed from sha_finish_ctx.
48400         (sha1_read_ctx): Renamed from sha_read_ctx.
48401         (sha1_stream): Renamed from sha_stream.
48402         (sha1_buffer): Renamed from sha_buffer.
48403         * lib/sha1.c: Likewise; renamed from sha.c.
48404         Do not include <sys/types.h>.
48405         Include <stddef.h> rather than <stdlib.h>.
48406
48407 2004-08-08  Bruno Haible  <bruno@clisp.org>
48408
48409         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
48410         FILESYSTEM_PREFIX_LEN.
48411         * lib/progreloc.c: Likewise.
48412         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
48413
48414 2004-08-06  Simon Josefsson  <jas@extundo.com>
48415
48416         * modules/progname (Depends-on): Don't depend on stdbool.
48417
48418 2004-08-06  Simon Josefsson  <jas@extundo.com>
48419
48420         * modules/getsubopt: New file.
48421         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
48422         getsubopt.
48423
48424 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48425
48426         More merge from coreutils.
48427
48428         * m4/utimens.m4, m4/utimecmp.m4: New files.
48429         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
48430         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
48431         prereq.m4, sha.m4: Import changes from coreutils.
48432
48433 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48434
48435         More merge from coreutils.
48436         * modules/raise, modules/readtokens0, modules/utimens:
48437         * modules/utimecmp, module/xnanosleep: New files.
48438         * modules/strftime: Add lib/strftime.h.
48439         Change include from <time.h> to "strftime.h".
48440         * modules/yesno: Add lib/yesno.h.
48441         * modules/backupfile: Remove lib/addext.c.
48442         * modules/euidaccess: Add stat-macros.h.
48443         * modules/canonicalize, modules/euidaccess,
48444         modules/filemode, modules/lchown, modules/makepath,
48445         modules/rmdir, modules/stat: Likewise.
48446
48447 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48448
48449         Merge from tar.
48450         * lib/argp-help.c (make_hol, hol_append): Don't assume that
48451         SIZE_MAX is a valid preprocessor constant.
48452         (__argp_basename): Change from "#ifndef _LIBC"
48453         to "#ifndef __argp_short_program_name", so that
48454         we don't compile these functions for tar.
48455
48456         More merges from coreutils.
48457         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
48458         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
48459         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
48460         * lib/addext.c: Remove; no longer needed.
48461         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
48462         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
48463         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
48464         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
48465         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
48466         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
48467         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
48468         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
48469         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
48470         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
48471         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
48472         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
48473         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
48474         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
48475         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
48476         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
48477         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
48478         Import changes from coreutils.
48479
48480 2004-08-05  Simon Josefsson  <jas@extundo.com>
48481
48482         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
48483
48484 2004-08-05  Simon Josefsson  <jas@extundo.com>
48485
48486         * m4/getsubopt.m4: New file.
48487
48488 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48489
48490         Merge from coreutils.
48491
48492         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
48493         * m4/getcwd-path-max.m4: New files.
48494
48495         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
48496         FILESYSTEM_PREFIX_LEN ->
48497         FILE_SYSTEM_PREFIX_LEN.
48498         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
48499         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
48500         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
48501         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
48502
48503         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
48504         prerequisite modules now handle the DOS stuff.
48505         Don't check for unistd.h.
48506
48507 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48508
48509         Merge from coreutils.
48510
48511         * lib/.gdb-history: Remove; this doesn't belong here.
48512
48513         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
48514         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
48515         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
48516         * lib/getcwd.c: New files.
48517
48518         * lib/dirname.h: Include <stdbool.h>.
48519         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
48520         for consistency with POSIX terminology.  All uses changed.
48521         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
48522         (strip_trailing_slashes): Use bool for booleans.
48523         * lib/stripslash.c (strip_trailing_slashes): Likewise.
48524
48525         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
48526         sometimes returns a positive errno value even when it succeeds.
48527         (print_errno_message) [!LIBC]: Fall back on strerror if
48528         __strerror_r fails.
48529
48530         * lib/path-concat.c (mempcpy): Don't define if a system header defines
48531         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
48532         (longest_relative_suffix): New function.
48533         (path_concat): Use it.  Assume first argument is not NULL.
48534         Port to DOS.  Omit redundant separators.
48535         Report an error instead of returning NULL.
48536         Use mempcpy instead of memcpy.
48537         (xpath_concat): Remove: not declared or used.
48538
48539         * lib/same.h: Include <stdbool.h>
48540         (same_name): Return bool, not int.
48541         * lib/same.c (same_name): Likewise.
48542         (errno): Don't declare; we assume C89 or better now.
48543
48544         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
48545         if not already defined.
48546
48547         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
48548         * lib/dup-safer.c (errno): Likewise.
48549
48550 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48551
48552         Merge from coreutils.
48553         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
48554         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
48555         * modules/path-concat: Don't depend on strdup.
48556
48557 2004-08-03  Simon Josefsson  <jas@extundo.com>
48558
48559         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
48560         * lib/progname.h: Don't include stdbool.h.
48561
48562 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48563
48564         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
48565         * MODULES.html.sh (func_all_modules): Remove fatal.
48566
48567 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48568
48569         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
48570
48571 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48572
48573         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
48574         working.
48575
48576 2004-08-02  Simon Josefsson  <jas@extundo.com>
48577
48578         * lib/getsubopt.h: New file, with comments from Bruno Haible.
48579         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
48580         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
48581
48582 2004-08-01  Simon Josefsson  <jas@extundo.com>
48583
48584         * lib/xgetdomainname.c: Include stdlib.h, for free().
48585
48586 2004-07-19  Bruno Haible  <bruno@clisp.org>
48587
48588         * MODULES.html.sh (func_all_modules): Add dummy.
48589
48590 2004-07-16  Simon Josefsson  <jas@extundo.com>
48591
48592         * modules/dummy: New file.
48593
48594 2004-07-16  Simon Josefsson  <jas@extundo.com>
48595
48596         * lib/dummy.c: New file.
48597
48598 2004-07-16  Bruno Haible  <bruno@clisp.org>
48599
48600         * lib/backupfile.h: Add extern "C" for C++.
48601         * lib/closeout.h: Likewise.
48602         * lib/copy-file.h: Likewise.
48603         * lib/findprog.h: Likewise.
48604         * lib/full-write.h: Likewise.
48605         * lib/pathname.h: Likewise.
48606         * lib/progname.h: Likewise.
48607         * lib/stpcpy.h: Likewise.
48608         * lib/stpncpy.h: Likewise.
48609         * lib/strcase.h: Likewise.
48610         * lib/strstr.h: Likewise.
48611         * lib/xalloc.h: Likewise.
48612
48613         * lib/mbswidth.h: Add extern "C" for C++.
48614         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
48615
48616 2004-07-13  Robert Millan  <robertmh@gnu.org>
48617
48618         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
48619
48620 2004-07-09  Simon Josefsson  <jas@extundo.com>
48621
48622         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
48623         failed without this.)
48624
48625 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
48626
48627         * modules/chown (Files): Add lib/fchown-stub.c, since
48628         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
48629
48630 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
48631
48632         * lib/fchown-stub.c: New file.
48633
48634 2004-06-24  Jim Meyering  <jim@meyering.net>
48635
48636         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
48637
48638 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48639
48640         * modules/argz: Omit "#include".
48641
48642         * MODULES.html.sh (func_all_modules): Add calloc, to match
48643         2004-06-01 addition of calloc module.
48644
48645 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48646
48647         * m4/argz.m4: New file, which is autoupdated from libtool.
48648
48649 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48650
48651         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
48652         libtool.
48653
48654 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48655
48656         * config/srclist-update: Don't insist on "USA." before the
48657         close-comment, as libtool omits the period and puts the */ on a
48658         separate line.
48659         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
48660         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
48661
48662 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
48663
48664         * modules/argz: New file.
48665         * MODULES.html.sh (func_all_modules): Add argz.
48666
48667 2004-06-12  Jim Meyering  <jim@meyering.net>
48668         and  Paul Eggert  <eggert@cs.ucla.edu>
48669
48670         * modules/hash (Files): Add lib/xalloc.h.
48671         * modules/pipe (Depends-on): Add wait-process.
48672         * modules/stat (Depends-on): Add xalloc.
48673         * modules/userspec (Files): Add lib/userspec.h.
48674         * modules/xstrto
48675
48676         Upgrade from gettext-0.13.
48677         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
48678         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
48679         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
48680
48681 2004-06-10  Jim Meyering  <jim@meyering.net>
48682
48683         * lib/calloc.c: New file.
48684
48685 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
48686
48687         * lib/getdate.y (yylex): Allow space between sign and number.
48688         Problem reported by Dan Jacobson.
48689
48690 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
48691
48692         Merge from coreutils CVS.
48693
48694         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
48695         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
48696         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
48697         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
48698         xstrtol.m4: Fix copyright date and/or serial number.
48699
48700         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
48701         See if we need an fchown replacement.
48702         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
48703         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
48704         and use the replacement function if we detect either defect.
48705
48706         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
48707         gl_UTIMECMP.
48708
48709 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
48710         and  Jim Meyering  <jim@meyering.net>
48711
48712         Merge from coreutils CVS.
48713
48714         * lib/stat-macros.h: New file, with contents from file-type.h
48715         and coreutils' system.h.
48716         * lib/file-type.c: Include "stat-macros.h".
48717         * lib/file-type.h (file_type): Move all macro definitions to new file,
48718         stat-macros.h.
48719
48720         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
48721         Wrap old code with this conditional.
48722         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
48723         function that does not dereference symlinks.
48724         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
48725
48726         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
48727         dependency problems.
48728         (xreadlink): Accept new arg SIZE, for efficiency.
48729         All decls and uses changed.
48730         * lib/xreadlink.h: Include <stddef.h>, for size_t.
48731
48732         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
48733         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
48734
48735         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
48736         sysexits.h.
48737
48738 2004-06-01  Jim Meyering  <jim@meyering.net>
48739
48740         * m4/calloc.m4: New file.
48741
48742 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
48743
48744         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
48745         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
48746         Also, fix a typo in a diagnostic.
48747
48748 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
48749
48750         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
48751         or AC_FUNC_REALLOC.
48752
48753 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
48754
48755         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
48756         macros to be defined.
48757         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
48758         the allocator returns NULL because the requested size is zero.
48759
48760 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
48761
48762         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
48763         var.  Add comment explaining why libc still defines it.  This
48764         merges the following patch from glibc:
48765         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
48766
48767 2004-05-20  Andreas Schwab  <schwab@suse.de>
48768
48769         * m4/free.m4: Replace free if it not known to work, not the other
48770         way round.
48771
48772 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
48773
48774         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
48775         present in glibc since revision 1.1 of this file.
48776         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
48777         obstack_alignment_mask, obstack_alloc, obstack_base,
48778         obstack_blank, obstack_blank_fast, obstack_chunk_size,
48779         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
48780         obstack_grow0, obstack_init, obstack_int_grow,
48781         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
48782         obstack_next_free, obstack_object_size, obstack_ptr_grow,
48783         obstack_ptr_grow_fast, obstack_room): Remove declarations of
48784         nonexistent functions.
48785
48786 2004-05-18  Karl Berry  <karl@gnu.org>
48787
48788         * config/srclist.txt: break link for vasnprintf.c.
48789
48790 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
48791
48792         Port obstack to the AS/400, where pointers are 16 bytes wide and
48793         you cannot cast an integer to a valid pointer.  This patch is
48794         currently waiting to be integrated into glibc; see
48795         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
48796
48797         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
48798         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
48799         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
48800         (struct obstack): temp member is now a union of a pointer and
48801         an integer, instead of an integer.  All integer uses changed.
48802         This does not affect the physical layout of struct obstack,
48803         except on hosts (like the AS/400) where the size or alignment of
48804         void * is greater than that of ptrdiff_t.
48805         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
48806         __STDC__)]: Store temporary in pointer member of union, not
48807         integer member.
48808         * lib/obstack.c: Include <stddef.h>, for offsetof.
48809         (struct fooalign): Remove; it doesn't need a name.
48810         (union fooround): Change double to long double, and add void *.
48811         (DEFAULT_ALIGNMENT): Use offsetof to compute.
48812         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
48813         not a macro.  Hence the values are always int; so remove all
48814         casts-to-int in uses.
48815
48816 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
48817
48818         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
48819         we can get this patch merged into glibc.
48820
48821 2004-05-17  Derek R. Price  <derek@ximbiot.com>
48822             Paul Eggert  <eggert@cs.ucla.edu>
48823
48824         * m4/argp: Depend on alloca.
48825
48826 2004-05-17  Derek R. Price  <derek@ximbiot.com>
48827             Paul Eggert  <eggert@cs.ucla.edu>
48828
48829         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
48830         freecoding.
48831
48832 2004-05-17  Bruno Haible  <bruno@clisp.org>
48833
48834         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
48835         precision that consists of a '.' followed by an empty digit string.
48836         Patch by Tor Lillqvist <tml@iki.fi>.
48837
48838 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
48839
48840         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
48841         for backward compatibility with older code.  We need our own
48842         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
48843         it under some other name, and our alloca.h will define it.
48844
48845 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
48846             Derek Price  <derek@ximbiot.com>
48847
48848         * lib/alloca.c: Include <alloca.h>, to get our interface.
48849         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
48850         include <alloca.h> first.  Use C89 prototype for alloca; this
48851         requires including <stddef.h> for size_t.  Use extern "C" if C++.
48852         Use #elif for simplicity, since we can assume C89 now.
48853         Don't try to source the system alloca.h since it will not be found
48854         and to prevent recursively including its replacement.
48855         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
48856         * lib/regex.c: Likewise.
48857
48858 2004-05-16  Derek Price  <derek@ximbiot.com>
48859             Paul Eggert  <eggert@cs.ucla.edu>
48860
48861         getline cleanup.  This changes the getndelim2 API: both order of
48862         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
48863         no delimiter).
48864
48865         * lib/getline.c: Don't include stddef.h or stdio.h, since our
48866         interface does that.
48867         (getline): Always use getdelim, so that we don't have two
48868         copies of this code.
48869         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
48870         if available.
48871         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
48872         (GETNDELIM2_MAXIMUM): New macro.
48873         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
48874         instead of the old practice of delim2==0.  All callers changed.
48875         Return -1 on overflow, instead of returning junk.
48876         Do not set *linesize unless allocation succeeds.
48877         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
48878         that we include sys/types.h.
48879         * lib/getnline.h: Likewise.
48880         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
48881         (getndelim2): Reorder arguments.
48882         * lib/getnline.c (getnline, getndelim):
48883         Don't discard the NMAX argument.
48884         (getnline): Invoke getndelim, to avoid code duplication.
48885         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
48886         of (size_t) -1 by callers of the getnline family.
48887
48888 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
48889
48890         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
48891         Check for gettimeofday.
48892         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
48893         Check for settimeofday, stime.
48894
48895 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
48896
48897         * lib/nanosleep.c (suspended): Change its type from int to
48898         sig_atomic_t volatile.
48899         (first_call): Make it private to rpl_nanosleep, and have it
48900         be zero initially as that's a bit faster.
48901         (my_usleep): Round up fractional times instead of truncating them,
48902         as this is the usual meaning for 'sleep'.
48903
48904         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
48905         doesn't work.
48906         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
48907         (ENOSYS): Define if not defined.
48908         (settime): Fall back on stime if it exists and settimeofday fails.
48909         But don't bother with fallbacks if a method fails with errno == EPERM.
48910
48911 2004-05-11  Jim Meyering  <jim@meyering.net>
48912
48913         Prior to this change, the save_cwd caller required read access to the
48914         current directory on most systems (ones with the fchdir function).
48915
48916         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
48917         fails, try write-only, and finally, resort to using xgetcwd.
48918
48919 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
48920
48921         * lib/obstack.c, obstack.h: Import changes from libc.
48922
48923 2004-04-28  Bruno Haible  <bruno@clisp.org>
48924
48925         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
48926         also implicitly appends .exe to executables.
48927         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
48928         accepts Windows pathnames.
48929         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
48930         Treat Cygwin like Windows, since it now accepts Windows pathnames.
48931         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
48932         Treat Cygwin like Windows, since it now accepts Windows pathnames.
48933         Reported by Derek Robert Price <derek@ximbiot.com>.
48934
48935 2004-04-21  Karl Berry  <karl@gnu.org>
48936
48937         * config/srclist.txt (localcharset.c): break sync.
48938
48939 2004-04-20  Paul Eggert  <eggert@twinsun.com>
48940
48941         * m4/host-os.m4: Add a copyright notice.
48942
48943 2004-04-20  Jim Meyering  <jim@meyering.net>
48944
48945         Change UTILS_ to gl_ in AC_DEFINE'd names.
48946         Change utils_- and jm_-prefixed variables, too.
48947         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
48948         UTILS_FUNC_MKDIR_TRAILING_SLASH.
48949         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
48950
48951         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
48952         Don't emit trailing blanks.
48953         Also rename jm_-prefixed variables to have gl_ prefix.
48954
48955         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
48956         Also rename jm_-prefixed variables to have gl_ prefix.
48957
48958         * m4/jm-macros.m4: Reflect the renamings.
48959         * m4/prereq.m4: Likewise.
48960
48961 2004-04-20  Jim Meyering  <jim@meyering.net>
48962
48963         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
48964         memory.
48965
48966 2004-04-20  Jim Meyering  <jim@meyering.net>
48967             Bruno Haible  <bruno@clisp.org>
48968
48969         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
48970         memory when realloc fails.
48971
48972 2004-04-19  Jim Meyering  <jim@meyering.net>
48973
48974         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
48975         now that readutmp.c may call `free (0)'.
48976
48977 2004-04-19  Bruno Haible  <bruno@clisp.org>
48978
48979         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
48980         * m4/inttypes_h.m4: Likewise.
48981         * m4/stdint_h.m4: Likewise.
48982         * m4/intmax_t.m4: Likewise.
48983         * m4/uintmax_t.m4: Likewise.
48984
48985 2004-04-18  Jim Meyering  <jim@meyering.net>
48986
48987         * m4/prereq.m4: Don't forbid jm_ prefix.
48988
48989         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
48990         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
48991         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
48992         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
48993         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
48994         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
48995         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
48996         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
48997         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
48998         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
48999         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
49000         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
49001         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
49002         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
49003         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
49004         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
49005         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
49006         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
49007         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
49008
49009 2004-04-18  Jim Meyering  <jim@meyering.net>
49010
49011         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
49012         failure, don't leak memory and do call END_UTMP_ENT.
49013
49014 2004-04-16  Jim Meyering  <jim@meyering.net>
49015
49016         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
49017         coreutils' stat program.
49018         (gl_PREREQ): Don't require jm_PREREQ_STAT.
49019
49020 2004-04-11  Paul Eggert  <eggert@twinsun.com>
49021
49022         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
49023         C89.
49024         (CHAR_BIT): Remove, since we assume C89.
49025         Include <stdint.h> if available, as per current Autoconf CVS advice.
49026
49027 2004-03-31  Jim Meyering  <jim@meyering.net>
49028
49029         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
49030         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
49031         * m4/xalloc.m4: Likewise.
49032
49033 2004-03-30  Paul Eggert  <eggert@twinsun.com>
49034
49035         Merge from coreutils.
49036
49037         * m4/inttostr.m4: New file.
49038         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
49039         Require AM_STDBOOL_H and gl_TIMESPEC instead.
49040         Require gl_CLOCK_TIME.
49041         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
49042
49043 2004-03-30  Paul Eggert  <eggert@twinsun.com>
49044
49045         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
49046         not bool, to be more consistent with Unix conventions.
49047         Suggested by Bruno Haible.
49048
49049         Merge from coreutils.
49050
49051         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
49052         * lib/umaxtostr.c: New files.
49053
49054         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
49055         the usual <time.h> dance.
49056         (get_date): Change signature to support fractional time stamps.
49057         All callers changed.
49058         * lib/getdate.y: Include "getdate.h" first, as we can now
49059         assume C89 and don't need to worry about 'const'.
49060         Similarly, include "unlocked-io.h" near start, not in middle.
49061         Include <limits.h>.
49062         (textint.value): Use long int rather than int.
49063         (textint.digits): Use size_t rather than int.
49064         (BILLION, LOG10_BILLION): New constants.
49065         (parser_control): New member rel_ns.  Members day_ordinal,
49066         time_zone, month, day, hour, minutes, rel_year, rel_month,
49067         rel_day, rel_hour, rel_minutes, rel_seconds
49068         are now long int, not int.  Member seconds is now struct timespec,
49069         not int.  New member timespec_seen.  Members dates_seen, days_seen,
49070         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
49071         not int.
49072         (%union.intval): Now long int, not int.
49073         New member timespec.
49074         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
49075         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
49076         (spec): Now is a timespec or an item list.
49077         (timespec, items): New nonterminals.
49078         (time, rel, relunit, number, get_date):
49079         Add support for fractional seconds.
49080         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
49081         (gmtime, localtime, mktime): Remove decls; not needed with C89.
49082         (to_hour): First arg is now long int, not int.
49083         (to_year): Returns long int, not int.
49084         Don't treat year -70 like 70.
49085         (tm_diff): Returns long int, not int.
49086         (lookup_word): Use bool instead of int when appropriate.
49087         (yylex): Use size_t for count, not int.
49088         Detect overflow when parsing large integer constants.
49089         Add support for fractions.
49090         (get_date): Make pointers 'const' if possible.
49091         Use more-portable code to detect integer overflow.
49092         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
49093         Don't use ctime; it's not reliable if the year has >4 digits.
49094
49095         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
49096         This is for compatibility with BSD.
49097
49098         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
49099         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
49100         From coreutils' system.h.
49101
49102         * lib/userspec.c: Don't include "posixver.h".
49103         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
49104         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
49105         compatible extension.  Simplify code by removing a boolean int
49106         that was always nonzero if a string was nonnull.
49107
49108 2004-03-30  Jim Meyering  <jim@meyering.net>
49109
49110         Merge from coreutils.
49111
49112         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
49113         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
49114         on some systems one must include <grp.h> before it.
49115         Reported by Christian Krackowizer.
49116
49117 2004-03-30  Jim Meyering  <jim@meyering.net>
49118
49119         Merge from coreutils.
49120
49121         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
49122
49123         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
49124         an empty input stream.
49125
49126         * lib/readtokens.c: Include <stdbool.h>.
49127         (readtoken): Use `size_t' rather than int/long.
49128         All callers adjusted.
49129         Use `bool' rather than `int' where appropriate.
49130         Use memset rather than an explicit loop.
49131         Use x2nrealloc rather than xrealloc.
49132         Allow the use of `\0' as a delimiter.
49133         (readtokens): Likewise.
49134         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
49135
49136 2004-03-30  Jim Meyering  <jim@meyering.net>
49137
49138         * m4/realloc.m4: Remove file, since now it does no more than
49139         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
49140         the `configure.ac' section of module/realloc.
49141         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
49142
49143 2004-03-30  Bruno Haible  <bruno@clisp.org>
49144
49145         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
49146         nonnull.
49147
49148 2004-03-29  Paul Eggert  <eggert@twinsun.com>
49149
49150         Merge changes to getloadavg.c from coreutils and Emacs.
49151
49152         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
49153         Define to an expression, not to the empty string.
49154         Include cloexec.h and xalloc.h.
49155         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
49156         Use set_cloexec_flag rather than rolling our own.
49157         * lib/cloexec.c, lib/cloexec.h: New files.
49158
49159 2004-03-29  Paul Eggert  <eggert@twinsun.com>
49160
49161         * m4/cloexec.m4: New file.
49162
49163 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49164
49165         * lib/getopt.h: Sync with libc CVS.
49166
49167 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49168             Bruno Haible  <bruno@clisp.org>
49169
49170         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
49171         mbswidth.
49172
49173 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49174             Bruno Haible  <bruno@clisp.org>
49175
49176         * lib/mbswidth.h: Include <wchar.h> only if
49177         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
49178         <wchar.h>.
49179         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
49180
49181 2004-03-09  Paul Eggert  <eggert@twinsun.com>
49182
49183         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
49184         Sync with libc CVS.
49185         * lib/getopt_int.h: New file, also synced from libc.
49186
49187 2004-03-09  Paul Eggert  <eggert@twinsun.com>
49188
49189         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
49190         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
49191         Bring back getopt.c, getopt.h, getopt1.c.
49192
49193 2004-03-07  Paul Eggert  <eggert@twinsun.com>
49194
49195         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
49196         All uses changed.  Check for sa_sigaction member; this fixes
49197         a bug first reported by Jason Andrade in
49198         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
49199
49200 2004-03-07  Paul Eggert  <eggert@twinsun.com>
49201
49202         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
49203         '#if' expressions.  Unlike the code it replaces, it does not
49204         depend on (defined _SC_PAGESIZE).  However, it does depend on
49205         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
49206         first reported by Jason Andrade in
49207         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
49208
49209 2004-02-25  Simon Josefsson  <jas@extundo.com>
49210
49211         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
49212
49213 2004-02-25  Simon Josefsson  <jas@extundo.com>
49214
49215         * lib/strdup.h: New file.
49216         * lib/strdup.c: Include it.
49217         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
49218         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
49219
49220 2004-02-23  Karl Berry  <karl@gnu.org>
49221
49222         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
49223         (from fencepost.gnu.org:/gd/gnuorg).
49224
49225 2004-02-23  Karl Berry  <karl@gnu.org>
49226
49227         * config/srclistvars.sh (GNUORG) [karl]: redefine.
49228         * config/srclist.txt: add maintain/standards documents.
49229
49230 2004-02-18  Bruno Haible  <bruno@clisp.org>
49231
49232         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
49233         Reported by Derek Robert Price <derek@ximbiot.com>.
49234
49235 2004-02-16  Karl Berry  <karl@gnu.org>
49236
49237         * config/mkinstalldirs, install-sh: update from automake.
49238
49239 2004-02-06  Karl Berry  <karl@gnu.org>
49240
49241         * m4/po.m4: update from gettext 0.14.1.
49242
49243 2004-02-06  Karl Berry  <karl@gnu.org>
49244
49245         * lib/config.charset: update from gettext 0.14.1.
49246
49247 2004-02-05  Paul Eggert  <eggert@twinsun.com>
49248
49249         Add comments and code, prompted by suggestions from Bruno Haible
49250         for sh-quote.
49251         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
49252         describing the enum quoting_style values.
49253         * lib/quotearg.c (quotearg_alloc): New function.
49254         (quotearg_buffer_restyled): Treat lone { and } as special.
49255         Treat = as special.  Work around bug with older shells
49256         that "see" a '\' that is really the 2nd byte of a multibyte char.
49257         Quote empty string with shell_quoting_style.
49258
49259 2004-02-03  Bruno Haible  <bruno@clisp.org>
49260
49261         * m4/pipe.m4: New file, from GNU gettext.
49262
49263 2004-02-03  Bruno Haible  <bruno@clisp.org>
49264
49265         * lib/pipe.h: New file, from GNU gettext.
49266         * lib/pipe.c: New file, from GNU gettext.
49267
49268 2004-01-27  Bruno Haible  <bruno@clisp.org>
49269
49270         * m4/execute.m4: New file, from GNU gettext.
49271
49272 2004-01-27  Bruno Haible  <bruno@clisp.org>
49273
49274         * lib/execute.h: New file, from GNU gettext.
49275         * lib/execute.c: New file, from GNU gettext.
49276         * lib/w32spawn.h: New file, from GNU gettext.
49277
49278 2004-01-24  Paul Eggert  <eggert@twinsun.com>
49279
49280         Merge from diffutils.
49281
49282         * lib/file-type.c (file_type): Add typed memory objects.
49283         * lib/file-type.h (S_TYPEISTMO): New macro.
49284
49285         * lib/c-stack.h (c_stack_action): Remove argv argument.
49286         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
49287         (die): Don't calculate message unless segv_action returns.
49288         (get_stack_location, min_address_from_argv, max_address_from_argv,
49289         volatile stack_base, volatile_stack_size): Remove.
49290         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
49291         that every segmentation violation is a stack overflow.  (Ouch!)
49292         See Debian bug 136249 (still outstanding) for more info about why
49293         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
49294
49295 2004-01-24  Paul Eggert  <eggert@twinsun.com>
49296
49297         Exit-status fix from coreutils.
49298
49299         Use exit_failure consistently in place of EXIT_FAILURE,
49300         so that program exit statuses are consistent on failure.
49301
49302         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
49303         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
49304         * lib/argmatch.h: Comment fix to match the above.
49305         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
49306         Now a macro referring to exit_failure, instead of a separate
49307         variable.  Include "exitfail.h" to get it.
49308         * lib/xstrtol.h: Include "exitfail.h".
49309         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
49310
49311         * lib/long-options.c (parse_long_options): Use prototype
49312         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
49313         for clarity.
49314
49315 2004-01-21  Jim Meyering  <jim@meyering.net>
49316
49317         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
49318         so as not to conflict with a different-sized __mktime_internal
49319         function in GNU libc.
49320         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
49321         Problem building statically-linked `ls' reported by Michael Brunnbauer.
49322
49323 2004-01-20  Karl Berry  <karl@gnu.org>
49324
49325         * config/config.guess: update from config.
49326
49327         * config/srclistvars.sh: GNUWWWLICENSES for karl.
49328
49329 2004-01-20  Bruno Haible  <bruno@clisp.org>
49330
49331         Safer stack allocation.
49332         * lib/setenv.c: Include allocsa.h.
49333         (alloca): Remove fallback definition.
49334         (freea): Remove macro.
49335         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
49336         instead of freea.
49337
49338 2004-01-20  Bruno Haible  <bruno@clisp.org>
49339
49340         * m4/eealloc.m4: New file, from GNU gettext.
49341
49342 2004-01-20  Bruno Haible  <bruno@clisp.org>
49343
49344         * m4/allocsa.m4: New file, from GNU gettext.
49345
49346 2004-01-20  Bruno Haible  <bruno@clisp.org>
49347
49348         * lib/xallocsa.h: New file, from GNU gettext.
49349         * lib/xallocsa.c: New file, from GNU gettext.
49350
49351 2004-01-20  Bruno Haible  <bruno@clisp.org>
49352
49353         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
49354
49355 2004-01-20  Bruno Haible  <bruno@clisp.org>
49356
49357         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
49358         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
49359         specially.
49360
49361 2004-01-20  Bruno Haible  <bruno@clisp.org>
49362
49363         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
49364         patch.
49365
49366 2004-01-20  Bruno Haible  <bruno@clisp.org>
49367
49368         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
49369
49370 2004-01-20  Bruno Haible  <bruno@clisp.org>
49371
49372         * lib/eealloc.h: New file.
49373
49374 2004-01-20  Bruno Haible  <bruno@clisp.org>
49375
49376         * lib/binary-io.h: Avoid warnings on Cygwin.
49377
49378 2004-01-20  Bruno Haible  <bruno@clisp.org>
49379
49380         * lib/allocsa.h: New file, from GNU gettext.
49381         * lib/allocsa.c: New file, from GNU gettext.
49382
49383 2004-01-18  Karl Berry  <karl@gnu.org>
49384
49385         * doc/gpl.texi, doc/lgpl.texi: new files.
49386
49387 2004-01-18  Karl Berry  <karl@gnu.org>
49388
49389         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
49390         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
49391
49392 2004-01-15  Paul Eggert  <eggert@twinsun.com>
49393
49394         Merge from coreutils.
49395
49396         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
49397         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
49398         (gl_DEFAULT_POSIX2_VERSION): Move
49399         the documentation from 'configure' into 'config.hin',
49400         so that 'configure --help' isn't burdened by it and
49401         we don't have to worry about its formatting there.
49402         Reword the documentation so that it's more succinct
49403         and can be run together into a single paragraph.
49404         * m4/same.m4 (gl_SAME): Check for pathconf.
49405
49406 2004-01-15  Paul Eggert  <eggert@twinsun.com>
49407
49408         Merge from coreutils.
49409
49410         * lib/posixver.c: Include posixver.h.
49411
49412         * lib/same.c: Include <stdbool.h>, <limits.h>.
49413         (_POSIX_NAME_MAX): Define if not defined.
49414         (MIN): New macro.
49415         (same_name): If file names are silently truncated, report
49416         that the file names are the same if they are the same after
49417         the silent truncation.
49418
49419         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
49420         conversion function.
49421         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
49422         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
49423         longer needed.
49424
49425 2004-01-15  Jim Meyering  <jim@meyering.net>
49426
49427         Merge from coreutils.
49428
49429         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
49430         if no library is required.
49431         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
49432         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
49433         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
49434         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
49435         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
49436         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
49437         value, $ac_cv_search_crypt, if it's "none required".
49438         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
49439         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
49440         not gl_FUNC_GETLOADAVG.
49441         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
49442         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
49443
49444 2004-01-15  Jim Meyering  <jim@meyering.net>
49445
49446         Merge from coreutils.
49447
49448         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
49449         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
49450         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
49451
49452         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
49453         optional configure-time default.
49454
49455         * lib/version-etc.c (version_etc_copyright): Update copyright date.
49456
49457         * lib/xreadlink.c (xreadlink): Correct outdated comment.
49458
49459 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
49460
49461         Merge from coreutils.
49462
49463         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
49464         value, $ac_cv_search_nanosleep, if it's "none required".
49465
49466 2004-01-14  Paul Eggert  <eggert@twinsun.com>
49467
49468         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
49469         with like-named macro in fnmatch.c.
49470         (EXT): Use an internal constant instead.
49471
49472         Merge fnmatch patches from glibc.
49473         * lib/fnmatch.c (mbsinit): Remove define.
49474         Add libc_hidden_ver (__fnmatch, fnmatch).
49475         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
49476         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
49477
49478 2004-01-14  Karl Berry  <karl@gnu.org>
49479
49480         * config/install-sh: update from automake.
49481
49482 2004-01-13  Karl Berry  <karl@gnu.org>
49483
49484         * config/install-sh: update from automake.
49485
49486 2004-01-09  Karl Berry  <karl@gnu.org>
49487
49488         * config/install-sh: update from automake.
49489
49490 2004-01-05  Karl Berry  <karl@gnu.org>
49491
49492         * config/config.{sub,guess}: update from config.
49493
49494 2003-12-31  Karl Berry  <karl@gnu.org>
49495
49496         * config/depcomp: update from automake.
49497
49498 2003-12-14  Karl Berry  <karl@gnu.org>
49499
49500         * lib/config.charset: update from gettext-runtime.
49501
49502 2003-12-03  Paul Eggert  <eggert@twinsun.com>
49503
49504         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
49505         Bug reported by Alfred M. Szmidt.
49506
49507 2003-12-03  Bruno Haible  <bruno@clisp.org>
49508
49509         * m4/gettext.m4: Upgrade from gettext-0.13.
49510         * m4/po.m4: Upgrade from gettext-0.13.
49511         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
49512         * m4/intmax.m4: New file, from gettext-0.13.
49513         * m4/printf-posix.m4: New file, from gettext-0.13.
49514
49515 2003-11-29  Karl Berry  <karl@gnu.org>
49516
49517         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
49518
49519 2003-11-25  Paul Eggert  <eggert@twinsun.com>
49520             Bruno Haible  <bruno@clisp.org>
49521
49522         * lib/printf-parse.h: Don't include sys/types.h.
49523         (ARG_NONE): New macro.
49524         (char_directive): Change type of *arg_index fields to size_t.
49525         * lib/printf-parse.c: Don't include sys/types.h.
49526         (SSIZE_MAX): Remove macro.
49527         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
49528         Remove unnecessary overflow check.
49529         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
49530         fields.
49531
49532 2003-11-25  Bruno Haible  <bruno@clisp.org>
49533
49534         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
49535
49536 2003-11-25  Bruno Haible  <bruno@clisp.org>
49537
49538         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
49539         gt_TYPE_SSIZE_T.
49540
49541 2003-11-24  Paul Eggert  <eggert@twinsun.com>
49542
49543         * modules/alloca: Remove dependency on xalloc.
49544
49545 2003-11-24  Paul Eggert  <eggert@twinsun.com>
49546
49547         * lib/alloca.c: Remove dependency on xalloc module.
49548         (xalloc_die): Remove.
49549         (memory_full) [!defined emacs]: New macro.
49550         [!defined emacs]: Don't include xalloc.h.
49551         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
49552         address arithmetic overflows.  Change datatypes a bit to avoid
49553         unnecessary casts.
49554
49555 2003-11-22  Jim Meyering  <jim@meyering.net>
49556
49557         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
49558         s/size/size_t/.
49559
49560 2003-11-21  Karl Berry  <karl@gnu.org>
49561
49562         * config/config.{sub,guess}: update from config.
49563
49564 2003-11-18  Karl Berry  <karl@gnu.org>
49565
49566         * config/config.{sub,guess}: update from config.
49567
49568         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
49569
49570 2003-11-17  Paul Eggert  <eggert@twinsun.com>
49571
49572         * README: Mention that S+T cannot overflow if S is the size of
49573         an existing object and T is sufficiently small.
49574
49575 2003-11-17  Jim Meyering  <jim@meyering.net>
49576
49577         On systems without utime and without a utimes function capable of
49578         dealing with a NULL struct utimbuf* argument, this utime replacement
49579         could -- in unusual circumstances -- leak a file descriptor.
49580         * lib/utime.c: Include <unistd.h> and <errno.h>.
49581         (utime_null): Be sure to close `fd' and to preserve errno.
49582         Reported by Geoff Collyer via Arnold Robbins.
49583
49584 2003-11-17  Bruno Haible  <bruno@clisp.org>
49585
49586         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
49587         (Depends-on): Add xsize.
49588
49589 2003-11-17  Bruno Haible  <bruno@clisp.org>
49590
49591         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
49592
49593 2003-11-17  Bruno Haible  <bruno@clisp.org>
49594
49595         * lib/vasnprintf.c (alloca): Remove fallback definition.
49596         (freea): Remove definition.
49597         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
49598         Reported by Paul Eggert.
49599
49600 2003-11-16  Paul Eggert  <eggert@twinsun.com>
49601             Bruno Haible  <bruno@clisp.org>
49602
49603         Protect against address arithmetic overflow.
49604         * lib/printf-args.h: Include stddef.h.
49605         (arguments): Change type of field 'count' to size_t.
49606         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
49607         'unsigned int' where appropriate.
49608         * lib/printf-parse.h: Include sys/types.h.
49609         (char_directive): Change type of *arg_index fields to ssize_t.
49610         (char_directives): Change type of fields 'count', max_*_length to
49611         size_t.
49612         * lib/printf-parse.c: Include sys/types.h and xsize.h.
49613         (SSIZE_MAX): Define fallback value.
49614         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
49615         instead of 'int' where appropriate. Check a_allocated, d_allocated
49616         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
49617         * lib/vasnprintf.c: Include xsize.h.
49618         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
49619         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
49620         overflow. Avoid wraparound when converting a width or precision from
49621         decimal to binary.
49622
49623 2003-11-16  Bruno Haible  <bruno@clisp.org>
49624
49625         Update from GNU gettext.
49626         * lib/printf-parse.c: Generalize to it can be compiled for wide
49627         strings.
49628         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
49629         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
49630         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
49631         SNPRINTF): New macros.
49632         Don't include <alloca.h> if the file is used inside libintl.
49633         (local_wcslen): New function, for Solaris 2.5.1.
49634         (VASNPRINTF): Use it instead of wcslen.
49635
49636 2003-11-16  Bruno Haible  <bruno@clisp.org>
49637
49638         * lib/xsize.h (xmax): New function.
49639         (xsum, xsum3, xsum4): Declare as "pure" functions.
49640
49641 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49642
49643         * modules/xalloc (Files): Undo latest change, since xalloc.h
49644         no longer needs SIZE_MAX or PTRDIFF_MAX.
49645
49646 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49647
49648         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
49649         gl_PTRDIFF_MAX.
49650
49651 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49652
49653         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
49654         "return", to pacify some unknown compiler.  Problem reported
49655         by Joerg Schilling.
49656
49657 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49658
49659         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
49660         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
49661         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
49662         heuristic is just as accurate as far as we know, and it removes a
49663         dependency on size_max.m4 and ptrdiff_max.m4.
49664
49665 2003-11-11  Bruno Haible  <bruno@clisp.org>
49666
49667         * modules/xsize (Files): Add m4/size_max.m4.
49668         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
49669
49670 2003-11-11  Bruno Haible  <bruno@clisp.org>
49671
49672         * m4/size_max.m4: New file.
49673         * m4/ptrdiff_max.m4: New file.
49674         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
49675         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
49676         (gl_XALLOC): Invoke it.
49677
49678 2003-11-11  Bruno Haible  <bruno@clisp.org>
49679
49680         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
49681         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
49682         defined.
49683
49684 2003-11-10  Paul Eggert  <eggert@twinsun.com>
49685
49686         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
49687         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
49688         rejected some allocations of exactly SIZE_MAX - 2 bytes.
49689         From Bruno Haible.
49690         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
49691         not (size_t) -1, since it's defined here.
49692
49693 2003-11-09  Karl Berry  <karl@gnu.org>
49694
49695         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
49696
49697 2003-11-06  Paul Eggert  <eggert@twinsun.com>
49698
49699         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
49700         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
49701         Reject sizes of exactly SIZE_MAX bytes.
49702         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
49703         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
49704
49705 2003-11-05  Bruno Haible  <bruno@clisp.org>
49706
49707         * lib/xsize.h: Include limits.h, to avoid a possible collision with
49708         SIZE_MAX defined in <limits.h> on Solaris.
49709
49710 2003-11-04  Jim Meyering  <jim@meyering.net>
49711
49712         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
49713         variable names, rather than @VAR@.
49714         * modules/poll: Likewise.
49715
49716 2003-11-04  Bruno Haible  <bruno@clisp.org>
49717
49718         * modules/xsize: New file.
49719         * modules/linebreak: Depend on xsize.
49720         * MODULES.html.sh (func_all_modules): Add xsize.
49721
49722 2003-11-04  Bruno Haible  <bruno@clisp.org>
49723
49724         * m4/xsize.m4: New file.
49725
49726 2003-11-04  Bruno Haible  <bruno@clisp.org>
49727
49728         * lib/xsize.h: New file.
49729         * lib/linebreak.c: Include xsize.h.
49730         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
49731         argument for overflow.
49732         Suggested by Paul Eggert.
49733
49734 2003-11-03  Karl Berry  <karl@gnu.org>
49735
49736         * config/config.{guess,sub}: update from config.
49737
49738 2003-11-03  Jim Meyering  <jim@meyering.net>
49739
49740         * modules/userspec (lib_SOURCES): Add userspec.h.
49741         (Include): Add "userspec.h".
49742         Improve description.
49743
49744 2003-11-03  Jim Meyering  <jim@meyering.net>
49745
49746         * lib/userspec.c: Include "userspec.h".
49747         * lib/userspec.h: New file.
49748
49749 2003-11-03  Bruno Haible  <bruno@clisp.org>
49750
49751         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
49752
49753 2003-11-03  Bruno Haible  <bruno@clisp.org>
49754
49755         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
49756         available, to avoid (extremely rare) race condition.
49757         Suggested by Paul Eggert.
49758
49759 2003-11-02  Karl Berry  <karl@gnu.org>
49760
49761         * config/srclist.txt (vasprintf.c): sync broken, sigh.
49762
49763 2003-10-31  Paul Eggert  <eggert@twinsun.com>
49764
49765         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
49766         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
49767         (read_filesystem_list): Set and use me_type_malloced.
49768         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
49769         whatever the type happens to be), for brevity and consistency.
49770         Check for size calculation overflow on Alphas running OSF/1.
49771
49772 2003-10-31  Jim Meyering  <jim@meyering.net>
49773
49774         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
49775
49776         * lib/linebuffer.c: Include <string.h> for declaration of memset.
49777
49778 2003-10-30  Paul Eggert  <eggert@twinsun.com>
49779             Bruno Haible  <bruno@clisp.org>
49780
49781         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
49782         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
49783
49784 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
49785
49786         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
49787         netbsd*-gnu*.  Suggested by Robert Millan.
49788
49789 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49790
49791         * modules/group-member: Depend on stdbool.
49792
49793 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49794
49795         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
49796
49797 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49798
49799         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
49800         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
49801         after the 'gnu' in these cases.  This fixes some bugs in the
49802         previous change, and is based on suggestions by Robert Millan.
49803
49804 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49805
49806         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
49807         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
49808         no longer needed.
49809         * lib/quotearg.c (quotearg_n_options): Use it.
49810         * lib/group-member.c: Include <stdbool.h>.
49811         (free_group_info): Arg is now const *; don't free arg.
49812         (get_group_info): Now returns bool and accepts struct group_info *,
49813         rather than returning a malloc'ed struct group_info *.
49814         All uses changed.  Check for overflow in internal size calculation.
49815
49816         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
49817         rather than xmalloc/xrealloc.
49818         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
49819         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
49820         conformance bug: the old code used a pointer after freeing the
49821         storage that it addressed.
49822         * lib/hash.c (hash_initialize): Simplify the code by using
49823         xalloc_oversized rather than doing it by hand.
49824         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
49825         the buffer preserved.  Use free and xmalloc instead.
49826         * lib/quotearg.c (quotearg_n_options): Likewise.
49827         Use a simpler test for size overflow.  Don't use xalloc_oversized
49828         because unsigned int might be wider than size_t (!); this suggests
49829         that we should switch from unsigned int to size_t for slot numbers.
49830
49831 2003-10-28  Paul Eggert  <eggert@twinsun.com>
49832
49833         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
49834         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
49835         NetBSD kernels.  Requested by Richard Stallman.
49836
49837 2003-10-27  Paul Eggert  <eggert@twinsun.com>
49838
49839         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
49840         to allocate the returned structure.  Do not allocate a subarray,
49841         as x2nrealloc will do that.
49842         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
49843         instead of xnrealloc.
49844         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
49845
49846 2003-10-27  Bruno Haible  <bruno@clisp.org>
49847
49848         * lib/stdbool_.h: Better support for BeOS.
49849
49850 2003-10-26  Paul Eggert  <eggert@twinsun.com>
49851
49852         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
49853         now uses inline.
49854
49855 2003-10-26  Paul Eggert  <eggert@twinsun.com>
49856
49857         * lib/xalloc.h (xalloc_oversized): New static inline function, for
49858         callers that want to do their own size-overflow checking.  Include
49859         <stdbool.h>, since xalloc_oversized returns bool.
49860         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
49861         to use xalloc_oversized.
49862
49863         Add two functions x2realloc, x2nrealloc, for programs that grow
49864         arrays dynamically by doubling their sizes.
49865         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
49866         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
49867         New functions.
49868
49869         Port to C99 semantics for 'inline' of external functions.
49870         Bug reported by Bruno Haible.
49871         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
49872         with the old contents of xnmalloc.
49873         (xnmalloc, xmalloc): Use it.
49874         (xnrealloc_inline): New static inline function,
49875         with the old contents of xnrealloc.
49876         (xnrealloc, xrealloc): Use it.
49877
49878         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
49879         that.
49880
49881 2003-10-26  Karl Berry  <karl@gnu.org>
49882
49883         * config/srclist.txt (COPYING.DOC): no longer available from
49884         /gd/gnuorg; don't know where the ultimate source is.
49885
49886 2003-10-25  Paul Eggert  <eggert@twinsun.com>
49887
49888         Fix several address-calculation bugs in the hash modules,
49889         plus some minor code cleanup.
49890
49891         * lib/hash.h: Include <stdbool.h>, for bool.
49892         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
49893         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
49894         hash_get_n_entries, hash_get_max_bucket_length,
49895         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
49896         hash_rehash): Use size_t rather than unsigned.
49897         * lib/hash.c (struct hash_table, hash_get_n_buckets,
49898         hash_get_n_buckets_used, hash_get_n_entries,
49899         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
49900         hash_get_entries, hash_do_for_each, hash_string, is_prime,
49901         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
49902         Likewise.
49903         (SIZE_MAX): Define if not defined.
49904         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
49905         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
49906         hash_print):
49907         Use const * when possible.
49908         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
49909         (check_tuning): Fix bug: if tuning parameters were very close to
49910         0 or 1, rounding errors could have caused subscript violations.
49911         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
49912         (hash_initialize): Add 'fail:' label
49913         to free table and return NULL, and use it to simplify code.
49914         Use calloc rather than clearing the storage ourself.
49915         (hash_initialize, hash_rehash): Check for arithmetic overflow in
49916         buffer size calculations.
49917         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
49918         Include <stddef.h>, for size_t.
49919         * lib/hash-pjw.c (hash_pjw): Likewise.
49920         Switch to method described by Bruno Haible.
49921         Include <limits.h>, for CHAR_BIT.
49922         (SIZE_BITS): New macro.
49923
49924 2003-10-23  Paul Eggert  <eggert@twinsun.com>
49925
49926         * m4/getline.m4 (AM_FUNC_GETLINE):
49927         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
49928         hosts.  Problem reported by Derek Robert Price in
49929         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
49930         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
49931         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
49932
49933 2003-10-21  Paul Eggert  <eggert@twinsun.com>
49934
49935         * lib/getndelim2.c (getndelim2): When size calculation overflows,
49936         ceiling the allocation at NMAX bytes rather than silently
49937         discarding input bytes before NMAX is reached.  This makes
49938         a difference only if NMAX exceeds SIZE_MAX / 2.
49939
49940         * lib/obstack.c: Merge from glibc.
49941         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
49942         Add libc_hidden_def (_obstack_newchunk).
49943         (_obstack_free) [! defined _LIBC]: Remove.
49944         [defined _LIBC]: Make a strong alias from obstack_free, rather than
49945         a clone of the function body.
49946         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
49947         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
49948
49949         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
49950         glibc.
49951         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
49952         arg to memcpy.
49953
49954         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
49955         (obstack_ptr_grow_fast, obstack_int_grow_fast):
49956         Don't use lvalue casts, as GCC plans to remove support for them
49957         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
49958         was also present in the non-GCC version, indicating that this
49959         code had always been buggy and had never been widely used.
49960         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
49961         Use the fast variant of each macro, rather than copying the
49962         definiens of the fast variant; that way, we'll be more likely to
49963         catch future bugs in the fast variants.
49964
49965 2003-10-20  Bruno Haible  <bruno@clisp.org>
49966
49967         * modules/wait-process: New file.
49968         * MODULES.html.sh (func_all_modules): Add wait-process.
49969
49970 2003-10-20  Bruno Haible  <bruno@clisp.org>
49971
49972         * m4/wait-process.m4: New file.
49973
49974 2003-10-20  Bruno Haible  <bruno@clisp.org>
49975
49976         * lib/wait-process.h: New file, from GNU gettext.
49977         * lib/wait-process.c: New file, from GNU gettext.
49978
49979 2003-10-19  Jim Meyering  <jim@meyering.net>
49980
49981         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
49982         HPUX 10.20.
49983
49984 2003-10-18  Karl Berry  <karl@gnu.org>
49985
49986         * config/config.guess: update from config.
49987
49988 2003-10-16  Paul Eggert  <eggert@twinsun.com>
49989
49990         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
49991         (getgroups): First arg is int, not size_t.
49992         Don't let 'free' mangle errno.
49993
49994 2003-10-16  Paul Eggert  <eggert@twinsun.com>
49995
49996         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
49997
49998 2003-10-16  Karl Berry  <karl@gnu.org>
49999
50000         * config/config.{guess,sub}: update from config.
50001
50002 2003-10-16  Jim Meyering  <jim@meyering.net>
50003
50004         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
50005         memcpy.
50006
50007 2003-10-15  Paul Eggert  <eggert@twinsun.com>
50008
50009         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
50010         (SIZE_MAX): Remove.
50011         (new_exclude, add_exclude_file): Initial size no longer needs to
50012         be a power of 2.
50013         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
50014         our own address arithmetic overflow checking.
50015
50016         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
50017         (fnmatch): Do not alloca more than 2000 wide characters;
50018         instead, use malloc for large buffers.
50019         Check for address arithmetic overflow, and return -1
50020         with errno set to ENOMEM in that case.
50021         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
50022         (NEW_PATTERN): Do not alloca more than 8000 bytes;
50023         instead, return -1.  Check for address arithmetic overflow.
50024
50025 2003-10-14  Paul Eggert  <eggert@twinsun.com>
50026
50027         Handle invalid suffixes and overflow independently, so that
50028         callers can treat them independently as needed.  Fix some bugs in
50029         suffix handling, e.g., "100k@" was not diagnosed as an invalid
50030         suffix for a human-readable blocksize.  The major caller-visible
50031         change is the addition of a new
50032         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
50033         that both overflow and suffix chars were found.
50034
50035         * lib/human.c (humblock): Don't check separately for invalid suffix
50036         char; that is xstrtoumax's job (now that its bug is fixed).
50037         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
50038         INTMAX_MAX]: New macros.
50039         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
50040         TYPE_MAXIMUM): New macros.
50041         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
50042         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
50043         if overflow occurs, as it's what __strtol does and it's more useful
50044         in practice.
50045         (__xstrtol): If __strtol reports some error other than ERANGE,
50046         reflect it to the caller as LONGINT_INVALID.  If it reports
50047         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
50048         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
50049         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
50050         value.
50051         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
50052         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
50053         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
50054         [defined UINTMAX_MAX]: New macros.
50055
50056 2003-10-14  Bruno Haible  <bruno@clisp.org>
50057
50058         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
50059
50060 2003-10-14  Bruno Haible  <bruno@clisp.org>
50061
50062         * m4/sig_atomic_t: New file, from GNU gettext.
50063         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
50064
50065 2003-10-14  Bruno Haible  <bruno@clisp.org>
50066
50067         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
50068         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
50069         Also use volatile where needed.
50070
50071 2003-10-12  Paul Eggert  <eggert@twinsun.com>
50072
50073         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
50074         Change maintainer from Bruno Haible to 'all'.
50075
50076 2003-10-12  Paul Eggert  <eggert@twinsun.com>
50077
50078         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
50079
50080 2003-10-12  Paul Eggert  <eggert@twinsun.com>
50081
50082         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
50083         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
50084         and define in terms of the other primitives.
50085         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
50086         (SIZE_MAX): Define if not already defined.
50087         (array_size_overflow): New function.
50088         (xalloc_die): Abort instead of exiting if 'error' returns.
50089         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
50090         (xmalloc, xrealloc): Use them.
50091         (xcalloc): Check for address arithmetic overflow.
50092         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
50093         a bit faster than strcpy.
50094
50095 2003-10-10  Simon Josefsson  <jas@extundo.com>
50096
50097         * modules/argp (Depends-on): Add restrict and strcase.
50098
50099 2003-10-10  Simon Josefsson  <jas@extundo.com>
50100
50101         * m4/argp.m4: Add AC_C_INLINE.
50102
50103 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50104
50105         Merge getpass from libc, plus a few fixes.
50106
50107         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
50108         Include <stdbool.h>.
50109         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
50110         __fsetlocking to empty.
50111         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
50112         do include <bits/libc-lock.h>.
50113         Do not include <fcntl.h>; not needed.
50114         [_LIBC]: Include <wchar.h>.
50115         (NOTCANCEL_MODE): New macro.
50116         (flockfile, funlockfile) [_LIBC]: New macros.
50117         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
50118         [!_LIBC]: New macros.
50119         (call_fclose): New function.
50120         (getpass): Use it.  Save tty stream separately; this simplifies the
50121         code and makes it more reliable if stdin happens to equal stdout.
50122         Invoke __fsetlocking on tty.
50123         Handle thread cancellation if needed.
50124         Namespace cleanup (use __tcgetattr, __getline).
50125         Use bool for Booleans.
50126         [USE_IN_LIBIO]: Handle wide streams.
50127         [!_LIBC]: Unconditionally do the fseek, since we don't know what
50128         stream might go where.
50129
50130         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
50131         doesn't have to include <stdio.h> before us.
50132         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
50133         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
50134         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
50135         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
50136         if not declared, so that we can use getpass.c code from libc without
50137         rewriting it.
50138         (flockfile, ftrylockfile, funlockfile): New macros.
50139
50140 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50141
50142         * modules/getpass: Depend on stdbool.
50143
50144 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50145
50146         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
50147
50148 2003-10-07  Karl Berry  <karl@gnu.org>
50149
50150         * config/config.{guess,sub}: update from config.
50151
50152 2003-10-06  Jim Meyering  <jim@meyering.net>
50153             Bruno Haible  <bruno@clisp.org>
50154
50155         This lets translators provide better translations for the
50156         "Written by ..." part of --version output.
50157         * lib/version-etc.h: Include stdarg.h.
50158         (version_etc_copyright): Declare as readonly.
50159         (version_etc): Make this function variadic with a NULL-terminated list
50160         of author name strings.
50161         (version_etc_va): New declaration.
50162         * lib/version-etc.c: Include stdarg.h, stdlib.h.
50163         (version_etc_copyright): Declare as readonly.
50164         (version_etc_va): New function. Provide a different translatable string
50165         for each possible number of authors < 10. Abbreviate when there are 10
50166         authors or more.
50167         (version_etc): Make this function variadic. Call version_etc_va.
50168         Suggestion from Gary V. Vaughan.
50169
50170         * lib/long-options.h (parse_long_options): Change prototype: the
50171         authors string is moved to the end and becomes variadic.
50172         * lib/long-options.c: Include stdarg.h.
50173         (parse_long_options): Make this function variadic, too.
50174         Call version_etc_va, not version_etc.
50175
50176 2003-10-06  Bruno Haible  <bruno@clisp.org>
50177
50178         * modules/version-etc-2: Remove file.
50179         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
50180
50181 2003-10-06  Bruno Haible  <bruno@clisp.org>
50182
50183         * modules/fatal-signal: New file.
50184         * MODULES.html.sh (func_all_modules): Add fatal-signal.
50185
50186 2003-10-06  Bruno Haible  <bruno@clisp.org>
50187
50188         * m4/fatal-signal.m4: New file.
50189         * m4/signalblocking.m4: New file, from GNU gettext.
50190
50191 2003-10-06  Bruno Haible  <bruno@clisp.org>
50192
50193         * lib/version-etc-2.h: Remove file.
50194         * lib/version-etc-2.c: Remove file.
50195
50196 2003-10-06  Bruno Haible  <bruno@clisp.org>
50197
50198         * lib/fatal-signal.h: New file, from GNU gettext.
50199         * lib/fatal-signal.c: New file, from GNU gettext.
50200
50201 2003-10-05  Paul Eggert  <eggert@twinsun.com>
50202
50203         * README: Rework advice for preventing empty .o files.
50204         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
50205         not <sys/types.h>.
50206
50207 2003-10-04  Karl Berry  <karl@gnu.org>
50208
50209         * lib/argp*: update from libc.
50210
50211 2003-10-04  Karl Berry  <karl@gnu.org>
50212
50213         * config/config.{guess,sub}: update from config.
50214
50215 2003-10-02  Bruno Haible  <bruno@clisp.org>
50216
50217         * modules/lchown (Include): Add lchown.h.
50218         * modules/time_r (Include): Use "..." syntax.
50219         * modules/xgetdomainname (Include): Add xgetdomainname.h.
50220
50221 2003-10-01  Simon Josefsson  <jas@extundo.com>
50222
50223         * MODULES.html.sh (func_all_modules): Move gethostname from section
50224         'based on' to section 'lacking' POSIX:2001.
50225
50226 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
50227
50228         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
50229         to output mode on the same stream.
50230
50231 2003-09-29  Paul Eggert  <eggert@twinsun.com>
50232
50233         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
50234         Fix arg typo in previous patch.
50235
50236 2003-09-28  Jim Meyering  <jim@meyering.net>
50237
50238         * lib/error.c: Correct cpp indentation.
50239
50240 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50241
50242         * modules/free: New file.
50243
50244 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50245
50246         * m4/free.m4: New file.
50247
50248 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50249
50250         * lib/minmax.h (MIN, MAX)
50251         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
50252         Omit the special code that used __typeof__, since we worry that
50253         it could be more trouble than it's worth.  See:
50254         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
50255         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
50256
50257         * lib/free.c: New file.
50258
50259 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
50260
50261         Trivial fixes to Makefile.am parts of module listings.
50262         * modules/strstr: Append strstr.h to lib_SOURCES.
50263         * modules/strcase: Likewise, for strcase.h.
50264
50265 2003-09-27  Karl Berry  <karl@gnu.org>
50266
50267         * config/mkinstalldirs: update from automake.
50268
50269 2003-09-26  Paul Eggert  <eggert@twinsun.com>
50270
50271         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
50272         (error_tail): Do not loop, reallocating temporary buffer, since
50273         the output cannot contain more wide characters than the input
50274         contains bytes, the size must be big enough already.  This avoids
50275         one potential size overflow calculation.  Check for size overflow
50276         when calculating temporary buffer size.  Free temporary buffer
50277         when done, if it was allocated with malloc; this plugs a memory
50278         leak.  Remove casts from void * to pointers, that are no longer
50279         needed now that we're assuming C89 or better.
50280
50281         Merge error changes from glibc.
50282
50283         * lib/error.c, error.h: Update copyright notice header to match glibc.
50284         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
50285         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
50286         Disable cancellation while printing error.
50287         * lib/error.h: Prepend __ to parameter names.
50288
50289 2003-09-26  Jim Meyering  <jim@meyering.net>
50290
50291         * lib/error.c (error_tail): Move some declarations
50292         into inner scope where the local variables are used.
50293
50294 2003-09-26  Bruno Haible  <bruno@clisp.org>
50295
50296         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
50297         stpncpy().
50298         Don't define stpncpy through config.h; it's now done through stpncpy.h.
50299
50300 2003-09-26  Bruno Haible  <bruno@clisp.org>
50301
50302         * lib/stpncpy.h (gnu_stpncpy): New declaration.
50303         (stpncpy): Define as alias for gnu_stpncpy.
50304         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
50305
50306 2003-09-25  Simon Josefsson  <jas@extundo.com>
50307
50308         * lib/xgetdomainname.h: New file.
50309         * lib/xgetdomainname.c: New file.
50310
50311 2003-09-25  Simon Josefsson  <jas@extundo.com>
50312             Bruno Haible  <bruno@clisp.org>
50313
50314         * modules/getdomainname: New file.
50315         * modules/xgetdomainname: New file.
50316         * MODULES.html.sh (func_all_modules): Add getdomainname,
50317         xgetdomainname.
50318
50319 2003-09-25  Simon Josefsson  <jas@extundo.com>
50320             Bruno Haible  <bruno@clisp.org>
50321
50322         * m4/getdomainname.m4: New file.
50323
50324 2003-09-25  Simon Josefsson  <jas@extundo.com>
50325             Bruno Haible  <bruno@clisp.org>
50326
50327         * lib/getdomainname.h: New file.
50328         * lib/getdomainname.c: New file.
50329
50330 2003-09-25  Karl Berry  <karl@gnu.org>
50331
50332         * lib/argp-fmtstream.c, argp-help.c: update from libc.
50333
50334 2003-09-25  Karl Berry  <karl@gnu.org>
50335
50336         * config/install-sh: update from automake.
50337
50338 2003-09-25  Bruno Haible  <bruno@clisp.org>
50339
50340         * modules/version-etc-2: New file, from modules/version-etc with
50341         modifications.
50342         * MODULES.html.sh (func_all_modules): Add version-etc-2.
50343
50344 2003-09-25  Bruno Haible  <bruno@clisp.org>
50345
50346         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
50347         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
50348
50349 2003-09-24  Simon Josefsson  <jas@extundo.com>
50350
50351         * modules/xgethostname: Add xgethostname.h.
50352
50353 2003-09-24  Paul Eggert  <eggert@twinsun.com>
50354
50355         * lib/linebuffer.c (freebuffer): Don't free the argument, just
50356         the buffer associated with the argument.  Bug reported by
50357         Simon Josefsson.
50358
50359 2003-09-24  Paul Eggert  <eggert@twinsun.com>
50360
50361         * README: Document assumptions that 'int' is at least 32 bits
50362         wide, that integer arithmetic is 2's complement without overflow,
50363         that there are no holes in integer values, that adding sizes of
50364         two nonoverlapping objects can't overflow, and that all-bits-zero
50365         yields scalar zero.  Fix spelling and capitalization typos.
50366
50367 2003-09-19  Karl Berry  <karl@gnu.org>
50368
50369         * lib/argp.h: update from libc.
50370
50371 2003-09-17  Paul Eggert  <eggert@twinsun.com>
50372
50373         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
50374         to avoid spurious warnings like "AC_RUN_IFELSE was called before
50375         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
50376
50377 2003-09-17  Paul Eggert  <eggert@twinsun.com>
50378
50379         * gnulib-tool: Use "test -h", not "test -L", for portability
50380         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
50381         (tags_regexp): Remove, since \| doesn't conform to POSIX.
50382         (sed_extract_prog): Issue s commands one-by-one, rather than
50383         using \| in one s command.
50384
50385 2003-09-16  Paul Eggert  <eggert@twinsun.com>
50386
50387         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
50388         input error, instead of returning NULL the next time we are called
50389         (and therefore losing track of errno).
50390
50391 2003-09-16  Bruno Haible  <bruno@clisp.org>
50392
50393         * gnulib-tool (func_create_testdir): Warn about duplicated
50394         dependencies.
50395
50396 2003-09-15  Paul Eggert  <eggert@twinsun.com>
50397
50398         * modules/argmatch, modules/fatal, modules/obstack,
50399         modules/xalloc, modules/xgethostname: Sort dependencies by
50400         importance, not alphabetically.
50401
50402 2003-09-15  Paul Eggert  <eggert@twinsun.com>
50403
50404         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
50405         fails, so that the caller gets the proper errno.
50406
50407         * lib/readutmp.c (read_utmp): Likewise.
50408         Check for fstat error.  Close stream and free storage
50409         when failing.
50410
50411 2003-09-14  Karl Berry  <karl@gnu.org>
50412
50413         * config/srclist.txt (strdup.c): disable for c89 changes.
50414
50415 2003-09-14  Jim Meyering  <jim@meyering.net>
50416
50417         * lib/getloadavg.c: Correct cpp indentation.
50418         * lib/strdup.c: Likewise.
50419         * lib/vasnprintf.c: Likewise.
50420
50421 2003-09-14  Bruno Haible  <bruno@clisp.org>
50422
50423         * modules/fwriteerror: New file.
50424         * MODULES.html.sh (func_all_modules): Add fwriteerror.
50425
50426 2003-09-14  Bruno Haible  <bruno@clisp.org>
50427
50428         * lib/fwriteerror.h: New file.
50429         * lib/fwriteerror.c: New file.
50430
50431 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50432
50433         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
50434         modules/xgethostname, modules/xalloc: Depend on exit.
50435
50436 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50437
50438         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
50439
50440         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
50441         and AC_MINIX, too, so that their extensions are available.
50442
50443         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
50444         This macro has been superseded by gl_BACKUPFILE.
50445
50446         More patches to assume C89 or better.
50447
50448         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
50449
50450         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
50451         unconditionally.
50452         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
50453         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
50454         Include <string.h>, <stdlib.h> unconditionally.
50455         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
50456         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
50457         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
50458         headers or for string.h.
50459         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
50460         or strtoul.
50461
50462         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
50463         headers.
50464         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
50465         * m4/userspec.m4 (gl_USERSPEC): Likewise.
50466         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
50467         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
50468         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
50469         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
50470         memcpy, memset.
50471         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
50472         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
50473         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
50474         strtol.
50475         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
50476         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
50477         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
50478         strtoul.
50479
50480 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50481
50482         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
50483         * lib/obstack.c [!defined _LIBC]: Likewise.
50484         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
50485         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
50486         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
50487
50488         More changes to assume C89 or better.
50489
50490         * lib/error.c (error_tail): Assume vprintf.
50491
50492         * lib/argmatch.c (getenv): Remove decl.
50493         * lib/progreloc.c (get_full_program_name): Define via prototype.
50494         * lib/setenv.c (clearenv): Likewise.
50495         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
50496         needed.
50497         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
50498         (malloc, memcpy): Remove decls.
50499         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
50500         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
50501         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
50502         (memcpy): Remove macro.
50503         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
50504         (__P): Remove.  All uses removed.
50505         (PTR): Remove.  All uses changed to void *.
50506         (CHAR_BIT, NULL): Remove.
50507         (spaces, zeros, memset_space, memset_zero)
50508         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
50509         Remove.
50510         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
50511         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
50512         Define with prototype.
50513         Remove now-unnecessary prototype decl.
50514         (extra_args_spec): Assume ANSI C.  All uses changed.
50515         (extra_args_spec_iso): Remove.
50516         (my_strftime, emacs_strftimeu): Define via prototype.
50517         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
50518         unconditionally.
50519         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
50520         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
50521         (strtoul, strtol): Remove decls.
50522         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
50523         LONG_MAX): Remove.
50524         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
50525         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
50526         (LOCALE_PARAM_PROTO): New macro.
50527         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
50528         (INTERNAL (strtol), strtol): Define with a prototype.
50529         (PARAMS): Remove.  All uses removed.
50530         * lib/tempname.c: Include <string.h> unconditionally.
50531         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
50532         * lib/xgethostname.c (main): Define with a prototype.
50533         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
50534         Include <stdlib.h> unconditionally.
50535         (calloc, malloc, realloc, free): Remove decls.
50536         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
50537         Include <stdlib.h> unconditionally.  Sort include file names.
50538         (strtod): Remove.
50539         (xstrtod): Define with a prototype.
50540         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
50541         (strtol, strtoul): Remove decls.
50542
50543 2003-09-11  Paul Eggert  <eggert@twinsun.com>
50544
50545         More patches to assume C89 or better.
50546         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
50547         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
50548         string.h, memchr, STDC_HEADERS.
50549
50550 2003-09-11  Paul Eggert  <eggert@twinsun.com>
50551
50552         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
50553         Include <stdlib.h>, <string.h> unconditionally.
50554         Remove now-unnecessary cast to char *.
50555         * lib/strnlen.c: Include <string.h> unconditionally.
50556         * lib/yesno.c (yesno): Define with a prototype.
50557
50558 2003-09-11  Bruno Haible  <bruno@clisp.org>
50559
50560         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
50561
50562 2003-09-10  Jim Meyering  <jim@meyering.net>
50563
50564         * lib/error.c: Correct indentation of cpp directives.
50565
50566 2003-09-10  Bruno Haible  <bruno@clisp.org>
50567
50568         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
50569         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
50570         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
50571         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
50572         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
50573         <stdlib.h> and <string.h> checks.
50574         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
50575         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
50576
50577 2003-09-10  Bruno Haible  <bruno@clisp.org>
50578
50579         * lib/strcspn.c: Include <string.h> unconditionally.
50580         * lib/strpbrk.c: Include <string.h> unconditionally.
50581         * lib/strstr.c: Include <string.h> unconditionally.
50582         * lib/unicodeio.c: Include <string.h> unconditionally.
50583         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
50584         * lib/unsetenv.c: Likewise.
50585         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
50586         * lib/yesno.c: Include <stdlib.h> unconditionally.
50587         (rpmatch): Add prototype.
50588
50589 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50590
50591         More patches to assume C89 or better.
50592         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
50593         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
50594         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
50595         or for string.h.
50596         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
50597         stdlib.h.
50598         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
50599         C headers.
50600         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
50601         string.h.
50602         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
50603         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
50604         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
50605         or for string.h.
50606         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
50607         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
50608         C headers.
50609         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
50610         memcpy.
50611         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
50612         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
50613         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
50614         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
50615         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
50616         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
50617         string.h, free.
50618         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
50619         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
50620         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
50621         C headers, or for string.h.
50622         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
50623         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
50624         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
50625         headers, memory.h, stdlib.h, string.h, strings.h.
50626         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
50627         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
50628         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
50629         strchr.
50630         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
50631         headers, memory.h, string.h.
50632         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
50633         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
50634         free.
50635         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
50636         headers.
50637         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
50638         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
50639         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
50640         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
50641         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
50642
50643 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50644
50645         More K&R removal.
50646
50647         * lib/acosl.c (main): Use a prototype.
50648         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
50649         tanl.c: Likewise.
50650
50651         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
50652
50653         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
50654         (getopt, etopt_long, getopt_long_only, _getopt_internal)
50655         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
50656         with a prototype.
50657         * lib/getopt.c (const): Remove macro.
50658         Include <string.h> unconditionally.
50659         (my_index): Remove; all uses changed to strchr.
50660         (strlen): Remove decl.
50661         (exchange): Remove forward decl; no longer needed.
50662         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
50663         Define with prototype.
50664         * lib/getopt1.c (const): Remove macro.
50665         (getopt_long, getopt_long_only, main): Define with prototype.
50666
50667         * lib/getugroups.c: Include <string.h> unconditionally.
50668
50669         * lib/getusershell.c: Include <stdlib.h> unconditionally.
50670         (getusershell, setusershell, endusershell, readname, main):
50671         Define with prototypes.
50672
50673         * lib/group-member.c: Include group-member.h first.
50674         Include <stdlib.h> unconditionally.
50675
50676         * lib/hard-locale.c: Include hard-locale.h first.
50677         Include <stdlib.h>, <string.h> unconditionally.
50678
50679         * lib/hash.c (free, malloc): Remove decls.
50680         Include <stdlib.h> unconditionally.
50681
50682         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
50683         (getenv): Do not declare.
50684
50685         * lib/idcache.c: Include <string.h> unconditionally.
50686
50687         * lib/long-options.c: Include long-options.h first, to test interface.
50688         Include <stdlib.h> unconditionally.
50689
50690         * lib/makepath.c: Include makepath.h first, to test interface.
50691         Include <stdlib.h> and <string.h> unconditionally.
50692
50693         * lib/linebuffer.c: Include <stdlib.h>.
50694         (free): Remove decl.
50695
50696         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
50697         stddef.h. rpl_malloc returns void *, not char *.
50698         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
50699         prototype.
50700
50701         * lib/md5.h: Include <limits.h> unconditionally.
50702         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
50703         (__P): Remove; all uses removed.
50704         * lib/md5.c: Include "md5.h" first.
50705         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
50706         md5_buffer, md5_process_bytes, md5_process_block):
50707         Define with prototypes.
50708         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
50709         * lib/sha.c: Include "sha.h" first.
50710         Include <stdlib.h>, <string.h> unconditionally.
50711
50712         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
50713         * lib/memcmp.c (__ptr_t): Likewise.
50714         * lib/memrchr.c (__ptr_t): Likewise.
50715         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
50716         Include <string.h> unconditionally.
50717         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
50718         * lib/memchr.c: Include <stdlib.h> unconditionally.
50719         * lib/memchr.c (LONG_MAX): Remove.
50720         * lib/memrchr.c (LONG_MAX): Likewise.
50721         * lib/memchr.c (__memchr): Define via a prototype.
50722         * lib/memrchr.c (__memrchr): Likewise.
50723         * lib/memcmp.c (__P): Remove, and remove all uses.
50724         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
50725         Remove forward decls; no longer needed.
50726         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
50727         Use types required by C89 in prototype.
50728
50729         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
50730         * lib/savedir.c: Likewise.
50731         * lib/mkdir.c (free): Remove decl.
50732         * lib/rmdir.c (rmdir): Define with a prototype.
50733         * lib/savedir.c: Include savedir.h first, to test interface.
50734
50735         * lib/mktime.c (STDC_HEADERS): Remove.
50736         Include <stdlib.h>, <string.h> unconditionally.
50737
50738         * lib/modechange.c: Include <stdlib.h> unconditionally.
50739         (malloc): Remove decl.
50740
50741         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
50742         (free): Remove decl.
50743
50744         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
50745         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
50746         (This type really should be intptr_t, but that's a C99ism.)
50747         (_obstack_memcpy): Remove: all uses changed to memcpy.
50748         Include <string.h> unconditionally.
50749         (struct obstack): Assume __STDC__ for types of members
50750         chunkfun, freefun, extra_arg.
50751         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
50752         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
50753         obstack_begin, obstack_specify_allocation,
50754         obstack_specify_allocation_with_arg, obstack_chunkfun,
50755         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
50756         Remove unprototyped decls and the macros that use them.
50757         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
50758         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
50759         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
50760         (defined __STDC__ && __STDC__)]:
50761         Remove nonprototyped code.
50762         Include <stdlib.h> unconditionally.
50763         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
50764         _obstack_allocated_p, _obstack_free, obstack_free,
50765         _obstack_memory_used, print_and_abort):
50766         Define using prototypes.
50767         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
50768         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
50769         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
50770         obstack_next_free, obstack_object_size, obstack_room) [0]:
50771         Remove unused, unprototyped code.
50772
50773         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
50774
50775         * lib/physmem.c (physmem_total, physmem_available, main): Define
50776         with prototypes.
50777
50778         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
50779         (main): Define with a prototype.
50780
50781         * lib/posixver.c (getenv): Remove decl.
50782
50783         * lib/putenv.c (malloc): Returns void *, not char *.
50784         Include <string.h> unconditionally.
50785         (strchr, memcpy, NULL): Do not define.
50786
50787         * lib/readtokens.c: Include readtokens.h first, to test interface.
50788         Include <stdlib.h>, <string.h> unconditionally.
50789         (init_tokenbuffer): Define with a prototype.
50790
50791         * lib/regex.c (PARAMS): Remove.  All uses removed.
50792         All uses of _RE_ARGS removed, too.
50793         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
50794         unconditionally.
50795         (bzero): Assume memset exists.
50796         (memcmp, memcpy, NULL): Remove.
50797         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
50798         char, or assignments to local vars of type signed char.
50799         (init_syntax_once, PREFIX(extract_number_and_incr),
50800         PREFIX(print_partial_compiled_pattern),
50801         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
50802         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
50803         PREFIX(regex_grow_registers), PREFIX(regex_compile),
50804         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
50805         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
50806         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
50807         wcs_compile_range, byte_compile_range, truncate_wchar,
50808         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
50809         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
50810         count_mbs_length, wcs_re_match_2_internal,
50811         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
50812         PREFIX(alt_match_null_string_p),
50813         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
50814         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
50815         regfree, PREFIX(extract_number)): Define with prototype.  Remove
50816         now-unnecessary declaration, if any.
50817         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
50818         regcomp, regexec):
50819         Remove now-unnecessary casts among pointer types.
50820         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
50821
50822         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
50823         (free): Remove decl.
50824
50825         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
50826
50827         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
50828         (free): Remove decl.
50829
50830         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
50831         * lib/xgetcwd.c: Likewise.
50832
50833         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
50834         (free): Remove decl.
50835
50836         * lib/strchrnul.c (strchrnul): Define with a prototype.
50837         Fix bug: c_in was not converted to char before searching.
50838
50839         The following changes are not K&R related:
50840
50841         * lib/group-member.h: Include <sys/types.h>, so that this file is
50842         self-contained.
50843         * lib/makepath.h: Likewise.
50844
50845         * lib/getusershell.c (readname, default_index, line_size, readname):
50846         Use size_t, not int, for sizes.
50847         (readname): If the size overflows, report an error instead of
50848         looping forever.
50849
50850 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50851
50852         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
50853         libc.
50854
50855 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50856
50857         * README: New section: portability guidelines.
50858
50859 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
50860
50861         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
50862         C89 spec.
50863
50864 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
50865
50866         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
50867
50868 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50869
50870         Assume C89 or better; remove K&R cruft.
50871         A few of these changes were first proposed by Derek Robert Price
50872         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
50873
50874         * lib/addext.c: Include <string.h> unconditionally.
50875         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
50876         Don't declare getenv or malloc.
50877
50878         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
50879         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
50880         (NULL): Remove.
50881         (find_stack_direction, alloca): Use prototypes.
50882
50883         * lib/atexit.c (atexit): Define using a prototype.
50884
50885         * lib/basename.c, dirname.c, stripslash.c:
50886         Include <string.h> unconditionally.
50887
50888         * lib/bcopy.c: Include <stddef.h>.
50889         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
50890
50891         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
50892
50893         * lib/error.h (error, error_at_line, error_print_progname)
50894         [! (defined (__STDC__) && __STDC__)]: Remove decls.
50895         * lib/error.c: Include error.h first, to check interface.
50896         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
50897         (VA_START): Remove; all uses changeed to va_start.
50898         (exit, strerror): Remove decls.
50899         (error_print_progname): Prototype uncondionally.
50900         Don't include <errno.h>; no longer needed.
50901         (private_strerror): Remove.
50902         (error_tail): Always define.
50903         (error, error_at_line): Assume C89 or better; always use prototypes.
50904         * lib/fatal.c: Include "fatal.h" first, to test interface.
50905         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
50906         (VA_START): Remove; all uses changed to va_start.
50907         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
50908         this case.
50909         (exit): Remove decl.
50910         (fatal): Prototype unconditionally.  Assume va_start works.
50911         Abort at end, to pacify gcc.
50912
50913         * lib/euidaccess.c (main): Define with a prototype.
50914
50915         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
50916
50917         * lib/exitfail.c: Include <stdlib.h> unconditionally.
50918
50919         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
50920         prototypes.
50921         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
50922         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
50923         (getenv): Remove decl.
50924         (fnmatch): Define using a prototype.
50925         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
50926         (FCT): Define using a prototype.
50927
50928         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
50929
50930         * lib/gethostname.c: Include <stddef.h>.
50931         (gethostname): Define with prototype.  Length is size_t, not int.
50932
50933 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50934
50935         Assume C89 or better; remove K&R cruft.
50936         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
50937         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
50938         string.h, getenv, malloc.
50939         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
50940         headers.
50941         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
50942         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
50943         do not check for strerror.
50944         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
50945         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
50946         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
50947         do not check for doprnt or vprintf.
50948         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
50949         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
50950
50951 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50952
50953         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
50954         getversion.c should have been removed then, but was accidentally
50955         preserved.
50956
50957         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
50958         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
50959
50960 2003-09-08  Karl Berry  <karl@gnu.org>
50961
50962         * config/config.sub, config.guess, srclistvars.sh: update from savannah
50963                 config, forget about prep.
50964
50965         * config/depcomp, missing: update from automake.
50966
50967 2003-09-07  Paul Eggert  <eggert@twinsun.com>
50968
50969         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
50970         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
50971
50972 2003-09-07  Paul Eggert  <eggert@twinsun.com>
50973
50974         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
50975         copy_tm_result.  Bug reported by Simon Josefsson in
50976         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
50977
50978 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50979
50980         * m4/time_r.m4: New file.
50981         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
50982         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
50983         is. Check for timegm declaration.
50984         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
50985         Do not check for gmtime_r.
50986         Replace mktime if __mktime_internal does not exist and if mktime
50987         hasn't been replaced already.
50988
50989 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50990
50991         * lib/time_r.c, lib/time_r.h: New files.
50992
50993         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
50994         __localtime_r.
50995         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
50996         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
50997
50998         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
50999         __gmtime_r.
51000         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
51001         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
51002         Include <time_r.h>.
51003
51004         * lib/timegm.c: Switch to glibc implementation, with the following
51005         changes:
51006         [defined HAVE_CONFIG_H]: Include <config.h>.
51007         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
51008         (__mktime_internal) [!defined _LIBC]: New decl.
51009         (__gmtime_r) [!defined _LIBC]: New macro and function.
51010         (timegm): Use a prototype, since gnulib assumes C89.
51011         Do not bother declaring tmp to be const, as it's not really usefu.
51012         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
51013         (timegm): Declare only if HAVE_DECL_TIMEGM.
51014
51015 2003-09-06  Paul Eggert  <eggert@twinsun.com>
51016
51017         * MODULES.html.sh (func_all_modules): Add time_r.
51018         * modules/time_r: New file.
51019         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
51020         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
51021
51022 2003-09-03  Paul Eggert  <eggert@twinsun.com>
51023
51024         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
51025         Bug reported by Lute Kamstra in
51026         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
51027
51028         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
51029         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
51030         course with correspondingly smaller numbers for tomorrow and
51031         yesterday.  From Tadayoshi Funaba.  Originally installed into
51032         sh-utils on 1999-08-07, but the patch got lost (I guess during the
51033         coreutils merge?).
51034
51035 2003-08-31  Simon Josefsson  <jas@extundo.com>
51036
51037         * modules/timegm: New file.
51038         * MODULES.html.sh (func_all_modules): Add timegm.
51039
51040 2003-08-31  Simon Josefsson  <jas@extundo.com>
51041
51042         * m4/timegm.m4: New file.
51043
51044 2003-08-31  Simon Josefsson  <jas@extundo.com>
51045
51046         * lib/timegm.h: New file.
51047         * lib/timegm.c: New file.  Based on
51048         wget-1.8.2/src/http.c:mktime_from_utc.
51049
51050 2003-08-31  Karl Berry  <karl@gnu.org>
51051
51052         * lib/argp.h: update from libc.
51053
51054 2003-08-28  Bruno Haible  <bruno@clisp.org>
51055
51056         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
51057         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
51058         followed by '#define fnmatch fnmatch_posix' gives an error.
51059
51060 2003-08-28  Bruno Haible  <bruno@clisp.org>
51061
51062         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
51063         warning on QNX, which defines O_BINARY to 000000.
51064
51065 2003-08-27  Jim Meyering  <jim@meyering.net>
51066
51067         * m4/mkstemp.m4: Require that the system mkstemp be able to create
51068         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
51069         would fail after 32.  Reported by Danny Levinson.  Details here:
51070         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
51071
51072 2003-08-24  Bruno Haible  <bruno@clisp.org>
51073
51074         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
51075         MSVC7 <stdio.h> is included later.
51076
51077 2003-08-22  Simon Josefsson  <jas@extundo.com>
51078
51079         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
51080
51081 2003-08-20  Karl Berry  <karl@gnu.org>
51082
51083         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
51084
51085 2003-08-20  Bruno Haible  <bruno@clisp.org>
51086
51087         * modules/progname: New file.
51088         * MODULES.html.sh (func_all_modules): Add progname.
51089
51090 2003-08-20  Bruno Haible  <bruno@clisp.org>
51091
51092         * lib/progname.h: New file, from GNU gettext.
51093         * lib/progname.c: New file, from GNU gettext.
51094         * lib/progreloc.c: New file, from GNU gettext.
51095
51096 2003-08-19  Jim Meyering  <jim@meyering.net>
51097
51098         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
51099         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
51100
51101 2003-08-19  Bruno Haible  <bruno@clisp.org>
51102
51103         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
51104         more.
51105
51106 2003-08-19  Bruno Haible  <bruno@clisp.org>
51107
51108         * lib/xstrdup.c: Assume <string.h> exists.
51109
51110 2003-08-18  Paul Eggert  <eggert@twinsun.com>
51111
51112         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
51113         in makefile rules.
51114
51115 2003-08-18  Jim Meyering  <jim@meyering.net>
51116
51117         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
51118         * m4/lib-ld.m4: Likewise.
51119
51120 2003-08-18  Jim Meyering  <jim@meyering.net>
51121
51122         * lib/setenv.h: Indent nested cpp directive.
51123         * lib/vasnprintf.c: Remove trailing blanks.
51124
51125 2003-08-17  Simon Josefsson  <jas@extundo.com>
51126
51127         * modules/xstrndup: New file.
51128         * MODULES.html.sh (func_all_modules): Add xstrndup.
51129
51130 2003-08-17  Simon Josefsson  <jas@extundo.com>
51131
51132         * modules/argp: Fix autoconf macro name. Add more dependencies.
51133
51134 2003-08-17  Simon Josefsson  <jas@extundo.com>
51135
51136         * m4/xstrndup.m4: New file.
51137
51138 2003-08-17  Simon Josefsson  <jas@extundo.com>
51139
51140         * m4/argp.m4: New file.
51141
51142 2003-08-17  Simon Josefsson  <jas@extundo.com>
51143             Bruno Haible  <bruno@clisp.org>
51144
51145         * lib/xstrndup.h: New file.
51146         * lib/xstrndup.c: New file.
51147
51148 2003-08-17  Bruno Haible  <bruno@clisp.org>
51149
51150         * modules/strndup (Files, Include): Add lib/strndup.h.
51151
51152 2003-08-17  Bruno Haible  <bruno@clisp.org>
51153
51154         * modules/euidaccess (Files): Add lib/euidaccess.h.
51155
51156 2003-08-17  Bruno Haible  <bruno@clisp.org>
51157
51158         * lib/strndup.h: New file.
51159
51160 2003-08-17  Bruno Haible  <bruno@clisp.org>
51161
51162         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
51163         like AC_GNU_SOURCE.
51164         * modules/extensions (configure.ac): Comment out the invocation of
51165         gl_USE_SYSTEM_EXTENSIONS.
51166
51167 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51168
51169         Merges from coreutils, etc.
51170         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
51171         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
51172         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
51173         fixing a typo.
51174         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
51175         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
51176
51177 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51178
51179         Document merge from coreutils.
51180         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
51181         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
51182         * modules/utime: Add m4/utimes-null.m4.
51183
51184 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51185
51186         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
51187         space, undoing this 2003-08-12 change:
51188         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
51189
51190 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51191
51192         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
51193         strtoul.c from libc, undoing this 2003-08-12 change:
51194         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
51195
51196 2003-08-16  Jim Meyering  <jim@meyering.net>
51197
51198         Merges from coreutils.
51199         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
51200         prefix.  Adjust cache variables similarly.  Create 500 rather than
51201         just 300 files, to exercise bug on Darwin6.5, too.
51202         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
51203         $missing_dir.
51204         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
51205         AM_SYS_POSIX_TERMIOS.
51206         Reported by mkc@mathdogs.com.
51207         Also change use of $am_cv_sys_posix_termios
51208         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
51209         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
51210         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
51211         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
51212         in /proc/mounts until it finds one with matching device number.  This
51213         is unnecessary when the FILE argument *is* a mount point.  No stat call
51214         is necessary in that case.  So, disable the statvfs-testing code on
51215         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
51216         as RedHat bug# 84846.
51217         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
51218         to 1MB, so as not to render systems with no stack size limit (e.g.,
51219         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
51220         Include <unistd.h>.  On some systems,
51221         it is required for the definition of _SC_PAGESIZE.
51222
51223 2003-08-16  Jim Meyering  <jim@meyering.net>
51224
51225         Merge from coreutils.
51226         * lib/xstrtoimax.c: #else #if -> #elif.
51227         * lib/xstrtoumax.c: Likewise.
51228
51229 2003-08-16  Jim Meyering  <jim@meyering.net>
51230
51231         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
51232         * m4/utimes.m4: Removed.
51233         * m4/utimes-null.m4: Renamed from utimes.m4.
51234
51235         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
51236         to 1MB, so as not to render systems with no stack size limit (e.g.,
51237         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
51238         Include <unistd.h>.  On some systems,
51239         it is required for the definition of _SC_PAGESIZE.
51240
51241 2003-08-16  Jim Meyering  <jim@meyering.net>
51242         and Paul Eggert  <eggert@cs.ucla.edu>
51243
51244         Merges from coreutils, etc.
51245
51246         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
51247         using the latest version from cvs.  This avoids problems with #line
51248         directives using a vendor (Sun) compiler.
51249         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
51250         Don't set GETGROUPS_LIB here; now it's
51251         done via getgroups.m4's wrapper function.
51252         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
51253         rather than just in sh-util/configure.in, so that the
51254         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
51255         same.
51256         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
51257         AC_FUNC_GETLOADAVG where to find getloadavg.c.
51258         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
51259         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
51260         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
51261         Remove code that is now done by the newly-required macros.
51262         Append $(EXEEXT) to DF_PROG.
51263         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
51264         Do not invoke or require the following here,
51265         since prereq.m4 or some gnulib .m4 now does this for us:
51266         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
51267         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
51268         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
51269         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
51270         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
51271         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
51272         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
51273         AC_FUNC_OBSTACK.
51274         Do not replace the following functions, as this is now the job
51275         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
51276         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
51277         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
51278         atexit getpass, strdup, getpagesize.
51279         Replace 'raise'.
51280         Do not check for the following functions, as this is now the job
51281         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
51282         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
51283         setregid.
51284         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
51285         Check for sys/sysctl.h.
51286         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
51287         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
51288         of checking for ssize_t ourselves.
51289
51290         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
51291         Require every macro that gnulib/modules/* suggests for us.
51292         (jm_PREREQ_ADDEXT): New macro.
51293         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
51294         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
51295
51296         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
51297         (gl_PHYSMEM): Use it.
51298         Also check for `table' function.
51299         Check for new headers and functions.
51300         Add check for sys/sysmp.h.
51301         With suggestions from Kaveh Ghazi.
51302         Ignore headers that are present but cannot be compiled.  This
51303         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
51304         C 5.4.
51305
51306 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51307
51308         Document merge from coreutils.
51309         * modules/userspec: Depend on posixver.
51310         * modules/strftime: Depend on tzset.
51311
51312 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51313
51314         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
51315         rather than tab, after '#' in shell-script copyright notices.
51316         Suggested by Bruno Haible.
51317
51318 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51319
51320         * config/srclist-update: Use three spaces, rather than tab, after '#'
51321         in shell-script copyright notices.  Suggested by Bruno Haible.
51322         Remove unnecessary parenthesization in regular expression.
51323
51324 2003-08-15  Jim Meyering  <jim@meyering.net>
51325
51326         Merge from coreutils.
51327         * lib/xgethostname.c: Include <stdlib.h>.
51328         (xghostname): Don't exit for anything other than memory-related
51329         failure; just return NULL.
51330         * lib/userspec.c: Include "posixver.h".
51331         (parse_user_spec): Accept `.' as a separator only
51332         in pre-POSIX-200112 mode.
51333         * lib/strtoimax.c: Use #elif rather than #else #if.
51334         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
51335         Remove function, now that we can rely on a working tzset function.
51336         [!_LIBC]: Ensure that the required autoconf test has been run.
51337         [!defined _NL_CURRENT && HAVE_STRFTIME]:
51338         Use underlying_strftime for %r.
51339         * lib/sha.c: Merge in some clean-up and optimization changes from
51340         glibc.
51341         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
51342         Ensure that it is a multiple of 64.
51343         Rearrange loop exit tests so as to avoid performing an
51344         additional fread after encountering an error or EOF.
51345         * lib/realloc.c: Update copyright date.
51346
51347 2003-08-15  Jim Meyering  <jim@meyering.net>
51348         and Paul Eggert  <eggert@twinsun.com>
51349
51350         Merge from coreutils.
51351         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
51352         member but strut utmpx does not.  Needed for AIX 4.3.3.
51353         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
51354
51355 2003-08-15  Jim Meyering  <jim@meyering.net>
51356         and Paul Eggert  <eggert@cs.ucla.edu>
51357
51358         Merges from coreutils, etc.
51359         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
51360         Require gl_FUNC_TZSET_CLOBBER.
51361         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
51362         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
51363         members.
51364
51365 2003-08-14  Paul Eggert  <eggert@twinsun.com>
51366
51367         Help the merge from coreutils.
51368         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
51369         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
51370         * m4/tzset.m4: Use it too.
51371
51372 2003-08-14  Paul Eggert  <eggert@twinsun.com>
51373
51374         * modules/tzset: New file.
51375
51376 2003-08-14  Jim Meyering  <jim@meyering.net>
51377
51378         Merges from coreutils.
51379         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
51380         variable names, rather than @FNMATCH_H@.
51381         * modules/alloca: Likewise for $(ALLOCA_H).
51382
51383         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
51384         the three copies of the literal target, `fnmatch.h'.
51385         * modules/alloca (alloca.h): Likewise.
51386
51387 2003-08-14  Jim Meyering  <jim@meyering.net>
51388
51389         Merge from coreutils.
51390         * m4/tzset.m4: New file.
51391         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
51392         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
51393         otherwise, AIX 5.1 systems would end up using the latter.
51394         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
51395         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
51396         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
51397         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
51398
51399 2003-08-14  Jim Meyering  <jim@meyering.net>
51400
51401         Merge from coreutils.
51402         * lib/obstack.h: Whitespace changes.
51403         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
51404         and xcalloc return values.
51405         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
51406         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
51407         hang on OSF/1 5.1 for DIR on both local and remote file systems.
51408         Reported by (and fix confirmed by) Nelson H. F. Beebe.
51409         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
51410         error from mntctl.
51411         Use mntctl's return value to drive the entry-processing loop, since
51412         we can't rely on the value of the vmt_length member in the last
51413         entry.  On some systems doing so could result in exhausting
51414         virtual memory.  Based in part on a patch from Mike Jetzer.
51415
51416 2003-08-14  Jim Meyering  <jim@meyering.net>
51417         and Paul Eggert  <eggert@twinsun.com>
51418
51419         Merges from coreutils, plus other fixes.
51420         * lib/physmem.c: Merge in portability changes from gcc/libiberty
51421         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
51422         for credits and details.  Thanks to Kaveh Ghazi for helping
51423         to keep these files in sync.
51424         (ARRAY_SIZE): Define it.
51425         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
51426         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
51427         (memcasecmp): Don't assume size_t fits in unsigned int.
51428         Remove casts and duplicate code.
51429         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
51430         (memcpy): Remove definition.
51431         Merge in some clean-up and optimization changes from glibc.
51432         [BLOCKSIZE]: Move definition to top of file.
51433         Ensure that it is a multiple of 64.
51434         Rearrange loop exit tests so as to avoid performing an
51435         additional fread after encountering an error or EOF.
51436         * lib/md5.h (md5_uintptr): Define.
51437         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
51438         return to the initial working directory.  Preserve errno
51439         for caller.
51440         * lib/idcache.c: Include "xalloc.h".
51441         (xmalloc, xrealloc): Remove decls.
51442         (getuser): Remove casts no longer required in C89.
51443         * lib/human.c: Include stdio.h, for sprintf.
51444         * lib/group-member.c: Include "xalloc.h".
51445         (xmalloc, xrealloc): Remove decls.
51446         (get_group_info): Remove casts no longer required in C89.
51447         * lib/getusershell.c (readname): Remove casts no longer required in
51448         C89.
51449         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
51450         * lib/getline.c: Whitespace fix, from coreutils.
51451
51452 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51453
51454         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
51455         Check for isascii.
51456
51457         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
51458         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
51459         Undo previous (whitespace-only) change.
51460
51461 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51462
51463         * lib/exclude.c: Include <ctype.h>
51464         (IN_CTYPE_DOMAIN): New macro.
51465         (is_space): New fn.
51466         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
51467         and empty lines.
51468
51469         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
51470         Undo previous (whitespace-only) change.
51471
51472 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51473
51474         * config/srclist-update: Change update back to the old behavior,
51475         leaving whitespace alone.  Use one 'sed' command rather than a
51476         pipeline.
51477         (fixlicense): Now a variable, not a function.
51478         (remove_trailing_blanks): Remove.
51479         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
51480         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
51481         Undo previous (whitespace-only) change.
51482
51483 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51484
51485         Merge from coreutils.
51486         * modules/euidaccess: Add lib_SOURCES, include for new
51487         file euidaccess.h
51488
51489 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51490
51491         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
51492         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
51493         Normalize leading white space and remove trailing white space.
51494
51495         Merge from coreutils
51496         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
51497
51498         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
51499         0.12.1.  These files are now being upgraded automatically by
51500         ../config/srclist-update.
51501
51502 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51503
51504         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
51505         Normalize leading white space and remove trailing white space.
51506         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
51507         notice, as per ../config/srclist-update.
51508
51509         Merge from coreutils.
51510         * lib/euidaccess.h: New file.
51511         * lib/euidaccess.c: Include it.
51512         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
51513         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
51514         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
51515
51516 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51517
51518         * config/srclist-update: Add copyright notice.
51519         (remove_id_lines, remove_trailing_blanks): New constants.
51520         (fixfile): Use them to normalize spacing a bit in copied files.
51521         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
51522         Normalize leading white space and remove trailing white space.
51523
51524         * config/texinfo.tex: Sync with texinfo.
51525
51526         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
51527         strtoul.c from libc, to merge coreutils whitespace changes.
51528
51529         * config/srclist.txt: Get the following m4 files from gettext:
51530         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
51531         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
51532         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
51533         wint_t.m4.
51534
51535 2003-08-12  Karl Berry  <karl@gnu.org>
51536
51537         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
51538         been made.
51539
51540 2003-08-11  Paul Eggert  <eggert@twinsun.com>
51541
51542         * modules/gnu-source, m4/gnu-source.m4:
51543         Remove; we're assuming Autoconf 2.54 or later now.
51544         Suggested by Bruno Haible.
51545         * MODULES.html.sh (func_all_modules): Remove gnu-source.
51546
51547 2003-08-11  Bruno Haible  <bruno@clisp.org>
51548
51549         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
51550
51551 2003-08-11  Bruno Haible  <bruno@clisp.org>
51552
51553         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
51554         (vasnprintf): Use it instead of wcslen.
51555
51556 2003-08-11  Bruno Haible  <bruno@clisp.org>
51557
51558         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
51559         value to ensure that _Bool promotes to int. Use #define for _Bool when
51560         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
51561
51562 2003-08-10  Karl Berry  <karl@gnu.org>
51563
51564         * lib/regex.h: update from libc (whitespace fix).
51565
51566 2003-08-09  Paul Eggert  <eggert@twinsun.com>
51567
51568         Merge some files from coreutils.  These changes were
51569         originally made by Jim Meyering.
51570         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
51571         many older Unixes require this.
51572         * lib/alloca.c (alloca): Remove cast to argument of free;
51573         no longer needed in C89.
51574         * lib/alloca_.h, regex.h: Fix white space to match
51575         what GNU indent does.
51576
51577 2003-08-09  Paul Eggert  <eggert@twinsun.com>
51578
51579         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
51580         apparently Emacs's Unicode mode got confused before my 2003-08-05
51581         checkin.
51582
51583 2003-08-08  Paul Eggert  <eggert@twinsun.com>
51584
51585         * m4/extensions.m4: New file.
51586         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
51587         Require gl_USE_SYSTEM_EXTENSIONS.
51588         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
51589         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
51590
51591 2003-08-08  Paul Eggert  <eggert@twinsun.com>
51592
51593         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
51594         * modules/extensions, modules/gnu-source: New files.
51595         * modules/timespec, modules/unlocked-io: Depend on extensions.
51596
51597 2003-08-07  Paul Eggert  <eggert@twinsun.com>
51598
51599         * modules/restrict: New file.
51600         * MODULES.html.sh (func_all_modules): Add restrict.
51601         * modules/regex: Depend on restrict.
51602
51603 2003-08-07  Paul Eggert  <eggert@twinsun.com>
51604
51605         * m4/restrict.m4: New file.
51606         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
51607
51608 2003-08-07  Bruno Haible  <bruno@clisp.org>
51609
51610         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
51611         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
51612
51613 2003-08-07  Bruno Haible  <bruno@clisp.org>
51614
51615         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
51616         makes the module 'getndelim2' compatible with the module 'getline'.
51617
51618 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51619
51620         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
51621         byte with "\201" to avoid glitches when editing that source file
51622         with multi-gnome-terminal.
51623
51624 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51625
51626         * lib/bumpalloc.h: Remove.
51627
51628 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51629
51630         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
51631         * modules/bumpalloc: Remove.
51632
51633 2003-08-04  Paul Eggert  <eggert@twinsun.com>
51634
51635         * lib/getloadavg.c: Change copyright notice and spacing to conform to
51636         GNU coding style.
51637
51638         Merge from coreutils.
51639         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
51640         1. From glibc.
51641         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
51642         from Karl Berry, implemented by Jim Meyering.
51643         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
51644         from Dmitry V. Levin.
51645         Remove anachronistic cast of xrealloc.
51646         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
51647         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
51648         type. Otherwise, it wouldn't compile with at least /bin/cc on
51649         ymp-cray-unicos9.0.2.X.
51650         Combine two mostly-identical uses of alloca into one.
51651         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
51652
51653 2003-08-04  Dave Love  <d.love@dl.ac.uk>
51654
51655         [From Emacs.]
51656
51657         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
51658         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
51659         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
51660         obsolete NLIST_NAME_UNION.
51661         [__GNU__]: Undef BSD and FSCALE.
51662         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
51663
51664 2003-08-03  Paul Eggert  <eggert@twinsun.com>
51665
51666         * lib/stdbool_.h (_Bool): Make it signed char, instead of
51667         an enum type, so that it's guaranteed to promote to int.  See:
51668         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
51669
51670 2003-08-03  Karl Berry  <karl@gnu.org>
51671
51672         * config/depcomp: update from automake.
51673
51674 2003-07-31  Paul Eggert  <eggert@twinsun.com>
51675
51676         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
51677         (strerror): Don't assume that a printable int fits in 14 bytes.
51678
51679 2003-07-31  Bruno Haible  <bruno@clisp.org>
51680
51681         * modules/getpass-gnu: New file.
51682         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
51683
51684 2003-07-31  Bruno Haible  <bruno@clisp.org>
51685
51686         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
51687
51688 2003-07-24  Karl Berry  <karl@gnu.org>
51689
51690         * config/missing: update from automake.
51691
51692 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
51693             Bruno Haible  <bruno@clisp.org>
51694
51695         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
51696         * lib/getline.c (getline, getdelim): Likewise.
51697         Remove _GNU_SOURCE define; now it's defined in config.h through
51698         m4/getline.m4.
51699
51700 2003-07-23  Karl Berry  <karl@gnu.org>
51701
51702         * config/config.sub: update from prep.
51703
51704 2003-07-22  Paul Eggert  <eggert@twinsun.com>
51705
51706         * modules/xalloc (Depends-on): Add exitfail.
51707         * modules/xmemcoll: Likewise.
51708
51709 2003-07-22  Paul Eggert  <eggert@twinsun.com>
51710
51711         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
51712         over-parenthesization in macros.
51713
51714         Sync with coreutils.
51715
51716         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
51717         required by C99.
51718
51719         Use `exit_failure' for xalloc and xmemcoll instead of their own
51720         private exit-failure variables.
51721         * lib/xalloc.h (xalloc_exit_failure): Remove.
51722         * lib/xmalloc.c: Likewise.  Include exitfail.h.
51723         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
51724         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
51725         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
51726         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
51727
51728 2003-07-20  Jim Meyering  <jim@meyering.net>
51729
51730         * modules/closeout (Depends-on): Add exitfail.
51731         Suggestion from Bruno Haible.
51732
51733 2003-07-19  Karl Berry  <karl@gnu.org>
51734
51735         * config/config.sub: update from prep.
51736
51737 2003-07-18  Paul Eggert  <eggert@twinsun.com>
51738
51739         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
51740         Remove.
51741         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
51742         to test that it can stand by itself.  Include "exitfail.h".
51743         Clients should set exit_failure instead.
51744         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
51745
51746 2003-07-18  Bruno Haible  <bruno@clisp.org>
51747
51748         * modules/getndelim2: New file.
51749         * modules/getline: Share files with module getndelim2.
51750         * modules/getnline: Depend on getndelim2 instead of sharing files with
51751         it. Add getnline.c to lib_SOURCES.
51752         * MODULES.html.sh (func_all_modules): Add getndelim2.
51753
51754 2003-07-18  Bruno Haible  <bruno@clisp.org>
51755
51756         * m4/getndelim2.m4: New file.
51757         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
51758         invoke gl_PREREQ_GETNDELIM2.
51759         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
51760         gl_PREREQ_GETNDELIM2.
51761         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
51762         gl_GETNDELIM2.
51763
51764 2003-07-18  Bruno Haible  <bruno@clisp.org>
51765
51766         * lib/getndelim2.h: New file.
51767         * lib/getndelim2.c: Make into a module of its own. Include config.h,
51768         getndelim2.h.
51769         (getndelim2): Make non-static. Change return type to ssize_t.
51770         * lib/getline.h: Change argument names.
51771         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
51772         * lib/getnline.c: Include getndelim2.h.
51773
51774 2003-07-18  Andreas Schwab  <schwab@suse.de>
51775
51776         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
51777
51778 2003-07-17  Karl Berry  <karl@gnu.org>
51779
51780         * config/config.sub: update from prep.
51781
51782 2003-07-17  Bruno Haible  <bruno@clisp.org>
51783
51784         * modules/getnline: New file.
51785         * modules/getline: Add lib/getndelim2.c to source file list.
51786         * MODULES.html.sh (func_all_modules): Add getnline.
51787
51788 2003-07-17  Bruno Haible  <bruno@clisp.org>
51789
51790         * m4/getnline.m4: New file.
51791
51792 2003-07-17  Bruno Haible  <bruno@clisp.org>
51793
51794         * m4/Makefile.am.in: Remove file.
51795         * m4/Makefile.am: Remove file.
51796         * m4/Makefile.in: Remove file.
51797
51798 2003-07-17  Bruno Haible  <bruno@clisp.org>
51799
51800         * lib/getnline.h: New file.
51801         * lib/getnline.c: New file.
51802         * lib/getndelim2.c: New file, extracted from getline.c.
51803         (getndelim2): Renamed from getdelim2, with added nmax argument.
51804         * lib/getline.c: Include getndelim2.c.
51805         (getdelim2): Moved out to getndelim2.c.
51806         (getline, getdelim): Update.
51807
51808 2003-07-17  Bruno Haible  <bruno@clisp.org>
51809
51810         * lib/Makefile.am: Remove file.
51811         * lib/Makefile.in: Remove file.
51812
51813 2003-07-17  Bruno Haible  <bruno@clisp.org>
51814
51815         * configure.in: Remove file.
51816         * Makefile.in: Remove file.
51817
51818 2003-07-17  Bruno Haible  <bruno@clisp.org>
51819
51820         * MODULES.html.sh: Put the </BODY> right before </HTML>.
51821
51822 2003-07-16  Karl Berry  <karl@gnu.org>
51823
51824         * config/srclist-update: was running fixlicense twice, which caused
51825                 texinfo.tex to be nullified for some reason.  Simplify,
51826                 $gplsrc is no longer needed as far as I can see?
51827
51828 2003-07-16  Jim Meyering  <jim@meyering.net>
51829
51830         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
51831
51832 2003-07-15  Paul Eggert  <eggert@twinsun.com>
51833
51834         * config/srclist.txt: Get the following files from gettext-runtime/intl
51835         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
51836         ref-del.sin.  From Bruno Haible.
51837         * config/srclist-update (fixfile): Change grep pattern again, since the
51838         previous fix didn't work (there was another trailing $).  Use
51839         '[$]' to escape the $s.
51840
51841 2003-07-15  Karl Berry  <karl@gnu.org>
51842
51843         * lib/vasnprintf.c: update from gettext.
51844
51845 2003-07-15  Karl Berry  <karl@gnu.org>
51846
51847         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
51848         gets expanded when surrounded by '$'.
51849
51850 2003-07-15  Jim Meyering  <jim@meyering.net>
51851
51852         * modules/save-cwd: Don't depend on error.  From Derek Price.
51853
51854 2003-07-15  Jim Meyering  <jim@meyering.net>
51855
51856         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
51857
51858 2003-07-14  Simon Josefsson  <jas@extundo.com>
51859
51860         * modules/mempcpy: New file.
51861         * MODULES.html.sh (func_all_modules): Add mempcpy.
51862
51863 2003-07-14  Simon Josefsson  <jas@extundo.com>
51864
51865         * m4/mempcpy.m4: New file.
51866
51867 2003-07-14  Simon Josefsson  <jas@extundo.com>
51868
51869         * lib/mempcpy.h: New file.
51870         * lib/mempcpy.c: New file.
51871
51872 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51873
51874         * modules/getdate, modules/posixtm: Depend on mktime.
51875
51876 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51877
51878         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
51879         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
51880         unicodeio.c, unicodeio.h, unlocked-io.h:
51881         Switch from LGPL to GPL.
51882
51883 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51884
51885         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
51886         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
51887         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
51888         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
51889         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
51890         updated automatically by ../config/srclist-update.  This changes
51891         their license from LPGL to GPL.
51892
51893 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51894
51895         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
51896         assumed to refer to the root of the most recent stable gettext version.
51897         * config/srclistvars.sh: Add defaults for eggert.
51898         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
51899         Match "This program" as well as "The program".  This is needed
51900         for gettext.
51901
51902 2003-07-14  Jim Meyering  <jim@meyering.net>
51903
51904         Don't emit diagnostics.  Let callers do that.
51905         * lib/save-cwd.c: Don't include "error.h".
51906         (save_cwd): Don't call error.  Ensure that errno is valid
51907         when returning nonzero.
51908
51909         * lib/save-cwd.h (restore_cwd): Update prototype.
51910         * lib/save-cwd.c (restore_cwd): Remove two parameters.
51911         Simplify.  Don't call error upon failure.  Let callers do that.
51912         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
51913         when auditing is enabled.  But don't bother updating the #if.
51914
51915 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
51916
51917         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
51918         it breaks C++ compilation.
51919         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
51920
51921 2003-07-10  Simon Josefsson  <jas@extundo.com>
51922
51923         * modules/strchrnul (Makefile.am): Add strchrnul.h.
51924
51925 2003-07-10  Jim Meyering  <jim@meyering.net>
51926
51927         * m4/clock_time.m4: Remove trailing blank.
51928         * m4/intmax_t.m4: Likewise.
51929
51930 2003-07-10  Jim Meyering  <jim@meyering.net>
51931
51932         * lib/vasnprintf.c: Remove trailing blanks.
51933         Make cpp indentation consistent.
51934
51935 2003-07-09  Paul Eggert  <eggert@twinsun.com>
51936
51937         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
51938         posixver.c, strftime.c, strnlen.c, strverscmp.c:
51939         Switch from LGPL to GPL.
51940
51941 2003-07-09  Paul Eggert  <eggert@twinsun.com>
51942
51943         * config/srclist.txt: Sort sublists.  Add
51944         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
51945         that differ from gnulib for one reason or another; we'd like this list
51946         to be smaller but for now let's document what we have.
51947
51948 2003-07-08  Paul Eggert  <eggert@twinsun.com>
51949
51950         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
51951         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
51952         and sweeter "eval x=$x".
51953         * config/srclist.txt: Get lib/argp* from glibc.
51954
51955 2003-07-07  Paul Eggert  <eggert@twinsun.com>
51956
51957         * lib/mktime.c: Fix some boundary cases and remove need for floating
51958         point.
51959
51960         Issue a compile-time diagnostic if time_t is floating point, or if
51961         two's complement arithmetic is not in effect, or if arithmetic
51962         right shift does not propagate the sign.  These assumptions were
51963         all in the original code but they weren't checked.
51964
51965         (TIME_T_MIDPOINT, verify): New macros.
51966         (__isleap): Remove; it has integer overflow problems.
51967         (leapyear): New function, without those problems.
51968         (ydhms_tm_diff): Remove; splitting into two parts.
51969         (ydhms_diff): New function, containing the arithmetic part of
51970         the old ydhms_tm_diff function.  Issue a compile-time
51971         diagnostic if we are not using C99 integer division.
51972         Avoid casts when possible.
51973         (guess_time_tm): New function, containing the checking part of
51974         the old ydhms_tm_diff function.  Return the new value, rather than
51975         the difference between it and the old.  Accept a new argument T
51976         so that *T specifies the old value.  Check for overflow in the result.
51977
51978         (__mktime_internal): Use a time_t offset, not a long int offset.
51979         This undoes the 2003-06-04 change, which is no longer needed now
51980         that we have better overflow checking.
51981         (localtime_offset): Likewise.
51982
51983         (__mktime_internal): Avoid harmful overflow on hosts where time_t
51984         and long are 64-bit but int is only 32-bit.
51985         (ydhms_diff): Use long int to store year1 and yday1.
51986         Issue a compile-time diagnostic if long int is not wide enough.
51987
51988         (__mktime_internal): Use long int to store adjusted year and yday.
51989         Use plain C rather than preprocessor commands, if that doesn't
51990         affect efficiency.
51991         Check for overflow (and try to repair) after each probe
51992         rather than checking only at the very end.  This avoids some bugs
51993         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
51994         does not equal GMT offset at maximum time).
51995         Use integer to check for overflow rather than floating point; this
51996         is more portable to non-IEEE hosts, and is a tad faster.
51997         When we detect that we are oscillating between two values,
51998         don't check whether tm_isdst has the requested value, since
51999         we already know the answer.  When tm_isdst has the wrong value,
52000         use a different heuristic to find the right one, based on the
52001         extreme values actually observed in practice in tz2003a,
52002         rather than the (overly optimistic) "previous 3 calendar quarters".
52003
52004         (not_equal_tm, print_tm, check_result): Use "const T" rather than
52005         "T const" to accommodate glibc style.
52006         (check_result): Use less-confusing report format.  "long" -> "long int.
52007         (main): Likewise.
52008         Don't loop if the iteration overflows time_t.
52009         Allow a negative step in the iteration.
52010
52011 2003-07-06  Karl Berry  <karl@gnu.org>
52012
52013         * config/depcomp: update from automake.
52014         * config/config.sub: update from prep.
52015
52016 2003-07-03  Karl Berry  <karl@gnu.org>
52017
52018         * config/config.guess: update from prep.
52019
52020 2003-07-01  Paul Eggert  <eggert@twinsun.com>
52021
52022         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
52023         xreadlink.c now includes it unconditionally.
52024
52025 2003-07-01  Paul Eggert  <eggert@twinsun.com>
52026
52027         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
52028         having it depend on HAVE_SYS_TYPES_H.
52029
52030 2003-07-01  Bruno Haible  <bruno@clisp.org>
52031
52032         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
52033         <sys/types.h> should be sufficient.
52034         Reported by Paul Eggert.
52035
52036 2003-06-26  Karl Berry  <karl@gnu.org>
52037
52038         * config/depcomp: update from automake.
52039
52040 2003-06-26  Bruno Haible  <bruno@clisp.org>
52041
52042         * modules/human: Depend on module stdbool.
52043
52044 2003-06-25  Bruno Haible  <bruno@clisp.org>
52045
52046         * modules/readlink: New file.
52047         * modules/xreadlink: Depend on it.
52048         * MODULES.html.sh (func_all_modules): Add readlink.
52049
52050 2003-06-25  Bruno Haible  <bruno@clisp.org>
52051
52052         * m4/readlink.m4: New file.
52053
52054 2003-06-25  Bruno Haible  <bruno@clisp.org>
52055
52056         * lib/readlink.c: New file.
52057
52058 2003-06-22  Karl Berry  <karl@gnu.org>
52059
52060         * config/srclist.txt: update mkinstalldirs from automake.
52061         * config/mkinstalldirs: update.
52062
52063 2003-06-22  Bruno Haible  <bruno@clisp.org>
52064
52065         Portability to mingw32.
52066         * m4/ssize_t.m4: New file, from GNU gettext.
52067         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
52068         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
52069
52070 2003-06-22  Bruno Haible  <bruno@clisp.org>
52071
52072         * modules/safe-read: Add m4/ssize_t.m4.
52073         * modules/xreadlink: Add m4/ssize_t.m4.
52074
52075 2003-06-20  Bruno Haible  <bruno@clisp.org>
52076
52077         Assume C89, so PARAMS isn't needed.
52078         * lib/unicodeio.h (PARAMS): Remove.
52079         * lib/unicodeio.c: Don't use PARAMS.
52080
52081 2003-06-18  Karl Berry  <karl@gnu.org>
52082
52083         * config/config.{guess,sub}: update from prep.
52084
52085 2003-06-18  Jim Meyering  <jim@meyering.net>
52086
52087         Merge changes from coreutils.
52088         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
52089         Remove explicit declarations of xmalloc and realloc.
52090         Include xalloc.h.
52091         (read_utmp): Remove anachronistic cast of xmalloc.
52092
52093 2003-06-17  Paul Eggert  <eggert@twinsun.com>
52094
52095         Assume C89, so PARAMS isn't needed.
52096         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
52097         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
52098         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
52099         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
52100         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
52101         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
52102         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
52103         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
52104         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
52105         lib/xstrtod.h, lib/xstrtol.h: Likewise.
52106         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
52107         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
52108         no longer needed. Anyway, config.h should always be included before any
52109         other file.
52110
52111 2003-06-11  Simon Josefsson  <jas@extundo.com>
52112
52113         * modules/sysexits: New file.
52114         * MODULES.html.sh (func_all_modules): Add sysexits.
52115
52116 2003-06-11  Simon Josefsson  <jas@extundo.com>
52117
52118         * lib/sysexit_.h: New file.
52119
52120 2003-06-11  Derek Price  <derek@ximbiot.com>
52121
52122         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
52123         necessary.
52124
52125 2003-06-11  Bruno Haible  <bruno@clisp.org>
52126
52127         * m4/sysexits.m4: New file.
52128
52129 2003-06-10  Simon Josefsson  <jas@extundo.com>
52130
52131         * lib/argp.h: New file, from glibc.
52132         * lib/argp-ba.c: New file, from glibc.
52133         * lib/argp-eexst.c: New file, from glibc.
52134         * lib/argp-fmtstream.c: New file, from glibc.
52135         * lib/argp-fmtstream.h: New file, from glibc.
52136         * lib/argp-fs-xinl.c: New file, from glibc.
52137         * lib/argp-help.c: New file, from glibc.
52138         * lib/argp-namefrob.h: New file, from glibc.
52139         * lib/argp-parse.c: New file, from glibc.
52140         * lib/argp-pv.c: New file, from glibc.
52141         * lib/argp-pvh.c: New file, from glibc.
52142         * lib/argp-xinl.c: New file, from glibc.
52143
52144 2003-06-10  Simon Josefsson  <jas@extundo.com>
52145
52146         * modules/strchrnul: New file.
52147
52148 2003-06-10  Simon Josefsson  <jas@extundo.com>
52149
52150         * modules/argp: New file.
52151
52152 2003-06-10  Simon Josefsson  <jas@extundo.com>
52153
52154         * m4/strchrnul.m4: New file.
52155
52156 2003-06-10  Simon Josefsson  <jas@extundo.com>
52157
52158         * lib/strchrnul.h: New file.
52159         * lib/strchrnul.c: New file.
52160
52161 2003-06-10  Bruno Haible  <bruno@clisp.org>
52162
52163         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
52164
52165 2003-06-07  Karl Berry  <karl@gnu.org>
52166
52167         * config/config.{guess,sub}: update from prep.
52168
52169 2003-06-07  Jim Meyering  <jim@meyering.net>
52170
52171         * modules/strtod: Use $(...) notation, not @...@ for
52172         AC_REPLACE'd variables.
52173         * modules/localcharset: Likewise.
52174
52175 2003-06-07  Jim Meyering  <jim@meyering.net>
52176
52177         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
52178         in place of my name in the copyright comment.
52179         Remove definition and uses of __P.
52180
52181         From coreutils.
52182         * lib/stat.c: Don't declare xmalloc explicitly.
52183         Instead, include "xalloc.h".
52184         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
52185         xrealloc, and xcalloc return values.
52186         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
52187         Improve comment.
52188         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
52189
52190 2003-06-07  Bruno Haible  <bruno@clisp.org>
52191
52192         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
52193         avoid AC_CONFIG_LINKS.
52194         * modules/fnmatch (Makefile.am): Use explicit creation rule for
52195         fnmatch.h, to avoid AC_CONFIG_LINKS.
52196         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
52197
52198 2003-06-07  Bruno Haible  <bruno@clisp.org>
52199
52200         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
52201         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
52202         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
52203         directory.
52204         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
52205         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
52206         directory.
52207
52208 2003-06-06  Jim Meyering  <jim@meyering.net>
52209
52210         Merge from coreutils.
52211         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
52212         Consolidate declarations and initializations of *_base* locals.
52213
52214         Merge from coreutils.
52215         This avoids a core dump on systems without GNU putenv,
52216         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
52217         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
52218         (unsetenv): New static function, from GNU libc.
52219         (rpl_putenv): Use it.
52220
52221         * lib/modechange.c: Remove trailing blanks.
52222
52223         Merge from coreutils.
52224         * lib/fsusage.c: Remove declaration of statfs.
52225         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
52226
52227         * lib/posixtm.c: Include <stdbool.h> unconditionally.
52228
52229 2003-06-06  Jim Meyering  <jim@meyering.net>
52230
52231         * lib/stdbool_.h: Renamed from stdbool.h.in.
52232
52233 2003-06-06  Jim Meyering  <jim@meyering.net>
52234             Bruno Haible  <bruno@clisp.org>
52235
52236         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
52237         Adjust Makefile.am snippet not to redirect directly to target.
52238         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
52239
52240 2003-06-05  Paul Eggert  <eggert@twinsun.com>
52241
52242         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
52243         mismatch, look in future quarters as well as past.  This fixes a
52244         bug when processing fall-backwards gaps immediately after a long
52245         period of daylight-saving time.
52246
52247         * lib/mktime.c: Assume freestanding C89 or better.
52248         (HAVE_LIMITS_H): Remove.  Assume it's 1.
52249         (__P): Remove; not used.
52250         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
52251         (mktime, not_equal_tm, print_tm, check_result,
52252         main): Use prototypes.  Use const * where appropriate.
52253         (main): Fix typo in testing code that uncovered by above changes.
52254         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
52255
52256 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52257
52258         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
52259         locale.h, localeconv.  This merges changes from coreutils.
52260
52261         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
52262         It can be removed after the next Autoconf is released.
52263         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
52264         needed.
52265
52266 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52267
52268         * lib/mktime.c: Fix Debian bug 177940
52269         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
52270         (localtime_offset): Now long int, not time_t, because we want it
52271         to be guaranteed to be signed.  All uses changed.
52272         (__mktime_internal): If overflow would occur when adding offset,
52273         don't add it.
52274
52275         Merge 'human' changes from coreutils.  Rewrite to support
52276         locale-specific notations like thousands separators.
52277         * lib/human.c: Simplify authorship notice.
52278         Include human.h immediately after config.h.
52279         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
52280         <limits.h>: Do not include, since human.h does.
52281         (SIZE_MAX, UINTMAX_MAX): New macros.
52282         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
52283         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
52284         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
52285         (power_letter): Renamed from suffixes.
52286         (generate_suffix_backwards): Remove.
52287         (adjust_value): Now takes int style (because of human.h changes)
52288         and long double value (for greater precision on some platforms).
52289         (group_number): New function.
52290         (human_readable): Use it.  Use integer options, not enum.
52291         Put the options before the sizes in the arg list.
52292         Support all the new options.
52293         The old human_readable function has been removed;
52294         use inttostr.h instead.
52295         (human_readable, default_block_size, humblock):
52296         Use uintmax_t, not int, for block sizes.
52297         (human_readable_inexact, block_size_types): Remove.
52298         (block_size_opts): New constant.
52299         (human_options): Renamed from human_block_size, with new signature
52300         that allows block sizes up to UINTMAX_MAX.  All callers changed.
52301         * lib/human.h: Add copyright and authorship notice.
52302         Include <limits.h> and <stdbool.h> unconditionally.
52303         (PARAMS): Remove.  All uses removed.
52304         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
52305         (enum human_inexact_style): Remove tag; now a nameless enum.
52306         (human_floor, human_ceiling, human_round_to_even): Now have
52307         values 2, 0, 1 rather than -1, 1, 0.
52308         (human_group_digits, human_suppress_point_zero, human_autoscale,
52309         human_base_1024, human_SI, human_B): New constants.
52310         (human_readable_inexact, human_block_size): Remove.
52311         (human_readable): Size args are now uintmax_t, not int.
52312         (human_options): New decl.
52313
52314         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
52315         unnecessary now that we assume C89 or better.  This change
52316         imported from coreutils.
52317
52318         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
52319         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
52320         in the 2003-05-30 sync from glibc.
52321
52322         .h files should stand alone, but we shouldn't include <sys/types.h>
52323         if we can get away with just <stddef.h>.
52324
52325         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
52326         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
52327         rather than <sys/types.h>, as we merely need size_t.
52328         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
52329         to get size_t.
52330         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
52331         Include <stdio.h>, to get FILE.
52332         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
52333         memcasecmp.h has included <stddef.h> and all we need is size_t.
52334         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
52335         our interface, instead of including <sys/types.h>
52336
52337 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52338
52339         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
52340         now, as glibc mktime is buggy on non-glibc systems.
52341
52342 2003-06-03  Karl Berry  <karl@gnu.org>
52343
52344         * config/config.sub: update from prep.
52345
52346 2003-06-02  Paul Eggert  <eggert@twinsun.com>
52347
52348         [from coreutils]
52349         Fix some minor time-related bugs with POSIX time arguments.
52350         Some valid time stamps were being rejected (notably -1, and
52351         time stamps before 1900 on 64-bit hosts).  And some invalid
52352         time stamps were being accepted, e.g. September 31.
52353
52354         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
52355         that we can return (time_t) -1 successfully.
52356         * lib/posixtm.c: Likewise.
52357         [HAVE_STDBOOL_H]: Include <stdbool.h>.
52358         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
52359         (t): Remove static var.
52360         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
52361         of static var.  All uses changed.
52362         (year): Do not reject years before 1900; they can occur with
52363         64-bit time_t.
52364         (posix_time_parse): Do not check for out-of-range components;
52365         that is now the caller's responsibility, since our checks were
52366         only approximations.
52367         (posixtime): Use mktime to check for out-of-range components,
52368         since it knows them exactly.
52369         If mktime returns (time_t) -1, check whether an error actually occurred
52370         by invoking localtime on -1.
52371         (main) [TEST_POSIXTIME]: Check for input data errors, and report
52372         posixtime failures better.
52373         Improve the test data (in comments only).
52374
52375 2003-06-02  Karl Berry  <karl@gnu.org>
52376
52377         * config/mkinstalldirs (version): new variable.
52378         (--version): new option.
52379         (usage): improve message.
52380
52381 2003-05-30  Karl Berry  <karl@gnu.org>
52382
52383         * lib/mktime.c: update from libc.
52384
52385 2003-05-30  Bruno Haible  <bruno@clisp.org>
52386
52387         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
52388         * config/config.rpath: Upgrade to gettext-0.12.1.
52389
52390 2003-05-30  Bruno Haible  <bruno@clisp.org>
52391
52392         * m4/gettext.m4: Upgrade to gettext-0.12.1.
52393         * m4/nls.m4: New file, from gettext-0.12.1.
52394         * m4/po.m4: New file, from gettext-0.12.1.
52395         * m4/progtest.m4: Upgrade to gettext-0.12.1.
52396
52397 2003-05-30  Bruno Haible  <bruno@clisp.org>
52398
52399         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
52400         * lib/localcharset.h: Likewise.
52401         * lib/localcharset.c: Likewise.
52402
52403 2003-05-29  Karl Berry  <karl@gnu.org>
52404
52405         * config/config.rpath: update from gettext.
52406
52407 2003-05-28  Paul Eggert  <eggert@twinsun.com>
52408
52409         Assume the headers required for C89 freestanding compilers.
52410         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
52411         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
52412         * m4/human.m4 (gl_HUMAN): Likewise.
52413         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
52414         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
52415         * m4/userspec.m4 (gl_USERSPEC): Likewise.
52416         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
52417         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
52418         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
52419
52420 2003-05-28  Paul Eggert  <eggert@twinsun.com>
52421
52422         Assume the headers required for C89 freestanding compilers.
52423         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
52424         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
52425         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
52426         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
52427         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
52428         define, since <limits.h> is guaranteed to do that.
52429         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
52430         * lib/exclude.c: Include <stdbool.h> unconditionally.
52431         * lib/tempname.c: Include <stddef.h> unconditionally.
52432         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
52433         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
52434         <stddef.h> does that.
52435         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
52436         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
52437         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
52438         needed.
52439         * lib/xstrtol.c: Likewise.
52440         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
52441         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
52442
52443         * lib/addext.c (addext): Use assignment rather than cast, to avoid
52444         warnings on some platforms.
52445
52446         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
52447         arbitrarily.
52448
52449 2003-05-26  Jim Meyering  <jim@meyering.net>
52450
52451         Merge in a change from coreutils:
52452         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
52453         that is guaranteed to be `no'.  Use `no_such_member' to indicate
52454         that condition, rather than `-1' which is slightly misleading.
52455         Change the name of the cache variable to have the gl_ prefix.
52456         Prompted by a patch from Richard Dawe for DJGPP.
52457
52458 2003-05-24  Karl Berry  <karl@gnu.org>
52459
52460         * config/config.guess: update from prep.
52461
52462 2003-05-22  Karl Berry  <karl@gnu.org>
52463
52464         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
52465
52466 2003-05-20  Karl Berry  <karl@gnu.org>
52467
52468         * config/config.guess: update from prep.
52469
52470 2003-05-18  Karl Berry  <karl@gnu.org>
52471
52472         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
52473         might actually be set by the user.
52474
52475         * config/depcomp, install-sh, mdate-sh: update from automake.
52476
52477 2003-05-17  Bruno Haible  <bruno@clisp.org>
52478
52479         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
52480         invalid expansion for AC_EGREP_CPP.
52481         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
52482         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
52483         Suggested by Akim Demaille <akim@epita.fr> in
52484         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
52485
52486 2003-05-12  Jim Meyering  <jim@meyering.net>
52487
52488         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
52489         the space-padded-by-default conversion specifiers, %e, %k, %l.
52490
52491 2003-05-12  Bruno Haible  <bruno@clisp.org>
52492
52493         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
52494         the string is longer than 4 KB.
52495
52496 2003-05-11  Karl Berry  <karl@gnu.org>
52497
52498         * config/config.{guess,sub}: update from prep.
52499
52500 2003-05-09  Bruno Haible  <bruno@clisp.org>
52501
52502         * modules/error: Add m4/strerror_r.m4 to file list.
52503
52504 2003-05-03  Bruno Haible  <bruno@clisp.org>
52505
52506         Upgrade to Unicode-4.0.
52507         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
52508         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
52509         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
52510         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
52511         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
52512         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
52513         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
52514         Change width of U+E0100..U+E01EF from 1 to 0.
52515
52516 2003-04-25  Jim Meyering  <jim@meyering.net>
52517
52518         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
52519         of type size_t, not int.
52520
52521 2003-04-25  Bruno Haible  <bruno@clisp.org>
52522
52523         * lib/copy-file.c: Include <stddef.h>, for size_t.
52524
52525 2003-04-21  Paul Eggert  <eggert@twinsun.com>
52526
52527         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
52528         code which expansion is under static control.  Patch imported from
52529         Akim Demaille's patch to Bison; see
52530         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
52531
52532 2003-04-14  Bruno Haible  <bruno@clisp.org>
52533
52534         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
52535
52536 2003-04-11  Jim Meyering  <jim@meyering.net>
52537
52538         Merge changes from Coreutils.
52539
52540         2003-03-22  Jim Meyering  <jim@meyering.net>
52541
52542         * lib/strftime.c (widen): Cast alloca return value to proper type.
52543
52544         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
52545
52546         From GNU libc.
52547         * lib/strftime.c (my_strftime): Handle very large width
52548         specifications for numeric values correctly.  Improve checks for
52549         overflow.
52550
52551         2003-01-19  Jim Meyering  <jim@meyering.net>
52552
52553         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
52554         definitions.
52555         (nl_get_alt_digit) [! defined my_strftime]: Define.
52556         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
52557         _nl_get_alt_digit and _nl_get_walt_digit.
52558
52559         * lib/strftime.c (my_strftime): Merge in locale-related changes from
52560         libc. These changes have no effect outside of _LIBC.
52561
52562 2003-04-10  Bruno Haible  <bruno@clisp.org>
52563
52564         * modules/findprog: New file.
52565         * MODULES.html.sh (func_all_modules): Add it.
52566
52567 2003-04-10  Bruno Haible  <bruno@clisp.org>
52568
52569         * m4/findprog.m4: New file.
52570         * m4/eaccess.m4: New file.
52571
52572 2003-04-10  Bruno Haible  <bruno@clisp.org>
52573
52574         * lib/findprog.h: New file, from GNU gettext.
52575         * lib/findprog.c: New file, from GNU gettext.
52576
52577 2003-04-05  Jim Meyering  <jim@meyering.net>
52578
52579         Merge changes from Coreutils.
52580
52581         * lib/exclude.h (PARAMS): Remove definition and uses.
52582         * lib/exclude.c: Remove uses of `PARAMS'.
52583
52584         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
52585         Add test-cases for DOS filenames. Declare program_name.
52586         (main): Set up program_name.  Patch by Rich Dawe.
52587
52588         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
52589         error from mntctl.
52590         Use mntctl's return value to drive the entry-processing loop, since
52591         we can't rely on the value of the vmt_length member in the last
52592         entry.  On some systems doing so could result in exhausting
52593         virtual memory.  Based in part on a patch from Mike Jetzer.
52594
52595 2003-04-04  Bruno Haible  <bruno@clisp.org>
52596
52597         * modules/linebreak: New file.
52598         * MODULES.html.sh (func_all_modules): Add it.
52599
52600 2003-04-04  Bruno Haible  <bruno@clisp.org>
52601
52602         * m4/linebreak.m4: New file.
52603
52604 2003-04-04  Bruno Haible  <bruno@clisp.org>
52605
52606         * lib/linebreak.h: New file, from GNU gettext.
52607         * lib/linebreak.c: New file, from GNU gettext with slight
52608         modifications.
52609         * lib/lbrkprop.h: New file, from GNU gettext.
52610
52611 2003-04-03  Bruno Haible  <bruno@clisp.org>
52612
52613         * modules/utf8-ucs4: New file.
52614         * modules/utf16-ucs4: New file.
52615         * modules/ucs4-utf8: New file.
52616         * modules/ucs4-utf16: New file.
52617         * MODULES.html.sh (func_all_modules): Add them.
52618
52619 2003-04-03  Bruno Haible  <bruno@clisp.org>
52620
52621         * m4/utf-ucs4.m4: New file.
52622         * m4/ucs4-utf.m4: New file.
52623
52624 2003-04-03  Bruno Haible  <bruno@clisp.org>
52625
52626         * lib/utf8-ucs4.h: New file, from GNU gettext.
52627         * lib/utf16-ucs4.h: New file, from GNU gettext.
52628         * lib/ucs4-utf8.h: New file, from GNU gettext.
52629         * lib/ucs4-utf16.h: New file, from GNU gettext.
52630
52631 2003-04-02  Bruno Haible  <bruno@clisp.org>
52632
52633         * modules/binary-io: New file.
52634         * MODULES.html.sh (func_all_modules): Add it.
52635
52636 2003-04-02  Bruno Haible  <bruno@clisp.org>
52637
52638         * lib/binary-io.h: New file, from GNU gettext.
52639
52640 2003-04-01  Bruno Haible  <bruno@clisp.org>
52641
52642         * modules/pathname: New file.
52643         * MODULES.html.sh (func_all_modules): Add it.
52644
52645 2003-04-01  Bruno Haible  <bruno@clisp.org>
52646
52647         * lib/pathname.h: New file, from GNU gettext.
52648         * lib/concatpath.c: New file, from GNU gettext.
52649
52650 2003-03-30  Bruno Haible  <bruno@clisp.org>
52651
52652         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
52653
52654 2003-03-30  Bruno Haible  <bruno@clisp.org>
52655
52656         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
52657         function chown() doesn't exist.
52658
52659 2003-03-28  Bruno Haible  <bruno@clisp.org>
52660
52661         * modules/copy-file: New file.
52662         * MODULES.html.sh (func_all_modules): Add it.
52663
52664 2003-03-28  Bruno Haible  <bruno@clisp.org>
52665
52666         * m4/copy-file.m4: New file.
52667
52668 2003-03-28  Bruno Haible  <bruno@clisp.org>
52669
52670         * lib/copy-file.h: New file, from GNU gettext.
52671         * lib/copy-file.c: New file, from GNU gettext.
52672
52673 2003-03-18  Jim Meyering  <jim@meyering.net>
52674
52675         * lib/quote.c (quote_n): Fix typo in comment.
52676
52677 2003-03-18  Bruno Haible  <bruno@clisp.org>
52678
52679         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
52680         checking.
52681         * m4/onceonly_2_57.m4: Likewise.
52682
52683 2003-03-17  Bruno Haible  <bruno@clisp.org>
52684
52685         * m4/onceonly.m4: Require autoconf 2.54 or newer.
52686         (m4_quote): Remove macro.
52687         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
52688
52689 2003-03-14  Jim Meyering  <jim@meyering.net>
52690
52691         Merge changes from Coreutils.
52692         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
52693         to be const, in order to avoid warnings.
52694         (obstack_room): Likewise.
52695         (obstack_empty_p): Likewise.
52696
52697 2003-03-14  Bruno Haible  <bruno@clisp.org>
52698
52699         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
52700         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
52701
52702 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52703
52704         Merge changes from Bison.
52705         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
52706         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
52707         when compiling Bison 1.875's `bitset bset = obstack_alloc
52708         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
52709         * lib/hash.c: Include <stdbool.h> unconditionally.
52710
52711 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52712
52713         * m4/onceonly.m4 (m4_quote): New macro.
52714         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
52715         Quote AC_FOREACH variable-expansions properly.
52716
52717 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52718
52719         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
52720
52721 2003-03-09  Paul Eggert  <eggert@twinsun.com>
52722
52723         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
52724         Reported by Bruce Becker; see:
52725         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
52726
52727 2003-03-03  Paul Eggert  <eggert@twinsun.com>
52728             Bruno Haible  <bruno@clisp.org>
52729
52730         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
52731         Reported by John Hughes, see
52732         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
52733
52734 2003-02-20  Bruno Haible  <bruno@clisp.org>
52735
52736         * MODULES.html.sh (func_all_modules): Add poll.
52737
52738 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52739
52740         * modules/poll: New file.
52741
52742 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52743
52744         * lib/poll_.h: New file.
52745         * lib/poll.c: New file.
52746
52747 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52748
52749         * m4/poll.m4: New file.
52750
52751 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
52752
52753         * modules/mathl: New file.
52754
52755 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
52756
52757         * lib/mathl.h: New file.
52758         * lib/acosl.c: New file.
52759         * lib/asinl.c: New file.
52760         * lib/atanl.c: New file.
52761         * lib/ceill.c: New file.
52762         * lib/cosl.c: New file.
52763         * lib/expl.c: New file.
52764         * lib/floorl.c: New file.
52765         * lib/frexpl.c: New file.
52766         * lib/ldexpl.c: New file.
52767         * lib/logl.c: New file.
52768         * lib/sincosl.c: New file.
52769         * lib/sinl.c: New file.
52770         * lib/sqrtl.c: New file.
52771         * lib/tanl.c: New file.
52772         * lib/trigl.c: New file.
52773         * lib/trigl.h: New file.
52774
52775 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
52776
52777         * m4/mathl.m4: New file.
52778
52779 2003-02-18  Bruno Haible  <bruno@clisp.org>
52780
52781         * MODULES.html.sh (func_all_modules): Add mathl.
52782
52783 2003-02-17  Bruno Haible  <bruno@clisp.org>
52784
52785         * modules/mkdtemp: New module.
52786         * MODULES.html.sh (func_all_modules): Add it.
52787
52788 2003-02-17  Bruno Haible  <bruno@clisp.org>
52789
52790         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
52791
52792 2003-02-17  Bruno Haible  <bruno@clisp.org>
52793
52794         * lib/mkdtemp.h: New file, from GNU gettext.
52795         * lib/mkdtemp.c: New file, from GNU gettext.
52796
52797 2003-02-02  Jim Meyering  <jim@meyering.net>
52798
52799         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
52800         e.g. glibc-2.2.93.
52801
52802 2003-01-31  Bruno Haible  <bruno@clisp.org>
52803
52804         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
52805         'rpl_rename'.
52806         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
52807         'rpl_strnlen'.
52808         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
52809         'rpl_strtod'.
52810         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
52811         'rpl_utime'.
52812
52813 2003-01-31  Bruno Haible  <bruno@clisp.org>
52814
52815         * lib/rename.c: #undef rename before defining rpl_rename.
52816         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
52817
52818 2003-01-30  Bruno Haible  <bruno@clisp.org>
52819
52820         * modules/vasnprintf, modules/vasprintf: New modules.
52821         * MODULES.html.sh (func_all_modules): Add them.
52822
52823 2003-01-30  Bruno Haible  <bruno@clisp.org>
52824
52825         * m4/signed.m4: New file, from GNU gettext.
52826         * m4/longdouble.m4: New file, from GNU gettext.
52827         * m4/wchar_t.m4: New file, from GNU gettext.
52828         * m4/wint_t.m4: New file, from GNU gettext.
52829         * m4/vasnprintf.m4: New file.
52830         * m4/vasprintf.m4: New file.
52831
52832 2003-01-30  Bruno Haible  <bruno@clisp.org>
52833
52834         * lib/printf-args.h: New file, from GNU gettext.
52835         * lib/printf-args.c: New file, from GNU gettext.
52836         * lib/printf-parse.h: New file, from GNU gettext.
52837         * lib/printf-parse.c: New file, from GNU gettext.
52838         * lib/vasnprintf.h: New file, from GNU gettext.
52839         * lib/vasnprintf.c: New file, from GNU gettext.
52840         * lib/asnprintf.c: New file, from GNU gettext.
52841         * lib/vasprintf.h: New file, from GNU gettext with modifications.
52842         * lib/vasprintf.c: New file, from GNU gettext.
52843         * lib/asprintf.c: New file, from GNU gettext.
52844
52845 2003-01-29  Bruno Haible  <bruno@clisp.org>
52846
52847         * modules/stpncpy: New module.
52848         * MODULES.html.sh (func_all_modules): Add it.
52849
52850 2003-01-29  Bruno Haible  <bruno@clisp.org>
52851
52852         * m4/stpncpy.m4: New file.
52853
52854 2003-01-29  Bruno Haible  <bruno@clisp.org>
52855
52856         * lib/stpncpy.h: New file, from GNU gettext with modifications.
52857         * lib/stpncpy.c: New file, from GNU gettext with modifications.
52858
52859 2003-01-28  Bruno Haible  <bruno@clisp.org>
52860
52861         * modules/c-ctype: New module.
52862         * MODULES.html.sh (func_all_modules): Add it.
52863
52864 2003-01-28  Bruno Haible  <bruno@clisp.org>
52865
52866         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
52867         Paul Eggert.
52868         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
52869         Paul Eggert.
52870
52871 2003-01-27  Bruno Haible  <bruno@clisp.org>
52872
52873         * modules/xsetenv: New module.
52874         * MODULES.html.sh (func_all_modules): Add it.
52875
52876 2003-01-27  Bruno Haible  <bruno@clisp.org>
52877
52878         * lib/xsetenv.h: New file, from GNU gettext.
52879         * lib/xsetenv.c: New file, from GNU gettext.
52880
52881 2003-01-23  Jim Meyering  <jim@meyering.net>
52882
52883         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
52884         from working on systems without dirfd (at least Irix and OSF1/Tru64).
52885
52886 2003-01-23  Bruno Haible  <bruno@clisp.org>
52887
52888         * modules/minmax: New module.
52889         * MODULES.html.sh (func_all_modules): Add it.
52890
52891 2003-01-23  Bruno Haible  <bruno@clisp.org>
52892
52893         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
52894         Eggert.
52895
52896 2003-01-22  Bruno Haible  <bruno@clisp.org>
52897
52898         * modules/exit: New module.
52899         * MODULES.html.sh (func_all_modules): Add it.
52900
52901 2003-01-22  Bruno Haible  <bruno@clisp.org>
52902
52903         * lib/exit.h: New file, from GNU gettext.
52904
52905 2003-01-19  Bruno Haible  <bruno@clisp.org>
52906
52907         * gnulib-tool: Recognize option --extract-maintainer.
52908         (func_get_maintainer): New function.
52909         * modules/*: Add Maintainer entry.
52910
52911 2003-01-16  Jim Meyering  <jim@meyering.net>
52912
52913         * m4/regex.m4: The `regex' struct is both input and output.
52914         Initialize it before each use.  Patch by Tim Waugh.
52915
52916 2003-01-16  Bruno Haible  <bruno@clisp.org>
52917
52918         * MODULES.html.sh: Add a table of contents. Add the module name as
52919         leftmost column. Add hyperlinks.
52920
52921 2003-01-15  Bruno Haible  <bruno@clisp.org>
52922
52923         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
52924
52925 2003-01-15  Bruno Haible  <bruno@clisp.org>
52926
52927         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
52928         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
52929         suffix.
52930
52931 2003-01-15  Bruno Haible  <bruno@clisp.org>
52932
52933         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
52934
52935 2003-01-15  Bruno Haible  <bruno@clisp.org>
52936
52937         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
52938         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
52939
52940 2003-01-14  Jim Meyering  <jim@meyering.net>
52941
52942         * lib/same.c (same_name): Tweak a comment.
52943
52944 2003-01-14  Bruno Haible  <bruno@clisp.org>
52945
52946         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
52947         when a string comparison is sufficient.
52948
52949 2003-01-14  Bruno Haible  <bruno@clisp.org>
52950
52951         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
52952         'unsigned int'.
52953
52954 2003-01-14  Bruno Haible  <bruno@clisp.org>
52955
52956         * lib/hash-pjw.c: Add comment about low quality of this function.
52957
52958 2003-01-13  Bruno Haible  <bruno@clisp.org>
52959
52960         * modules/stpcpy: Distribute lib/stpcpy.h.
52961         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
52962
52963 2003-01-13  Bruno Haible  <bruno@clisp.org>
52964
52965         * modules/*: Add a description.
52966         * modules/strpbrk: Fix Makefile.am snippet.
52967         * modules/strtoimax: Fix dependencies.
52968         * modules/strtoumax: Likewise.
52969
52970 2003-01-13  Bruno Haible  <bruno@clisp.org>
52971
52972         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
52973         * modules/alloca (Makefile.am): All object files depend on alloca.h.
52974         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
52975
52976 2003-01-13  Bruno Haible  <bruno@clisp.org>
52977
52978         * gnulib-tool (func_create_testdir): Store config/* files in the main
52979         directory.
52980         * config.rpath: Move to ...
52981         * config/config.rpath: ... here.
52982         * modules/gettext: Contains config/config.rpath, not config.rpath.
52983         * modules/iconv: Likewise.
52984
52985 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52986
52987         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52988         to avoid collisions with libcurses and libreadline.
52989
52990         * m4/getstr.m4: Remove.
52991         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
52992
52993 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52994
52995         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52996         to avoid collisions with libcurses and libreadline.
52997
52998         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
52999         * lib/getstr.h, getstr.c: Remove.
53000         * lib/getline.c: Include "getline.h", to check interface.
53001         Move body of old getstr.c here: this defines MIN_CHUNK and
53002         declares getdelim2, which is renamed from getstr.
53003         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
53004
53005         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
53006         All uses changed.
53007         * lib/linebuffer.h: Likewise.
53008         (readline): Remove backward-compatibility macro.
53009
53010 2003-01-12  Paul Eggert  <eggert@twinsun.com>
53011
53012         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
53013         to avoid collisions with libcurses and libreadline.
53014         * getstr: Remove.
53015         * MODULES.html.sh: Remove getstr.
53016         * modules/getline: Depend on unlocked-io, not getstr.
53017
53018 2003-01-12  Jim Meyering  <jim@meyering.net>
53019
53020         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
53021
53022 2003-01-10  Bruno Haible  <bruno@clisp.org>
53023
53024         * modules/alloca: Change Makefile.am requirements. Simplify Include
53025         requirements. Add lib/alloca_.h to file list.
53026
53027 2003-01-10  Bruno Haible  <bruno@clisp.org>
53028
53029         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
53030
53031 2003-01-10  Bruno Haible  <bruno@clisp.org>
53032
53033         * lib/alloca_.h: New file.
53034         * lib/getdate.y: Unconditionally include alloca.h.
53035         * lib/makepath.c: Likewise.
53036         * lib/setenv.c: Likewise.
53037         * lib/userspec.c: Likewise.
53038
53039 2003-01-09  Karl Berry  <karl@gnu.org>
53040
53041         * MODULES.html.sh: include `dirname $0` in PATH, to find
53042         gnulib-tool.
53043
53044 2003-01-09  Bruno Haible  <bruno@clisp.org>
53045
53046         * modules/stdbool: Change configure.ac, Makefile.am requirements.
53047         Simplify Include requirements. Add lib/stdbool.h.in to file list.
53048
53049 2003-01-09  Bruno Haible  <bruno@clisp.org>
53050
53051         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
53052
53053 2003-01-09  Bruno Haible  <bruno@clisp.org>
53054
53055         * lib/stdbool.h.in: New file.
53056
53057 2003-01-09  Bruno Haible  <bruno@clisp.org>
53058
53059         * gnulib-tool (func_all_modules): Ignore files ending in ~.
53060         * MODULES.html.sh: Likewise.
53061
53062 2003-01-08  Jim Meyering  <jim@meyering.net>
53063
53064         * lib/full-write.c: Undefine and define-away `const' after inclusion
53065         of errno.h, not before.  Suggestion from Bruno Haible.
53066
53067 2003-01-08  Bruno Haible  <bruno@clisp.org>
53068
53069         * modules/full-read: Depend on full-write.
53070
53071 2003-01-08  Bruno Haible  <bruno@clisp.org>
53072
53073         * lib/safe-read.c: Include specification header first, to ensure its
53074         selfcontainedness.
53075         * lib/full-write.c: Likewise.
53076
53077 2003-01-07  Jim Meyering  <jim@meyering.net>
53078
53079         * lib/full-write.c: Rework so that it may serve to define full_read,
53080         too.
53081         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
53082
53083 2003-01-07  Bruno Haible  <bruno@clisp.org>
53084
53085         * lib/strtoimax.c: Include <stdint.h> as an alternative to
53086         <inttypes.h>.
53087         * lib/xstrtol.h: Likewise.
53088         * lib/xstrtoimax.c: Likewise.
53089         * lib/xstrtoumax.c: Likewise.
53090         * lib/human.h: Likewise.
53091
53092         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
53093         on systems that have <inttypes.h> but not <stdint.h>.
53094
53095 2003-01-07  Bruno Haible  <bruno@clisp.org>
53096
53097         * MODULES.html.sh: Add copyright notice.
53098         (missed_files): Omit CVS directory entries.
53099         (func_module): Make it work with sed-3.02.
53100         * MODULES.txt: Remove file.
53101
53102 2003-01-06  Jim Meyering  <jim@meyering.net>
53103
53104         * lib/version-etc.c: Update year in translatable copyright string.
53105
53106 2003-01-03  Karl Berry  <karl@gnu.org>
53107
53108         * config/config.{guess,sub}: update from prep.
53109
53110 2003-01-02  Karl Berry  <karl@gnu.org>
53111
53112         * doc/COPYING.DOC: belatedly updated to 1.2.
53113
53114 2003-01-01  Karl Berry  <karl@gnu.org>
53115
53116         * gnulib-tool (func_verify_module): report module name $module in
53117         error message, not $1.
53118         * gnulib-tool (create-testdir): don't complain if destdir couldn't
53119         be created, only if it doesn't exist.
53120         * gnulib-tool (last_checkin_date): don't expand the $Date here.
53121
53122 2002-12-31  Paul Eggert  <eggert@twinsun.com>
53123
53124         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
53125
53126 2002-12-31  Paul Eggert  <eggert@twinsun.com>
53127
53128         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
53129         memcmp if strcoll doesn't work.
53130
53131 2002-12-31  Bruno Haible  <bruno@clisp.org>
53132
53133         * lib/utime.c (utime_null): No need to call ftruncate if the file was
53134         nonempty.
53135
53136 2002-12-31  Bruno Haible  <bruno@clisp.org>
53137
53138         * lib/memcoll.c (STRCOLL): New macro.
53139         (memcoll): Use it.
53140
53141 2002-12-31  Bruno Haible  <bruno@clisp.org>
53142
53143         * lib/localcharset.h: New file.
53144         * lib/localcharset.c: Include it.
53145         * lib/unicodeio.c: Likewise.
53146
53147 2002-12-31  Bruno Haible  <bruno@clisp.org>
53148
53149         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
53150         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
53151
53152 2002-12-31  Bruno Haible  <bruno@clisp.org>
53153
53154         * lib/getline.h: Include <stddef.h>, for size_t.
53155
53156         * lib/unicodeio.h: Include <stddef.h>, for size_t.
53157         * lib/unicodeio.c: Don't include <stddef.h>.
53158
53159 2002-12-31  Bruno Haible  <bruno@clisp.org>
53160
53161         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
53162         HAVE_TM_ZONE.
53163
53164 2002-12-24  Karl Berry  <karl@gnu.org>
53165
53166         * config/config.guess: update from prep.
53167
53168 2002-12-24  Bruno Haible  <bruno@clisp.org>
53169
53170         General infrasructure.
53171         * m4/README: Rewritten.
53172         * m4/onceonly.m4: New file.
53173         * m4/onceonly_2_57.m4: New file.
53174
53175         Module atexit.
53176         * m4/atexit.m4: New file.
53177
53178         Module strtod.
53179         * m4/strtod.m4: New file.
53180
53181         Module strtol.
53182         * m4/strtol.m4: New file.
53183
53184         Module strtoul.
53185         * m4/strtoul.m4: New file.
53186
53187         Module memchr.
53188         * m4/memchr.m4: New file.
53189
53190         Module memcmp.
53191         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
53192         (jm_FUNC_MEMCMP): Invoke it.
53193
53194         Module memcpy.
53195         * m4/memcpy.m4: New file.
53196
53197         Module memmove.
53198         * m4/memmove.m4: New file.
53199
53200         Module memset.
53201         * m4/memset.m4: New file.
53202
53203         Module strcspn.
53204         * m4/strcspn.m4: New file.
53205
53206         Module strpbrk.
53207         * m4/strpbrk.m4: New file.
53208
53209         Module strstr.
53210         * m4/strstr.m4: New file.
53211
53212         Module strerror.
53213         * m4/strerror.m4: New file.
53214
53215         Module mktime.
53216         * m4/mktime.m4: Renamed from jm-mktime.m4.
53217         (gl_PREREQ_MKTIME): New macro.
53218         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
53219
53220         Module malloc.
53221         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
53222         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
53223         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
53224
53225         Module realloc.
53226         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
53227         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
53228         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
53229
53230         Module strftime.
53231         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
53232         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
53233         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
53234         gl_TM_GMTOFF.
53235         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
53236
53237         Module xalloc.
53238         * m4/xalloc.m4: New file.
53239
53240         Module alloca.
53241         * m4/alloca.m4: New file.
53242
53243         Module putenv.
53244         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
53245         (jm_FUNC_PUTENV): Invoke it.
53246
53247         Module setenv.
53248         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
53249         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
53250         when invoked twice.
53251         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
53252         gt_FUNC_SETENV.
53253
53254         Module memrchr.
53255         * m4/memrchr.m4: New file.
53256
53257         Module stpcpy.
53258         * m4/stpcpy.m4: New file.
53259
53260         Module strcase.
53261         * m4/strcase.m4: New file.
53262
53263         Module strdup.
53264         * m4/strdup.m4: New file.
53265
53266         Module strnlen.
53267         * m4/strnlen.m4: New file.
53268
53269         Module strndup.
53270         * m4/strndup.m4: New file.
53271
53272         Module xstrtod.
53273         * m4/xstrtod.m4: New file.
53274
53275         Module xstrtol.
53276         * m4/xstrtol.m4: New file.
53277
53278         Module getdate.
53279         * m4/getdate.m4: New file.
53280
53281         Module unlocked-io.
53282         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
53283         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
53284         * m4/jm-glibc-io.m4n: Remove file.
53285
53286         Module long-options.
53287         * m4/long-options.m4: New file.
53288
53289         Module md5.
53290         * m4/md5.m4: New file.
53291
53292         Module sha.
53293         * m4/sha.m4: New file.
53294
53295         Module getstr.
53296         * m4/getstr.m4: New file.
53297
53298         Module getline.
53299         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
53300         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
53301         <sys/types.h>, for size_t. Use the function name gnu_getline, not
53302         simply getline. Infoke gl_PREREQ_GETLINE.
53303
53304         Module obstack.
53305         * m4/obstack.m4: New file.
53306
53307         Module hash.
53308         * m4/hash.m4: New file.
53309
53310         Module readtokens.
53311         * m4/readtokens.m4: New file.
53312
53313         Module strverscmp.
53314         * m4/strverscmp.m4: New file.
53315
53316         Module stdbool.
53317         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
53318         OSF/1.
53319
53320         Module strtoll.
53321         * m4/strtoll.m4: New file.
53322
53323         Module strtoull.
53324         * m4/strtoull.m4: New file.
53325
53326         Module strtoimax.
53327         * m4/strtoimax.m4: New file.
53328
53329         Module strtoumax.
53330         * m4/strtoumax.m4: New file.
53331
53332         Module xstrtoimax.
53333         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
53334         jm_AC_PREREQ_XSTRTOIMAX.
53335         Moved the strtol prerequisites to strtol.m4.
53336         Moved the strtoll prerequisites to strtoll.m4.
53337         Moved the strtoimax prerequisites to strtoimax.m4.
53338
53339         Module xstrtoumax.
53340         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
53341         jm_AC_PREREQ_XSTRTOUMAX.
53342         Moved the strtoul prerequisites to strtoul.m4.
53343         Moved the strtoull prerequisites to strtoull.m4.
53344         Moved the strtoumax prerequisites to strtoumax.m4.
53345
53346         Module chown.
53347         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
53348         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
53349
53350         Module dup2.
53351         * m4/dup2.m4: New file.
53352
53353         Module ftruncate.
53354         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
53355         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
53356
53357         Module getgroups.
53358         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
53359         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
53360
53361         Module gettimeofday.
53362         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
53363         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
53364         gl_PREREQ_GETTIMEOFDAY.
53365
53366         Module mkdir.
53367         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
53368         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
53369
53370         Module mkstemp.
53371         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
53372         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
53373         jm_AC_TYPE_UINTMAX_T.
53374         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
53375
53376         Module stat.
53377         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
53378         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
53379
53380         Module lstat.
53381         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
53382         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
53383
53384         Module timespec.
53385         * m4/timespec.m4 (gl_TIMESPEC): New macro.
53386         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
53387         * m4/st_mtim.m4: Indentation.
53388
53389         Module nanosleep.
53390         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
53391         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
53392         gl_PREREQ_NANOSLEEP.
53393
53394         Module regex.
53395         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
53396         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
53397         (gl_REGEX): New macro.
53398
53399         Module rename.
53400         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
53401         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
53402
53403         Module rmdir.
53404         * m4/rmdir.m4: New file.
53405
53406         Module utime.
53407         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
53408         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
53409         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
53410
53411         Module dirname.
53412         * m4/dirname.m4: New file.
53413
53414         Module getopt.
53415         * m4/getopt.m4: New file.
53416
53417         Module unistd-safer.
53418         * m4/unistd-safer.m4: New file.
53419
53420         Module fnmatch.
53421         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
53422         declaration.
53423         (gl_PREREQ_FNMATCH_EXTRA): New macro.
53424         (gl_FUNC_FNMATCH_POSIX): New macro.
53425         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
53426         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
53427         simply fnmatch.
53428
53429         Module exclude.
53430         * m4/exclude.m4: New file.
53431
53432         Module human.
53433         * m4/human.m4: New file.
53434
53435         Module acl.
53436         * m4/acl.m4: Nop.
53437
53438         Module backupfile.
53439         * m4/backupfile.m4: New file.
53440         * m4/d-ino.m4: Indentation.
53441
53442         Module fsusage.
53443         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
53444         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
53445         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
53446
53447         Module dirfd.
53448         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
53449         requirements.
53450
53451         Module euidaccess.
53452         * m4/euidaccess.m4: New file.
53453
53454         Module file-type.
53455         * m4/file-type.m4: New file.
53456
53457         Module fileblocks.
53458         * m4/fileblocks.m4: New file.
53459
53460         Module filemode.
53461         * m4/filemode.m4: New file.
53462
53463         Module isdir.
53464         * m4/isdir.m4: New file.
53465
53466         Module lchown.
53467         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
53468         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
53469
53470         Module makepath.
53471         * m4/makepath.m4: New file.
53472
53473         Module modechange.
53474         * m4/modechange.m4: New file.
53475
53476         Module mountlist.
53477         * m4/mountlist.m4: New file.
53478         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
53479         Indentation.
53480
53481         Module path-concat.
53482         * m4/path-concat.m4: New file.
53483
53484         Module pathmax.
53485         * m4/pathmax.m4: New file.
53486
53487         Module same.
53488         * m4/same.m4: New file.
53489
53490         Module save-cwd.
53491         * m4/save-cwd.m4: New file.
53492
53493         Module savedir.
53494         * m4/savedir.m4: New file.
53495
53496         Module xgetcwd.
53497         * m4/xgetcwd.m4: New file.
53498         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
53499
53500         Module xreadlink.
53501         * m4/xreadlink.m4: New file.
53502
53503         Module safe-read.
53504         * m4/safe-read.m4: New file.
53505
53506         Module safe-write.
53507         * m4/safe-write.m4: New file.
53508
53509         Module closeout.
53510         * m4/closeout.m4: New file.
53511
53512         Module stdio-safer.
53513         * m4/stdio-safer.m4: New file.
53514
53515         Module getpass.
53516         * m4/getpass.m4: New file.
53517
53518         Module getugroups.
53519         * m4/getugroups.m4: New file.
53520
53521         Module group-member.
53522         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
53523         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
53524
53525         Module idcache.
53526         * m4/idcache.m4: New file.
53527
53528         Module userspec.
53529         * m4/userspec.m4: New file.
53530
53531         Module gettime.
53532         * m4/clock_time.m4: New file.
53533         * m4/gettime.m4: New file.
53534
53535         Module settime.
53536         * m4/settime.m4: New file.
53537
53538         Module posixtm.
53539         * m4/posixtm.m4: New file.
53540
53541         Module gethostname.
53542         * m4/gethostname.m4: New file.
53543
53544         Module canon-host.
53545         * m4/canon-host.m4: New file.
53546
53547         Module gettext.
53548         * m4/codeset.m4: New file, from gettext-0.11.5.
53549         * m4/gettext.m4: New file, from gettext-0.11.5.
53550         * m4/glibc21.m4: New file, from gettext-0.11.5.
53551         * m4/iconv.m4: New file, from gettext-0.11.5.
53552         * m4/intdiv0.m4: New file, from gettext-0.11.5.
53553         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
53554         * m4/inttypes.m4: New file, from gettext-0.11.5.
53555         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
53556         * m4/isc-posix.m4: New file, from gettext-0.11.5.
53557         * m4/lcmessage.m4: New file, from gettext-0.11.5.
53558         * m4/lib-ld.m4: New file, from gettext-0.11.5.
53559         * m4/lib-link.m4: New file, from gettext-0.11.5.
53560         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
53561         * m4/progtest.m4: New file, from gettext-0.11.5.
53562         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
53563         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
53564         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
53565
53566         Module localcharset.
53567         * m4/localcharset.m4: New file.
53568
53569         Module hard-locale.
53570         * m4/hard-locale.m4: New file.
53571
53572         Module mbswidth.
53573         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
53574         onceonly macros.
53575         * m4/mbrtowc.m4: Add comment.
53576
53577         Module memcasecmp.
53578         * m4/memcasecmp.m4: New file.
53579
53580         Module memcoll.
53581         * m4/memcoll.m4: New file.
53582
53583         Module unicodeio.
53584         * m4/unicodeio.m4: New file.
53585
53586         Module rpmatch.
53587         * m4/rpmatch.m4: New file.
53588
53589         Module yesno.
53590         * m4/yesno.m4: New file.
53591
53592         Module exitfail.
53593         * m4/exitfail.m4: New file.
53594
53595         Module c-stack.
53596         * m4/c-stack.m4 (gl_C_STACK): New macro.
53597         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
53598
53599         Module error.
53600         * m4/error.m4 (gl_ERROR): New macro.
53601         (jm_PREREQ_ERROR): Use onceonly macros.
53602
53603         Module fatal.
53604         * m4/fatal.m4: New file.
53605
53606         Module getloadavg.
53607         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
53608         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
53609
53610         Module getpagesize.
53611         * m4/getpagesize.m4: New file.
53612
53613         Module getusershell.
53614         * m4/getusershell.m4: New file.
53615
53616         Module physmem.
53617         * m4/physmem.m4: New file.
53618
53619         Module posixver.
53620         * m4/posixver.m4: New file.
53621
53622         Module quotearg.
53623         * m4/quotearg.m4: New file.
53624
53625         Module quote.
53626         * m4/quote.m4: New file.
53627
53628         Module readutmp.
53629         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
53630
53631         Module sig2str.
53632         * m4/sig2str.m4: New file.
53633
53634         Other.
53635         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
53636         ulonglong.m4.
53637         * m4/intmax_t.m4: New file.
53638         * m4/d-type.m4: Indentation.
53639         * m4/jm-macros.m4: Update.
53640         * m4/prereq.m4 (jm_PREREQ): Update.
53641         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
53642         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
53643         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
53644         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
53645         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
53646         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
53647         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
53648         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
53649         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
53650         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
53651         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
53652         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
53653         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
53654         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
53655         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
53656         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
53657         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
53658         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
53659         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
53660
53661 2002-12-24  Bruno Haible  <bruno@clisp.org>
53662
53663         * MODULES.txt: Update according to m4/ changes.
53664
53665         Module gettext.
53666         * config.rpath: New file, from gettext-0.11.5.
53667
53668         * modules/*: New module descriptions.
53669         * gnulib-tool: New file.
53670         * MODULES.html.sh: New file.
53671
53672 2002-12-21  Karl Berry  <karl@gnu.org>
53673
53674         * doc/fdl.texi: update to version 1.2.
53675
53676 2002-12-19  Karl Berry  <karl@gnu.org>
53677
53678         * config/config.guess: update from prep.
53679
53680 2002-12-18  Bruno Haible  <bruno@clisp.org>
53681
53682         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
53683         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
53684
53685 2002-12-17  Bruno Haible  <bruno@clisp.org>
53686
53687         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
53688         stdlib.h, string.h.
53689
53690 2002-12-17  Bruno Haible  <bruno@clisp.org>
53691
53692         * lib/canon-host.c (strdup): Remove unused declaration.
53693
53694         * lib/fsusage.c: Include full_read.h.
53695         (get_fs_usage): Use full_read instead of safe_read.
53696
53697         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
53698
53699 2002-12-12  Karl Berry  <karl@gnu.org>
53700
53701         * config/config.guess: update from prep.
53702
53703 2002-12-11  Bruno Haible  <bruno@clisp.org>
53704
53705         * m4/setenv.m4: New file, from gettext-0.11.5.
53706
53707 2002-12-11  Bruno Haible  <bruno@clisp.org>
53708
53709         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
53710         not unsetenv().
53711         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
53712         modifications:
53713
53714         2002-12-11  Bruno Haible  <bruno@clisp.org>
53715
53716                 * setenv.c (alloca): Fall back to malloc.
53717                 (freea): New macro.
53718                 (setenv): Use freea() to free memory allocated with alloca().
53719
53720         2002-11-13  Bruno Haible  <bruno@clisp.org>
53721
53722                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
53723                 function declarations.
53724                 * unsetenv.c (unsetenv): Likewise.
53725
53726         2002-03-04  Bruno Haible  <bruno@clisp.org>
53727
53728                 Portability to AIX 4.3.3.
53729                 * unsetenv.c: New file, extracted from setenv.c.
53730                 * setenv.c: Move the unsetenv() function to unsetenv.c.
53731
53732         2001-12-20  Bruno Haible  <bruno@clisp.org>
53733
53734                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
53735                 use malloc instead. For SunOS 4.
53736
53737         2001-12-11  Bruno Haible  <bruno@clisp.org>
53738
53739                 * setenv.c: Declare alloca.
53740                 (compar_fn_t): New typedef.
53741                 (KNOWN_VALUE, STORE_VALUE): Use it.
53742
53743         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
53744         setenv.h.
53745
53746 2002-12-10  Paul Eggert  <eggert@twinsun.com>
53747
53748         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
53749         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
53750         Choose values that are less likely to collide with system fnmatch
53751         options.
53752         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
53753         defined (e.g., a pure POSIX system).
53754         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
53755         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
53756
53757 2002-12-06  Paul Eggert  <eggert@twinsun.com>
53758
53759         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
53760         a pain in practice to deal with generated m4 files.  This change
53761         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
53762
53763         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
53764         and jm-glibc-io.m4, as they are no longer a special case.
53765         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
53766         kludge and the auto-generation stuff.  Check only whether the
53767         functions are declared, not whether they exist, since older hosts
53768         that don't declare the functions can't use the optimization anyway.
53769
53770 2002-12-06  Jim Meyering  <jim@meyering.net>
53771
53772         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
53773
53774         Merge in changes from libc's misc/error.c, in preparation
53775         for the merge of gnulib's changes back into libc.
53776
53777         * lib/error.c (_): Define only if not already defined.
53778         Move definition to follow all #include directives.
53779         Include unlocked-io.h only if !_LIBC.
53780         [_LIBC]: Include <libio/libioP.h>.
53781         [USE_IN_LIBIO]: Include <libio/iolibio.h>
53782         (fflush): Tweak definition to use INTUSE.
53783         (putc): Define.
53784
53785 2002-12-05  Paul Eggert  <eggert@twinsun.com>
53786
53787         * lib/alloca.c [defined emacs]: Include "lisp.h".
53788         (xalloc_die) [defined emacs]: New macro.
53789         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
53790         [! defined emacs]: Include <xalloc.h>.
53791         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
53792         (pointer): Typedef to POINTER_TYPE *.
53793         (malloc): Remove decl; we now always use xmalloc.
53794         (alloca): Use old-style definition, since Emacs needs this.
53795         Check for arithmetic overflow when computing combined size.
53796
53797 2002-12-04  Paul Eggert  <eggert@twinsun.com>
53798
53799         Do not generate unlocked-io.h automatically, since it's easier to
53800         maintain it by hand.
53801
53802         * lib/unlocked-io.h: New file, from GNU diffutils,
53803         but with proper copyright notice and attribution.
53804         * lib/gen-uio: Remove.
53805         * lib/Makefile.am: Add copyright notice.
53806         (libfetish_a_SOURCES): Add unlocked-io.h.
53807         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
53808         (DISTCLEANFILES, io_functions): Remove macros.
53809         (EXTRA_DIST): Remove gen_uio.
53810         (unlocked-io.h): Remove rule.
53811
53812 2002-12-04  Jim Meyering  <jim@meyering.net>
53813
53814         Reflect the fact that stat.c and lstat.c are no longer generated.
53815         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
53816         (DISTCLEANFILES): Likewise.
53817         (EXTRA_DIST): Likewise.
53818         (all_local): Don't depend on stat.c or lstat.c.
53819         (stat.c, lstat.c): Remove rules.
53820         (EXTRA_DIST): Remove xstat.in.
53821
53822         * lib/xstat.in: Remove file.  Contents moved into stat.c.
53823         * lib/stat.c: New file.  Contents mostly from xstat.in.
53824         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
53825         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
53826
53827         * lib/safe-read.c: Rework so that it may serve to define safe_write,
53828         too.
53829         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
53830
53831 2002-12-03  Jim Meyering  <jim@meyering.net>
53832
53833         * lib/safe-read.c, safe-write.c: Change variable names and comments,
53834         but not semantics, to minimize the differences between these two files.
53835         (safe_read): Change comment to mention SAFE_READ_ERROR.
53836
53837         * lib/safe-read.c (IS_EINTR): Define.
53838         (safe_read): Use IS_EINTR in place of in-function cpp directives.
53839
53840 2002-12-02  Jim Meyering  <jim@meyering.net>
53841
53842         * lib/safe-read.c (EINTR): Define.
53843         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
53844         (INT_MAX): Provide fallback.
53845         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
53846
53847         * lib/safe-read.h (SAFE_READ_ERROR): Define.
53848
53849 2002-12-02  Bruno Haible  <bruno@clisp.org>
53850
53851         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
53852         Define, taken from safe-read.c.
53853         (INT_MAX): Provide fallback.
53854         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
53855         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
53856
53857         * lib/safe-read.c (EINTR): Remove definition.
53858         (safe_read): Don't use EINTR if it is absent.
53859
53860 2002-12-01  Jim Meyering  <jim@meyering.net>
53861
53862         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
53863         zero.
53864         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
53865
53866 2002-11-27  Paul Eggert  <eggert@twinsun.com>
53867
53868         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
53869         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
53870         with `if (! (value < limit)) abort ();', for readability.
53871
53872 2002-11-26  Karl Berry  <karl@gnu.org>
53873
53874         * lib/strdup.c: copy from libc again, with jim's ok.
53875         * lib/.cppi-disable: re-add strdup.c
53876
53877 2002-11-25  Karl Berry  <karl@gnu.org>
53878
53879         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
53880         instead of "strtol.c".
53881
53882 2002-11-25  Karl Berry  <karl@gnu.org>
53883
53884         * config/install-sh: update from automake for variable quoting, $0 in
53885         error msgs, etc.
53886
53887         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
53888         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
53889         entry.
53890
53891 2002-11-25  Jim Meyering  <jim@meyering.net>
53892
53893         * lib/mktime.c: Sync from libc, now that it has the latest fix.
53894
53895 2002-11-24  Karl Berry  <karl@gnu.org>
53896
53897         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
53898         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
53899
53900 2002-11-24  Jim Meyering  <jim@meyering.net>
53901
53902         Update from coreutils:
53903
53904         * lib/mktime.c: Merge in changes from libc.
53905
53906         Avoid a link-time failure on some Linux systems.
53907         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
53908         (otherwise).
53909         (__mon_yday): Declare with the STATIC attribute.
53910         (__mktime_internal): Likewise.
53911         Based on a report from Greg Schafer.
53912
53913 2002-11-23  Jim Meyering  <jim@meyering.net>
53914
53915         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
53916         Use `unsigned', not `int', as type of index.
53917
53918         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
53919
53920         * lib/fsusage.c: Remove unneeded parentheses around operands of
53921         `defined'.
53922
53923 2002-11-22  Paul Eggert  <eggert@twinsun.com>
53924
53925         * lib/quotearg.h: Allow multiple inclusion by surrounding with
53926         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
53927         so that we can be included first.
53928         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
53929         * lib/quotearg.c: Include quotearg.h immediately after config.h.
53930         No need to include stddef.h or sys/types.h any more.
53931         Surround local include files with "", not "<>".
53932         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
53933         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
53934         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
53935         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
53936         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
53937         (ISPRINT): Remove; no longer needed now that we assume C89.
53938
53939         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
53940         Preserve errno.
53941
53942         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
53943         quotearg_char): Use SIZE_MAX rather than
53944         (size_t) -1 when we are talking about "infinity".
53945
53946         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
53947
53948 2002-11-22  Paul Eggert  <eggert@twinsun.com>
53949
53950         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
53951         hint that one should use `if (! x) abort ();' rather than `assert
53952         (x);', and anyway it's one less thing to worry about configuring.
53953         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
53954         hash_rehash, hash_insert): Use abort rather than assert.
53955
53956 2002-11-22  Bruno Haible  <bruno@clisp.org>
53957
53958         * lib/safe-read.h: Assume C89. Add comments.
53959         (safe_read): Change return type to size_t.
53960         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
53961         byte counts > SSIZE_MAX correctly.
53962         * lib/safe-write.h: New file.
53963         * lib/safe-write.c: New file.
53964         * lib/full-read.h: New file.
53965         * lib/full-read.c: New file.
53966         * lib/full-write.h: Assume C89. Add comments.
53967         * lib/full-write.c: Include safe-write.h.
53968         (full_write): Rewritten to use safe_write.
53969         Suggested by Jim Meyering and Paul Eggert.
53970
53971 2002-11-21  Jim Meyering  <jim@meyering.net>
53972
53973         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
53974
53975         Merge in changes from the coreutils.
53976
53977         2002-09-25  Paul Eggert  <eggert@twinsun.com>
53978         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
53979         <stdint.h>.
53980         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
53981         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
53982         int.  Work more efficiently if X is the same width as uintmax_t.
53983         Do not compare X to -1, to avoid bogus compiler warning.
53984         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
53985         Don't assume that f_frsize and f_bsize are the same type.
53986
53987         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
53988         warning on FreeBSD.
53989
53990         * lib/makepath.c (make_path): Restore umask *before* creating the final
53991         component.
53992         (make_path): Minor reformatting.
53993
53994         * lib/xmalloc.c: Adjust to work with new autoconf macros,
53995         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
53996         HAVE_MALLOC/HAVE_REALLOC.
53997
53998         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
53999         dummy ones.  At least on GNU/Linux systems, `auto' means something
54000         else.
54001         From Michael Stone.
54002
54003 2002-11-21  Bruno Haible  <bruno@clisp.org>
54004
54005         Remove case insensitive option matching.
54006         * lib/argmatch.h (argcasematch): Remove declaration.
54007         (ARGCASEMATCH): Remove macro.
54008         (__xargmatch_internal): Remove case_sensitive argument.
54009         (XARGMATCH): Update.
54010         (XARGCASEMATCH): Remove macro.
54011         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
54012         case_sensitive argument.
54013         (argcasematch): Remove function.
54014         (__xargmatch_internal): Remove case_sensitive argument.
54015         (main): Use XARGMATCH instead of XARGCASEMATCH.
54016
54017         * lib/xmalloc.c: Change compile-time error message. Add comment about
54018         required autoconf version.
54019
54020 2002-11-20  Paul Eggert  <eggert@twinsun.com>
54021
54022         Merge argmatch cleanups from Bison.  Assume C89.
54023
54024         * lib/argmatch.c: Include config.h here, not in argmatch.h.
54025         Include stdlib.h, for EXIT_FAILURE.
54026         Always include <string.h>, since we assume C89.
54027         (EXIT_FAILURE): Remove pre-C89 bug workaround.
54028         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
54029         Include <stddef.h> instead, since it's all we need for size_t.
54030         (PARAMS): Remove.  All uses removed.
54031         (ARRAY_CARDINALITY): Do not bother to #undef.
54032         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
54033         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
54034         Remove unnecessary parentheses.
54035         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
54036         Insert necessary parentheses.
54037         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
54038         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
54039
54040 2002-11-19  Bruno Haible  <bruno@clisp.org>
54041
54042         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
54043         * lib/mbswidth.h: Include <stddef.h>, for size_t.
54044
54045         * lib/mbswidth.h (PARAMS): Remove macro.
54046         (mbswidth, mbsnwidth): Use ANSI C function declarations.
54047         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
54048
54049         * lib/gcd.h (PARAMS): Remove macro.
54050         (gcd): Use ANSI C function declarations.
54051         * lib/gcd.c (gcd): Likewise.
54052
54053 2002-11-15  Bruno Haible  <bruno@clisp.org>
54054
54055         * lib/strcspn.c: Include <stddef.h>.
54056         (strcspn): Use ANSI C function declaration. Change return type to
54057         size_t. Use NULL.
54058         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
54059         (strpbrk): Use NULL.
54060         * lib/strpbrk.h (PARAMS): Remove macro.
54061         (strpbrk): Use ANSI C function declaration.
54062         * lib/strstr.c: Don't include <sys/types.h>.
54063         * lib/strstr.h (PARAMS): Remove macro.
54064         (strstr): Use ANSI C function declarations.
54065
54066 2002-11-14  Karl Berry  <karl@gnu.org>
54067
54068         * config/mkinstalldirs: `do' on separate line, instead of
54069         `for var; do'.
54070
54071 2002-11-06  Bruno Haible  <bruno@clisp.org>
54072
54073         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
54074         * lib/gcd.c (gcd): Likewise.
54075
54076 2002-11-05  Bruno Haible  <bruno@clisp.org>
54077
54078         * lib/gcd.h: New file, from gettext-0.11.5.
54079         * lib/gcd.c: New file, from gettext-0.11.5.
54080
54081 2002-11-05  Bruno Haible  <bruno@clisp.org>
54082
54083         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54084         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54085         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54086         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54087
54088         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
54089         <libintl.h>.
54090         * lib/makepath.c: Include gettext.h instead of <locale.h> and
54091         <libintl.h>.
54092
54093         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
54094         * lib/human.c: Include gettext.h instead of <libintl.h>.
54095         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
54096         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
54097         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
54098         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
54099         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
54100         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
54101         (textdomain): Remove definition.
54102         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
54103
54104         * lib/long-options.c: Remove include of <libintl.h> and definition of
54105         _.
54106         * lib/same.c: Remove include of <libintl.h> and definition of _.
54107
54108 2002-11-04  Owen Taylor  <otaylor@redhat.com>
54109
54110         * lib/config.charset: A few additions for Solaris.
54111
54112 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
54113
54114         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
54115         * lib/localcharset.c (locale_charset): Declare as extern "C".
54116
54117 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
54118
54119         * lib/config.charset: msdos in uk_UA uses CP1125.
54120
54121 2002-11-04  Bruno Haible  <bruno@clisp.org>
54122
54123         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
54124         * lib/strcase.h: New file, from GNU gettext-0.11.5.
54125         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
54126         * lib/strstr.h: New file, from GNU gettext-0.11.5.
54127         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
54128
54129 2002-11-04  Bruno Haible  <bruno@clisp.org>
54130
54131         * lib/localcharset.c (locale_charset): Don't return an empty string.
54132
54133 2002-11-04  Bruno Haible  <bruno@clisp.org>
54134
54135         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
54136         aliases.
54137
54138 2002-11-04  Bruno Haible  <bruno@clisp.org>
54139
54140         * lib/config.charset: Update for newest glibc. Add canonical names
54141         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
54142
54143 2002-11-04  Bruno Haible  <bruno@clisp.org>
54144
54145         * lib/config.charset: Add support for NetBSD.
54146
54147 2002-11-04  Bruno Haible  <bruno@clisp.org>
54148
54149         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
54150
54151 2002-11-01  Bruno Haible  <bruno@clisp.org>
54152
54153         * configure.in: Add AC_CONFIG_AUX_DIR call.
54154         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
54155         test/Makefile.
54156         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
54157
54158 2002-09-28  Karl Berry  <karl@gnu.org>
54159
54160         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
54161         installed automake until the next release, since changes have been
54162         made.
54163
54164 2002-09-25  Karl Berry  <karl@gnu.org>
54165
54166         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
54167         * lib/getopt*: copy from libc/posix.
54168         * lib/gettext.h: copy from gettext.
54169         * lib/.cppi-disable: add strdup.c, gettext.h.
54170
54171 2002-09-25  Karl Berry  <karl@gnu.org>
54172
54173         * config/srclist.txt: enable gettext.h check.
54174         * config/config.{guess,sub}: update from prep.
54175         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
54176                 from automake 1.6.3.
54177         See srclist*.
54178
54179 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
54180
54181         * regex.c (PATFETCH): Remove the translating fetch.
54182         (PATFETCH_RAW): Rename to PATFETCH.
54183         (set_image_of_range): New fun.
54184         (SET_RANGE_TABLE_WORK_AREA): Use it.
54185         (regex_compile): Don't translate the pattern chars so eagerly.
54186         Only do it when inserting an `exactn' bytecode or when handling
54187         a char-range.
54188         (mutually_exclusive_p): Avoid empty statement.
54189
54190 2002-07-06  Jim Meyering  <meyering@lucent.com>
54191
54192         * m4/README: Don't mention Makefile.am.in.
54193         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
54194
54195 2002-07-01  Jim Meyering  <meyering@lucent.com>
54196
54197         * lib/c-stack.c: Include sys/time.h.
54198         From Volker Borchert.
54199
54200 2002-06-26  Paul Eggert  <eggert@twinsun.com>
54201
54202         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
54203
54204 2002-06-26  Paul Eggert  <eggert@twinsun.com>
54205
54206         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
54207         New macro.  Use it uniformly instead of
54208         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
54209         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
54210         reported by Vin Shelton.
54211
54212 2002-06-22  Paul Eggert  <eggert@twinsun.com>
54213
54214         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
54215         Do not assume SA_SIGINFO behavior.
54216         Bug reported by Jim Meyering on NetBSD 1.5.2.
54217
54218 2002-06-22  Jim Meyering  <meyering@lucent.com>
54219
54220         * m4/c-stack.m4: New file, from diffutils-2.8.2.
54221         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
54222
54223         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
54224         now that configure.ac uses AC_GNU_SOURCE.
54225         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
54226         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
54227
54228         Update to latest tools.  Suggestions from Paul Eggert.
54229         * m4/stdbool.m4: New file, from diffutils-2.8.2.
54230         * m4/gnu-source.m4: Update from diffutils-2.8.2.
54231         * m4/fnmatch.m4: Likewise.
54232         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
54233         to AC_HEADER_STDBOOL
54234
54235 2002-06-22  Jim Meyering  <meyering@lucent.com>
54236
54237         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
54238         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
54239
54240 2002-06-22  Jim Meyering  <meyering@lucent.com>
54241
54242         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
54243
54244         * lib/exitfail.c, exitfail.h: Likewise.
54245         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
54246
54247         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
54248         of fnmatch.h.
54249         (EXTRA_DIST): Add fnmatch_loop.c.
54250         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
54251
54252         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
54253         * lib/fnmatch.c: Update from diffutils-2.8.2.
54254         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
54255         * lib/fnmatch.h: Remove file.
54256
54257 2002-06-21  Jim Meyering  <meyering@lucent.com>
54258
54259         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
54260         * m4/mbrtowc.m4: Likewise.
54261
54262         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
54263         * m4/mbswidth.m4: Reflect name change:
54264         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
54265         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
54266
54267         * m4/lib-link.m4: Update from gettext-0.11.2.
54268         * m4/gettext.m4: Likewise.
54269
54270         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
54271         From Alfred M. Szmidt.
54272
54273 2002-06-18  Paul Eggert  <eggert@twinsun.com>
54274
54275         * lib/file-type.h: Report an error if neither S_ISREG nor
54276         S_IFREG is defined, instead of using a test specific to glibc
54277         2.2.  This should be safe, since POSIX requires S_ISREG and
54278         Unix Version 7 had S_IFREG.  We don't need to check for
54279         <sys/types.h> since we don't use any symbols that it defines.
54280
54281 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
54282
54283         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
54284         $@-t, so that each temporary file name is unique and valid in the first
54285         8 characters, for operation under DOS.
54286
54287 2002-06-15  Paul Eggert  <eggert@twinsun.com>
54288
54289         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
54290
54291 2002-06-15  Jim Meyering  <meyering@lucent.com>
54292
54293         Work even with DJGPP 2.03, which lacks support for symlinks.
54294         From Richard Dawe.
54295         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
54296         is defined.
54297         * lib/lchown.c (S_ISLNK): Likewise.
54298
54299 2002-06-15  Jim Meyering  <meyering@lucent.com>
54300
54301         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
54302         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
54303         have been included before this file.
54304
54305 2002-06-14  Jim Meyering  <meyering@lucent.com>
54306
54307         * lib/file-type.h: Use the version from diffutils-2.8.2.
54308         * lib/file-type.c: Likewise.
54309
54310 2002-06-07  Jim Meyering  <meyering@lucent.com>
54311
54312         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
54313         They're needed at least for NetBSD 1.5.2.
54314         ($statxfs_includes): Include those same headers.
54315         ($statxfs_includes): Include sys/vfs.h if available.
54316         ($statxfs_includes): Likewise for sys/statvfs.h.
54317         Check for the following members in both structs statfs and statvfs:
54318         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
54319
54320 2002-06-01  Jim Meyering  <meyering@lucent.com>
54321
54322         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
54323         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
54324
54325 2002-05-28  Jim Meyering  <meyering@lucent.com>
54326
54327         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
54328         Reported by Volker Borchert.
54329
54330 2002-05-27  Jim Meyering  <meyering@lucent.com>
54331
54332         Fix a problem seen only on nonconforming systems whereby ls.c's
54333         use of localtime, and then of gettimeofday would cause trouble:
54334         the localtime call used to initialize rpl_gettimeofday's save
54335         mechanism would clobber ls's current local time information so
54336         that in any long listing the first file would always be listed
54337         with date 1970-01-01.  Analysis by Volker Borchert.
54338
54339         * lib/gettimeofday.c (localtime): Undefine.
54340         (rpl_localtime): New function.
54341
54342 2002-05-27  Jim Meyering  <meyering@lucent.com>
54343
54344         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
54345         localtime.
54346
54347         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
54348         use the replacement function; it wouldn't resolve at link time.
54349         Reported by Volker Borchert.
54350
54351 2002-05-22  Jim Meyering  <meyering@lucent.com>
54352
54353         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
54354         file-type.h.
54355         * lib/file-type.h: New file.
54356         * lib/file-type.c (file_type): New file/function.  Extracted from
54357         diffutils.
54358
54359 2002-04-30  Jim Meyering  <meyering@lucent.com>
54360
54361         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
54362
54363 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54364
54365         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
54366
54367 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54368
54369         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
54370         Do not check for alloca.h (no longer used) or stdbool.h (was never
54371         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
54372
54373 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54374
54375         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
54376
54377 2002-04-29  Jim Meyering  <meyering@lucent.com>
54378
54379         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
54380         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
54381         Use AC_FUNC_STRNLEN here instead.
54382
54383         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
54384         With autoconf-2.53a, it's part of AC_PROG_CC.
54385
54386 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54387
54388         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
54389         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
54390
54391 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54392
54393         * lib/sig2str.h, lib/sig2str.c: New files.
54394         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
54395
54396 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54397
54398         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
54399         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
54400         of 127, since 64 is the largest conceivable number for ancient
54401         nonstandard hosts.
54402         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
54403
54404 2002-04-28  Jim Meyering  <meyering@lucent.com>
54405
54406         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
54407
54408 2002-04-24  Jim Meyering  <meyering@lucent.com>
54409
54410         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
54411         (jm_PREREQ): Use it.
54412
54413         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
54414         mach/mach.h fcntl.h.
54415         Check for this function: setlocale.
54416
54417 2002-04-24  Jim Meyering  <meyering@lucent.com>
54418
54419         * lib/gettext.h: New file, from Gettext.
54420         * lib/Makefile.am (INCLUDES): Remove -I../intl.
54421         (libfetish_a_SOURCES): Add gettext.h.
54422
54423 2002-04-16  Jim Meyering  <meyering@lucent.com>
54424
54425         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
54426         ut_pid, ut_id, ut_exit.
54427
54428 2002-04-16  Jim Meyering  <meyering@lucent.com>
54429
54430         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
54431         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
54432         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
54433
54434 2002-04-12  Jim Meyering  <meyering@lucent.com>
54435
54436         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
54437         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
54438         existence of the getmntinfo function.  Needed for Darwin 5.3.
54439
54440         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
54441         This is necessary at least on Darwin 5.3.
54442
54443         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
54444         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
54445         strnlen.o in the library, and that makes some versions of ranlib
54446         object.
54447
54448 2002-04-12  Jim Meyering  <meyering@lucent.com>
54449
54450         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
54451
54452 2002-04-09  Jim Meyering  <meyering@lucent.com>
54453
54454         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
54455         to be more precise.  Rather than saying we're checking whether the
54456         function `works', say what we're testing.
54457         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
54458         Reported by Bruno Haible.
54459
54460 2002-03-10  Jim Meyering  <meyering@lucent.com>
54461
54462         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
54463         Suggestion from Santiago Vila.
54464
54465 2002-03-08  Jim Meyering  <meyering@lucent.com>
54466
54467         * lib/rename.c: Mention that this wrapper is needed also on
54468         mips-dec-ultrix4.4 systems.
54469
54470 2002-03-02  Jim Meyering  <meyering@lucent.com>
54471
54472         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
54473         not HAVE_CLOCK_SETTIME.
54474
54475 2002-02-27  Paul Eggert  <eggert@twinsun.com>
54476
54477         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
54478         Check for clock_settime.
54479
54480 2002-02-27  Paul Eggert  <eggert@twinsun.com>
54481
54482         * lib/nanosleep.h: Rename to....
54483         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
54484
54485         * lib/gettime.c: New file.
54486         * lib/settime.c: New file.
54487         * lib/stime.c: Remove.
54488
54489         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
54490         timespec.h.  Remove nanosleep.h.
54491
54492 2002-02-25  Paul Eggert  <eggert@twinsun.com>
54493
54494         * m4/acl.m4: New file.
54495         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
54496         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
54497
54498 2002-02-25  Paul Eggert  <eggert@twinsun.com>
54499
54500         * lib/acl.c, lib/acl.h: New files.
54501         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
54502
54503 2002-02-24  Jim Meyering  <meyering@lucent.com>
54504
54505         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
54506         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
54507         cause trouble.  Reported by Nelson Beebe.
54508
54509 2002-02-23  Paul Eggert  <eggert@twinsun.com>
54510
54511         * lib/path-concat.c (xpath_concat): Reorder code to pacify
54512         compilers that don't know that xalloc_die never returns.
54513
54514 2002-02-20  Jim Meyering  <meyering@lucent.com>
54515
54516         * lib/getdate.c: Regenerate using bison-1.33.
54517
54518 2002-02-17  Jim Meyering  <meyering@lucent.com>
54519
54520         * config/config.guess (main): Don't use `head -1'; it's no longer
54521         portable. Use `sed 1q' instead.
54522
54523 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
54524
54525         * m4/codeset.m4: Upgrade to gettext-0.11.
54526         * m4/gettext.m4: Upgrade to gettext-0.11.
54527         * m4/glibc21.m4: Upgrade to gettext-0.11.
54528         * m4/iconv.m4: Upgrade to gettext-0.11.
54529         * m4/isc-posix.m4: Upgrade to gettext-0.11.
54530         * m4/lcmessage.m4: Upgrade to gettext-0.11.
54531         * m4/lib-ld.m4: New file, from gettext-0.11.
54532         * m4/lib-link.m4: New file, from gettext-0.11.
54533         * m4/lib-prefix.m4: New file, from gettext-0.11.
54534         * m4/progtest.m4: Upgrade to gettext-0.11.
54535
54536 2002-02-15  Paul Eggert  <eggert@twinsun.com>
54537
54538         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
54539         (jm_PREREQ): Use it.
54540
54541 2002-02-15  Paul Eggert  <eggert@twinsun.com>
54542
54543         * lib/posixver.c, lib/posixver.h: New files.
54544         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
54545
54546 2002-02-02  Paul Eggert  <eggert@twinsun.com>
54547             Bruno Haible  <bruno@clisp.org>
54548
54549         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
54550         (fwrite_success_callback): New declaration.
54551         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
54552         print_unicode_char. Call failure callback instead of error.
54553         (fwrite_success_callback): New function.
54554         (exit_failure_callback): New function.
54555         (fallback_failure_callback): New function.
54556         (print_unicode_char): Call unicode_to_mb.
54557
54558 2002-01-26  Jim Meyering  <meyering@lucent.com>
54559
54560         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
54561         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
54562
54563 2002-01-26  Jim Meyering  <meyering@lucent.com>
54564
54565         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
54566
54567 2002-01-22  Paul Eggert  <eggert@twinsun.com>
54568
54569         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
54570
54571 2002-01-22  Jim Meyering  <meyering@lucent.com>
54572
54573         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
54574         Otherwise, some versions of automake would omit the rule that makes
54575         Makefile from Makefile.in.
54576
54577 2002-01-21  Paul Eggert  <eggert@twinsun.com>
54578
54579         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
54580         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
54581         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
54582         (memcoll): Set errno to zero if there is no error.
54583
54584         * lib/quotearg.c (quotearg_buffer_restyled):
54585         Fix bug with quoting buffers containing NUL when backslashing escapes.
54586         This bug was exposed by the other changes in this patch.
54587         (quotearg_n_options): New arg ARGSIZE.
54588         All callers changed.
54589         (quoting_options_from_style): New function.
54590         (quotearg_n_style): Use it.
54591         (quotearg_n_style_mem): New function.
54592
54593         * lib/quotearg.h (quotearg_n_style_mem): New function.
54594
54595 2002-01-19  Jim Meyering  <meyering@lucent.com>
54596
54597         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
54598         Remove useless quotes: DF_PROG="df".
54599         * m4/strnlen.m4: New file.
54600
54601 2002-01-16  Paul Eggert  <eggert@twinsun.com>
54602
54603         * lib/backupfile.c (ISDIGIT): Comment fix.
54604         * lib/getdate.y (ISDIGIT): Likewise.
54605         * lib/posixtm.c (ISDIGIT, year): Likewise.
54606         * lib/strverscmp.c (ISDIGIT): Likewise.
54607         * lib/userspec.c (ISDIGIT): Likewise.
54608
54609 2002-01-16  Jim Meyering  <meyering@lucent.com>
54610
54611         * lib/getdate.y: Add three semicolons, each just before a closing
54612         brace. Bison (as of version 1.31) no longer papers over that mistake.
54613
54614 2002-01-05  Jim Meyering  <meyering@lucent.com>
54615
54616         * lib/version-etc.c (version_etc_copyright): Update copyright year.
54617
54618 2001-12-19  Paul Eggert  <eggert@twinsun.com>
54619
54620         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
54621         not silently exit merely because the output buffer happens to
54622         have nothing pending.
54623
54624 2001-12-18  Paul Eggert  <eggert@twinsun.com>
54625
54626         See the big note in ../ChangeLog.
54627         * lib/human.c (suffixes): Prefer K to k for 1024.
54628         (generate_suffix_backwards): New function.
54629         (human_readable_inexact): Use it.
54630         * lib/xstrtol.c (__xstrtol): If there is no number but there
54631         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
54632         Accept 'K' as well as 'k'.
54633
54634 2001-12-15  Jim Meyering  <meyering@lucent.com>
54635
54636         * lib/regex.h (__restrict_arr): Update from libc.
54637
54638         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
54639         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
54640         (STREQ): Define.
54641
54642 2001-12-14  Jim Meyering  <meyering@lucent.com>
54643
54644         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
54645         Suggestion from Bruno Haible.
54646
54647 2001-12-10  Jim Meyering  <meyering@lucent.com>
54648
54649         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
54650         xrealloc, Instead, include "xalloc.h".
54651         (initbuffer): Don't cast xmalloc return value to char*.
54652         (readline): Reword comment.
54653         Don't cast xrealloc return value to char*
54654         Return NULL, not 0.
54655
54656 2001-12-09  Jim Meyering  <meyering@lucent.com>
54657
54658         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
54659         about `signed and unsigned type in conditional expression'.
54660         * lib/posixtm.c (posix_time_parse): Likewise.
54661
54662         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
54663
54664         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
54665         to avoid a pedantic warning.
54666
54667         * lib/getstr.c: Don't include assert.h.
54668         (getstr): Remove warning-evoking assertions.
54669         Return -1 if offset parameter is out of bounds.
54670         Change the type of a local from int to size_t.
54671
54672         * lib/strftime.c (my_strftime_localtime_r): Include this function
54673         definition in the `#if ! HAVE_TM_GMTOFF' block.
54674
54675         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
54676         Include xalloc.h instead.
54677
54678 2001-12-02  Jim Meyering  <meyering@lucent.com>
54679
54680         * lib/tempname.c: Don't declare getenv, thus reverting the change of
54681         2001-11-18.  It's no longer necessary, now that stdlib.h is always
54682         included.
54683
54684         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
54685         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
54686
54687 2001-11-30  Akim Demaille  <akim@epita.fr>
54688
54689         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
54690         before being defined.
54691
54692 2001-11-27  Paul Eggert  <eggert@twinsun.com>
54693
54694         * lib/quotearg.h (quotearg_n, quotearg_n_style):
54695         First arg is int, not unsigned.
54696         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
54697         (SIZE_MAX, UINT_MAX): New macros.
54698         (quotearg_n_options): Abort if N is negative.
54699         Avoid overflow check on hosts where size_t is 64 bits and int
54700         is 32 bits, as overflow is impossible there.
54701         Fix off-by-one typo that caused unnecessary reallocation.
54702
54703 2001-11-27  Jim Meyering  <meyering@lucent.com>
54704
54705         * lib/tempname.c: Merge with version from libc.
54706         * lib/regex.c: Likewise.
54707
54708         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
54709         systems for which STDC_HEADERS is 0, it was not included, resulting in
54710         a warning about an integer-to-pointer conversion problem with getenv.
54711         Reported by Volker Borchert.
54712
54713 2001-11-26  Jim Meyering  <meyering@lucent.com>
54714
54715         * lib/gtod.h: Remove file.
54716         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
54717         * lib/gettimeofday.c: Don't include gtod.h.
54718         (GTOD_init): Remove function.
54719         (rpl_gettimeofday): Do its job here instead, rather than aborting.
54720         Suggestion from Volker Borchert.
54721
54722 2001-11-23  Jim Meyering  <meyering@lucent.com>
54723
54724         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
54725         it.
54726         * lib/hash.c (struct hash_table): Define it here instead.
54727
54728 2001-11-22  Jim Meyering  <meyering@lucent.com>
54729
54730         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
54731
54732 2001-11-20  Jim Meyering  <meyering@lucent.com>
54733
54734         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
54735         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
54736
54737 2001-11-19  Jim Meyering  <meyering@lucent.com>
54738
54739         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
54740         directory.  Use "conftestXXXXXX" as the template.
54741         Suggestion from Paul Eggert.
54742
54743         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
54744         immediately, so the test doesn't mistakenly hit the max-open-files
54745         limit.
54746
54747 2001-11-18  Paul Eggert  <eggert@twinsun.com>
54748
54749         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
54750         (TEMPORARIES): New macro.
54751         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
54752         removes an artificial limitation (e.g. HP-UX 10.20, where
54753         TMP_MAX is 17576).
54754
54755 2001-11-18  Jim Meyering  <meyering@lucent.com>
54756
54757         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
54758
54759 2001-11-18  Jim Meyering  <meyering@lucent.com>
54760
54761         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
54762         on SunOS 4.
54763
54764         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
54765         files will be created before anything else.
54766
54767 2001-11-17  Paul Eggert  <eggert@twinsun.com>
54768
54769         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
54770         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
54771
54772 2001-11-17  Jim Meyering  <meyering@lucent.com>
54773
54774         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
54775         Prompted by a report from Bob Proulx.
54776
54777         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
54778         Instead, require UTILS_FUNC_MKSTEMP.
54779
54780 2001-11-17  Jim Meyering  <meyering@lucent.com>
54781
54782         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
54783         Now, that's done as part of AC_FUNC_STRTOD.
54784
54785 2001-11-17  Jim Meyering  <meyering@lucent.com>
54786
54787         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
54788         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
54789         rather than group writable.  Patch by Juan F. Codagnone.
54790
54791         * lib/readtokens.c: Remove explicit declarations of xmalloc and
54792         xrealloc, Instead, include "xalloc.h".
54793
54794         * lib/mountlist.c: Include unlocked-io.h after all system headers.
54795         Remove explicit declarations of xmalloc, xrealloc,
54796         and xstrdup.  Instead, include "xalloc.h".
54797
54798         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
54799         unlocked-io.h.
54800         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
54801         Likewise.
54802         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
54803
54804         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
54805         Reported by Padraig Brady.
54806
54807         * lib/mkstemp.c: #undef mkstemp.
54808         Include config.h.
54809         (rpl_mkstemp): Rename from mkstemp.
54810         Protoize.
54811
54812 2001-11-16  Jim Meyering  <meyering@lucent.com>
54813
54814         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
54815         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
54816         determine the amount of total physical memory, use pstat_getstatic.
54817         HPUX-11 doesn't define _SC_PHYS_PAGES.
54818         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
54819         If sysconf couldn't be used to determine the amount of available
54820         physical memory, use both pstat_getstatic and pstat_getdynamic.
54821         Based on a patch from Bob Proulx.
54822
54823 2001-11-10  Jim Meyering  <meyering@lucent.com>
54824
54825         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
54826         (jm_PREREQ): Use it.
54827
54828 2001-11-09  Jim Meyering  <meyering@lucent.com>
54829
54830         * m4/jm-macros.m4: Require autoconf-2.52f.
54831         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
54832         Use these AC_-prefixed names, not the AM_-prefixed ones.
54833
54834         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
54835
54836 2001-11-05  Jim Meyering  <meyering@lucent.com>
54837
54838         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
54839
54840 2001-11-04  Jim Meyering  <meyering@lucent.com>
54841
54842         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
54843         $DEFS.
54844
54845 2001-11-03  Jim Meyering  <meyering@lucent.com>
54846
54847         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
54848         of AC_DEFUN.
54849
54850         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
54851         know the name of the variable in the macro definition.
54852
54853 2001-11-03  Jim Meyering  <meyering@lucent.com>
54854
54855         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
54856         in argmatch_to_argument call.
54857
54858         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
54859         argument.
54860
54861         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
54862         e.g., a fault due to an attempt to free a NULL pointer.
54863
54864 2001-11-01  Jim Meyering  <meyering@lucent.com>
54865
54866         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
54867         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
54868
54869 2001-11-01  Jim Meyering  <meyering@lucent.com>
54870
54871         * lib/dirfd.c, lib/dirfd.h: New files.
54872         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
54873
54874         * lib/hash.c (hash_print) [TESTING]: Clean up.
54875
54876 2001-10-22  Paul Eggert  <eggert@twinsun.com>
54877
54878         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
54879         to avoid a warning if -Wall.
54880
54881 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
54882
54883         * README: New file
54884         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
54885         (per RMS's instructions, this is now the canonical source)
54886         * lgpl/, gpl/: New directories.
54887
54888 2001-10-21  Paul Eggert  <eggert@twinsun.com>
54889
54890         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
54891
54892 2001-10-21  Jim Meyering  <meyering@lucent.com>
54893
54894         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
54895         this code would end up calling gettext even in packages built
54896         with --disable-nls.
54897         * lib/getopt.c (_): Likewise.
54898         * lib/regex.c (_): Likewise.
54899
54900 2001-10-20  Paul Eggert  <eggert@twinsun.com>
54901
54902         * m4/error.m4 (jm_PREREQ_ERROR):
54903         Do not invoke AC_CHECK_FUNCS with strerror_r, as
54904         AC_FUNC_STRERROR_R does that.
54905         Check for strerror declaration.
54906
54907         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
54908         are supposed to have them these days.
54909         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
54910         Merge changes from latest Autoconf CVS.
54911         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
54912         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
54913         POSIX decided to standardize on the int flavor of strerror_r.
54914
54915 2001-10-20  Paul Eggert  <eggert@twinsun.com>
54916
54917         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
54918         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
54919         Use strerror_r that is only a macro, even if it is not a function.
54920         (strerror): Check for HAVE_DECL_STRERROR before declaring.
54921         (private_strerror): Use prototypes, not old-style function definition.
54922         (print_errno_message): New function.
54923         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
54924         char*-flavored one.
54925         (error_tail, error, error_at_line): Use it.
54926
54927 2001-10-11  Jim Meyering  <meyering@lucent.com>
54928
54929         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
54930         and quote_n (1, ... to avoid clobbering a buffer.
54931
54932 2001-10-05  Jim Meyering  <meyering@lucent.com>
54933
54934         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
54935         hash-pjw.h.
54936         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
54937         * lib/hash-pjw.h: New file.
54938
54939 2001-09-30  Jim Meyering  <meyering@lucent.com>
54940
54941         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
54942         `struct fsstat' has the `f_fstypename' member.
54943         Use that to define FS_TYPE, which is now used to make
54944         the getfsstat link test tighter.
54945
54946 2001-09-30  Jim Meyering  <meyering@lucent.com>
54947
54948         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
54949         Include <sys/ucred.h>, for Apple Darwin.
54950         Include sys/mount.h and sys/fs_types.h only if available.
54951         (FS_TYPE): Define.
54952         (read_filesystem_list): Use FS_TYPE.
54953
54954 2001-09-29  Paul Eggert  <eggert@twinsun.com>
54955
54956         * lib/exclude.c (excluded_filename): 0 -> false, since it's
54957         a boolean context.
54958
54959 2001-09-29  Jim Meyering  <meyering@lucent.com>
54960
54961         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
54962         [one-argument getmntent function]): Include stdio.h before mntent.h.
54963         SunOS 4.1.x needs it for the declaration of `FILE'.
54964         Patch by Volker Borchert.
54965
54966         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
54967         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
54968         sys/fs_types.h, and make the link-test for getfsstat guard #include
54969         directives with appropriate #if HAVE_*_H tests so that we can
54970         detect getfsstat on Apple Darwin1.3.7 systems.
54971         Reported by Nelson Beebe.
54972         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
54973
54974 2001-09-28  Paul Eggert  <eggert@twinsun.com>
54975
54976         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
54977         #defines strtoimax.  Also treat the other strto* functions
54978         like strtoimax.
54979
54980         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
54981         Check for strtoul and strtoumax,
54982         as those declarations are made even in the signed case.
54983         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
54984         Likewise, for strtol and strtoimax.
54985
54986 2001-09-28  Paul Eggert  <eggert@twinsun.com>
54987
54988         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
54989         #defines strtoimax.  Also treat the other strto* functions
54990         like strtoimax.
54991
54992         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
54993         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
54994         (strtoimax, strtoumax): Do not declare if already defined as a macro.
54995
54996 2001-09-26  Jim Meyering  <meyering@lucent.com>
54997
54998         Most macros in unlocked-io.h had the wrong number of arguments.
54999         * lib/gen-uio: New script.
55000         (USE_UNLOCKED_IO): Define to 1 if not already defined.
55001         * lib/unlocked-io.hin: Remove file.
55002         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
55003         rather than trying to embed it here.
55004         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
55005         Reported by Padraig Brady.
55006
55007 2001-09-25  Volker Borchert  <bt@teknon.de>
55008
55009         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
55010         `result'.
55011
55012 2001-09-24  Jim Meyering  <meyering@lucent.com>
55013
55014         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
55015
55016 2001-09-23  Jim Meyering  <meyering@lucent.com>
55017
55018         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
55019         instead of the mere test for existence of mntent.h.  The latter
55020         would get a false-positive on AIX 3.4 systems.
55021         In the outer getmntent if-block, don't die if neither of the getmntent
55022         tests succeeds.  Instead, just fall through and continue with the
55023         remaining tests.
55024
55025 2001-09-23  Jim Meyering  <meyering@lucent.com>
55026
55027         * lib/mountlist.c: Remove useless parentheses in #if directives.
55028         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
55029         the deprecated MOUNTED symbol is no longer defined in mntent.h.
55030
55031 2001-09-22  Jim Meyering  <meyering@lucent.com>
55032
55033         * m4/gettext.m4: New file.  From gettext.
55034         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
55035         * m4/progtest.m4: Likewise
55036         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
55037         * m4/glibc21.m4: Likewise.
55038
55039         * m4/libintl.m4: Remove.  No longer used.
55040
55041 2001-09-22  Jim Meyering  <meyering@lucent.com>
55042
55043         * lib/localcharset.c: Update from latest gettext.
55044         * lib/config.charset: Likewise.
55045
55046 2001-09-20  Jim Meyering  <meyering@lucent.com>
55047
55048         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
55049         strtoimax.
55050         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
55051         strtoumax.
55052
55053 2001-09-20  Jim Meyering  <meyering@lucent.com>
55054
55055         * lib/xstrtol.c (strtoimax): Guard declaration with
55056         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
55057         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
55058         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
55059         (strtoumax): Likewise, for completeness (it wasn't necessary).
55060
55061 2001-09-17  Paul Eggert  <eggert@twinsun.com>
55062
55063         * lib/strtoimax.c (HAVE_LONG_LONG):
55064         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
55065         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
55066         to work around bug in IBM C compiler.
55067
55068 2001-09-17  Jim Meyering  <meyering@lucent.com>
55069
55070         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
55071         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
55072         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
55073         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
55074         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
55075         whenever the right hand side need not be expanded by the shell.
55076
55077 2001-09-16  Paul Eggert  <eggert@twinsun.com>
55078
55079         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
55080         library.  It's not correct, as some older glibcs are buggy.
55081         fnmatch wasn't fixed until glibc 2.2.
55082
55083         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
55084         special shell magic here.
55085
55086 2001-09-16  Jim Meyering  <meyering@lucent.com>
55087
55088         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
55089         * m4/jm-macros.m4: Require it.
55090
55091 2001-09-16  Jim Meyering  <meyering@lucent.com>
55092
55093         * lib/mkdir.c: New file.
55094
55095 2001-09-15  Jim Meyering  <meyering@lucent.com>
55096
55097         * m4/jm-macros.m4: Check for help2man.
55098
55099 2001-09-11  Jim Meyering  <meyering@lucent.com>
55100
55101         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
55102         The body, by Paul Eggert, was moved here from configure.in.
55103         * m4/jm-macros.m4: Require UTILS_HOST_OS.
55104
55105 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55106
55107         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
55108         (jm_PREREQ): Use it.
55109
55110 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55111
55112         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
55113         Use ssize_t, not int, to store result of readlink.
55114         Check for ssize_t overflow as well as size_t overflow,
55115         as POSIX says the result of readlink is implementation-defined
55116         when ssize_t overflows.
55117         Remove unnecessary cast to char*.
55118         Use free+malloc instead of realloc, as the storage doesn't need
55119         to be preserved and it's clearer and can be more efficient that way.
55120         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
55121         * lib/xreadlink.h (xreadlink): Update prototype.
55122
55123 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55124
55125         * lib/xgetcwd.c: Revert some of the previous change; intead,
55126         fix the HAVE_GETCWD_NULL code to behave more like the
55127         !HAVE_GETCWD_NULL code used to.
55128
55129         Include "xalloc.h".
55130         (xgetcwd): Do not return NULL when memory is exhausted; instead,
55131         invoke xalloc_die.
55132
55133 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55134
55135         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
55136         sys/param.h, as pathmax.h includes them.
55137
55138 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55139
55140         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
55141         (jm_PREREQ_XGETCWD): New macro.
55142
55143         * m4/getcwd.m4: New file.
55144
55145 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55146
55147         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
55148         like the HAVE_GETCWD_NULL code.
55149         Include pathmax.h if not HAVE_GETCWD.
55150         Do not include xalloc.h.
55151         (INITIAL_BUFFER_SIZE): New symbol.
55152         Do not use xmalloc / xrealloc, since the caller is responsible for
55153         handling errors.  Preserve errno around `free' during failure.
55154         Do not overrun buffer when using getwd.
55155
55156 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55157
55158         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
55159         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
55160         getcwd (NULL, 0).
55161
55162 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55163
55164         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
55165         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
55166         spotted by Jim Meyering.
55167
55168 2001-09-03  Jim Meyering  <meyering@lucent.com>
55169
55170         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
55171         failure.
55172
55173 2001-09-02  Jim Meyering  <meyering@lucent.com>
55174
55175         * lib/error.c: Update from GNU libc.
55176
55177 2001-09-01  Jim Meyering  <meyering@lucent.com>
55178
55179         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
55180         Used by df.
55181
55182 2001-09-01  Jim Meyering  <meyering@lucent.com>
55183
55184         * lib/xreadlink.c: New file.
55185         * lib/xreadlink.h: New file.
55186         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
55187         xreadlink.h.
55188
55189         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
55190         doesn't conflict with sparc Solaris 7's definition in
55191         /usr/include/sys/int_types.h.
55192
55193         * lib/exclude.c: Use `""', not `<>' to #include non-system header
55194         files.
55195         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
55196         and strncasecmp as r-values.  Unixware didn't have declarations.
55197
55198 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55199
55200         * lib/xstrtol.h: Add copyright notice.
55201         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
55202         LONGINT_INVALID_SUFFIX_CHAR.
55203
55204 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55205
55206         * lib/xstrtol.c (strtoimax): New decl.
55207
55208 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55209
55210         * lib/xgetcwd.c: Don't include pathmax.h.
55211         Include stdlib.h and unistd.h if available.
55212         Include xalloc.h.
55213         (xmalloc, xstrdup, free): Remove decls.
55214         (xgetcwd): Don't assume sizes fit in unsigned.
55215         Check for overflow when computing sizes.
55216         Simplify reallocation code.
55217
55218 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55219
55220         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
55221         a directory's st_size can have an arbitrary value, so the old
55222         usage could waste an arbitrary amount of memory.  All uses
55223         changed.
55224         * lib/savedir.h: Update prototype.
55225
55226 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55227
55228         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
55229
55230         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
55231         old strtoimax.c.
55232
55233         Also, make the following further changes to make this file's
55234         configuration more similar to that of strtol.c:
55235         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
55236         (strtoumax, uintmax_t, strtoull, strtol): Remove.
55237         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
55238         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
55239         changed to signed values.
55240
55241         And make the following changes as well:
55242         Fix copyright notice, as 1999 was missing.
55243         (verify): New macro.
55244         (strtoimax): Check sizes at compile-time, not run-time.
55245         Prefer strtol to strtoll if both work.
55246         (main): Remove; it was not that useful and was a pain to maintain.
55247
55248         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
55249
55250 2001-08-31  Jim Meyering  <meyering@lucent.com>
55251
55252         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
55253         Use an initial, malloc'd, buffer of length 128 rather than
55254         a statically allocated one of length 1024.
55255
55256 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55257
55258         Simplify code, partly by assuming autoconf 2.52 semantics.
55259
55260         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
55261
55262         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
55263         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
55264         All uses removed.
55265         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
55266         Move AC_REQUIRE to next-to-top level, to avoid confusion.
55267         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
55268         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
55269         jm_AC_HEADER_INTTYPES_H.
55270         * m4/jm-macros.m4 (jm_MACROS): Likewise.
55271
55272         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
55273
55274         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
55275         Quote first arg of AC_DEFUN.
55276         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
55277         since they are needed to parse the include file even if we need
55278         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
55279         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
55280         but with opposite signedness.
55281
55282 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55283
55284         Merge 'exclude' changes from tar 1.13.22.
55285         This fixes one or two unlikely storage allocation overflow bugs,
55286         but doesn't change user-visible behavior otherwise.
55287
55288 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55289
55290         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
55291         (jm_PREREQ_EXCLUDE): New macro.
55292
55293 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55294
55295         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
55296         tm to be declared.
55297
55298 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55299
55300         * lib/hash.c: Remove '2001' from copyright notice.
55301
55302 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55303
55304         * lib/full-write.h: New file.
55305         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
55306         * lib/full-write.c: Correct credits, as cccp.c no longer
55307         exists and anyway it was so heavily changed from the old cccp
55308         code as to be unrecognizable.  Include full-write.h.
55309         (full_write) Return size_t, with short writes meaning failure.
55310         All callers changed.  This fixes a bug with large buffers
55311         on 64-bit hosts.
55312         * lib/utime.c: Include full-write.h.
55313
55314 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55315
55316         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
55317         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
55318         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
55319         Include if available.
55320         (<xalloc.h>): Include
55321         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
55322         (verify): New macro.  Use it to verify that EXCLUDE macros do not
55323         collide with FNM macros.
55324         (struct patopts): New struct.
55325         (struct exclude): Use it, as exclude patterns now come with options.
55326         (new_exclude): Support above changes.
55327         (new_exclude, add_exclude_file):
55328         Initial size must now be a power of two to simplify overflow checking.
55329         (free_exclude, fnmatch_no_wildcards): New function.
55330         (excluded_filename): No longer requires options arg, as the options
55331         are determined by add_exclude.  Now returns bool, not int.
55332         (excluded_filename, add_exclude):
55333         Add support for the fancy new exclusion options.
55334         (add_exclude, add_exclude_file): Now takes int options arg.
55335         Check for arithmetic overflow when computing sizes.
55336         (add_exclude_file): xrealloc might modify errno, so don't
55337         realloc until after errno might be used.
55338
55339         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
55340         New macros.
55341         (free_exclude): New decl.
55342         (add_exclude, add_exclude_file): Now takes int options arg.
55343         (excluded_filename): No longer requires options arg, as the options
55344         are determined by add_exclude.  Now returns bool, not int.
55345
55346 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55347
55348         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
55349
55350 2001-08-27  Jim Meyering  <meyering@lucent.com>
55351
55352         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
55353
55354         * lib/version-etc.c (N_): Remove definition.
55355         Revert most of last change.
55356         Instead, simply don't mark the `Copyright...' string for translation.
55357         Based on advice from Paul Eggert.
55358
55359         * lib/strtoxmax.c: Tweak comment.
55360
55361 2001-08-26  Jim Meyering  <meyering@lucent.com>
55362
55363         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
55364
55365         * m4/xstrtoimax.m4: New file.
55366         * m4/xstrtoumax.m4: Add comments explaining why we
55367         AC_REPLACE_FUNCS(strtol).
55368
55369 2001-08-26  Jim Meyering  <meyering@lucent.com>
55370
55371         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
55372         of copyright with `%s' so translators don't get an untranslated
55373         message in 2002.
55374         (COPYRIGHT_YEAR): Define.
55375         (version_etc): Use fprintf rather than fputs.
55376         Suggestion from Ulrich Drepper.
55377
55378         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
55379
55380         * lib/strtoll.c: New file, from GNU libc.
55381         * lib/xstrtoimax.c: New file.
55382
55383         * lib/xstrtol.h: Add xstrtoimax.
55384         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
55385         * lib/strtoimax.c: New file.  Likewise, but first define
55386         STRTOUXMAX_SIGNED.
55387
55388         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
55389         ...
55390         * lib/strtoxmax.c: ... then renamed to this.
55391
55392 2001-08-18  Paul Eggert  <eggert@twinsun.com>
55393
55394         * m4/inttypes.m4: Add AC_PREREQ(2.13).
55395         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
55396         (jm_AC_TYPE_INTMAX_T): New macro.
55397         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
55398
55399         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
55400
55401         * m4/longlong.m4: Renamed from ulonglong.m4.
55402         * m4/inttypes.m4: Renamed from inttypes_h.m4.
55403         * m4/uintmax_t.m4: Removed.
55404
55405 2001-08-13  Paul Eggert  <eggert@twinsun.com>
55406
55407         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
55408         Port to Solaris 8, where 'sed' requires a space after the 'r'
55409         command, and where sh dislikes "$/".  Clean up the spacing a bit.
55410         Redirect output to $tmp just once.
55411
55412 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
55413
55414         * lib/addext.c (<errno.h>): Include.
55415         (errno): Declare if not defined.
55416         (addext): Work correctly when pathconf returns -1 and leaves
55417         errno alone because there is no limit.  Also, work even if
55418         pathconf returns a value greater than SIZE_MAX.
55419
55420 2001-08-12  Jim Meyering  <meyering@lucent.com>
55421
55422         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
55423         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
55424         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
55425         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
55426         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
55427         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
55428         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
55429         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
55430         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
55431         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
55432         utime.m4, utimes.m4, xstrtoumax.m4:
55433         Quote the first argument in each use of AC_DEFUN.
55434
55435 2001-08-12  Jim Meyering  <meyering@lucent.com>
55436
55437         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
55438         Simply `return getcwd (NULL, 0);'.
55439         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
55440         Use 1300 as initial value for length, not PATH_MAX.
55441
55442         * lib/pathmax.h: Clean up cpp syntax.
55443
55444 2001-08-12  Jim Meyering  <meyering@lucent.com>
55445
55446         * lib/gettimeofday.c: New file.
55447         * lib/gtod.h: New file.
55448         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
55449
55450 2001-08-05  Jim Meyering  <meyering@lucent.com>
55451
55452         * m4/jm-macros.m4: Require autoconf-2.52.
55453
55454 2001-08-04  Jim Meyering  <meyering@lucent.com>
55455
55456         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
55457         stmt, to get in sync with glibc.
55458
55459 2001-08-03  Paul Eggert  <eggert@twinsun.com>
55460
55461         The following changes are from gettext 0.10.39 as maintained by
55462         Bruno Haible.
55463
55464         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
55465         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
55466         with inverted sense.  All uses changed.
55467
55468         * lib/mbswidth.c: Don't include <limits.h>.
55469         Include <stdlib.h> and <string.h> unconditionally.
55470         (iswcntrl, mbsinit, ISCNTRL): New macros.
55471         (mbsnwidth): Use K&R style function declarations.
55472         Don't bother checking for MB_LEN_MAX == 1, since the compiler
55473         can optimize it when MB_CUR_MAX == 1.
55474         The width of control characters is zero, not 1.
55475
55476 2001-08-03  Paul Eggert  <eggert@twinsun.com>
55477
55478         The following changes are from gettext 0.10.39 as maintained by
55479         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
55480
55481         * m4/codeset.m4: Upgrade to serial AM1.
55482         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
55483         all uses changed.  Quote first arg of AC_DEFUN.
55484         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
55485
55486         * m4/iconv.m4: Upgrade to serial AM2.
55487         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
55488         Add --with-libconv-prefix.
55489         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
55490         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
55491         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
55492         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
55493         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
55494
55495         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
55496         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
55497         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
55498         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
55499         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
55500         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
55501         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
55502         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
55503         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
55504
55505         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
55506         string.h any more.
55507
55508         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
55509         not the default value.
55510
55511         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
55512         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
55513         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
55514         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
55515         Also check for iswcntrl, used for wcwidth fallback.
55516         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
55517         to Autoconf 2.13.
55518
55519 2001-08-03  Jim Meyering  <meyering@lucent.com>
55520
55521         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
55522         as it was in the original.  Reported by Paul Eggert.
55523
55524 2001-07-16  Jim Meyering  <meyering@lucent.com>
55525
55526         * m4/gettimeofday.m4: New file.
55527         Prompted by a report from Bernhard Baehr.
55528
55529 2001-07-15  Jim Meyering  <meyering@lucent.com>
55530
55531         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
55532         stuff. Now it's in ../Makefile.cfg.
55533
55534 2001-07-15  Jim Meyering  <meyering@lucent.com>
55535
55536         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
55537         (BUILT_SOURCES): Add unlocked-io.h.
55538         (io_functions): Define.
55539         (unlocked-io.h): New rule.
55540         (DISTCLEANFILES): Add unlocked-io.h.
55541         (all-local): Depend on unlocked-io.h, to ensure it is created.
55542
55543         * lib/unlocked-io.hin: New file
55544
55545         * lib/regex.c: Update from glibc.
55546
55547 2001-07-05  Jim Meyering  <meyering@lucent.com>
55548
55549         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
55550         recommendation.
55551         (libfetish_a_SOURCES): Put all .h files here instead.
55552         Remove a thus-exposed (better checks in automake) duplicate and
55553         two unnecessary .h files.
55554
55555 2001-07-04  Jim Meyering  <meyering@lucent.com>
55556
55557         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
55558         that generates jm-glibc-io.m4 so that it doesn't trigger any make
55559         distcheck failure.
55560
55561 2001-07-02  Jim Meyering  <meyering@lucent.com>
55562
55563         The following changes were prompted by suggestions from Bruno Haible.
55564
55565         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
55566         is now generated.
55567         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
55568         definition of EXTRA_DIST.
55569         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
55570         ensure that the generated file is created/updated whenever the list
55571         of $(unlocked_functions) is changed.
55572         (jm-glibc-io.m4): New rule.
55573         (unlocked-io.h): New rule -- currently unused.
55574
55575 2001-06-24  Jim Meyering  <meyering@lucent.com>
55576
55577         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
55578         unmatched right bracket, rather than kludging it with an extra,
55579         falsely-matching quote in a comment.  Patch by Akim Demaille.
55580
55581 2001-06-11  Jim Meyering  <meyering@lucent.com>
55582
55583         * lib/regex.c: Update from GNU libc.
55584
55585 2001-05-27  Jim Meyering  <meyering@lucent.com>
55586
55587         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
55588         Check for ut_type in struct utmp.
55589
55590 2001-05-27  Jim Meyering  <meyering@lucent.com>
55591
55592         * lib/readutmp.h (UT_TYPE): Define.
55593
55594 2001-05-24  Jim Meyering  <meyering@lucent.com>
55595
55596         * lib/argmatch.c: Include "quote.h".
55597         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
55598         quote function.  Reported by Göran Uddeborg.
55599
55600 2001-05-22  Jim Meyering  <meyering@lucent.com>
55601
55602         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
55603         now that we use the package-supplied version unconditionally.
55604         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
55605
55606 2001-05-21  Jim Meyering  <meyering@lucent.com>
55607
55608         * m4/regex.m4: Change a couple backticks to single quotes to avoid
55609         shell syntax errors.
55610
55611 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
55612
55613         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
55614
55615 2001-05-20  Paul Eggert  <eggert@twinsun.com>
55616
55617         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
55618         Don't bother to check library strftime, since
55619         we'll be using our own my_strftime function anyway.
55620         Define my_strftime instead of strftime.
55621
55622 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
55623
55624         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
55625         which is not yet declared.
55626
55627 2001-05-15  Jim Meyering  <meyering@lucent.com>
55628
55629         * m4/regex.m4: Use proper quoting so brackets appear in the test
55630         program.
55631         Reported by, and with help from, Bruno Haible.
55632
55633 2001-05-13  Jim Meyering  <meyering@lucent.com>
55634
55635         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
55636         undefined.
55637
55638 2001-05-11  Paul Eggert  <eggert@twinsun.com>
55639
55640         dirname code cleanup.  base_name now behaves more compatibly
55641         with POSIX basename when given file names that have trailing
55642         slashes, and similarly for dir_name.  Add new primitives
55643         base_len and dir_len.  Put the directory-name-related decls
55644         into dirname.h.
55645
55646         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
55647         * lib/backupfile.c (base_name): Likewise.
55648         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
55649         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
55650         * lib/makepath.c (strip_trailing_slashes): Likewise.
55651         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
55652         ISSLASH): Likewise.
55653         * lib/rename.c (strip_trailing_slashes): Likewise.
55654         * lib/same.c (base_name): Likewise.
55655         * lib/stripslash.c (ISSLASH): Likewise.
55656
55657         * lib/addext.c: Include <dirname.h> after size_t is defined.
55658         * lib/backupfile.c: Likewise.
55659
55660         * lib/addext.c (addext): Use base_len to trim redundant
55661         trailing slashes instead of doing it ourselves.
55662         But do not trim the last slash if it is not redundant.
55663
55664         * lib/backupfile.c (find_backup_file_name,
55665         max_backup_version): Use base_len instead of rolling it ourselves.
55666         Handle the case of "" and (on DOS) "C:" correctly.
55667
55668         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
55669         needed. Include <string.h>, <dirname.h>.
55670         (base_name): Allow file names ending in slashes, other than names
55671         that are all slashes.  In this case, return the basename followed
55672         by the slashes.  This is more general, and can be used in places
55673         where the original base_name purposely had an assertion failure.
55674         (base_len): New function.
55675
55676         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
55677         Do not include <assert.h>; no longer needed.
55678         Include xalloc.h.
55679         (memrchr): Remove decl.
55680         (dir_name_r): Remove.
55681         (dir_len): Renamed from dirlen.  All callers changed.
55682         Rewrite in terms of base_name, for simplicity and consistency.
55683         (dir_name): Never return NULL.  All callers changed.
55684         Do not include <stdlib.h> in test program; no longer needed.
55685         return 0; is fine for test program.
55686
55687         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
55688         New macros.
55689         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
55690
55691         * lib/path-concat.c (path_concat): Use base_len to compute
55692         base length, not strlen; this means we cannot rely on memcpy
55693         to null-terminate.
55694
55695         * lib/same.c (STREQ): Remove.
55696         (same_name): Handle the case where the basename ends in trailing '/'.
55697
55698         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
55699         a slash was stripped.  Do not strip the last slash after a
55700         file system prefix.
55701
55702 2001-05-11  Paul Eggert  <eggert@twinsun.com>
55703
55704         * lib/Makefile.am (libfetish_a_SOURCES):
55705         Add strftime.c, since we now compile it on all hosts.
55706
55707         * lib/strftime.c (my_strftime):
55708         Define to nstrftime if emacs, but only if my_strftime is not defined.
55709         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
55710         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
55711         Add one more extra argument: a nanoseconds value.
55712         All uses changed.
55713         (ns): New macro.
55714         (my_strftime function): Add %N format.
55715         (emacs_strftimeu): Renamed from emacs_strftime,
55716         with extra ut argument.
55717
55718 2001-05-09  Paul Eggert  <eggert@twinsun.com>
55719
55720         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
55721
55722 2001-04-21  Jim Meyering  <meyering@lucent.com>
55723
55724         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
55725         doesn't interfere.
55726
55727 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
55728
55729         * m4/ftruncate.m4: Check for chsize.
55730         Link with ftruncate.o unconditionally if ftruncate is missing.
55731         This was required when cross-compiling to i586-mingw32msvc.
55732
55733 2001-04-08  Jim Meyering  <meyering@lucent.com>
55734
55735         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
55736         recomputed; that's necessary when the offset spans a DST transition.
55737         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
55738
55739 2001-04-02  Jim Meyering  <meyering@lucent.com>
55740
55741         * lib/regex.h, regex.c: Update from GNU libc.
55742
55743 2001-03-24  Jim Meyering  <meyering@lucent.com>
55744
55745         * m4/jm-macros.m4: Require autoconf-2.49d.
55746
55747 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
55748
55749         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
55750
55751 2001-03-19  Paul Eggert  <eggert@twinsun.com>
55752
55753         * lib/version-etc.c (version_etc_copyright): Update to 2001.
55754
55755 2001-03-17  Jim Meyering  <meyering@lucent.com>
55756
55757         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
55758         now that the version in autoconf is equivalent.
55759         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
55760
55761         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
55762         Suggestion from Akim Demaille.
55763
55764         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
55765         (jm_PREREQ_TEMPNAME): New function.
55766
55767 2001-03-16  Paul Eggert  <eggert@twinsun.com>
55768
55769         * lib/tempname.c (uint64_t): Define to uintmax_t if
55770         not defined, and if UINT64_MAX is not defined.
55771         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
55772         Reported by John David Anglin.
55773
55774 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
55775
55776         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
55777         resolve alias if codeset is empty.
55778         * lib/config.charset (BeOS): Use wildcard syntax.
55779
55780 2001-03-13  Jim Meyering  <meyering@lucent.com>
55781
55782         * lib/path-concat.c (path_concat)
55783         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
55784         concatenating e.g., `C:' and `foo'.
55785         From Bruno Haible.
55786
55787 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
55788
55789         * lib/localcharset.c (locale_charset): Don't use
55790         setlocale(LC_CTYPE,NULL). Don't return NULL.
55791         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
55792
55793 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
55794
55795         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
55796         support for DOS/DJGPP.
55797
55798 2001-03-01  Paul Eggert  <eggert@twinsun.com>
55799
55800         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
55801         lacks mkstemp.  Compile our own tempname.c if we compile our own
55802         mkstemp.c, as mkstemp relies on tempname.
55803
55804 2001-03-01  Jim Meyering  <meyering@lucent.com>
55805
55806         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
55807         AH_VERBATIM really does output its argument verbatim.
55808
55809 2001-02-28  Paul Eggert  <eggert@twinsun.com>
55810
55811         * lib/Makefile.am (libfetish_a_SOURCES):
55812         Add dup-safer.c, fopen-safer.c.
55813         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
55814
55815         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
55816         * lib/unistd-safer.h: New files.
55817
55818 2001-02-25  Paul Eggert  <eggert@twinsun.com>
55819
55820         The mkstemp replacement is taken from glibc 2.2.2, with some
55821         portability fixes for use outside glibc, as follows:
55822
55823         * lib/tempname.c (struct_stat64): New macro.
55824         (direxists, __gen_tempname): Use it.
55825         This avoids a portability problem with Solaris 8.
55826
55827         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
55828         (<stddef.h>, <stdint.h>, <string.h>):
55829         Include only if STDC_HEADERS || _LIBC.
55830         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
55831         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
55832         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
55833         (__set_errno): Define this macro if <errno.h> doesn't.
55834         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
55835         Define these macros if <stdio.h> doesn't.
55836         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
55837         Define these macros if <sys/stat.h>
55838         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
55839         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
55840         __xstat64): Define if not _LIBC.
55841         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
55842         (__gen_tempname): Invoke gettimeofday only if
55843         HAVE_GETTIMEOFDAY || _LIBC;
55844         otherwise, fall back on plain "time".
55845         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
55846
55847         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
55848
55849         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
55850
55851 2001-02-18  Paul Eggert  <eggert@twinsun.com>
55852
55853         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
55854
55855 2001-02-17  Paul Eggert  <eggert@twinsun.com>
55856
55857         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
55858         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
55859         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
55860         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
55861
55862 2001-02-17  Paul Eggert  <eggert@twinsun.com>
55863
55864         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
55865         Remove workaround macros for hosts that have mbrtowc but not
55866         mbstate_t, as we now insist on proper declarations for both
55867         before using mbrtowc.
55868
55869 2001-02-17  Jim Meyering  <meyering@lucent.com>
55870
55871         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
55872         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
55873         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
55874         UnixWare 7.1.1.
55875
55876         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
55877         rather than AC_CACHE_VAL.
55878
55879 2001-02-17  Jim Meyering  <meyering@lucent.com>
55880
55881         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
55882         around included file name.
55883
55884         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
55885
55886         * lib/strftime.c: Update from GNU libc (the only changes were to
55887         comments).
55888
55889 2001-02-17  Jim Meyering  <meyering@lucent.com>
55890
55891         * lib/regex.c: Update from libc.
55892
55893 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
55894
55895         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
55896         clash.
55897
55898 2001-02-16  Paul Eggert  <eggert@twinsun.com>
55899
55900         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
55901         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
55902         Reported by Mark Hounschell via Paul Eggert.
55903
55904 2001-02-07  Jim Meyering  <meyering@lucent.com>
55905
55906         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
55907
55908 2001-02-05  Jim Meyering  <meyering@lucent.com>
55909
55910         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
55911         it includes the patch required for `large file' support with at least
55912         HP-UX's 10.20 /bin/cc.
55913
55914 2001-02-03  Jim Meyering  <meyering@lucent.com>
55915
55916         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
55917         AS_IF, now that it works once again (mysteriously).
55918         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
55919
55920 2001-01-30  Jim Meyering  <meyering@lucent.com>
55921
55922         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
55923         * m4/chown.m4: Rename conftestchown to conftest.chown.
55924         * m4/rename.m4: s/conftestdir/conftest.d1/ and
55925         s/conftestdir2/conftest.d2/.
55926         * m4/utimes.m4: s/conftestdata/conftest.data/
55927         Inspired by Pavel Roskin's change in autoconf.
55928
55929 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
55930
55931         * lib/config.charset: Update for FreeBSD 4.2.
55932
55933 2001-01-27  Jim Meyering  <meyering@lucent.com>
55934
55935         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
55936         a use of AS_IF.
55937         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
55938
55939 2001-01-26  Jim Meyering  <meyering@lucent.com>
55940
55941         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
55942         quotearg.c includes it.
55943
55944 2001-01-26  Jim Meyering  <meyering@lucent.com>
55945
55946         * lib/quotearg.c: Include stddef.h.
55947         * lib/quote.c: Include stddef.h.
55948         Reported by Axel Kittenberger.
55949
55950         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
55951         line in double quotes so that it evokes a better diagnostic.
55952         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
55953         Reported by Axel Kittenberger.
55954
55955 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
55956
55957         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
55958         as if it was a `charset'.
55959
55960 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
55961
55962         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
55963         has const.
55964
55965 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
55966
55967         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
55968         to avoid a warning.  Add back 'const' to inptr.
55969
55970 2001-01-20  Jim Meyering  <meyering@lucent.com>
55971
55972         Be sure that headers are checked before used in code compiled
55973         for the type checks.
55974         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
55975         In place of that, invoke jm_CHECK_ALL_TYPES.
55976         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
55977         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
55978         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
55979         The check for ssize_t was mistakenly run before the test for unistd.h.
55980
55981         The configure-time check for stdbool.h was missing.
55982         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
55983         (jm_PREREQ_HASH): New function.
55984
55985 2001-01-17  Jim Meyering  <meyering@lucent.com>
55986
55987         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
55988         for autoconf-2.49c.
55989         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
55990
55991 2001-01-16  Jim Meyering  <meyering@lucent.com>
55992
55993         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
55994         From Bruno Haible.
55995
55996 2001-01-14  Jim Meyering  <meyering@lucent.com>
55997
55998         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
55999         foo and bar.  Create conftestdir/ in the script, not in the C code.
56000         Remove directories in the script, not in the C code.
56001         Remove conftestdir{,2} before trying to create the directory.
56002         Make the entire configure script fail if the mkdir fails.
56003
56004 2001-01-14  Jim Meyering  <meyering@lucent.com>
56005
56006         * lib/rename.c: New file.  From Volker Borchert.
56007         Include stdlib.h, string.h or strings.h, and xalloc.h.
56008         Use strip_trailing_slashes rather than open-coding it.
56009
56010 2001-01-03  Paul Eggert  <eggert@twinsun.com>
56011
56012         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
56013
56014 2001-01-03  Jim Meyering  <meyering@lucent.com>
56015
56016         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
56017         of local `inptr' to avoid warning with some system declarations of
56018         iconv.
56019
56020 2001-01-02  Volker Borchert  <bt@teknon.de>
56021
56022         * m4/rename.m4: New file.
56023         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
56024
56025 2001-01-01  Jim Meyering  <meyering@lucent.com>
56026
56027         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
56028         even on systems with utmpx.h.  It's necessary for the declaration of
56029         utmp's ut_user member.  Reported by Andreas Jaeger.
56030
56031         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
56032         available. They are required for the declarations of getgrgid and
56033         getpwuid resp.
56034         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
56035         Reported by Andreas Jaeger.
56036
56037 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
56038
56039         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
56040         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
56041         so `make install' also works in VPATH builds.
56042
56043 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
56044
56045         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
56046         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
56047         can be used in subdirectories.
56048
56049 2000-12-29  Paul Eggert  <eggert@twinsun.com>
56050
56051         * lib/modechange.c: Do not assume that mode_t uses the
56052         traditional octal encoding.  E.g. "chmod 1 FOO" should set
56053         the other-execute bit of FOO even if S_IXOTH != 1.
56054
56055         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
56056         WOTH, XOTH, ALLM): New macros.
56057         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
56058          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
56059         Use them.
56060         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
56061         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
56062         (mode_compile):
56063         No need to use uintmax_t; unsigned long is long enough.
56064         Don't bother to get suffix since we don't use it.
56065
56066 2000-12-26  Jim Meyering  <meyering@lucent.com>
56067
56068         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
56069         better with autoheader.
56070
56071 2000-12-24  Jim Meyering  <meyering@lucent.com>
56072
56073         * lib/hash.c (is_prime): Return explicit boolean values.
56074         (hash_get_first): Return NULL to appease Irix5.6's 89.
56075         Reported by Nelson Beebe.
56076
56077 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
56078
56079         * lib/localcharset.c (locale_charset): Add support for Win32.
56080
56081 2000-12-18  Paul Eggert  <eggert@twinsun.com>
56082
56083         * lib/physmem.h, lib/physmem.c: New files.
56084
56085         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
56086         (noinst_HEADERS): Add physmem.h.
56087
56088         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
56089         't' for compatibility with Solaris 8 sort.
56090
56091 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
56092
56093         * lib/config.charset: Add support for BeOS.
56094
56095 2000-12-17  Jim Meyering  <meyering@lucent.com>
56096
56097         * m4/dos.m4 (jm_AC_DOS): New file and macro.
56098         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
56099
56100 2000-12-16  Jim Meyering  <meyering@lucent.com>
56101
56102         This bug had a serious impact on chown: `chown N:M FILE' (for integer
56103         N and M) would have treated it like `chown N:N FILE'.
56104
56105         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
56106
56107 2000-12-16  Jim Meyering  <meyering@lucent.com>
56108
56109         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
56110         SHELLS_FILE to a file name that's useful on djgpp systems.
56111         Include stdlib.h.
56112         (ADDITIONAL_DEFAULT_SHELLS): Define.
56113         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
56114         Based mostly on a patch from Prashant TR.
56115
56116 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
56117
56118         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
56119         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
56120         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
56121
56122 2000-12-08  Andreas Schwab  <schwab@suse.de>
56123
56124         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
56125         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
56126
56127 2000-12-07  Jim Meyering  <meyering@lucent.com>
56128
56129         * lib/stripslash.c (ISSLASH): Define.
56130         (strip_trailing_slashes): Use ISSLASH rather than comparing against
56131         `/'.
56132         From Prashant TR.
56133
56134         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
56135         (dir_name_r): Declare this function as static.
56136         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
56137         manifest itself on a name containing a mix of slashes and
56138         backslashes.
56139         Make this function work with names starting with a DOS-style
56140         drive letter and colon prefix.
56141         (dir_name): Append `.' if necessary.
56142         Based mostly on patches from Prashant TR and Eli Zaretskii.
56143
56144         * lib/dirname.h (dir_name_r): Remove prototype.
56145
56146 2000-12-06  Paul Eggert  <eggert@twinsun.com>
56147
56148         * m4/off_t-format.m4: Remove this file.
56149         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
56150
56151 2000-12-06  Jim Meyering  <meyering@lucent.com>
56152
56153         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
56154         replacement strtoull, we may well need the replacement strtoul, too.
56155         Check for declarations of strtoul and strtoull.
56156         Check for strtol.  Mainly as a cue to cause automake to include
56157         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
56158         Check for limits.h -- strtol.c needs it.
56159
56160 2000-12-05  Jim Meyering  <meyering@lucent.com>
56161
56162         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
56163
56164 2000-12-04  Jim Meyering  <meyering@lucent.com>
56165
56166         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
56167         Also include memory.h, stdlib.h, unistd.h if appropriate.
56168         Reported by Andreas Jaeger (conflicting declaration of malloc).
56169
56170 2000-12-02  Jim Meyering  <meyering@lucent.com>
56171
56172         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
56173         * m4/jm-macros.m4 (jm_MACROS): require it.
56174
56175 2000-12-02  Jim Meyering  <meyering@lucent.com>
56176
56177         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
56178
56179 2000-12-01  Paul Eggert  <eggert@twinsun.com>
56180
56181         * lib/memrchr.c: Include <config.h> before any system include file.
56182
56183 2000-11-30  Jim Meyering  <meyering@lucent.com>
56184
56185         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
56186
56187 2000-11-30  Jim Meyering  <meyering@lucent.com>
56188
56189         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
56190
56191 2000-11-29  Paul Eggert  <eggert@twinsun.com>
56192
56193         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
56194
56195 2000-11-26  Jim Meyering  <meyering@lucent.com>
56196
56197         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
56198
56199 2000-11-22  Paul Eggert  <eggert@twinsun.com>
56200
56201         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
56202         size of (size_t) -1; it's not portable.
56203
56204 2000-11-17  Jim Meyering  <meyering@lucent.com>
56205
56206         * lib/strstr.c: Update from GNU libc.
56207
56208 2000-11-17  Akim Demaille  <akim@epita.fr>
56209
56210         * lib/obstack.h: Formatting changes.
56211         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
56212         prevent type checking.
56213         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
56214         cast the value to (void *): assigning a `foo *' to a `void *'
56215         variable is valid.
56216         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
56217
56218 2000-11-16  Jim Meyering  <meyering@lucent.com>
56219
56220         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
56221
56222 2000-11-11  Jim Meyering  <meyering@lucent.com>
56223
56224         * lib/error.c: Add a couple #includes, merging from GNU libc version.
56225
56226 2000-11-10  Jim Meyering  <meyering@lucent.com>
56227
56228         * lib/obstack.h: Update from GNU libc.
56229         * lib/obstack.c: Likewise.
56230
56231 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
56232
56233         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
56234
56235 2000-11-06  Paul Eggert  <eggert@twinsun.com>
56236
56237         * lib/getusershell.c (setusershell): Use rewind rather than
56238         fseek/fseeko, to avoid configuration hassles with fseeko.
56239         Don't bother opening SHELLS_FILE if shellstream is NULL;
56240         it's not necessary.
56241
56242 2000-11-05  Jim Meyering  <meyering@lucent.com>
56243
56244         * lib/makepath.h (make_dir): Declare.
56245         * lib/makepath.c (make_dir): Remove `static' attribute.
56246         Tweak a comment.
56247
56248 2000-11-04  Jim Meyering  <meyering@lucent.com>
56249
56250         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
56251
56252 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
56253
56254         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
56255         last one in a bucket, advance to the next bucket.
56256
56257 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
56258
56259         * lib/fnmatch.c: Do not comment out all the code if we are using
56260         the GNU C library, because in some cases we are replacing buggy
56261         code in the GNU C library itself.
56262
56263 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
56264
56265         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
56266         (regex_compile): Catch bogus \(\1\).
56267
56268 2000-10-30  Paul Eggert  <eggert@twinsun.com>
56269
56270         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
56271         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
56272         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
56273
56274 2000-10-30  Paul Eggert  <eggert@twinsun.com>
56275
56276         * lib/error.h, getline.h, modechange.h:
56277         Remove "2000" from Copyright line, as the file hasn't been
56278         changed this year other than in the copyright notice.
56279
56280         * lib/xalloc.h: Add "2000" to Copyright line, as this file
56281         was changed this year.
56282
56283 2000-10-29  Jim Meyering  <meyering@lucent.com>
56284
56285         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
56286         renaming.
56287         * m4/ls-mntd-fs.m4: Likewise
56288
56289 2000-10-29  Jim Meyering  <meyering@lucent.com>
56290
56291         * lib/xstat.in: Fix grammar in comment.
56292
56293 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
56294
56295         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
56296         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
56297         doesn't define __restrict_arr.
56298
56299 2000-10-28  Jim Meyering  <meyering@lucent.com>
56300
56301         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
56302         (jm_PREREQ_MEMCHR): New function.
56303
56304 2000-10-28  Jim Meyering  <meyering@lucent.com>
56305
56306         * lib/memchr.c: Update from libc.
56307         Adjust for portability:
56308         [HAVE_STDLIB_H]: Include stdlib.h.
56309         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
56310         Undef __memchr, too.
56311         [!weak_alias]: Define __memchr to memchr.
56312
56313         * lib/regex.c: Update from libc.
56314         * lib/regex.h: Likewise.
56315         * lib/getopt1.c: Likewise.
56316         * lib/memcmp.c: Likewise.
56317
56318         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
56319         Avoid using fseek, when possible -- it's broken by design.
56320         Patch by Ulrich Drepper.
56321
56322 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
56323
56324         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
56325         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
56326         Giving in to popular pressure to shut up the compiler with casts.
56327
56328 2000-10-26  Jim Meyering  <meyering@lucent.com>
56329
56330         * lib/strftime.c: Update from libc.
56331
56332 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
56333
56334         * regex.c: More `unsigned char' -> `re_char' changes.
56335         Also change several `int' into `re_wchar_t'.
56336         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
56337         (PUSH_FAILURE_POINTER): Don't cast any more.
56338         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
56339         We want GCC to complain, since this piece of code makes
56340         re_match non-reentrant, which *should* be fixed.
56341         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
56342         (EXTEND_BUFFER): Use RETALLOC.
56343         (SET_LIST_BIT): Don't cast.
56344         (re_wchar_t): New type.
56345         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
56346         that those two functions will always properly return.
56347         (IMMEDIATE_QUIT_CHECK): Cast to void.
56348         (analyse_first): Use recursion rather than an explicit stack.
56349         (re_compile_fastmap): Can't fail anymore.
56350         (re_search_2): Don't check re_compile_fastmap for failure.
56351         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
56352         Now also sets the new value (passed in a new argument).
56353         (re_match_2_internal): Use it.
56354         Also, use a new var `reg' of type size_t when looping through regs
56355         rather than reuse the inappropriate `mcnt'.
56356
56357 2000-10-25  Jim Meyering  <meyering@lucent.com>
56358
56359         * lib/obstack.c: Update from libc.
56360
56361 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
56362
56363         * regex.c (regex_compile): Change the way of handling a range from
56364         a char less than 256 to a char not less than 256.
56365
56366 2000-10-24  Andrew Innes  <andrewi@gnu.org>
56367
56368         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
56369         NT-Emacs only.
56370         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
56371         so that re_search functions only quit when callers expect them to.
56372
56373 2000-10-23  Jim Meyering  <meyering@lucent.com>
56374
56375         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
56376         wrong.  That set_locale call must not have any side effects.
56377         From Paul Eggert.
56378
56379 2000-10-22  Jim Meyering  <meyering@lucent.com>
56380
56381         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
56382         [CYCLIC]: Remove now-unused definition.
56383
56384         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
56385         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
56386         Suggestion from Ulrich Drepper.
56387
56388 2000-10-21  Jim Meyering  <meyering@lucent.com>
56389
56390         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
56391         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
56392         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
56393
56394 2000-10-21  Jim Meyering  <meyering@lucent.com>
56395
56396         * lib/dirname.c (memrchr): Declare if necessary.
56397         (dir_name): Remove the restriction that there be no
56398         trailing slashes.  Now, this code skips past them, effectively
56399         ignoring them.
56400         [TEST_DIRNAME] (main): New unit tests.
56401
56402         * lib/memrchr.c: New file from GNU libc.
56403         Undef __memrchr, too.
56404         [!weak_alias]: Define __memrchr to memrchr.
56405         Guard weak_alias use with `#ifdef weak_alias'.
56406
56407 2000-10-21  Jim Meyering  <meyering@lucent.com>
56408
56409         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
56410         (dir_name): Use dir_name_r.
56411         * lib/dirname.h (dir_name_r): Declare it.
56412
56413 2000-10-17  Jim Meyering  <meyering@lucent.com>
56414
56415         * lib/quote.h (PARAMS): Define and use.
56416         Reported by Akim Demaille.
56417
56418         * lib/getopt.c: Update from libc.
56419
56420 2000-10-16  Jim Meyering  <meyering@lucent.com>
56421
56422         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
56423         setlocale.
56424         From Jan Fedak.
56425
56426 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
56427
56428         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
56429
56430 2000-09-25  Jim Meyering  <meyering@lucent.com>
56431
56432         * lib/md5.h (rol): Define (from GnuPG).
56433
56434         * lib/sha.c: Give credit (GnuPG) where due.
56435         (M): Use rol rather than open-coding it.
56436         Add a FIXME comment.
56437
56438 2000-09-21  Jim Meyering  <meyering@lucent.com>
56439
56440         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
56441         Reported by Michael Stone.
56442
56443 2000-09-20  Jim Meyering  <meyering@lucent.com>
56444
56445         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
56446         (noinst_HEADERS): Add sha.h.
56447         Based on code from Scott G. Miller and from GnuPG.
56448
56449 2000-09-18  Jim Meyering  <meyering@lucent.com>
56450
56451         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
56452         LIBS. Otherwise, everyone ends up linking with -lelf for some
56453         configurations.
56454         Reported by Mike Stone.
56455
56456 2000-09-15  Jim Meyering  <meyering@lucent.com>
56457
56458         * lib/regex.c: Update from libc.
56459
56460 2000-09-10  Jim Meyering  <meyering@lucent.com>
56461
56462         * lib/getopt.c (_getopt_internal): Update from glibc.
56463
56464 2000-09-09  Jim Meyering  <meyering@lucent.com>
56465
56466         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
56467         think it should be used as a general replacement for isascii.
56468         * lib/fnmatch.c: Likewise.
56469         * lib/mbswidth.c: Likewise
56470         * lib/regex.c: Likewise.
56471
56472         Don't use atoi.
56473         * lib/userspec.c: Include sys/param.h and limits.h.
56474         Include xstrtol.h.
56475         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
56476         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
56477         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
56478         UID, GID.  Check range.
56479
56480 2000-09-06  Jim Meyering  <meyering@lucent.com>
56481
56482         * lib/getopt.c (_getopt_internal): Update from glibc.
56483
56484 2000-08-30  Jim Meyering  <meyering@lucent.com>
56485
56486         * lib/strftime.c: Merge in changes from GNU libc.
56487
56488 2000-08-26  Jim Meyering  <meyering@lucent.com>
56489
56490         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
56491         * m4/fpending.m4: New file.
56492
56493 2000-08-26  Jim Meyering  <meyering@lucent.com>
56494
56495         * lib/closeout.c: Include "__fpending.h".
56496         (close_stdout_status): Return right away if there's nothing to flush.
56497
56498         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
56499         * lib/__fpending.c: New file.
56500         * lib/__fpending.h: New file.
56501
56502 2000-08-20  Jim Meyering  <meyering@lucent.com>
56503
56504         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
56505         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
56506         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
56507
56508 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
56509
56510         Improve fileutils installation on systems where running
56511         programs (like install) can't be unlinked.
56512         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
56513         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
56514
56515 2000-08-07  Paul Eggert  <eggert@twinsun.com>
56516
56517         Standardize on "memory exhausted" instead of "Memory exhausted"
56518         or "virtual memory exhausted".
56519         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
56520         "virtual memory exhausted".
56521         * lib/same.c (same_name): Invoke xalloc_die instead of printing
56522         our own message.
56523         * lib/userspec.c (parse_user_spec): Likewise.
56524         * lib/bumpalloc.h: comment fix
56525         * lib/same.c, userspec.c: Include xalloc.h.
56526
56527         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
56528         not char *const and pointing to a constant array.
56529         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
56530         (xrealloc): Comment fix.
56531
56532         * lib/userspec.c (parse_user_spec):
56533         Don't translate a message until just before returning,
56534         to avoid unnecessary translation.
56535
56536 2000-08-07  Jim Meyering  <meyering@lucent.com>
56537
56538         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
56539         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
56540         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
56541         getgroups.c, gethostname.c, getopt.h, group-member.c,
56542         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
56543         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
56544         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
56545         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
56546         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
56547         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
56548         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
56549         yesno.c: Back out Copyright date changes for each file with no change
56550         this year.  This eases coordination with other programs using the same
56551         source code modules.  From Paul Eggert.
56552
56553 2000-08-06  Paul Eggert  <eggert@twinsun.com>
56554
56555         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
56556         not char, for compatibility with glibc 2.1.3 strftime.c.
56557
56558 2000-08-03  Greg McGary  <greg@mcgary.org>
56559
56560         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
56561         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
56562         (EXTEND_BUFFER): Use them.
56563
56564 2000-08-01  Jim Meyering  <meyering@lucent.com>
56565
56566         * lib/dirname.c (ISSLASH): Define.
56567         (BACKSLASH_IS_PATH_SEPARATOR): Define.
56568         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
56569         both `\' and `/' may be use as path separators.
56570         Based on a patch from Prashant TR.
56571
56572 2000-07-31  Paul Eggert  <eggert@twinsun.com>
56573
56574         * lib/quotearg.c (quotearg_n_options): Don't make the initial
56575         slot vector a constant, since it might get modified.
56576
56577 2000-07-31  Jim Meyering  <meyering@lucent.com>
56578
56579         * lib/xmalloc.c: Use `virtual memory exhausted', not
56580         `Memory exhausted'.
56581         * lib/obstack.c (print_and_abort): Likewise.
56582
56583 2000-07-30  Paul Eggert  <eggert@twinsun.com>
56584
56585         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
56586         buffer, so that the caller can always quote one small
56587         component of a "memory exhausted" message in slot 0.
56588         From a suggestion by Jim Meyering.
56589
56590 2000-07-30  Jim Meyering  <meyering@lucent.com>
56591
56592         * lib/makepath.c (make_path): Quote the other instance, too.
56593
56594         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
56595         (STATIC_BUF_SIZE): Define.
56596         (quotearg_n_options): Use only statically allocated storage when
56597         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
56598         than STATIC_BUF_SIZE.
56599
56600 2000-07-29  Jim Meyering  <meyering@lucent.com>
56601
56602         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
56603         * lib/dirname.c (dir_name): Likewise.
56604
56605         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
56606         `/'.
56607
56608         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
56609         (dir_name): Assert that there are no trailing slashes.
56610
56611 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
56612
56613         * lib/mbswidth.h (mbswidth): Add a flags argument.
56614         (mbswidth): New declaration.
56615         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
56616         * lib/mbswidth.c (mbswidth): Add a flags argument.
56617         (mbsnwidth): New function.
56618
56619 2000-07-24  Jim Meyering  <meyering@lucent.com>
56620
56621         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
56622
56623 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56624
56625         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
56626
56627 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56628
56629         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
56630         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
56631         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
56632         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
56633         invoke multibyte primitives.
56634
56635 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56636
56637         * lib/quotearg.c:
56638         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
56639         so that mbstate_t is always defined.
56640
56641         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
56642         be 1 in at least one GCC installation, and this configuration
56643         error is likely to be common.  Ignoring MB_LEN_MAX hurts
56644         performance on hosts that have mbrtowc but have only unibyte
56645         locales, but I assume these hosts are rare.
56646
56647 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56648
56649         * lib/mbswidth.c (_XOPEN_SOURCE):
56650         Don't define; this causes problems on Solaris 7.
56651         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
56652
56653 2000-07-23  Jim Meyering  <meyering@lucent.com>
56654
56655         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
56656         too: getgrgid, getpwuid, getuid.
56657
56658 2000-07-23  Jim Meyering  <meyering@lucent.com>
56659
56660         * lib/basename.c (base_name): Add an assertion.
56661
56662 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
56663
56664         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
56665         shadow its mbsinit function.
56666
56667 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
56668
56669         * lib/mbswidth.h: New file.
56670         * lib/mbswidth.c: New file.
56671         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
56672         (noinst_HEADERS): Add mbswidth.h.
56673
56674 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
56675
56676         * lib/config.charset: Add support for FreeBSD. Improve support for
56677         HP-UX and IRIX 6.
56678
56679 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
56680
56681         * m4/mbswidth.m4: New file.
56682         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
56683
56684 2000-07-15  Jim Meyering  <meyering@lucent.com>
56685
56686         * lib/makepath.c: Include quote.h.
56687         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
56688         corresponding argument in a `quote (...)' call.
56689         Give better diagnostics.
56690
56691         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
56692         (noinst_HEADERS): Add quote.h.
56693
56694         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
56695         from tar's src/misc.c.
56696         * lib/quote.h: New file.  Prototypes for same.
56697
56698 2000-07-14  Paul Eggert  <eggert@twinsun.com>
56699
56700         From a suggestion by Bruno Haible.
56701         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
56702         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
56703         to decide whether to define the BeOS workaround macro;
56704         this adjusts to the change to AC_MBSTATE_T.
56705
56706 2000-07-14  Jim Meyering  <meyering@lucent.com>
56707
56708         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
56709         jm_AC_TYPE_UINTMAX_T.
56710
56711 2000-07-13  Paul Eggert  <eggert@twinsun.com>
56712
56713         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
56714
56715         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
56716         quotearg_buffer_restyled): Add support for
56717         clocale_quoting_style.  Undo previous change to
56718         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
56719         and "{RIGHT QUOTATION MARK}" msgids.
56720
56721 2000-07-10  Paul Eggert  <eggert@twinsun.com>
56722
56723         From a suggestion by Bruno Haible.
56724         * m4/mbstate_t.m4 (AC_MBSTATE_T):
56725         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
56726         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
56727         and mbstate_t, to a single-part test that simply defines mbstate_t.
56728         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
56729         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
56730
56731 2000-07-10  Jim Meyering  <meyering@lucent.com>
56732
56733         * m4/strerror_r.m4: Mirror the correction made in autoconf.
56734
56735         * m4/gnu-source.m4: Output to confdefs.h directly.
56736         Suggestion from Akim Demaille.
56737
56738 2000-07-09  Paul Eggert  <eggert@twinsun.com>
56739
56740         The old behavior of quoting `like this' doesn't look good with
56741         newer, ISO-style fonts.  See:
56742         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
56743
56744         Instead, quote "like this" by default.  Let the translator
56745         tailor the locale-specific quoting behavior by providing
56746         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
56747
56748         * lib/quotearg.c (N_): New macro.
56749         (gettext_default): New function.
56750         (quotearg_buffer_restyled): Use
56751         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
56752         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
56753
56754 2000-07-09  Jim Meyering  <meyering@lucent.com>
56755
56756         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
56757         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
56758
56759         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
56760         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
56761
56762 2000-07-09  Jim Meyering  <meyering@lucent.com>
56763
56764         * lib/Most files: Update copyright dates to include 2000.
56765
56766 2000-07-08  Jim Meyering  <meyering@lucent.com>
56767
56768         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
56769         if not defined.
56770         (xgethostname): Remove now-unnecessary #ifdef.
56771         Move declaration of `err' into loop where it's used.
56772
56773 2000-07-05  Paul Eggert  <eggert@twinsun.com>
56774         and Bruno Haible  <haible@clisp.cons.org>
56775
56776         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
56777         only if the test for an object-type mbstate_t fails.  This
56778         prevents us from mistakenly reporting that mbstate_t is a
56779         system object type after we "#define mbstate_t int" to work
56780         around its lack.
56781
56782 2000-07-05  Paul Eggert  <eggert@twinsun.com>
56783         and Bruno Haible  <haible@clisp.cons.org>
56784
56785         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
56786
56787 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56788
56789         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
56790         to strerror_r.
56791         Include <ctype.h> for use of isalpha.
56792
56793 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56794
56795         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
56796         by allocating a larger buffer. Test the gethostname return value for
56797         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
56798         returns an error and ENAMETOOLONG isn't defined.
56799
56800 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56801
56802         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
56803         dimension.
56804
56805 2000-07-04  Jim Meyering  <meyering@lucent.com>
56806
56807         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
56808         of the deprecated AC_CHECKING.
56809
56810 2000-07-04  Jim Meyering  <meyering@lucent.com>
56811
56812         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
56813         Reported by Bruno Haible.
56814
56815 2000-07-04  Jim Meyering  <meyering@lucent.com>
56816
56817         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
56818         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
56819         lacks mbrtowc.
56820
56821 2000-07-03  Paul Eggert  <eggert@twinsun.com>
56822
56823         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
56824         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
56825
56826 2000-07-03  Paul Eggert  <eggert@twinsun.com>
56827         and Bruno Haible  <haible@clisp.cons.org>
56828
56829         * lib/quotearg.c (mbrtowc):
56830         Assign to *pwc, and return 1 only if result is nonzero.
56831         (iswprint): Use ISPRINT when substituting our own mbrtowc.
56832
56833 2000-07-03  Jim Meyering  <meyering@lucent.com>
56834
56835         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
56836
56837 2000-07-03  Jim Meyering  <meyering@lucent.com>
56838
56839         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
56840         This is necessary to get a definition of e.g., UTMP_FILE on
56841         HP-UX 10.20.
56842         From Bob Proulx.
56843
56844 2000-07-02  Jim Meyering  <meyering@lucent.com>
56845
56846         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
56847
56848         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
56849         AC_LIBOBJ(function_name).
56850         * m4/chown.m4: Likewise.
56851         * m4/fnmatch.m4: Likewise.
56852         * m4/ftruncate.m4: Likewise.
56853         * m4/getgroups.m4: Likewise.
56854         * m4/getline.m4: Likewise.
56855         * m4/group-member.m4: Likewise.
56856         * m4/jm-macros.m4: Likewise.
56857         * m4/lstat.m4: Likewise.
56858         * m4/malloc.m4: Likewise.
56859         * m4/memcmp.m4: Likewise.
56860         * m4/nanosleep.m4: Likewise.
56861         * m4/putenv.m4: Likewise.
56862         * m4/realloc.m4: Likewise.
56863         * m4/regex.m4: Likewise.
56864         * m4/stat.m4: Likewise.
56865         * m4/strftime.m4: Likewise.
56866
56867 2000-07-02  Jim Meyering  <meyering@lucent.com>
56868
56869         * lib/quotearg.c (mbstate_t): Don't define here.
56870
56871 2000-07-02  Jim Meyering  <meyering@lucent.com>
56872
56873         * lib/nanosleep.c (SIGCONT): Define if not already defined.
56874
56875 2000-07-01  Jim Meyering  <meyering@lucent.com>
56876
56877         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
56878
56879 2000-07-01  Jim Meyering  <meyering@lucent.com>
56880
56881         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
56882         problem.
56883
56884 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
56885
56886         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
56887         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
56888
56889 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
56890
56891         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
56892         per change in ../m4/ls-mntd-fs.m4.
56893         (read_filesystem_list): Ignore symbolic links.
56894
56895 2000-06-29  Jim Meyering  <meyering@lucent.com>
56896
56897         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
56898         for declaration of strcmp.
56899
56900         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
56901
56902         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
56903         Avoid warning by casting result to `char *' to remove `const'.
56904
56905 2000-06-28  Jim Meyering  <meyering@lucent.com>
56906
56907         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
56908         included by quotearg.c, for which we perform this test.  From
56909         Bruno Haible.
56910
56911 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
56912
56913         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
56914         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
56915         <utmpx.h> exists, put readutmp.o into LIBOBJS.
56916
56917 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
56918
56919         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
56920
56921 2000-06-26  Paul Eggert  <eggert@twinsun.com>
56922
56923         savedir now sets errno on failure and invokes xmalloc to get memory.
56924         Fix a couple of other minor bugs while we're at it.
56925
56926         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
56927         (NAMLEN): Remove macro.
56928         (malloc, realloc): Remove decls.
56929         (stpcpy): Likewise.
56930         ("xalloc.h"): Include.
56931         (NAME_SIZE_DEFAULT): New macro.
56932         (savedir): Use xmalloc / xrealloc to allocate memory.
56933         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
56934         Skip "" directory entries.
56935         Use strlen to calculate directory entry length, since the old method
56936         is rarely used these days and isn't worth supporting.
56937         Don't use a pointer after freeing it.
56938         Check for integer overflow when calculating allocation size.
56939         Use memcpy to copy entries, instead of stpcpy.
56940         Set errno properly when returning NULL.
56941         Check for readdir error.
56942
56943 2000-06-26  Jim Meyering  <meyering@lucent.com>
56944
56945         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
56946
56947 2000-06-25  Jim Meyering  <meyering@lucent.com>
56948
56949         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
56950         Linux header bug when _XOPEN_SOURCE is defined to 500.
56951
56952 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
56953
56954         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
56955         deficiency.
56956
56957 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
56958
56959         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
56960         Include xalloc.h.
56961         Don't include <stdlib.h>.  Don't declare malloc, realloc.
56962
56963 2000-06-24  Jim Meyering  <meyering@lucent.com>
56964
56965         * m4/strerror_r.m4: Revive this file -- to try out an experimental
56966         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
56967         for which strerror does return char*, but which lacks a conveniently
56968         accessible declaration of the function.  If the compile-test says
56969         strerror_r doesn't work, then resort to a `run'-test that works on
56970         BeOS and segfaults on DEC Unix.
56971
56972 2000-06-24  Jim Meyering  <meyering@lucent.com>
56973
56974         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
56975
56976 2000-06-23  Paul Eggert  <eggert@twinsun.com>
56977
56978         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
56979         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
56980
56981 2000-06-23  Paul Eggert  <eggert@twinsun.com>
56982
56983         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
56984         (mbrtowc, mbstate_t): Define substitutes if
56985         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
56986         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
56987         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
56988
56989 2000-06-23  Jim Meyering  <meyering@lucent.com>
56990
56991         * m4/afs.m4: Add missing AC_MSG_RESULT.
56992         Reported by Bruno Haible.
56993
56994         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
56995         Suggestion from Bruno Haible.
56996
56997 2000-06-23  Jim Meyering  <meyering@lucent.com>
56998
56999         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
57000
57001 2000-06-21  Jim Meyering  <meyering@lucent.com>
57002
57003         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
57004
57005 2000-06-21  Jim Meyering  <meyering@lucent.com>
57006
57007         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
57008         (noinst_HEADERS): Add getstr.h.
57009
57010         * lib/getline.c (getstr): Move into a separate file.
57011         * lib/getstr.c (getstr): New file, extracted from getline.c, with
57012         the following changes: new parameter, delim2; both delim[12]
57013         parameters have type `int', not `char'.  The latter would lose
57014         with 8-bit delimiters.
57015         * lib/getstr.h: New file.
57016
57017 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
57018
57019         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
57020         than 1024, return a memory chunk of least possible size, instead
57021         of size PATH_MAX + 2. In the loop, increment the size proportionally.
57022         Use free/xmalloc instead of xrealloc to avoid copying for very long
57023         paths.
57024
57025 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
57026
57027         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
57028         the empty string.
57029
57030 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
57031
57032         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
57033         address, not strdup.  Include <stdlib.h> and don't declare free().
57034
57035 2000-06-19  Jim Meyering  <meyering@lucent.com>
57036
57037         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
57038
57039 2000-06-18  Jim Meyering  <meyering@lucent.com>
57040
57041         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
57042
57043         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
57044         `checking whether...' message to be consistent with that of the
57045         lstat test.
57046
57047 2000-06-18  Jim Meyering  <meyering@lucent.com>
57048
57049         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
57050         Besides, these days every porting target provides a mkdir function.
57051
57052         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
57053         needed. (this snippet comes from src/system.h).
57054
57055 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
57056
57057         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
57058
57059 2000-06-15  Paul Eggert  <eggert@twinsun.com>
57060
57061         * lib/human.c (adjust_value): New function.
57062         (human_readable_inexact): Apply rounding style even when
57063         printing approximate values.
57064
57065 2000-06-14  Paul Eggert  <eggert@twinsun.com>
57066
57067         * lib/human.c (human_readable_inexact): Allow an input block
57068         size that is not a multiple of the output block size, and vice versa.
57069         Reported by Piergiorgio Sartor.
57070
57071 2000-06-14  Paul Eggert  <eggert@twinsun.com>
57072
57073         * lib/getdate.y (get_date): Apply relative times after time
57074         zone indicator, not before.  Reported by Todd A. Jacobs.
57075
57076 2000-06-13  Jim Meyering  <meyering@lucent.com>
57077
57078         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
57079
57080         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
57081
57082 2000-06-12  Paul Eggert  <eggert@twinsun.com>
57083
57084         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
57085
57086 2000-06-12  Jim Meyering  <meyering@lucent.com>
57087
57088         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
57089         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
57090         optional argument.
57091         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
57092         the optional argument, `lib'.
57093
57094 2000-06-08  Jim Meyering  <meyering@lucent.com>
57095
57096         * m4/largefile.m4: Remove file (now that it's part of autoconf).
57097
57098 2000-06-04  Paul Eggert  <eggert@twinsun.com>
57099
57100         Rewrite largefile configuration so that we don't need to run
57101         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
57102         AC_CANONICAL_HOST in configure.in -- jmm]
57103
57104         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
57105         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
57106         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
57107         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
57108         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
57109         All uses changed.
57110         Instead of inspecting the output of getconf, try to compile the
57111         test program without and with the macro definition.
57112         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
57113         for getconf.  Instead, check for the needed flags by compiling
57114         test programs.
57115
57116 2000-06-04  Paul Eggert  <eggert@twinsun.com>
57117
57118         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
57119
57120 2000-06-04  Jim Meyering  <meyering@lucent.com>
57121
57122         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
57123         SunOS 4.1.4 for which gid_t is an unsigned type.
57124
57125 2000-06-03  Jim Meyering  <meyering@lucent.com>
57126
57127         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
57128         now that autoconf requires that.
57129
57130         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
57131         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
57132         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
57133
57134 2000-06-03  Jim Meyering  <meyering@lucent.com>
57135
57136         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
57137
57138 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
57139
57140         * m4/glibc21.m4: New file.
57141         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
57142
57143 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
57144
57145         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
57146         newer, don't install charset.alias.
57147         * lib/config.charset: Change the Linux/glibc rules so they become empty
57148         on glibc-2.1 or newer.
57149
57150 2000-06-02  Jim Meyering  <meyering@lucent.com>
57151
57152         * lib/mountlist.c: Back out last change.  Instead, do this...
57153         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
57154         me_dummy member using the same `ignore'-testing code.
57155         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
57156         fs_type strings.
57157         From Mark D. Roth.
57158
57159 2000-05-29  Jim Meyering  <meyering@lucent.com>
57160
57161         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
57162         mounts with the `ignore' attribute.  Based on a patch from
57163         Mark D. Roth.
57164
57165 2000-05-28  Jim Meyering  <meyering@lucent.com>
57166
57167         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
57168         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57169         * m4/stat.m4: Likewise.
57170         * m4/lstat.m4: Likewise.
57171         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
57172
57173         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
57174         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
57175
57176 2000-05-26  Jim Meyering  <meyering@lucent.com>
57177
57178         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
57179
57180 2000-05-24  Jim Meyering  <meyering@lucent.com>
57181
57182         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
57183         autoconf requires that.
57184         * m4/lib-check.m4: Likewise.
57185         * m4/jm-macros.m4: Likewise.
57186         * m4/strftime.m4: Likewise.
57187
57188         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
57189         AC_CHECK_DECLS, now that autoconf requires that.
57190
57191 2000-05-22  Jim Meyering  <meyering@lucent.com>
57192
57193         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57194         * m4/lstat.m4: Likewise.
57195
57196 2000-05-22  Jim Meyering  <meyering@lucent.com>
57197
57198         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
57199
57200 2000-05-20  Jim Meyering  <meyering@lucent.com>
57201
57202         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
57203         (jm_PREREQ): Use it.
57204
57205 2000-05-18  Jim Meyering  <meyering@lucent.com>
57206
57207         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
57208         back, too, since it may have been modified by allocate_entry.
57209         (hash_delete): Rewrite to use neither the assignment operator
57210         nor the comma operator in an if-expression.
57211
57212 2000-05-15  Paul Eggert  <eggert@twinsun.com>
57213
57214         * lib/closeout.c:
57215         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
57216         Remove; no longer needed.
57217         "quotearg.h": Add include.
57218         (file_name): Do not bother to explicitly initialize to NULL; it's less
57219         efficient on some hosts.
57220         (close_stdout_status): Remove test as to whether stdout was already
57221         closed; it breaks for the case "echo x | sort >&-".
57222         Quote file name colons.
57223         Do not assume that _("write error") lacks format strings.
57224
57225 2000-05-15  Jim Meyering  <meyering@lucent.com>
57226
57227         * lib/version-etc.c (version_etc_copyright): Update the copyright
57228         string used in all --version output.
57229
57230 2000-05-14  Jim Meyering  <meyering@lucent.com>
57231
57232         * lib/closeout.c (close_stdout_set_file_name): New function.
57233         (close_stdout_status): Use new file-scoped global.
57234         Return right away if fstat says the stdout file descriptor is invalid.
57235         * lib/closeout.h (close_stdout_set_file_name): Declare.
57236
57237 2000-05-10  Jim Meyering  <meyering@lucent.com>
57238
57239         * lib/closeout.c [default_exit_status]: New file-scoped variable.
57240         (close_stdout_set_status): New function.
57241         * lib/closeout.h (close_stdout_set_status): Declare.
57242
57243 2000-05-09  Jim Meyering  <meyering@lucent.com>
57244
57245         * m4/gettext.m4: Rename this...
57246         * m4/libintl.m4: ...to this.
57247
57248 2000-05-08  Jim Meyering  <meyering@lucent.com>
57249
57250         * lib/long-options.c: Don't include closeout.h.
57251         (parse_long_options): Don't call close_stdout for --version.
57252
57253 2000-05-06  Paul Eggert  <eggert@twinsun.com>
57254
57255         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
57256         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
57257         2.1.3 bug.  This avoids a clash when files like regex.c define
57258         _GNU_SOURCE.
57259
57260 2000-05-06  Jim Meyering  <meyering@lucent.com>
57261
57262         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
57263         (AC_REPLACE_FUNCS): Add strnlen.
57264
57265         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
57266         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
57267
57268         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
57269         AC_SEARCH_LIBS call for nanosleep.
57270         (LIB_NANOSLEEP): Set and AC_SUBST.
57271
57272 2000-05-06  Jim Meyering  <meyering@lucent.com>
57273
57274         * lib/strnlen.c: Undefine __strnlen and strnlen.
57275         [!weak_alias]: Define __strnlen to strnlen.
57276
57277         * lib/atexit.c: New file, from libiberty.
57278
57279 2000-05-06  Jim Meyering  <meyering@lucent.com>
57280
57281         * lib/closeout.c (close_stdout_status): Also check for errors on the
57282         stderr stream.
57283
57284 2000-05-05  Jim Meyering  <meyering@lucent.com>
57285
57286         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
57287         AC_SEARCH_LIBS call for clock_gettime.
57288         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
57289
57290         * m4/search-libs.m4: Update from autoconf.
57291
57292         su doesn't work on Solaris 2.6.
57293         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
57294         <shadow.h>.  Reported by Dragos Harabor.
57295
57296 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
57297
57298         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
57299         memcpy instead of xmalloc, xrealloc, path_concat.
57300         (locale_charset): Treat empty environment variables as absent.
57301         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
57302
57303 2000-05-04  Jim Meyering  <meyering@lucent.com>
57304
57305         * lib/getopt.c: Update from glibc.
57306         * lib/obstack.c: Likewise.
57307         * lib/obstack.h: Likewise.
57308         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
57309         file
57310
57311         * lib/regex.h: Likewise.
57312         * lib/strndup.c: Likewise.
57313         * lib/strnlen.c: New file, from glibc.
57314
57315 2000-05-03  Jim Meyering  <meyering@lucent.com>
57316
57317         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
57318
57319 2000-05-02  Paul Eggert  <eggert@twinsun.com>
57320
57321         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
57322         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
57323         compile-time test, rather than inspecting host and OS, to
57324         decide whether to define _LARGEFILE_SOURCE.
57325
57326 2000-05-01  Jim Meyering  <meyering@lucent.com>
57327
57328         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
57329
57330         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
57331         Based on a patch from Bruno Haible.
57332
57333 2000-05-01  Jim Meyering  <meyering@lucent.com>
57334
57335         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
57336
57337 2000-04-29  Jim Meyering  <meyering@lucent.com>
57338
57339         * lib/path-concat.c: Declare strdup only if it's not defined.
57340         * lib/canon-host.c: Likewise.
57341
57342 2000-04-28  Jim Meyering  <meyering@lucent.com>
57343
57344         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
57345         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
57346         is included first, then limits.h is included by locale.h by libintl.h.
57347         From John David Anglin.
57348
57349 2000-04-25  Jim Meyering  <meyering@lucent.com>
57350
57351         * lib/makepath.c (S_IRWXUGO): Define.
57352         (make_path): Always perform explicit chmod if MODE specifies any
57353         of the `special' permission bits.  Prompted by a bug report against
57354         install from Mate Wierdl and Joost van Baal.
57355
57356 2000-04-18  Jim Meyering  <meyering@lucent.com>
57357
57358         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
57359         (jm_PREREQ): Use it.
57360
57361 2000-04-18  Jim Meyering  <meyering@lucent.com>
57362
57363         * lib/README: New file.
57364
57365         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
57366         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
57367
57368 2000-04-17  Jim Meyering  <meyering@lucent.com>
57369
57370         Get it right :-)
57371         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
57372         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
57373         Suggestion from Akim Demaille.
57374
57375 2000-04-17  Jim Meyering  <meyering@lucent.com>
57376
57377         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
57378         the definition of it to rpl_strftime also defined-away the system's
57379         declaration.
57380
57381 2000-04-15  Jim Meyering  <meyering@lucent.com>
57382
57383         Use `C' to denote so-called `contiguous' files, the same way
57384         that tar does.
57385         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
57386         (ftypelet): Use S_ISCTG.
57387         From Michael Deutschmann.
57388
57389 2000-04-14  Jim Meyering  <meyering@lucent.com>
57390
57391         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
57392         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
57393         clobbered.
57394
57395 2000-04-14  Jim Meyering  <meyering@lucent.com>
57396
57397         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
57398
57399 2000-04-13  Jim Meyering  <meyering@lucent.com>
57400
57401         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
57402         AH_VERBATIM to insert required #ifndef into config.h.in.
57403         Suggestion from Akim Demaille.
57404
57405 2000-04-12  Jim Meyering  <meyering@lucent.com>
57406
57407         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
57408         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
57409         Christian Krackowizer.
57410
57411         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
57412         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
57413         (AC_SYS_LARGEFILE): Require.
57414         (AM_C_PROTOTYPES): Require.
57415
57416 2000-04-08  Jim Meyering  <meyering@lucent.com>
57417
57418         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
57419         names don't conflict.  Reported by Eli Zaretskii.
57420
57421 2000-04-07  Jim Meyering  <meyering@lucent.com>
57422
57423         * lib/putenv.c: Move inclusion of errno.h so it follows that of
57424         sys/types.h, to work around system header problems on AIX 3.2.5.
57425         From Bruno Haible.
57426
57427 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
57428
57429         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
57430         bug.  Deal with the different error behavior of Irix iconv.
57431
57432 2000-04-05  Paul Eggert  <eggert@twinsun.com>
57433
57434         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
57435         IRIX if the installer said otherwise.
57436
57437 2000-04-05  Jim Meyering  <meyering@lucent.com>
57438
57439         Portability tweaks required for ultrix4.3.
57440         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
57441         (jm_CHECK_DECLS): Add getutent to the list of functions.
57442         (_jm_DECL_HEADERS): Add utmpx.h.
57443         From John David Anglin.
57444
57445         * m4/strftime.m4: Back out the 2000-04-02 change.
57446         Instead of that change, simply undefine putenv in the test program.
57447
57448 2000-04-05  Jim Meyering  <meyering@lucent.com>
57449
57450         Portability tweaks required for ultrix4.3.
57451         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
57452         getutent.
57453         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
57454         * lib/canon-host.c: Declare strdup.
57455         * lib/path-concat.c: Likewise.
57456         From John David Anglin.
57457
57458 2000-04-04  Jim Meyering  <meyering@lucent.com>
57459
57460         Be more DOS 8.3-friendly.
57461         * lib/ref-add.sin: Renamed from ref-add.sed.in.
57462         * lib/ref-del.sin: Renamed from ref-del.sed.in.
57463         * lib/Makefile.am: Reflect renaming.
57464         Reported by Eli Zaretskii.
57465
57466         Use a temporary file name that won't clash with `charset.alias'
57467         in the DOS 8.3 name space.
57468         * lib/Makefile.am (charset_tmp): Define.
57469         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
57470         (uninstall-local): Likewise.
57471         Reported by Eli Zaretskii.
57472
57473 2000-04-03  Jim Meyering  <meyering@lucent.com>
57474
57475         * m4/gettext.m4: Fix typo in comment.
57476
57477         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
57478         textutils/configure.in).  Suggestion from Paul Eggert.
57479         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
57480
57481 2000-04-02  Paul Eggert  <eggert@twinsun.com>
57482
57483         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
57484         variable in the shell rather than using putenv, which isn't
57485         portable.  This avoids the configure-time inter-test dependency
57486         on the potentially-renamed putenv function.
57487
57488 2000-03-30  Paul Eggert  <eggert@twinsun.com>
57489
57490         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
57491         before checking struct stat.st_blksize, so that
57492         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
57493
57494 2000-03-29  Paul Eggert  <eggert@twinsun.com>
57495
57496         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
57497         since strftime.c uses HAVE_STRFTIME to decide whether to use
57498         the underlying strftime.
57499
57500 2000-03-29  Paul Eggert  <eggert@twinsun.com>
57501
57502         * lib/time/strftime.c (my_strftime): Make sure we call the system
57503         strftime, not ourselves, when invoking the underlying strftime.
57504
57505 2000-03-24  Jim Meyering  <meyering@lucent.com>
57506
57507         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
57508         (charset_alias): Define.
57509         (install-exec-local): Factor out common code.
57510         (uninstall-local): Split lines longer than 80.
57511         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
57512         (SUFFIXES): Define.
57513         (.sed.in.sed): New rule.  Don't redirect directly to $@.
57514         (CLEANFILES): Add ref-add.sed and ref-del.sed.
57515
57516 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
57517
57518         * lib/config.charset: Output a line containing "Packages using this
57519         file".
57520         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
57521         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
57522         ref-del.sed): New rules.
57523
57524 2000-03-17  Jim Meyering  <meyering@lucent.com>
57525
57526         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
57527         Otherwise, include <strings.h>
57528
57529 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
57530
57531         * lib/unicodeio.c (utf8_wctomb): New function.
57532         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
57533         format instead of in UCS-4 with platform dependent endianness.
57534
57535 2000-03-10  Jim Meyering  <meyering@lucent.com>
57536
57537         * m4/lib-check.m4: Look for getspnam in -lgen, too.
57538         From Marco Franzen.
57539
57540 2000-03-07  Paul Eggert  <eggert@twinsun.com>
57541
57542         * lib/savedir.c (savedir): Work even if directory size is
57543         negative; this can happen with some screwy NFS configurations.
57544
57545 2000-03-06  Jim Meyering  <meyering@lucent.com>
57546
57547         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
57548         if it's NULL (because we ran out of memory).  From Bruno Haible.
57549
57550 2000-03-05  Jim Meyering  <meyering@lucent.com>
57551
57552         * lib/localcharset.c ("path-concat.h"): Include.
57553         (get_charset_aliases): Use path_concat instead of ANSI string
57554         concatenation.
57555
57556         * lib/unicodeio.h (PARAMS): Define.
57557         Use it to guard prototype.
57558
57559 2000-03-04  Jim Meyering  <meyering@lucent.com>
57560
57561         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
57562         for lib/localcharset.c.
57563
57564 2000-03-04  Jim Meyering  <meyering@lucent.com>
57565
57566         * lib/Makefile.am (install-exec-local): Create $(libdir) before
57567         installing into it.
57568         (uninstall-local): Uncomment this rule so `make distcheck' works
57569         once again.
57570
57571         * lib/unicodeio.c (<errno.h>): Include it.
57572         (errno): Declare if not defined.
57573
57574         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
57575
57576         * lib/config.charset: New version, incorporating remarks from a linux
57577         i18n mailing list.  From Bruno Haible.
57578
57579 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
57580
57581         * m4/codeset.m4: New file.
57582         * m4/iconv.m4: New file.
57583         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
57584
57585 2000-03-03  Jim Meyering  <meyering@lucent.com>
57586
57587         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
57588
57589 2000-03-02  Jim Meyering  <meyering@lucent.com>
57590
57591         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
57592         the messages come out on separate lines.
57593
57594         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
57595         rather than jm_CHECK_DECLARATIONS.
57596         * m4/decl.m4: Remove now-unused file.
57597
57598         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
57599         geteuid.
57600
57601 2000-03-02  Jim Meyering  <meyering@lucent.com>
57602
57603         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
57604
57605 2000-03-01  Jim Meyering  <meyering@lucent.com>
57606
57607         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
57608         * lib/unicodeio.c: Likewise.
57609
57610 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
57611
57612         * lib/config.charset: New file.
57613         * lib/localcharset.c: New file.
57614         * lib/unicodeio.h, lib/unicodeio.c: New files.
57615         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
57616         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
57617         (noinst_HEADERS): Add unicodeio.h.
57618         (all-local, install-exec-local, charset.alias): New targets.
57619
57620 2000-02-28  Paul Eggert  <eggert@twinsun.com>
57621
57622         * lib/quotearg.c (ALERT_CHAR): New macro.
57623         (quotearg_buffer_restyled): Use it.
57624
57625 2000-02-27  Jim Meyering  <meyering@lucent.com>
57626
57627         * m4/check-decl.m4: Add getenv to the list.
57628
57629 2000-02-27  Jim Meyering  <meyering@lucent.com>
57630
57631         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
57632         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
57633
57634         * lib/backupfile.c: Guard inclusion of stdlib.h with
57635         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
57636         Declare malloc if needed.
57637
57638         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
57639         `#ifndef HAVE_DECL..'
57640         now that autoconf always defines the HAVE_DECL_ symbols.
57641         * lib/human.c: Likewise.
57642         * lib/same.c: Likewise.
57643         * lib/strtoumax.c: Likewise.
57644
57645         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
57646         declaration check was not run.
57647         * lib/hash.c: Likewise.
57648         * lib/human.c: Likewise.
57649         * lib/same.c: Likewise.
57650         * lib/strtoumax.c: Likewise.
57651
57652         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
57653         `.', then first look up the entire `.'-containing string as a login
57654         name.
57655
57656 2000-02-23  Jim Meyering  <meyering@lucent.com>
57657
57658         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
57659         in place of my hack.
57660
57661 2000-02-18  Paul Eggert  <eggert@twinsun.com>
57662
57663         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
57664         (textint): New typedef.
57665         (parser_control): Member year changed from int to textint.
57666         All uses changed.
57667         (YYSTYPE): Removed; replaced by %union with int and textint members.
57668         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
57669         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
57670         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
57671         (tSNUMBER, tUNUMBER): Now of type <textintval>.
57672         (date, number, to_year): Use width of number in digits, not its value,
57673         to determine whether it's a 2-digit year, or a 2-digit time.
57674         (yylex): Store number of digits of numeric tokens.
57675         Reported by John Kendall.
57676
57677         (parser_control): Changed from struct parser_control to typedef (for
57678         consistency).  All uses changed.
57679
57680         (tID): Removed; not used.
57681         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
57682
57683 2000-02-14  Paul Eggert  <eggert@twinsun.com>
57684
57685         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
57686         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
57687
57688 2000-02-12  Jim Meyering  <meyering@lucent.com>
57689
57690         * lib/userspec.c (ISDIGIT): Define it.
57691         (isdigit): Remove definition.
57692         (is_number): Use ISDIGIT, not isdigit.
57693         <libintl.h>: Include.
57694         (_ and N_): Define.
57695         (parse_user_spec): Mark translatable strings.
57696
57697 2000-02-10  Jim Meyering  <meyering@lucent.com>
57698
57699         With these changes, nanosleep.[ch] are finally enough like the other
57700         lib/* replacement files to compile on a few more losing systems.
57701
57702         * lib/nanosleep.h: Don't include config.h.
57703         Remove prototype from declaration of nanosleep.
57704         (PARAMS): Remove now-unneeded definition.
57705         * lib/nanosleep.c: #undef nanosleep.
57706         (rpl_nanosleep): Rename from nanosleep.
57707
57708 2000-02-10  Jim Meyering  <meyering@lucent.com>
57709
57710         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
57711         gnu_nanosleep to rpl_nanosleep.
57712
57713 2000-02-09  Jim Meyering  <meyering@lucent.com>
57714
57715         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
57716         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
57717
57718 2000-02-08  Akim Demaille  <akim@epita.fr>
57719
57720         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
57721         `[' and `]' and remove uses of `changequote'.
57722         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
57723         (AC_SYS_LARGEFILE): Likewise.
57724         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
57725         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
57726         of changequote.
57727         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
57728         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
57729         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
57730         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
57731
57732 2000-02-05  Jim Meyering  <meyering@lucent.com>
57733
57734         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
57735         Remove explicit use of AC_HEADER_TIME.  It is required by
57736         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
57737         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
57738         in autoconf whereby the expansion of the latter ended up preceding
57739         the expansion of its prerequisite, AC_HEADER_TIME.
57740         Reported by Volker Borchert.
57741
57742 2000-02-03  Jim Meyering  <meyering@lucent.com>
57743
57744         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
57745
57746 2000-02-03  Jim Meyering  <meyering@lucent.com>
57747
57748         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
57749         rather than with `#if HAVE_UTMPNAME'.
57750
57751 2000-02-02  Jim Meyering  <meyering@lucent.com>
57752
57753         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
57754         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
57755         Reported by Eli Zaretskii.
57756
57757 2000-02-01  Jim Meyering  <meyering@lucent.com>
57758
57759         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
57760
57761 2000-01-31  Jim Meyering  <meyering@lucent.com>
57762
57763         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
57764         functions.  Add the time.h and sys/time.h headers along with the
57765         AC_REQUIRE'ment of AC_HEADER_TIME.
57766
57767 2000-01-31  Jim Meyering  <meyering@lucent.com>
57768
57769         * lib/nanosleep.h (nanosleep): Guard declaration with
57770         `#if ! HAVE_DECL_NANOSLEEP'.
57771         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
57772         the declaration in that vendor's sys/timers.h.
57773         Reported by Christian Krackowizer.
57774
57775         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
57776         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
57777         (ISPRINT): Likewise.
57778         Reported by Tom Tromey.
57779
57780 2000-01-30  Jim Meyering  <meyering@lucent.com>
57781
57782         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
57783
57784         * m4/prereq.m4 (utmp_includes): Define.
57785         Check for ut_user and ut_name members in both struct utmpx
57786         and struct utmp.
57787
57788 2000-01-30  Jim Meyering  <meyering@lucent.com>
57789
57790         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
57791         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
57792         header files where only utmpx.ut_user is declared.
57793
57794         * lib/readutmp.h (UT_USER): Define.
57795
57796 2000-01-29  Jim Meyering  <meyering@lucent.com>
57797
57798         * m4/lib-check.m4: New file containing library-related checks from
57799         fileutils and sh-utils (textutils had none).
57800
57801 2000-01-28  Jim Meyering  <meyering@lucent.com>
57802
57803         * m4/perl.m4: Change format of warning message to look more like that
57804         from the missing script.  Suggestion from François Pinard.
57805
57806 2000-01-25  Jim Meyering  <meyering@lucent.com>
57807
57808         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
57809         well as time.h in the compile check.
57810         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
57811         Fix typo in cross-compiling case: s/yes/no/.
57812
57813 2000-01-23  Jim Meyering  <meyering@lucent.com>
57814
57815         * m4/jm-macros.m4: Move df-related tests here from
57816         fileutils/configure.in
57817
57818         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
57819         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
57820
57821         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
57822         s/space/ac_fsusage_space/.
57823         (jm_FILE_SYSTEM_USAGE): Take two parameters.
57824
57825         * m4/ftruncate.m4: New file (derived from part of
57826         fileutils/configure.in).
57827         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
57828         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
57829
57830         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
57831         AC_SUBST these here, rather than just in sh-util/configure.in, so
57832         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
57833         all the same.
57834         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
57835         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
57836         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
57837         (AC_SUBST(POW_LIBM)): Likewise.
57838         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
57839
57840 2000-01-23  Jim Meyering  <meyering@lucent.com>
57841
57842         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
57843         obstack.c.
57844
57845 2000-01-22  Jim Meyering  <meyering@lucent.com>
57846
57847         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
57848
57849         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
57850
57851         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
57852         configure.in
57853         (AC_CHECK_HEADERS): Likewise for sh-utils.
57854         (AC_CHECK_HEADERS): Likewise for textutils.
57855         Merge the three lists of headers.
57856
57857         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
57858         from fileutils' configure.in.
57859
57860         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
57861         code. Moved tests into their own function (_jm_DECL_HEADERS) in
57862         check-decl.m4.
57863
57864         * m4/check-decl.m4: Use #if rather than #ifdef.
57865         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
57866         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
57867         (_jm_DECL_HEADERS): Define new function.
57868         (jm_CHECK_DECLARATIONS): Require it.
57869
57870 2000-01-22  Jim Meyering  <meyering@lucent.com>
57871
57872         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
57873         [! HAVE_DECL_STRTOULL]: Declare strtoull.
57874         Required for some AIX systems.  Reported by Christian Krackowizer.
57875         [TESTING] (main): New function.
57876
57877         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
57878         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
57879         letters.
57880
57881         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
57882         iswprint.
57883
57884         * lib/strverscmp.c (ISDIGIT): Define.
57885         (strverscmp): Use ISDIGIT, not isdigit.
57886
57887 2000-01-19  Jim Meyering  <meyering@lucent.com>
57888
57889         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
57890         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
57891         defines `struct timespec' in <sys/time.h>
57892
57893         * m4/c-bs-a.m4: Remove uses of changequote altogether.
57894         Thanks to Akim for explaining.
57895
57896 2000-01-17  Paul Eggert  <eggert@twinsun.com>
57897
57898         * lib/nanosleep.c (nanosleep):
57899         Don't use SA_INTERRUPT to decide whether to call sigaction, as
57900         POSIX.1 doesn't require SA_INTERRUPT and some systems
57901         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
57902         it's been part of POSIX.1 since day 1 (in 1988).
57903
57904 2000-01-17  Jim Meyering  <meyering@lucent.com>
57905
57906         * lib/interlock: Remove unused file.  Reported by François Pinard.
57907
57908 2000-01-16  Paul Eggert  <eggert@twinsun.com>
57909
57910         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
57911         alert, backslash, formfeed, and vertical tab unnecessarily in
57912         shell quoting style.
57913
57914 2000-01-16  Jim Meyering  <meyering@lucent.com>
57915
57916         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
57917         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
57918         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
57919         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
57920
57921 2000-01-16  Jim Meyering  <meyering@lucent.com>
57922
57923         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
57924         because the latter didn't work.
57925
57926 2000-01-15  Jim Meyering  <meyering@lucent.com>
57927
57928         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
57929         (AC_REPLACE_FUNCS): Add memcpy and memset.
57930         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
57931         Add strpbrk.
57932         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
57933
57934 2000-01-12  Jim Meyering  <meyering@lucent.com>
57935
57936         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
57937         (jm_PREREQ): Use it.
57938         (jm_PREREQ_READUTMP): New macro.
57939         (jm_PREREQ): Use it.
57940
57941 2000-01-11  Paul Eggert  <eggert@twinsun.com>
57942
57943         Quote multibyte characters correctly.
57944         * m4/c-bs-a.m4: New file.
57945         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
57946         (jm_PREREQ): Use it.
57947
57948 2000-01-11  Paul Eggert  <eggert@twinsun.com>
57949
57950         * m4/uintmax_t.m4: Port to autoconf 2.13.
57951
57952 2000-01-08  Jim Meyering  <meyering@ascend.com>
57953
57954         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
57955         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
57956
57957 2000-01-04  Jim Meyering  <meyering@ascend.com>
57958
57959         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
57960         jm_STRUCT_DIRENT_D_TYPE.
57961         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
57962         jm_STRUCT_DIRENT_D_INO.
57963         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
57964         jm_STRUCT_UTIMBUF.
57965         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
57966         renamings.
57967         * m4/utime.m4: Likewise.
57968
57969         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
57970         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
57971
57972 2000-01-03  Paul Eggert  <eggert@twinsun.com>
57973
57974         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
57975         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
57976
57977 2000-01-02  Jim Meyering  <meyering@ascend.com>
57978
57979         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
57980         remember if this is necessary.
57981
57982 1999-12-26  Jim Meyering  <meyering@ascend.com>
57983
57984         * m4/jm-macros.m4: Use it here.
57985         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
57986
57987 1999-12-23  Jim Meyering  <meyering@ascend.com>
57988
57989         * m4/jm-macros.m4: Check for clock_gettime (moved from
57990         fileutils/configure.in)
57991         Check for gettimeofday.
57992
57993 1999-12-20  Jim Meyering  <meyering@ascend.com>
57994
57995         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
57996         autoconf-2.14a-1999-12-20.
57997
57998 1999-12-19  Jim Meyering  <meyering@ascend.com>
57999
58000         * m4/lstat-slash.m4: New file.
58001         * m4/jm-macros.m4: Use the new macro:
58002         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
58003
58004 1999-12-07  Jim Meyering  <meyering@ascend.com>
58005
58006         * m4/perl.m4: Require that File::Compare be available, too.
58007         Too many systems seem to lack it.
58008
58009         * m4/strftime.m4: Add checks for most of the cpp macros tested in
58010         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
58011
58012 1999-11-18  Paul Eggert  <eggert@twinsun.com>
58013
58014         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
58015         problem with the QNX 4.25 shell, which doesn't propagate exit
58016         status of failed commands inside shell assignments.
58017
58018 1999-11-17  Jim Meyering  <meyering@ascend.com>
58019
58020         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
58021
58022 1999-11-07  Jim Meyering  <meyering@ascend.com>
58023
58024         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
58025
58026 1999-11-06  Jim Meyering  <meyering@ascend.com>
58027
58028         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
58029         * m4/jm-macros.m4 (jm_MACROS): Use it here.
58030
58031 1999-11-05  Jim Meyering  <meyering@ascend.com>
58032
58033         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
58034         configure.in of textutils, fileutils, and sh-utils into this one
58035         (shared between those packages) file.
58036         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
58037         AC_STRUCT_ST_BLKSIZE.
58038
58039 1999-11-03  Jim Meyering  <meyering@ascend.com>
58040
58041         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
58042         of AC_CHECK_TYPE checks includes unistd.h.
58043         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
58044         Suggestion from Akim Demaille.
58045
58046 1999-10-30  Jim Meyering  <meyering@ascend.com>
58047
58048         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
58049         m4-quoted string.
58050         * m4/ls-mntd-fs.m4: Likewise.
58051         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
58052         * m4/jm-winsz1.m4: Likewise.
58053
58054         * m4/const.m4: Remove file, since the fix made it into the experimental
58055         version of autoconf.
58056         * m4/mktime.m4: Likewise.
58057
58058         * m4/check-type.m4: Remove file, now that the latest version of
58059         AC_CHECK_TYPE takes a third arg to specify additional #includes.
58060
58061         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
58062         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
58063         AC_CHECK_TYPE.
58064
58065 1999-10-04  Jim Meyering  <meyering@ascend.com>
58066
58067         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
58068
58069 1999-09-22  Paul Eggert  <eggert@twinsun.com>
58070
58071         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
58072         2.95.1 bug with HP-UX 10.20.
58073
58074 1999-09-17  Jim Meyering  <meyering@ascend.com>
58075
58076         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
58077         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
58078         due to missing strdup (against sh-utils-2.0).
58079
58080 1999-08-29  Jim Meyering  <meyering@ascend.com>
58081
58082         * m4/jm-macros.m4: Require jm_BISON.
58083         * m4/bison.m4: New file.
58084
58085 1999-08-17  Paul Eggert  <eggert@twinsun.com>
58086
58087         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
58088         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
58089
58090 1999-08-05  Jim Meyering  <meyering@ascend.com>
58091
58092         * m4/getline.m4: Rename test file from conftestdata to conftest.data
58093         to avoid conflicts with `conftest' on 8+3 filesystems.
58094         Suggestion from Eli Zaretskii.
58095
58096 1999-08-04  Jim Meyering  <meyering@ascend.com>
58097
58098         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
58099         fileutils and sh-utils (textutils's getline test was inadequate).
58100         (AM_FUNC_GETLINE): Run this test.
58101         (AC_CHECK_FUNCS): Check for getdelim.
58102         Reported by Bob Proulx.
58103
58104 1999-08-02  Jim Meyering  <meyering@ascend.com>
58105
58106         * m4/jm-macros.m4: Add a comment.
58107
58108 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58109
58110         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
58111         <inttypes.h> defines strtoumax as a macro (and not as a
58112         function).
58113
58114 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58115
58116         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
58117         that we can shift, multiply and divide unsigned long long
58118         values; Ultrix cc can't do it.
58119
58120 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58121
58122         * m4/mktime.m4: New file, which is a preview of what should appear
58123         in the next public autoconf release.
58124
58125 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58126
58127         * m4/lfs.m4: Remove this file.
58128         * m4/largefile.m4: New file.  It contains the old contents of
58129         lfs.m4, except that all names with prefix AC_LFS have been
58130         changed to use the prefix AC_SYS_LARGEFILE instead, to be
58131         compatible with future autoconf versions.  Also, some minor m4
58132         quoting problems have been fixed.
58133
58134 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58135
58136         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
58137         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
58138         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
58139         and simplify the shell code.
58140
58141 1999-08-01  Jim Meyering  <meyering@ascend.com>
58142
58143         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
58144         m4.
58145
58146 1999-07-20  Jim Meyering  <meyering@ascend.com>
58147
58148         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
58149
58150 1999-07-15  Jim Meyering  <meyering@ascend.com>
58151
58152         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
58153
58154 1999-05-22  Jim Meyering  <meyering@ascend.com>
58155
58156         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
58157
58158 1999-05-20  Jim Meyering  <meyering@ascend.com>
58159
58160         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
58161         Add a colon after each `then' in case $4 is empty.
58162
58163 1999-05-16  Jim Meyering  <meyering@ascend.com>
58164
58165         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
58166
58167 1999-05-10  Jim Meyering  <meyering@ascend.com>
58168
58169         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
58170
58171         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
58172         AC_FUNC_MKTIME.
58173
58174 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
58175
58176         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
58177
58178 1999-05-04  Paul Eggert  <eggert@twinsun.com>
58179
58180         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
58181         not CPPFLAGS, so that linking works correctly in IRIX.
58182
58183 1999-04-30  Paul Eggert  <eggert@twinsun.com>
58184
58185         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
58186
58187 1999-04-20  Paul Eggert  <eggert@twinsun.com>
58188
58189         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
58190         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
58191         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
58192         jm_AC_TYPE_UNSIGNED_LONG_LONG.
58193         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
58194
58195         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
58196
58197 1999-04-20  Jim Meyering  <meyering@ascend.com>
58198
58199         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
58200         AC_REPLACE xstroull if necessary.  From Paul Eggert.
58201         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
58202
58203 1999-04-18  Jim Meyering  <meyering@ascend.com>
58204
58205         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
58206         * m4/jm-macros.m4: Use it.
58207
58208 1999-04-06  Jim Meyering  <meyering@ascend.com>
58209
58210         * m4/strftime.m4: Remove test for %f.
58211
58212 1999-03-29  Jim Meyering  <meyering@ascend.com>
58213
58214         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
58215         superset of the AC_TYPE_* checks in the textutils, fileutils,
58216         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
58217         AC_TYPE_PID_T.
58218
58219 1999-03-28  Jim Meyering  <meyering@ascend.com>
58220
58221         * m4/jm-macros.m4: Define GNU_PACKAGE here.
58222         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
58223         replaced e.g., in the *.sh files of the sh-utils.
58224
58225 1999-03-20  Jim Meyering  <meyering@ascend.com>
58226
58227         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
58228         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
58229         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
58230
58231 1999-03-19  Jim Meyering  <meyering@ascend.com>
58232
58233         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
58234
58235 1999-03-12  Jim Meyering  <meyering@ascend.com>
58236
58237         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
58238
58239 1999-03-07  Jim Meyering  <meyering@ascend.com>
58240
58241         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
58242         declared.
58243
58244 1999-02-17  Jim Meyering  <meyering@ascend.com>
58245
58246         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
58247         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
58248
58249 1999-02-07  Jim Meyering  <meyering@ascend.com>
58250
58251         * m4/group-member.m4: New file -- extracted from sh-utils'
58252         configure.in.
58253
58254         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
58255         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
58256
58257 1999-02-06  Jim Meyering  <meyering@ascend.com>
58258
58259         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
58260         * m4/fnmatch.m4: Likewise.
58261         * m4/getgroups.m4: Likewise.
58262         * m4/lstat.m4: Likewise.
58263         * m4/malloc.m4: Likewise.
58264         * m4/putenv.m4: Likewise.
58265         * m4/realloc.m4: Likewise.
58266         * m4/regex.m4: Likewise.
58267         * m4/stat.m4: Likewise.
58268         * m4/strftime.m4: Likewise.
58269         Suggestion from Alain Magloire.
58270
58271         * m4/chown.m4: Use `.$ac_objext', not `.o'.
58272         * m4/fnmatch.m4: Likewise.
58273         * m4/getgroups.m4: Likewise.
58274         * m4/getline.m4: Likewise.
58275         * m4/lstat.m4: Likewise.
58276         * m4/malloc.m4: Likewise.
58277         * m4/memcmp.m4: Likewise.
58278         * m4/putenv.m4: Likewise.
58279         * m4/realloc.m4: Likewise.
58280         * m4/regex.m4: Likewise.
58281         * m4/stat.m4: Likewise.
58282         * m4/strftime.m4: Likewise.
58283         Suggestion from Alain Magloire.
58284
58285         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
58286         an argument.
58287
58288         * m4/regex.m4: Add a run-time Test for proper operation of
58289         re_compile_pattern.
58290
58291 1999-01-31  Jim Meyering  <meyering@ascend.com>
58292
58293         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
58294
58295 1999-01-30  Jim Meyering  <meyering@ascend.com>
58296
58297         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
58298
58299         * m4/jm-mktime.m4: Make this a wrapper around the official
58300         AM_FUNC_MKTIME rather than my private copy, now that the official one
58301         is up to date.
58302         * m4/mktime.m4: Remove file.
58303
58304         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
58305         * m4/uptime.m4: Likewise.
58306         * m4/uintmax_t.m4: Likewise.
58307
58308 1999-01-28  Jim Meyering  <meyering@ascend.com>
58309
58310         * m4/jm-macros.m4: Use jm_AFS.
58311         * m4/afs.m4: New file (from fileutils' configure.in).
58312
58313         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
58314         * m4/chown.m4: Likewise.
58315         * m4/d-ino.m4: Likewise.
58316         * m4/d-type.m4: Likewise.
58317         * m4/fnmatch.m4: Likewise.
58318         * m4/getgroups.m4: Likewise.
58319         * m4/gettext.m4: Likewise.
58320         * m4/jm-mktime.m4: Likewise.
58321         * m4/jm-winsz2.m4: Likewise.
58322         * m4/lcmessage.m4: Likewise.
58323         * m4/ls-mntd-fs.m4: Likewise.
58324         * m4/malloc.m4: Likewise.
58325         * m4/memcmp.m4: Likewise.
58326         * m4/putenv.m4: Likewise.
58327         * m4/realloc.m4: Likewise.
58328         * m4/st_mtim.m4: Likewise.
58329         * m4/strftime.m4: Likewise.
58330
58331 1999-01-16  Jim Meyering  <meyering@ascend.com>
58332
58333         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
58334         (ARGMATCH_DIE_DECL): Define.
58335
58336 1999-01-12  Jim Meyering  <meyering@ascend.com>
58337
58338         * m4/Makefile.am.in: Rewrite to avoid using fmt.
58339         Reported by Lars Hecking.
58340
58341 1999-01-10  Jim Meyering  <meyering@ascend.com>
58342
58343         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
58344         gross kludge.
58345         * m4/inttypes_h.m4: Likewise.
58346         * m4/lstat.m4: Likewise.
58347         * m4/malloc.m4: Likewise.
58348         * m4/readdir.m4: Likewise.
58349         * m4/realloc.m4: Likewise.
58350         * m4/st_dm_mode.m4: Likewise.
58351         * m4/stat.m4: Likewise.
58352         * m4/utimbuf.m4: Likewise.
58353         * m4/utimes.m4: Likewise.
58354
58355         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
58356         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
58357         comments in config.h.in are meaningful.
58358
58359         * m4/jm-macros.m4: Require autoconf-2.13 here.
58360
58361         * m4/regex.m4: By default, don't use the included regex.c on systems
58362         with glibc 2.  Suggestion from Uli Drepper.
58363
58364 1999-01-02  Jim Meyering  <meyering@ascend.com>
58365
58366         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
58367
58368 1998-12-18  Jim Meyering  <meyering@ascend.com>
58369
58370         * m4/Makefile.am.in (Makefile.am): Simplify rule.
58371         Based on a suggestion from Lars Hecking.
58372
58373 1998-11-16  Paul Eggert  <eggert@twinsun.com>
58374
58375         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
58376
58377 1998-11-16  Jim Meyering  <meyering@ascend.com>
58378
58379         * m4/lfs.m4: Double-quote the `uname...` expression.
58380
58381 1998-11-14  Jim Meyering  <meyering@ascend.com>
58382
58383         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
58384         * m4/stat.m4: Likewise.
58385
58386 1998-11-03  Jim Meyering  <meyering@ascend.com>
58387
58388         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
58389         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
58390
58391 1998-10-18  Jim Meyering  <meyering@ascend.com>
58392
58393         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
58394
58395 1998-10-17  Jim Meyering  <meyering@ascend.com>
58396
58397         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
58398         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
58399         calls for those previously hard-coded headers.  Instead, take a new
58400         parameter.
58401         (jm_CHECK_DECLARATIONS): Reflect interface change.
58402         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
58403         (jm_CHECK_DECL_LOCALTIME_R): New macro.
58404
58405         * m4/mktime.m4: Test for spring-forward gap before long-running test.
58406
58407 1998-10-14  Jim Meyering  <meyering@ascend.com>
58408
58409         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
58410         instead of "TZ=America/Vancouver".  From Paul Eggert.
58411
58412 1998-10-11  Jim Meyering  <meyering@ascend.com>
58413
58414         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
58415         This adds a test for a recently added compatibility fix for mktime.c.
58416         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
58417
58418 1998-09-27  Jim Meyering  <meyering@ascend.com>
58419
58420         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
58421
58422         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
58423         ../configure.in, including a change from Gordon Matzigkeit to allow
58424         cross-compiling for the Hurd.
58425
58426         * m4/glibc.m4: New file/macro to test for the GNU C Library
58427         versions 1 and 2.  From Gordon Matzigkeit.
58428         Indent.
58429
58430 1998-09-21  Jim Meyering  <meyering@ascend.com>
58431
58432         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
58433
58434 1998-08-18  Paul Eggert  <eggert@twinsun.com>
58435
58436         Port nanosecond-resolution times to UnixWare 2.1.2 and
58437         pedantic Solaris 2.6.
58438
58439         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
58440         AC_STRUCT_ST_MTIM.
58441         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
58442         Generate name of ns member, instead of just 1 or undef.
58443         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
58444
58445 1998-08-15  Jim Meyering  <meyering@ascend.com>
58446
58447         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
58448         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
58449         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
58450         instead of jm_TYPE_SSIZE_T.
58451
58452 1998-08-12  Jim Meyering  <meyering@ascend.com>
58453
58454         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
58455
58456 1998-08-02  Jim Meyering  <meyering@ascend.com>
58457
58458         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
58459         in acconfig.h manually.
58460
58461 1998-07-31  Paul Eggert  <eggert@twinsun.com>
58462
58463         * m4/st_mtim.m4: New file.
58464
58465 1998-07-28  Jim Meyering  <meyering@ascend.com>
58466
58467         * m4/utimes.m4: Undef stat.
58468
58469 1998-07-25  Jim Meyering  <meyering@ascend.com>
58470
58471         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
58472         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
58473
58474 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
58475
58476         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
58477         uid and gid actually remain unchanged.
58478
58479 1998-07-07  Jim Meyering  <meyering@ascend.com>
58480
58481         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
58482
58483 1998-07-04  Jim Meyering  <meyering@ascend.com>
58484
58485         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
58486         to prove that this macro can be used in packages without regex.c.
58487
58488 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
58489
58490         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
58491         is to be used.
58492
58493 1998-07-03  Jim Meyering  <meyering@ascend.com>
58494
58495         * m4/gettext.m4: Add -lintl if it's found to be necessary.
58496
58497         * m4/gettext.m4: New file -- from gettext-0.10.35.
58498         * m4/lcmessage.m4: Likewise.
58499         * m4/progtest.m4: Likewise.
58500
58501         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
58502         * m4/jm-macros.m4: Require the new macro.
58503
58504 1998-06-29  Jim Meyering  <meyering@ascend.com>
58505
58506         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
58507         for the definition of NGROUPS (used in a system header included
58508         by sys/mount.h).
58509
58510 1998-06-28  Jim Meyering  <meyering@ascend.com>
58511
58512         * m4/ls-mntd-fs.m4: New file.
58513         * m4/fstypename.m4: New file.
58514
58515         * m4/jm-macros.m4: Require the new macro.
58516         * m4/jm-glibc-io.m4: New file.
58517
58518 1998-05-19  Jim Meyering  <meyering@ascend.com>
58519
58520         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
58521         * m4/lchown.m4: New file.
58522
58523         * m4/Makefile.am.in: New file.
58524         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
58525
58526 1998-05-14  Jim Meyering  <meyering@ascend.com>
58527
58528         * m4/Makefile.am (EXTRA_DIST): Add them.
58529         * m4/jm-macros.m4: New file.
58530         * m4/utimbuf.m4: New file.
58531
58532 1998-05-12  Jim Meyering  <meyering@ascend.com>
58533
58534         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
58535
58536 1998-05-11  Jim Meyering  <meyering@ascend.com>
58537
58538         * m4/isc-posix.m4: New file.
58539
58540 1998-05-10  Jim Meyering  <meyering@ascend.com>
58541
58542         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
58543
58544 1998-05-09  Jim Meyering  <meyering@ascend.com>
58545
58546         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
58547         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
58548         with automake.
58549
58550         * m4/ssize_t.m4: New file.
58551         * m4/mktime.m4: Remove file -- the new automake has this now.
58552
58553 1998-04-26  Jim Meyering  <meyering@ascend.com>
58554
58555         * m4/assert.m4: New file.
58556         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
58557
58558 1998-04-05  Jim Meyering  <meyering@ascend.com>
58559
58560         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
58561         (jm_PREREQ): Use it here.
58562
58563 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
58564
58565         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
58566         in acconfig.h.
58567
58568 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
58569
58570         * m4/prereq.m4: New file.
58571         * m4/error.m4: New file.
58572         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
58573
58574 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
58575
58576         * m4/getline.m4: Don't set am_cv_func_working_getline before the
58577         cache-check for the same variable -- that defeated the purpose of
58578         the test; the test program was never run.  This was a problem only
58579         on systems with losing getline functions -- HP-UX 10.20 is one.
58580         Reported by Bjorn Helgaas.
58581
58582 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
58583
58584         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
58585
58586 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
58587
58588         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
58589
58590         * m4/const.m4: New file.  Use an initializer in this declaration
58591         typedef int charset[2]; const charset x;
58592         Reported by Bob Glickstein.
58593
58594 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
58595
58596         * m4/chown.m4: Fix reversed types on -1 args to chown.
58597         From Kaveh Ghazi.
58598
58599 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
58600
58601         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
58602         Add lseek and memchr.
58603
58604         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
58605         T.E.Dickey <dickey@clark.net> said that some older preprocessors
58606         have a 20-character limit on names.
58607
58608 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
58609
58610         * m4/inttypes_h.m4: New file.
58611         * m4/uintmax_t.m4: New file.
58612         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
58613
58614
58615         -----
58616
58617         Local Variables:
58618         coding: utf-8
58619         End:
58620
58621         Copyright (C) 1997-2009 Free Software Foundation, Inc.
58622
58623         Copying and distribution of this file, with or without
58624         modification, are permitted provided the copyright notice
58625         and this notice are preserved.