Merge branch 'upstream' into stable
[gnulib.git] / ChangeLog
1 2009-12-13  Bruno Haible  <bruno@clisp.org>
2
3         Move the malloc checking from module 'list' to new module 'xlist'.
4         * modules/xlist: New file.
5         * lib/gl_xlist.h: New file.
6         * lib/gl_xlist.c: New file.
7         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
8         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
9         gl_list_add_last, gl_list_add_before, gl_list_add_after,
10         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
11         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
12         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
13         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
14         gl_sortedlist_nx_add): New declarations.
15         (struct gl_list_implementation): Rename and change methods accordingly.
16         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
17         (gl_list_nx_create): Renamed from gl_list_create.
18         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
19         (gl_list_nx_set_at): Renamed from gl_list_set_at.
20         (gl_list_nx_add_first): Renamed from gl_list_add_first.
21         (gl_list_nx_add_last): Renamed from gl_list_add_last.
22         (gl_list_nx_add_before): Renamed from gl_list_add_before.
23         (gl_list_nx_add_after): Renamed from gl_list_add_after.
24         (gl_list_nx_add_at): Renamed from gl_list_add_at.
25         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
26         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
27         gl_list_create_empty.
28         (gl_list_nx_create): Renamed from gl_list_create.
29         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
30         (gl_list_nx_set_at): Renamed from gl_list_set_at.
31         (gl_list_nx_add_first): Renamed from gl_list_add_first.
32         (gl_list_nx_add_last): Renamed from gl_list_add_last.
33         (gl_list_nx_add_before): Renamed from gl_list_add_before.
34         (gl_list_nx_add_after): Renamed from gl_list_add_after.
35         (gl_list_nx_add_at): Renamed from gl_list_add_at.
36         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
37         * lib/gl_array_list.c: Don't include xalloc.h.
38         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
39         NULL upon out-of-memory.
40         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
41         out-of-memory.
42         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
43         Change return type to 'int'.
44         (gl_array_nx_set_at): Renamed from gl_array_set_at.
45         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
46         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
47         upon out-of-memory.
48         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
49         upon out-of-memory.
50         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
51         upon out-of-memory.
52         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
53         upon out-of-memory.
54         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
55         out-of-memory.
56         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
57         Update.
58         (gl_array_list_implementation): Update.
59         * lib/gl_carray_list.c: Don't include xalloc.h.
60         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
61         Return NULL upon out-of-memory.
62         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
63         out-of-memory.
64         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
65         Change return type to 'int'.
66         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
67         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
68         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
69         upon out-of-memory.
70         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
71         upon out-of-memory.
72         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
73         out-of-memory.
74         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
75         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
76         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
77         Update.
78         (gl_carray_list_implementation): Update.
79         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
80         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
81         gl_linked_create_empty. Return NULL upon out-of-memory.
82         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
83         out-of-memory.
84         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
85         Change return type to 'int'. Return -1 upon out-of-memory.
86         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
87         out-of-memory.
88         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
89         upon out-of-memory.
90         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
91         upon out-of-memory.
92         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
93         NULL upon out-of-memory.
94         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
95         upon out-of-memory.
96         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
97         out-of-memory.
98         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
99         Update.
100         * lib/gl_linked_list.c: Don't include xalloc.h.
101         (gl_linked_list_implementation): Update.
102         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
103         (add_to_bucket): Change return type to 'int'.
104         (gl_linkedhash_list_implementation): Update.
105         * lib/gl_anytree_list1.h (free_subtree): New function.
106         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
107         gl_tree_create_empty. Return NULL upon out-of-memory.
108         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
109         Change return type to 'int'. Return -1 upon out-of-memory.
110         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
111         out-of-memory.
112         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
113         (gl_tree_remove_node): New function, moved here from
114         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
115         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
116         Update.
117         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
118         malloc, not xmalloc. Return NULL upon out-of-memory.
119         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
120         out-of-memory.
121         (gl_tree_remove_node_from_tree): New function, extracted from
122         gl_tree_remove_node.
123         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
124         upon out-of-memory.
125         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
126         out-of-memory.
127         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
128         upon out-of-memory.
129         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
130         upon out-of-memory.
131         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
132         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
133         not xmalloc. Return NULL upon out-of-memory.
134         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
135         out-of-memory.
136         (gl_tree_remove_node_from_tree): New function, extracted from
137         gl_tree_remove_node.
138         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
139         upon out-of-memory.
140         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
141         out-of-memory.
142         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
143         upon out-of-memory.
144         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
145         upon out-of-memory.
146         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
147         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
148         gl_anytree_list1.h before gl_anyavltree_list2.h.
149         (gl_avltree_list_implementation): Update.
150         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
151         gl_anytree_list1.h before gl_anyavltree_list2.h.
152         (gl_rbtree_list_implementation): Update.
153         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
154         Change return type to 'int'. Return -1 upon out-of-memory. Use
155         __builtin_expect.
156         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
157         (gl_avltreehash_list_implementation): Update.
158         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
159         (gl_rbtreehash_list_implementation): Update.
160         * modules/array-list (Depends-on): Remove xalloc.
161         * modules/carray-list (Depends-on): Likewise.
162         * modules/linked-list (Depends-on): Likewise.
163         * modules/linkedhash-list (Depends-on): Likewise.
164         * modules/avltree-list (Depends-on): Likewise.
165         * modules/rbtree-list (Depends-on): Likewise.
166         * modules/avltreehash-list (Depends-on): Likewise.
167         * modules/rbtreehash-list (Depends-on): Likewise.
168
169         * modules/xsublist: New file.
170         * lib/gl_xsublist.h: New file.
171         * lib/gl_xsublist.c: New file.
172         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
173         (gl_sublist_nx_create): New declaration.
174         * lib/gl_sublist.c: Don't include xalloc.h.
175         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
176         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
177         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
178         Change return type to 'int'. Return -1 upon out-of-memory.
179         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
180         upon out-of-memory.
181         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
182         NULL upon out-of-memory.
183         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
184         upon out-of-memory.
185         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
186         NULL upon out-of-memory.
187         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
188         NULL upon out-of-memory.
189         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
190         upon out-of-memory.
191         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
192         (gl_sublist_list_implementation): Update.
193         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
194         upon out-of-memory.
195         * modules/sublist (Depends-on): Remove xalloc.
196
197         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
198         * tests/test-carray_list.c: Likewise.
199         * tests/test-linked_list.c: Likewise.
200         * tests/test-linkedhash_list.c: Likewise.
201         * tests/test-avltree_list.c: Likewise.
202         * tests/test-rbtree_list.c: Likewise.
203         * tests/test-avltreehash_list.c: Likewise.
204         * tests/test-rbtreehash_list.c: Likewise.
205         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
206         * modules/carray-list-tests (Makefile.am): Likewise.
207         * modules/linked-list-tests (Makefile.am): Likewise.
208         * modules/linkedhash-list-tests (Makefile.am): Likewise.
209         * modules/avltree-list-tests (Makefile.am): Likewise.
210         * modules/rbtree-list-tests (Makefile.am): Likewise.
211         * modules/avltreehash-list-tests (Makefile.am): Likewise.
212         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
213
214         * NEWS: Mention the changes.
215
216         * lib/clean-temp.c: Include gl_xlist.h.
217         * modules/clean-temp (Depends-on): Add xlist.
218
219         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
220         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
221
222         * tests/test-array_oset.c: Include gl_xlist.h.
223         * modules/array-oset-tests (Depends-on): Add xlist.
224
225         Reported by José E. Marchesi <jemarch@gnu.org>.
226
227 2009-12-13  Bruno Haible  <bruno@clisp.org>
228
229         Move the malloc checking from module 'oset' to new module 'xoset'.
230         * modules/xoset: New file.
231         * lib/gl_xoset.h: New file.
232         * lib/gl_xoset.c: New file.
233         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
234         declarations.
235         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
236         (struct gl_oset_implementation): Rename and change methods accordingly.
237         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
238         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
239         'int'. Mark as __warn_unused_result__.
240         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
241         gl_oset_create_empty.
242         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
243         'int'.
244         * lib/gl_array_oset.c: Don't include xalloc.h.
245         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
246         malloc, not xmalloc.
247         (grow): Change return type to 'int'. Don't call xalloc_die.
248         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
249         to 'int'.
250         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
251         'int'.
252         (gl_array_oset_implementation): Update.
253         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
254         gl_tree_create_empty.
255         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
256         'int'.
257         * lib/gl_avltree_oset.c: Don't include xalloc.h.
258         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
259         xmalloc.
260         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
261         not xmalloc.
262         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
263         xmalloc.
264         (gl_avltree_oset_implementation): Update.
265         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
266         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
267         xmalloc.
268         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
269         not xmalloc.
270         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
271         xmalloc.
272         (gl_rbtree_oset_implementation): Update.
273         * modules/array-oset (Depends-on): Remove xalloc.
274         * modules/avltree-oset (Depends-on): Likewise.
275         * modules/rbtree-oset (Depends-on): Likewise.
276         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
277         * tests/test-avltree_oset.c: Likewise.
278         * tests/test-rbtree_oset.c: Likewise.
279         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
280         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
281         * modules/rbtree-oset-tests (Makefile.am): Likewise.
282         * NEWS: Mention the change.
283
284 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
285
286         maint.mk: allow a project to override release-prep commands
287         * top/maint.mk (alpha, beta, stable): Move release-preparatory
288         commands into a new rule.
289         (release-prep): New rule.
290         (release-prep-hook): New overridable variable.
291
292 2009-12-13  Bruno Haible  <bruno@clisp.org>
293
294         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
295
296 2009-12-13  Jim Meyering  <meyering@redhat.com>
297
298         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
299         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
300
301 2009-12-12  Bruno Haible  <bruno@clisp.org>
302
303         duplocale: Tweak.
304         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
305
306 2009-12-12  Karl Berry  <karl@gnu.org>
307
308         * config/srclist.txt (strtoll.c): tab changes, no more sync.
309
310 2009-12-12  Bruno Haible  <bruno@clisp.org>
311
312         * m4/po.m4: Undo incorrect untabification.
313
314 2009-12-12  Bruno Haible  <bruno@clisp.org>
315
316         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
317         * modules/c-strtod (Depends-on): Add locale.
318         * modules/c-strtold (Depends-on): Likewise.
319
320 2009-12-12  Bruno Haible  <bruno@clisp.org>
321
322         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
323
324 2009-12-11  Eric Blake  <ebb9@byu.net>
325
326         setenv: relax requirement in light of POSIX ruling
327         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
328         not NULL.
329         * tests/test-setenv.c (main): Relax test.
330         * tests/test-unsetenv.c (main): Likewise.
331         * doc/posix-functions/setenv.texi (setenv): Document this.
332         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
333
334 2009-12-11  Bruno Haible  <bruno@clisp.org>
335
336         New module 'fd-safer-flag'.
337         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
338         * lib/dup-safer.c (dup_safer_flag): Remove function.
339         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
340         * lib/fd-safer.c (fd_safer_flag): Remove function.
341         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
342         * modules/cloexec (configure.ac): Drop indicator macro.
343         * modules/fd-safer-flag: New file.
344         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
345         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
346         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
347
348 2009-12-11  Bruno Haible  <bruno@clisp.org>
349
350         Tests for module 'nl_langinfo'.
351         * modules/nl_langinfo-tests: New file.
352         * tests/test-nl_langinfo.sh: New file.
353         * tests/test-nl_langinfo.c: New file.
354
355         New module 'nl_langinfo'.
356         * lib/nl_langinfo.c: New file.
357         * m4/nl_langinfo.m4: New file.
358         * modules/nl_langinfo: New file.
359         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
360
361 2009-12-11  Bruno Haible  <bruno@clisp.org>
362
363         Tests for module 'langinfo'.
364         * modules/langinfo-tests: New file.
365         * tests/test-langinfo.c: New file.
366
367         New module 'langinfo'.
368         * lib/langinfo.in.h: New file.
369         * m4/langinfo_h.m4: New file.
370         * modules/langinfo: New file.
371         * doc/posix-headers/langinfo.texi: Mention the new module.
372
373 2009-12-11  Bruno Haible  <bruno@clisp.org>
374
375         * lib/config.charset: Untabify.
376
377 2009-12-11  Bruno Haible  <bruno@clisp.org>
378
379         * modules/unistd-safer (configure.ac): Drop indicator macro.
380
381 2009-12-11  Bruno Haible  <bruno@clisp.org>
382
383         Move pipe2-safer code to its own file.
384         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
385         * lib/pipe-safer.c (pipe2_safer): Remove function.
386         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
387         (Makefile.am): Add it to lib_SOURCES.
388
389 2009-12-10  Bruno Haible  <bruno@clisp.org>
390
391         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
392
393 2009-12-10  Bruno Haible  <bruno@clisp.org>
394
395         Declare which arguments expect non-NULL values, for GCC and clang.
396         * build-aux/arg-nonnull.h: New file.
397         * modules/arg-nonnull: New file.
398         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
399         (inet_ntop, inet_pton): Use it.
400         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
401         (closedir, dirfd, opendir, scandir, alphasort): Use it.
402         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
403         (open, openat): Use it.
404         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
405         (fnmatch): Use it.
406         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
407         (getopt, getopt_long, getopt_long_only): Use it.
408         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
409         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
410         Use it.
411         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
412         (iconv_open): Use it.
413         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
414         (strtoimax, strtoumax): Use it.
415         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
416         (duplocale): Use it.
417         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
418         (frexp, frexpl): Use it.
419         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
420         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
421         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
422         (tsearch, tfind, tdelete, twalk): Use it.
423         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
424         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
425         sigpending): Use it.
426         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
427         (posix_spawn, posix_spawnp, posix_spawnattr_init,
428         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
429         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
430         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
431         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
432         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
433         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
434         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
435         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
436         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
437         Use it.
438         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
439         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
440         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
441         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
442         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
443         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
444         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
445         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
446         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
447         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
448         strtoull, unsetenv): Use it.
449         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
450         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
451         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
452         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
453         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
454         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
455         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
456         (strcasecmp, strncasecmp): Use it.
457         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
458         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
459         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
460         rpl_setsockopt): Use it.
461         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
462         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
463         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
464         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
465         (gettimeofday): Use it.
466         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
467         (times): Use it.
468         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
469         (uname): Use it.
470         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
471         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
472         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
473         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
474         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
475         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
476         unlinkat, write): Use it.
477         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
478         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
479         * lib/argv-iter.h: Include arg-nonnull.h.
480         (_ATTRIBUTE_NONNULL_): Remove macro.
481         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
482         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
483         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
484         optimization.
485         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
486         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
487         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
488         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
489         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
490         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
491         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
492         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
493         * modules/arpa_inet (Depends-on): Add arg-nonnull.
494         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
495         * modules/dirent (Depends-on): Add arg-nonnull.
496         (Makefile.am): Insert arg-nonnull.h into dirent.h.
497         * modules/fcntl-h (Depends-on): Add arg-nonnull.
498         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
499         * modules/fnmatch (Depends-on): Add arg-nonnull.
500         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
501         * modules/getopt-posix (Depends-on): Add arg-nonnull.
502         (Makefile.am): Insert arg-nonnull.h into getopt.h.
503         * modules/glob (Depends-on): Add arg-nonnull.
504         (Makefile.am): Insert arg-nonnull.h into glob.h.
505         * modules/iconv_open (Depends-on): Add arg-nonnull.
506         (Makefile.am): Insert arg-nonnull.h into iconv.h.
507         * modules/inttypes (Depends-on): Add arg-nonnull.
508         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
509         * modules/locale (Depends-on): Add arg-nonnull.
510         (Makefile.am): Insert arg-nonnull.h into locale.h.
511         * modules/math (Depends-on): Add arg-nonnull.
512         (Makefile.am): Insert arg-nonnull.h into math.h.
513         * modules/netdb (Depends-on): Add arg-nonnull.
514         (Makefile.am): Insert arg-nonnull.h into netdb.h.
515         * modules/search (Depends-on): Add arg-nonnull.
516         (Makefile.am): Insert arg-nonnull.h into search.h.
517         * modules/signal (Depends-on): Add arg-nonnull.
518         (Makefile.am): Insert arg-nonnull.h into signal.h.
519         * modules/spawn (Depends-on): Add arg-nonnull.
520         (Makefile.am): Insert arg-nonnull.h into spawn.h.
521         * modules/stdio (Depends-on): Add arg-nonnull.
522         (Makefile.am): Insert arg-nonnull.h into stdio.h.
523         * modules/stdlib (Depends-on): Add arg-nonnull.
524         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
525         * modules/string (Depends-on): Add arg-nonnull.
526         (Makefile.am): Insert arg-nonnull.h into string.h.
527         * modules/strings (Depends-on): Add arg-nonnull.
528         (Makefile.am): Insert arg-nonnull.h into strings.h.
529         * modules/sys_socket (Depends-on): Add arg-nonnull.
530         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
531         * modules/sys_stat (Depends-on): Add arg-nonnull.
532         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
533         * modules/sys_time (Depends-on): Add arg-nonnull.
534         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
535         * modules/sys_times (Depends-on): Add arg-nonnull.
536         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
537         * modules/sys_utsname (Depends-on): Add arg-nonnull.
538         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
539         * modules/time (Depends-on): Add arg-nonnull.
540         (Makefile.am): Insert arg-nonnull.h into time.h.
541         * modules/unistd (Depends-on): Add arg-nonnull.
542         (Makefile.am): Insert arg-nonnull.h into unistd.h.
543         * modules/wchar (Depends-on): Add arg-nonnull.
544         (Makefile.am): Insert arg-nonnull.h into wchar.h.
545         * modules/argv-iter (Depends-on): Add arg-nonnull.
546         * tests/test-canonicalize.c (null_ptr): New function.
547         (main): Use it.
548         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
549         (main): Use it.
550         * tests/test-memmem.c (null_ptr): New function.
551         (main): Use it.
552         Reported by Jim Meyering.
553
554 2009-12-10  Bruno Haible  <bruno@clisp.org>
555
556         Use spaces for indentation, not tabs.
557         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
558         * m4/*.m4: Untabify.
559         * build-aux/*.h: Untabify.
560         * tests/**/*.[hc]: Untabify.
561         * README: New section "Indent with spaces, not TABs", based on
562         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
563         * NEWS: Mention the change.
564
565 2009-12-10  Bruno Haible  <bruno@clisp.org>
566
567         pty test: Fix link error.
568         * modules/pty-tests (Makefile.am): Add the default LDADD value to
569         test_pty_LDADD.
570
571 2009-12-07  Simon Josefsson  <simon@josefsson.org>
572
573         * modules/pty: New file.
574         * modules/pty-tests: New file.
575         * m4/pty.m4: New file.
576         * tests/test-pty.c: New file.
577         * doc/glibc-headers/pty.texi: Modified.
578         * doc/glibc-functions/forkpty.texi: Modified.
579         * doc/glibc-functions/openpty.texi: Modified.
580
581 2009-12-10  Bruno Haible  <bruno@clisp.org>
582
583         Avoid syntax error in C++ mode.
584         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
585
586 2009-12-10  Bruno Haible  <bruno@clisp.org>
587
588         Use sed with option -e.
589         * gnulib-tool (func_version, func_emit_copyright_notice,
590         func_emit_initmacro_end, func_import, func_create_testdir): Pass
591         option -e to sed.
592         * modules/link-warning (Makefile.am): Likewise.
593
594 2009-12-10  Jim Meyering  <meyering@redhat.com>
595
596         mgetgroups: do not write bytes beyond end of malloc'd buffer
597         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
598         username, we call getgroups with a one-element-shorter buffer,
599         but still told it the length was original, max_n_groups.
600
601 2009-12-09  Eric Blake  <ebb9@byu.net>
602
603         cloexec: relax license
604         * modules/cloexec (Maintainer): Add myself.
605         (License): Use LGPL, not GPL.
606
607         link-warning: optimize generation
608         * modules/link-warning (Makefile.am): Reduce process usage.
609
610 2009-12-09  Bruno Haible  <bruno@clisp.org>
611
612         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
613         workaround was added on 2009-11-17.
614
615 2009-12-09  Jim Meyering  <meyering@redhat.com>
616             Bruno Haible  <bruno@clisp.org>
617
618         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
619         * modules/link-warning (Makefile.am): Make the comment-removing sed
620         command more robust in the face of bootstrap-prepended comment lines.
621
622 2009-12-09  Bruno Haible  <bruno@clisp.org>
623
624         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
625         most one group.
626
627 2009-12-09  Simon Josefsson <simon@josefsson.org>
628             Bruno Haible  <bruno@clisp.org>
629
630         * build-aux/link-warning.h: Add copyright notice.
631         * modules/link-warning (Makefile.am): Generate link-warning.h from
632         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
633         * NEWS: Mention change in link-warning module.
634         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
635         * modules/dirent (Makefile.am): Add dependency to dirent.h.
636         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
637         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
638         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
639         * modules/math (Makefile.am): Add dependency to math.h.
640         * modules/search (Makefile.am): Add dependency to search.h.
641         * modules/signal (Makefile.am): Add dependency to signal.h.
642         * modules/spawn (Makefile.am): Add dependency to spawn.h.
643         * modules/stdio (Makefile.am): Add dependency to stdio.h.
644         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
645         * modules/string (Makefile.am): Add dependency to string.h.
646         * modules/strings (Makefile.am): Add dependency to strings.h.
647         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
648         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
649         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
650         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
651         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
652         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
653         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
654         * modules/unistd (Makefile.am): Add dependency to unistd.h.
655         * modules/wchar (Makefile.am): Add dependency to wchar.h.
656
657 2009-12-09  Bruno Haible  <bruno@clisp.org>
658
659         fchdir: Optimize away rpl_fstat when possible.
660         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
661         REPLACE_OPEN_DIRECTORY.
662         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
663
664 2009-12-09  Bruno Haible  <bruno@clisp.org>
665
666         * lib/fchdir.c: Update comment.
667
668 2009-12-09  Bruno Haible  <bruno@clisp.org>
669
670         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
671
672 2009-12-08  Eric Blake  <ebb9@byu.net>
673
674         fchdir: avoid memory leak on re-registration.
675         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
676
677 2009-12-08  Jim Meyering  <meyering@redhat.com>
678
679         init.sh: avoid Solaris 10 /bin/sh portability problem
680         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
681         sourced script:
682           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
683           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
684           bar
685         tests/init.sh relied on that, accepting a --set-path=DIR argument,
686         and two tests used that idiom.
687         * tests/init.sh: Update suggested usage comments.
688         (path_prepend_): New function, to be used in place
689         of the --src-path=DIR option.
690         (setup_): Move PATH-prepending code into path_prepend_.
691         * tests/test-pread.sh: Adapt to new usage.
692         * tests/test-xalloc-die.sh: Likewise.
693
694 2009-12-08  Simon Josefsson  <simon@josefsson.org>
695
696         * doc/gnulib.texi (Glibc pty.h): Add.
697         * doc/glibc-functions/forkpty.texi: Add.
698         * doc/glibc-functions/openpty.texi: Add.
699         Suggested by Bruno Haible.
700
701 2009-12-08  Eric Blake  <ebb9@byu.net>
702
703         fchdir: fix logic bugs
704         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
705         * tests/test-fchdir.c (main): Enhance test.
706         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
707         is in use.
708
709         dup2: fix logic bugs
710         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
711         REPLACE_DUP2 to decide when rpl_dup2 is needed.
712         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
713         exists.
714         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
715
716 2009-12-07  Eric Blake  <ebb9@byu.net>
717
718         unlink: fix m4 detection
719         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
720
721         unistd-safer: add unit test
722         * modules/unistd-safer-tests: New file.
723         * tests/test-dup-safer.c: Likewise.
724         * tests/test-cloexec.c (setmode): Avoid compiler warning.
725         * tests/test-dup2.c (setmode): Likewise.
726         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
727
728         cloexec: preserve text vs. binary across dup_cloexec
729         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
730         mode.
731         * modules/dup2-tests (Depends-on): Add binary-io.
732         * modules/cloexec-tests (Depends-on): Likewise.
733         * tests/test-dup2.c (setmode, is_mode): New helpers.
734         (main): Add tests that translation mode is preserved.
735         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
736         Reported by Bruno Haible.
737
738         mgetgroups: reduce duplicate listings
739         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
740         resulting array.
741         * tests/test-chown.h (test_chown): Simplify client.
742         * tests/test-lchown.h (test_lchown): Likewise.
743
744 2009-12-06  Bruno Haible  <bruno@clisp.org>
745
746         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
747         value.
748
749 2009-12-06  Bruno Haible  <bruno@clisp.org>
750
751         * lib/progname.c: Include stdio.h, stdlib.h.
752         (set_program_name): Reject a NULL argument.
753
754 2009-12-05  Eric Blake  <ebb9@byu.net>
755
756         pipe2-safer: new module
757         * modules/pipe2-safer: New file.
758         * lib/unistd-safer.h (pipe2_safer): New prototype.
759         * lib/unistd--.h (pipe2): New wrapper.
760         * lib/pipe-safer.c (pipe2_safer): New function.
761         * modules/pipe (Depends-on): Add pipe2-safer.
762         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
763
764         stdlib-safer: preserve cloexec flag for mkostemp[s]
765         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
766         fd_safer_flag.
767
768         unistd-safer: allow preservation of cloexec status via flag
769         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
770         prototypes.
771         * lib/dup-safer.c (dup_safer_flag): New function.
772         * lib/fd-safer.c (fd_safer_flag): Likewise.
773         * modules/cloexec (configure.ac): Set witness.
774
775         test-dup2: enhance test
776         * modules/dup2-tests (Depends-on): Add cloexec.
777         * tests/test-dup2.c (main): Enhance test.
778
779         cloexec: add dup_cloexec
780         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
781         header and comments.
782         * lib/cloexec.c (set_cloexec_flag): Add comments.
783         (dup_cloexec): New function, with mingw implementation borrowed
784         from...
785         * lib/w32spawn.h (dup_noinherit): ...here.
786         * modules/execute (Depends-on): Add cloexec.
787         * modules/pipe (Depends-on): Likewise.
788         * modules/cloexec (Depends-on): Add dup2.
789         * modules/cloexec-tests (Files): New file.
790         * tests/test-cloexec.c: Likewise.
791
792         test-xalloc-die: fix test for mingw
793         * modules/xalloc-die-tests (Files): Add tests/init.sh.
794         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
795         directory and .exe suffix off argv[0] output.
796
797         test-fseeko: fix test for mingw
798         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
799         than undefining fseek, so test will pass on mingw.
800
801 2009-12-05  Bruno Haible  <bruno@clisp.org>
802
803         * lib/progname.h (set_program_name): Clarify specification.
804         * lib/progname.c (set_program_name): Likewise.
805         Reported by Jim Meyering.
806
807 2009-12-05  Jim Meyering  <meyering@redhat.com>
808
809         maint.mk: backslash-escape parens in default regexp
810         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
811         backslash-escape the literal parentheses.
812
813         maint.mk: news-date-check: use grep -E
814         * top/maint.mk (today): Define a Make variable, not a...
815         (news-date-check): ...shell variable.
816         (news-date-regexp): Use the Make variable.
817         Use grep's -E option.  Change the failing diagnostic to mention
818         the variable, $(news-date-regexp).
819
820 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
821
822         maintainer-makefile: allow customization of NEWS entry format
823         * top/maint.mk (news-date-regexp): New overridable variable.
824         (news-date-check): Use it.
825
826 2009-12-04  Eric Blake  <ebb9@byu.net>
827
828         mgetgroups: add xgetgroups, and avoid ENOSYS failures
829         * lib/mgetgroups.h (xgetgroups): New prototype.
830         * lib/mgetgroups.c (xgetgroups): New wrapper.
831         (mgetgroups): Handle ENOSYS.
832         * modules/mgetgroups (Depends-on): Add realloc.
833         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
834
835         mgetgroups: avoid argument promotion issues with -1
836         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
837         for invalid gid_t.
838         * tests/test-chown.h (getegid, test_chown): Likewise.
839         * tests/test-lchown.h (getegid, test_lchown): Likewise.
840
841 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
842
843         exclude: Fix header file problems.
844         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
845
846 2009-12-01  Jim Meyering  <meyering@redhat.com>
847
848         fts: fts_open: do not let an empty string cause immediate failure
849         This is required in support of GNU rm, for which the command
850         "rm A '' B" must process and remove both A and B, in spite of
851         the empty string argument.
852         * lib/fts.c (fts_open): Do not let the presence of an empty string
853         cause fts_open to fail immediately.  Most fts-using tools must be
854         able to process all arguments, in order, and can be expected to
855         diagnose such arguments themselves.
856
857 2009-11-30  Eric Blake  <ebb9@byu.net>
858
859         utimens: fix compilation error
860         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
861         Declare variable at right scope.
862
863 2009-11-29  Jim Meyering  <meyering@redhat.com>
864
865         bootstrap: handle perl-5.11's changed --version output
866         * build-aux/bootstrap (get_version): Handle perl separately,
867         since perl-5.11's --version output is different.
868
869 2009-11-28  Jim Meyering  <meyering@redhat.com>
870
871         userspec: depend on the inttostr module, too
872         * modules/userspec (Depends-on): Add inttostr.
873
874         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
875         * lib/userspec.c (parse_with_separator): Do not accept a user ID
876         number of MAXUID when it evaluates to (uid_t) -1.
877         Likewise for group ID.  Reported by Matt McCutchen in
878         <http://savannah.gnu.org/bugs/?28113>
879
880         userspec: reformat to use spaces, not TABs
881         * lib/userspec.c: Expand TABs to spaces.
882         Add Emacs' "indent-tabs-mode: nil" hint.
883
884 2009-11-27  Eric Blake  <ebb9@byu.net>
885
886         getopt-gnu: flush out another BSD bug
887         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
888         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
889         flush out BSD bug.
890         * tests/test-getopt.h (test_getopt): End lists with NULL.
891         * tests/test-getopt_long.h (test_getopt_long): Likewise.
892         (test_getopt_long_posix): Enhance test.
893         * modules/getopt-posix-tests (Depends-on): Add stdbool.
894         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
895         getopt-gnu.
896         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
897         Likewise.
898
899 2009-11-27  Simon Josefsson  <simon@josefsson.org>
900
901         * modules/idpriv-droptemp-tests (Notice): Fix text.
902
903 2009-11-27  Jim Meyering  <meyering@redhat.com>
904
905         test-xalloc-die: avoid spurious failure due to libtool argv difference
906         In a libtool-enabled project, this test would fail due to a difference
907         in the emitted program name, e.g.,
908         -test-xalloc-die: memory exhausted
909         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
910         Use program to avoid that.
911         * modules/xalloc-die-tests (Depends-on): Add progname.
912         * tests/test-xalloc-die.c: Include progname.h".
913         (program_name): Remove decl.
914         (main): Call set_program_name.
915         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
916
917 2009-11-26  Richard Jones  <rjones@redhat.com>
918
919         w32sock: leave win32 error in place.
920         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
921
922 2009-11-26  Eric Blake  <ebb9@byu.net>
923
924         init.sh: suggest to use skip_ and fail_ functions in comments
925         * tests/init.sh: Add a sentence.
926
927 2009-11-25  Bruno Haible  <bruno@clisp.org>
928
929         init.sh: add documentation in comments
930         * tests/init.sh: Add some developer and user documentation.
931
932 2009-11-26  Jim Meyering  <meyering@redhat.com>
933
934         init.sh: accommodate even those who specify bogus srcdir manually
935         * tests/init.sh: Normally, srcdir is guaranteed by automake and
936         configure-time tests to be sanitized, so that there is no need to
937         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
938         (with no double quotes) suffices.  However, since tests may be
939         invoked manually, and since you may explicitly set srcdir to the
940         name of a directory containing spaces, do quote its uses here.
941         * tests/test-pread.sh: Likewise.
942         Suggested by Bruno Haible.
943
944         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
945         * tests/test-pread.sh: Write no data into the pipe, because
946         test-pread actually reads none.  This avoids a diagnostic,
947         "bash: echo: write error: Broken pipe", that arises in the unusual
948         event something is ignoring SIGPIPE, and might be interpreted
949         as some sort of failure.  Reported by Bruno Haible.
950
951 2009-11-25  Jim Meyering  <meyering@redhat.com>
952
953         test-pread: cover failure with ESPIPE and EINVAL
954         * tests/test-pread.c (main): Test for failure, too.
955         * tests/test-pread.sh: Invoke with stdin on a pipe.
956         Suggested by Eric Blake.
957
958         pread: improvement and fix
959         * modules/pread (Depends-on): Depend on lseek, for portability to
960         e.g., mingw.  Suggested by Eric Blake.
961         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
962
963         unistd.in.h: correct declaration of pread
964         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
965         Reported by Richard W.M. Jones.
966
967         test-pread.sh: distribute the test script
968         * modules/pread-tests (Files): Include test-pread.sh.
969
970         test-pread.sh: clean up
971         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
972         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
973         That is unnecessary, since it's always ".".
974         Suggestion from Eric Blake.
975
976         test-pread.sh: make executable
977         * tests/test-pread.sh: Set executable bit.
978         Reported by Eric Blake.
979
980         correct typo in test-pread.sh
981         * tests/test-pread.sh: Add #! line.
982
983         test pread
984         * tests/test-pread.c: New file.
985         * tests/test-pread.sh: Likewise.
986         * modules/pread-tests: Likewise.
987
988         pread: new module
989         * modules/pread: New file.
990         * lib/unistd.in.h (pread): Define/declare.
991         * lib/pread.c (pread): New file.
992         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
993         * modules/unistd (Makefile.am): Substitute witnesses.
994         * doc/posix-functions/pread.texi (pread): Update.
995         * MODULES.html.sh: Add pread.
996
997 2009-11-25  Jim Meyering  <meyering@redhat.com>
998
999         tests/init.sh: new file to be used via most *.sh tests
1000         * tests/init.sh: New file.
1001
1002 2009-11-25  Eric Blake  <ebb9@byu.net>
1003
1004         utimens: work around older Linux failure with symlinks
1005         * lib/utimens.c (lutimensat_works_really): New variable.
1006         (fdutimens, lutimens): Use it to manage kernels that support
1007         nanosecond times on files, but not on symlinks.
1008         Reported by OndÅ™ej Vašík.
1009
1010         utimes: fix configure grammar
1011         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
1012
1013 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
1014
1015         regex: Fix fastmap for multibyte character ranges.
1016         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
1017         characters when a multibyte character range is included.
1018
1019 2009-11-22  Andy Wingo  <wingo@pobox.com>
1020
1021         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
1022         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
1023
1024 2009-11-24  Bruno Haible  <bruno@clisp.org>
1025
1026         doc: Most *_l functions exist in MacOS X 10.5.
1027         * doc/posix-functions/duplocale.texi: Update platforms list.
1028         * doc/posix-functions/freelocale.texi: Likewise.
1029         * doc/posix-functions/newlocale.texi: Likewise.
1030         * doc/posix-functions/uselocale.texi: Likewise.
1031         * doc/posix-functions/isalnum_l.texi: Likewise.
1032         * doc/posix-functions/isalpha_l.texi: Likewise.
1033         * doc/posix-functions/isblank_l.texi: Likewise.
1034         * doc/posix-functions/iscntrl_l.texi: Likewise.
1035         * doc/posix-functions/isdigit_l.texi: Likewise.
1036         * doc/posix-functions/isgraph_l.texi: Likewise.
1037         * doc/posix-functions/islower_l.texi: Likewise.
1038         * doc/posix-functions/isprint_l.texi: Likewise.
1039         * doc/posix-functions/ispunct_l.texi: Likewise.
1040         * doc/posix-functions/isspace_l.texi: Likewise.
1041         * doc/posix-functions/isupper_l.texi: Likewise.
1042         * doc/posix-functions/iswalnum_l.texi: Likewise.
1043         * doc/posix-functions/iswalpha_l.texi: Likewise.
1044         * doc/posix-functions/iswblank_l.texi: Likewise.
1045         * doc/posix-functions/iswcntrl_l.texi: Likewise.
1046         * doc/posix-functions/iswctype_l.texi: Likewise.
1047         * doc/posix-functions/iswdigit_l.texi: Likewise.
1048         * doc/posix-functions/iswgraph_l.texi: Likewise.
1049         * doc/posix-functions/iswlower_l.texi: Likewise.
1050         * doc/posix-functions/iswprint_l.texi: Likewise.
1051         * doc/posix-functions/iswpunct_l.texi: Likewise.
1052         * doc/posix-functions/iswspace_l.texi: Likewise.
1053         * doc/posix-functions/iswupper_l.texi: Likewise.
1054         * doc/posix-functions/iswxdigit_l.texi: Likewise.
1055         * doc/posix-functions/isxdigit_l.texi: Likewise.
1056         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
1057         * doc/posix-functions/strcasecmp_l.texi: Likewise.
1058         * doc/posix-functions/strcoll_l.texi: Likewise.
1059         * doc/posix-functions/strfmon_l.texi: Likewise.
1060         * doc/posix-functions/strftime_l.texi: Likewise.
1061         * doc/posix-functions/strncasecmp_l.texi: Likewise.
1062         * doc/posix-functions/strxfrm_l.texi: Likewise.
1063         * doc/posix-functions/tolower_l.texi: Likewise.
1064         * doc/posix-functions/toupper_l.texi: Likewise.
1065         * doc/posix-functions/towctrans_l.texi: Likewise.
1066         * doc/posix-functions/towlower_l.texi: Likewise.
1067         * doc/posix-functions/towupper_l.texi: Likewise.
1068         * doc/posix-functions/wcscoll_l.texi: Likewise.
1069         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
1070         * doc/posix-functions/wctrans_l.texi: Likewise.
1071         * doc/posix-functions/wctype_l.texi: Likewise.
1072         * doc/glibc-functions/strptime_l.texi: Likewise.
1073         * doc/glibc-functions/strtod_l.texi: Likewise.
1074         * doc/glibc-functions/strtof_l.texi: Likewise.
1075         * doc/glibc-functions/strtol_l.texi: Likewise.
1076         * doc/glibc-functions/strtold_l.texi: Likewise.
1077         * doc/glibc-functions/strtoll_l.texi: Likewise.
1078         * doc/glibc-functions/strtoul_l.texi: Likewise.
1079         * doc/glibc-functions/strtoull_l.texi: Likewise.
1080         * doc/glibc-functions/wcsftime_l.texi: Likewise.
1081         * doc/glibc-functions/wcstod_l.texi: Likewise.
1082         * doc/glibc-functions/wcstof_l.texi: Likewise.
1083         * doc/glibc-functions/wcstol_l.texi: Likewise.
1084         * doc/glibc-functions/wcstold_l.texi: Likewise.
1085         * doc/glibc-functions/wcstoll_l.texi: Likewise.
1086         * doc/glibc-functions/wcstoul_l.texi: Likewise.
1087         * doc/glibc-functions/wcstoull_l.texi: Likewise.
1088
1089 2009-11-24  Bruno Haible  <bruno@clisp.org>
1090
1091         duplocale: Fix logic bug.
1092         * lib/duplocale.c: Don't include <langinfo.h>.
1093         (_NL_LOCALE_NAME): Remove macro.
1094         (rpl_duplocale): Use setlocale instead of nl_langinfo.
1095         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
1096
1097 2009-11-23  Jim Meyering  <meyering@redhat.com>
1098
1099         test-update-copyright: don't hard-code /usr/bin/perl
1100         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
1101         perl to print the current year.  Gilles Espinasse reported that
1102         the replaced use of perl was hard-coded as /usr/bin/perl.
1103
1104 2009-11-23  Bruno Haible  <bruno@clisp.org>
1105
1106         duplocale: Add support for glibc 2.3.x.
1107         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
1108
1109 2009-11-22  Bruno Haible  <bruno@clisp.org>
1110
1111         vasnprintf: Tiny optimization.
1112         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
1113         MacOS X.
1114
1115 2009-11-22  Bruno Haible  <bruno@clisp.org>
1116
1117         Tests for module 'duplocale'.
1118         * modules/duplocale-tests: New file.
1119         * tests/test-duplocale.c: New file.
1120
1121         New module 'duplocale'.
1122         * m4/duplocale.m4: New file.
1123         * lib/locale.in.h (duplocale): New declaration.
1124         * lib/duplocale.c: New file.
1125         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
1126         gl_LOCALE_H_DEFAULTS): New macros.
1127         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
1128         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
1129         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
1130         REPLACE_DUPLOCALE.
1131         * modules/duplocale: New file.
1132         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
1133
1134 2009-11-22  Bruno Haible  <bruno@clisp.org>
1135
1136         * modules/locale-tests (configure.ac): Test for newlocale function.
1137         * tests/test-locale.c: When the system has extended locale functions,
1138         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
1139
1140         locale: Make locale_t available when possible.
1141         * lib/locale.in.h: Include <xlocale.h> when it exists.
1142         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
1143         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
1144         * modules/locale (Depends-on): Add extensions.
1145         (Makefile.am): Also substitute HAVE_XLOCALE_H.
1146         * doc/posix-headers/locale.texi: Document the problem with locale_t.
1147
1148 2009-11-22  Bruno Haible  <bruno@clisp.org>
1149
1150         Add comments.
1151         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
1152         invocation.
1153         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
1154         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
1155         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
1156
1157 2009-11-22  Bruno Haible  <bruno@clisp.org>
1158
1159         error: account for the possibility of freopen (stdout).
1160         * lib/error.c: Include <unistd.h>.
1161         (flush_stdout): New function, extracted from error and error_at_line.
1162         Determine stdout's fd dynamically.
1163         (error, error_at_line): Invoke flush_stdout.
1164         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
1165         * modules/error (Depends-on): Add unistd.
1166
1167 2009-11-22  Bruno Haible  <bruno@clisp.org>
1168
1169         diffseq: Add comment.
1170         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
1171
1172 2009-11-22  Jim Meyering  <meyering@redhat.com>
1173
1174         c-stack: avoid defining an unused static function
1175         * lib/c-stack.c (find_stack_direction): Do not define this function
1176         when it will not be used.
1177
1178         diffseq: avoid spurious gcc warnings
1179         * lib/diffseq.h (IF_LINT2): Define.
1180         (compareseq): Use it to initialize two members of "part".
1181         This avoids two used-uninitialized warnings.
1182
1183 2009-11-21  Jim Meyering  <meyering@redhat.com>
1184
1185         c-stack: avoid "ignoring return value of `write'" warning
1186         * lib/c-stack.c: Include "ignore-value.h".
1187         (die): Explicitly ignore each write return value.
1188         * modules/c-stack (Depends-on): Add ignore-value.
1189
1190 2009-11-21  Bruno Haible  <bruno@clisp.org>
1191
1192         diffseq: reduce scope of variable 'best'.
1193         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
1194         variable, earlier used for two different purposes.
1195
1196 2009-11-21  Jim Meyering  <meyering@redhat.com>
1197
1198         diffseq: remove useless assignment to "best"
1199         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
1200         assignment.  At that point "best" is already guaranteed to be zero.
1201
1202 2009-11-20  Eric Blake  <ebb9@byu.net>
1203
1204         build: mention ftp redirector in release announcements
1205         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
1206         values that used to come from cfg.mk; mention FTP redirect URL.
1207         * build-aux/announce-gen: Mention the mirror list.
1208         Suggested by Karl Berry.
1209
1210         nanosleep: improve port to mingw
1211         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
1212         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
1213         LIB_NANOSLEEP, but only when needed.
1214         * modules/select (Link): Document LIBSOCKET.
1215         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
1216         enough.
1217
1218         nanosleep: work around cygwin bug
1219         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
1220         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
1221         bug.
1222         (getnow): Delete, not needed.
1223         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
1224         LIB_CLOCK_GETTIME.
1225         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
1226         clock-time, gettime.
1227         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
1228         bug.
1229         * modules/nanosleep-tests: New test.
1230         * tests/test-nanosleep.c: New file.
1231
1232         sleep: work around cygwin bug
1233         * lib/sleep.c (rpl_sleep): Work around the bug.
1234         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
1235         (gl_PREREQ_SLEEP): Delete unused macro.
1236         * modules/sleep (Depends-on): Add verify.
1237         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
1238         * modules/unistd (Makefile.am): Substitute witness.
1239         * lib/unistd.in.h (sleep): Update prototype.
1240         * doc/posix-functions/sleep.texi (sleep): Document the bug.
1241         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
1242         * modules/sleep-tests (Depends-on): Check for alarm.
1243
1244 2009-11-20  Jim Meyering  <meyering@redhat.com>
1245
1246         maint.mk: improve sc_prohibit_magic_number_exit
1247         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
1248         so it does not match uses like System.exit(1).
1249         Add comments showing how to correct all offenders.
1250
1251 2009-11-19  Eric Blake  <ebb9@byu.net>
1252
1253         xalloc-die-tests: add missing library
1254         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
1255
1256         test-xvasprintf: silence compiler warnings
1257         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
1258         empty string from gcc.
1259
1260 2009-11-19  Jim Meyering  <meyering@redhat.com>
1261
1262         xfreopen: new module, from coreutils
1263         * modules/xfreopen: New module.
1264         * lib/xfreopen.c: New file.
1265         * lib/xfreopen.h: New file.
1266         * MODULES.html.sh (File stream based Input/Output"): Add it.
1267
1268 2009-11-19  Eric Blake  <ebb9@byu.net>
1269
1270         manywarnings: depend on warnings
1271         * modules/manywarnings (Depends-on): Add warnings.
1272
1273         build: avoid compiler warnings
1274         * lib/select.c (rpl_select): Delete unused variable.
1275         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
1276
1277 2009-11-18  Eric Blake  <ebb9@byu.net>
1278
1279         tests: avoid false negative with --with-packager
1280         * tests/test-version-etc.sh: Discard packager information.
1281         * tests/test-argp-version-etc-1.sh: Likewise.
1282         Reported by Mike Frysinger.
1283
1284         utimens: fix regression on Solaris
1285         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
1286         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
1287         can only change fd timestamps via futimesat.  Instead, use an
1288         additional witness macro to avoid BSD bug.
1289         Reported by Jim Meyering.
1290
1291 2009-11-17  Eric Blake  <ebb9@byu.net>
1292
1293         usleep: use it to simplify tests
1294         * modules/stat-time-tests (Depends-on): Add usleep.
1295         (configure.ac): Drop usleep check.
1296         * modules/chown-tests (Depends-on, configure.ac): Likewise.
1297         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
1298         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
1299         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
1300         * modules/openat-tests (Depends-on, configure.ac): Likewise.
1301         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
1302         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
1303         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
1304         Likewise.
1305         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
1306         * tests/test-lchown.h (nap): Likewise.
1307         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
1308         * tests/test-stat-time.c (nap): Likewise.
1309         * tests/test-utimens-common.h (nap): Update comments.
1310
1311         usleep: new module
1312         * modules/usleep: New file.
1313         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
1314         * lib/usleep.c (usleep): Likewise.
1315         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
1316         * modules/unistd (Makefile.am): Substitute witnesses.
1317         * lib/unistd.in.h (usleep): Add declaration.
1318         * doc/pastposix-functions/usleep.texi (usleep): Document this.
1319         * MODULES.html.sh (Date and time): Likewise.
1320         * modules/usleep-tests (Depends-on): New test.
1321         * tests/test-usleep.c: New file.
1322
1323         chown: work around OpenBSD bug
1324         * lib/chown.c (rpl_chown): Work around the bug.
1325         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
1326         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
1327         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
1328         * modules/chown (Depends-on): Add stdbool.
1329         * modules/lchown (Depends-on): Likewise.
1330         * doc/posix-functions/chown.texi (chown): Document the bug.
1331         * doc/posix-functions/lchown.texi (lchown): Likewise.
1332         * tests/test-lchown.h (test_chown): Relax test.
1333
1334         mkstemp: avoid conflict with C++ keyword template
1335         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
1336         * lib/mkostemp.c (mkostemp): Likewise.
1337         * lib/mkostemps.c (mkostemps): Likewise.
1338         * lib/mkstemp.c (mkstemp): Likewise.
1339         * lib/mkstemps.c (mkstemps): Likewise.
1340
1341         xalloc-die-tests: optimize
1342         * tests/test-xalloc-die.sh: Reduce number of processes.
1343
1344 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1345
1346         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
1347         patch from ludo@gnu.org (Ludovic Courtès).
1348
1349 2009-11-17  Jim Meyering  <meyering@redhat.com>
1350
1351         version-etc: use proper license string
1352         * modules/version-etc (License): Use LGPL, not LGPLv3+.
1353         * modules/version-etc-fsf: Likewise.
1354
1355 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1356
1357         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
1358         printed to stdout.  Deal with EOL differences.
1359
1360 2009-11-17  Eric Blake  <ebb9@byu.net>
1361
1362         unsetenv: work around Solaris bug
1363         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
1364         * lib/unsetenv.c (rpl_unsetenv): Work around it.
1365         Reported by Jim Meyering.
1366
1367         vasnprintf: avoid compiler warnings
1368         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
1369         variables.
1370         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
1371
1372 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1373
1374         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
1375         settings since xalloc-die is no longer the self test,
1376         xalloc-die.sh is.
1377
1378 2009-11-17  Jim Meyering  <meyering@redhat.com>
1379
1380         test-xalloc-die.sh: make the code agree with the commit log
1381         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
1382         at the end, just in case you happen to have a test-xalloc-die
1383         program in some other PATH directory.
1384
1385         test-xalloc-die.sh: fix a portability bug
1386         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
1387         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
1388         Otherwise, argv[0] (as often seen in diagnostics) would be too
1389         system-dependent, sometimes with, and sometimes without the leading "./".
1390
1391         version-etc-fsf: relax license to LGPLv3+
1392         * modules/version-etc-fsf (License): Relax license.
1393
1394 2009-11-16  Eric Blake  <ebb9@byu.net>
1395
1396         xalloc-die-tests: avoid printing null pointer
1397         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
1398         shell script.
1399         * tests/test-xalloc-die.c (program_name): Declare.
1400         * tests/test-xalloc-die.sh (tmpfiles): New file.
1401
1402         setenv, unsetenv: work around various bugs
1403         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
1404         (setenv) [HAVE_SETENV]: Work around bugs.
1405         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
1406         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
1407         for bugs.
1408         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
1409         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
1410         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
1411         * modules/stdlib (Makefile.am): Update substitutions.
1412         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
1413         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
1414         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
1415         * modules/setenv-tests: New test.
1416         * modules/unsetenv-tests: Likewise.
1417         * tests/test-setenv.c: New file.
1418         * tests/test-unsetenv.c: Likewise.
1419
1420 2009-11-16  Jim Meyering  <meyering@redhat.com>
1421
1422         version-etc: relax license to LGPLv3+
1423         * modules/version-etc (License): Relax license.
1424
1425         better AC_REQUIRE expanded-before-required-warning avoidance
1426         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
1427         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
1428         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
1429         which is no longer needed.
1430
1431 2009-11-16  Eric Blake  <ebb9@byu.net>
1432
1433         test-freading: clean up temporary file
1434         * tests/test-freading.c (main): Remove file on success, and use
1435         ASSERT more liberally.
1436         Reported by Jim Meyering.
1437
1438 2009-11-16  Jim Meyering  <meyering@redhat.com>
1439
1440         avoid new AC_REQUIRE expanded-before-required warnings
1441         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
1442         merely using it.
1443         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
1444         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
1445
1446 2009-11-15  Simon Josefsson  <simon@josefsson.org>
1447
1448         * tests/test-xalloc-die.c: New file.
1449         * modules/xalloc-die-tests: New file.
1450         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
1451         XFAIL_TESTS so it can be appended by modules.
1452
1453 2009-11-15  Simon Josefsson  <simon@josefsson.org>
1454
1455         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
1456         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
1457
1458 2009-11-14  Eric Blake  <ebb9@byu.net>
1459
1460         fnmatch: avoid compiler warning
1461         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
1462         to silence compiler warning about mismatch signedness in ?:.
1463         Reported by Robert Millan.
1464
1465         intprops: add double-inclusion guard
1466         * lib/intprops.h: Allow idempotent includes.
1467         Suggested by Bruce Korb.
1468
1469         openat: detect Solaris fchownat bug
1470         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
1471         penalizing glibc chownat when only lchownat is broken.
1472         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
1473         trailing slash bugs.
1474         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
1475         * modules/openat-tests (Files): Include more files.
1476         (Depends-on): Add mgetgroups, sleep, stat-time.
1477         (configure.ac): Add additional checks.
1478         (Makefile.am): Build new test.
1479         * tests/test-fchownat.c: New file.
1480
1481         lchown: detect Solaris and FreeBSD bug
1482         * lib/lchown.c (rpl_lchown): Work around bug.
1483         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
1484         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1485         * modules/unistd (Makefile.am): Populate it.
1486         * lib/unistd.in.h (lchown): Update declaration.
1487         * doc/posix-functions/lchown.texi (lchown): Document the bug.
1488         * modules/lchown-tests: New file.
1489         * tests/test-lchown.h (test_lchown): Likewise.
1490         * tests/test-lchown.c (main): Likewise.
1491
1492         chown: detect Solaris and FreeBSD bug
1493         * lib/chown.c (rpl_chown): Work around bug.
1494         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
1495         (gl_PREREQ_CHOWN): Delete.
1496         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1497         * modules/unistd (Makefile.am): Populate it.
1498         * lib/unistd.in.h (chown): Update declaration.
1499         * lib/lchown.c (chown): Update client.
1500         * modules/lchown (Depends-on): Add lstat.
1501         * doc/posix-functions/chown.texi (chown): Document the bug.
1502         * doc/posix-functions/getgroups.texi (getgroups): Document
1503         getgroups pitfall.
1504         * modules/chown-tests: New file.
1505         * tests/test-chown.h (test_chown): Likewise.
1506         * tests/test-chown.c (main): Likewise.
1507
1508 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
1509
1510         gnulib-tool: correctly detect absence of m4 directories
1511         * gnulib-tool: Avoid extra newline on data passed to wc -l.
1512
1513 2009-11-14  Jim Meyering  <meyering@redhat.com>
1514
1515         maint.mk: Prohibit inclusion of "xalloc.h" without use.
1516         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
1517
1518 2009-11-14  John W. Eaton  <jwe@gnu.org>
1519
1520         strftime.h: wrap funtion declaration in extern "C" block
1521         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
1522
1523 2009-11-13  Eric Blake  <ebb9@byu.net>
1524
1525         getgroups: avoid compiler warning
1526         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
1527
1528         getgroups: work around FreeBSD bug
1529         * lib/getgroups.c (rpl_getgroups): Work around the bug.
1530         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
1531         * doc/posix-functions/getgroups.texi (getgroups): Document it.
1532         * tests/test-getgroups.c (main): Fix buffer overrun.
1533
1534         getgroups: avoid compilation failure
1535         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
1536         * modules/getgroups (Depends-on): Add stdint.
1537
1538 2009-11-13  Jim Meyering  <meyering@redhat.com>
1539
1540         test-getgroups: avoid compilation failure
1541         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
1542
1543 2009-11-13  Eric Blake  <ebb9@byu.net>
1544
1545         mgetgroups: new module, taken from coreutils
1546         * modules/mgetgroups: New file.
1547         * lib/mgetgroups.h: Likewise.
1548         * lib/mgetgroups.c (mgetgroups): Likewise.
1549         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
1550         * MODULES.html.sh (Users and groups): Mention it.
1551
1552         getgroups: don't expose GETGROUPS_T to user
1553         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
1554         an element at a time if GETGROUPS_T is wrong size.
1555         * lib/getugroups.h (getugroups): Change signature.
1556         * lib/unistd.in.h (getgroups): Likewise.
1557         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
1558         signature needs fixing.
1559         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
1560         AC_TYPE_GETGROUPS.
1561         * modules/group-member (Depends-on): Add getgroups.
1562         * lib/group-member.c (group_info, get_group_info): Use gid_t.
1563         (group_member): Rely on getgroups replacement.
1564         * lib/getugroups.c (getugroups): Use gid_t.
1565         * tests/test-getgroups.c (main): Likewise.
1566         * NEWS: Mention the signature change.
1567         * doc/posix-functions/getgroups.texi (getgroups): Mention the
1568         problem with signature.
1569         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
1570         GETGROUPS_T is still useful for setgroups.
1571
1572         getgroups, getugroups: provide stubs for mingw
1573         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
1574         * lib/getugroups.c (getugroups): Likewise.
1575         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
1576         function.  Modernize replacement scheme.
1577         (gl_PREREQ_GETGROUPS): Delete.
1578         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
1579         * modules/getgroups (configure.ac): Declare witness.
1580         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
1581         * modules/unistd (Depends-on): Substitute witness.
1582         * lib/unistd.in.h (getgroups): Declare replacement.
1583
1584         getgroups: avoid calling exit
1585         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
1586         drop xalloc.
1587         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
1588         dependencies.
1589         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
1590         exiting, in the rare case of malloc failure.
1591
1592         getgroups: fix logic error
1593         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
1594         has more than 20 groups.
1595         * modules/getgroups-tests: New test.
1596         * tests/test-getgroups.c: New file.
1597
1598 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1599
1600         * tests/test-base64.c: Improve.
1601
1602 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1603
1604         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
1605         Blake <ebb9@byu.net>.
1606
1607 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1608
1609         * tests/test-xvasprintf.c: Add %s%s related checks.
1610
1611 2009-11-12  Eric Blake  <ebb9@byu.net>
1612
1613         version-etc: match standards.texi style
1614         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
1615         and use <> only for URLs.
1616
1617 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
1618
1619         fts: do not fail on a submount during traversal
1620         * lib/fts.c (fts_build): Read the stat info again after opening
1621         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
1622         Original report at http://bugzilla.redhat.com/501848.
1623
1624 2009-11-12  Jim Meyering  <meyering@redhat.com>
1625
1626         bootstrap: sync from coreutils
1627         * build-aux/bootstrap (bootstrap_epilogue): New function.
1628         Use git_modules_config in one more place.  This make bootstrap's
1629         --gnulib-srcdir option more useful for testing.
1630
1631         bootstrap: generalize autoheader check
1632         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
1633         AC_CONFIG_HEADERS.
1634
1635 2009-11-11  Eric Blake  <ebb9@byu.net>
1636
1637         mkfifoat: use new modules for Solaris and BSD bugs
1638         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
1639         * lib/mkfifoat.c (mknodat): Split...
1640         * lib/mknodat.c (mknodat): ...into new file.
1641         * modules/mkfifoat (Files): Ship new file.
1642         (Depends-on): Add mkfifo, mknod.
1643         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
1644         (Depends-on): Add symlink.
1645         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
1646         redundant with test_mkfifo.h.
1647         (do_mkfifoat, do_mknodat): New helpers.
1648
1649         mknod: new module
1650         * modules/mknod: New file.
1651         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
1652         * lib/mknod.c (mknod): Likewise.
1653         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
1654         defaults.
1655         * modules/sys_stat (Makefile.am): Substitute them.
1656         * lib/sys_stat.in.h (mknod): Declare replacement.
1657         * MODULES.html.sh (Support for systems lacking POSIX:2008):
1658         Document it.
1659         * doc/posix-functions/mknod.texi (mknod): Likewise.
1660         * modules/mknod-tests: New test.
1661         * tests/test-mknod.c: Likewise.
1662
1663         mkfifo: new module
1664         * modules/mkfifo: New file.
1665         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
1666         * lib/mkfifo.c (mkfifo): Likewise.
1667         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
1668         defaults.
1669         * modules/sys_stat (Makefile.am): Substitute them.
1670         * lib/sys_stat.in.h (mkfifo): Declare replacement.
1671         * MODULES.html.sh (Support for systems lacking POSIX:2008):
1672         Document it.
1673         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
1674         * modules/mkfifo-tests: New test.
1675         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
1676         from test-mkfifoat.c.
1677         * tests/test-mkfifo.c: New file.
1678
1679         readlink: detect FreeBSD bug
1680         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
1681         slash on symlink.
1682         * doc/posix-functions/readlink.texi (readlink): Document the bug.
1683         * tests/test-readlink.h (test_readlink): Enhance test.
1684
1685         symlink: detect FreeBSD bug
1686         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
1687         slash on symlink.
1688         * doc/posix-functions/symlink.texi (symlink): Document the bug.
1689         * tests/test-symlink.h (test_symlink): Enhance test.
1690
1691 2009-11-10  Eric Blake  <ebb9@byu.net>
1692
1693         link: detect FreeBSD bug
1694         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
1695         symlink.
1696         * doc/posix-functions/link.texi (link): Document the bug.
1697         * tests/test-link.h (test_link): Enhance test.
1698         * tests/test-linkat.c (main): Update caller.
1699
1700         unlink, remove: detect FreeBSD bug
1701         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
1702         slash on symlink.
1703         * doc/posix-functions/unlink.texi (unlink): Document the bug.
1704         * doc/posix-functions/remove.texi (remove): Likewise.
1705         * tests/test-unlink.h (test_unlink): Enhance test.
1706         * tests/test-remove.c (main): Likewise.
1707
1708 2009-11-09  Eric Blake  <ebb9@byu.net>
1709
1710         rename: detect FreeBSD bug
1711         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
1712         slash on symlink.
1713         * modules/renameat-tests (Depends-on): Add filenamecat.
1714         * tests/test-rename.h (test_rename): Allow one more errno.
1715         * tests/test-renameat.c (main): Likewise.
1716         * doc/posix-functions/rename.texi (rename): Document the bug.
1717
1718         open: detect FreeBSD bug
1719         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
1720         symlink.
1721         * doc/posix-functions/open.texi (open): Document the bug.
1722         * doc/posix-functions/utimes.texi (utimes): Likewise.
1723         * tests/test-open.h (test_open): Add parameters, and test symlink
1724         handling.
1725         * tests/test-open.c (main): Adjust caller.
1726         * tests/test-fcntl-safer.c (main): Likewise.
1727         * modules/open-tests (Depends-on): Add stdbool, symlink.
1728         * modules/fcntl-safer-tests (Depends-on): Likewise.
1729         * tests/test-openat.c (main): Add test-open tests.
1730
1731         stat: detect FreeBSD bug
1732         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
1733         symlink.
1734         * doc/posix-functions/stat.texi (stat): Document the bug.
1735         * tests/test-stat.h (test_stat_func): Add argument.
1736         * tests/test-stat.c (main): Adjust caller.
1737         * tests/test-fstatat.c (main): Likewise.
1738         * modules/stat-tests (Depends-on): Add stdbool, symlink.
1739         Reported by Jim Meyering.
1740
1741 2009-11-09  James Youngman  <jay@gnu.org>
1742
1743         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
1744         * lib/strftime.c: Correct placement of #include "ignore-value.h".
1745
1746 2009-11-08  Jim Meyering  <meyering@redhat.com>
1747
1748         utimens: remove invalid futimesat call
1749         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
1750         It used the file descriptor of the target file as the DIR_FD
1751         parameter and NULL as the file name.  That caused failure with
1752         errno == EFAULT on FreeBSD-8.0-rc2
1753
1754 2009-11-07  Eric Blake  <ebb9@byu.net>
1755
1756         fflush, freadseek: use fseeko, not fseek
1757         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
1758         (clear_ungetc_buffer): Avoid potential problems on large files.
1759         * lib/freadseek.c (freadseek): Likewise.
1760         * modules/freadseek (Depends-on): Add fseeko.
1761         * modules/fseek (configure.ac): Set a witness.
1762         * tests/test-fflush.c (main): Use fseeko.
1763         * tests/test-fpurge.c (fseek): Disable link warning.
1764         * tests/test-freadable.c (fseek): Likewise.
1765         * tests/test-freading.c (fseek): Likewise.
1766         * tests/test-fseeko.c (fseek): Likewise.
1767         * tests/test-ftell.c (fseek): Likewise.
1768         * tests/test-ftello.c (fseek): Likewise.
1769         * tests/test-fwritable.c (fseek): Likewise.
1770         * tests/test-fwriting.c (fseek): Likewise.
1771
1772 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1773
1774         * modules/memchr (Depends-on): Drop getpagesize dependency.
1775
1776 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1777
1778         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
1779         Reported by Ludovic Courtès.
1780         * build-aux/pmccabe2html: Improve example usage.
1781         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
1782
1783 2009-11-06  Jim Meyering  <meyering@redhat.com>
1784
1785         do-release-commit-and-tag: New module.
1786         Automate the release-commit and tag process.
1787         * build-aux/do-release-commit-and-tag: New script, from coreutils.
1788         * modules/do-release-commit-and-tag: New file.
1789         * MODULES.html.sh (Support for maintaining and releasing): Add it.
1790
1791 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1792
1793         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
1794         because test-select.c uses inet_pton.
1795
1796 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1797
1798         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
1799         GETADDRINFO_LIB.  Bump serial number.
1800         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
1801         Suggested by Eric Blake <ebb9@byu.net>.
1802
1803 2009-11-05  Eric Blake  <ebb9@byu.net>
1804
1805         strtod: detect darwin bug
1806         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
1807         Reported by Leo Davis.
1808
1809         freopen-safer: new module
1810         * modules/freopen-safer: New module.
1811         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
1812         * lib/freopen-safer.c (freopen_safer): New file.
1813         * lib/stdio-safer.h (freopen_safer): New declaration.
1814         * lib/stdio--.h (freopen): New override.
1815         * MODULES.html.sh (File stream based Input/Output): Mention it.
1816         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
1817         freopen-safer module.
1818         * doc/posix-functions/stderr.texi (stderr): Likewise.
1819         * doc/posix-functions/stdin.texi (stdin): Likewise.
1820         * doc/posix-functions/stdout.texi (stdout): Likewise.
1821         * modules/freopen-safer-tests: New test.
1822         * tests/test-reopen-safer.c: New file.
1823
1824 2009-11-05  Jim Meyering  <meyering@redhat.com>
1825
1826         maint.mk: Prohibit inclusion of "close-stream.h" without use.
1827         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
1828
1829 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1830
1831         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
1832
1833 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1834
1835         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
1836
1837 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1838
1839         Fix link error.
1840         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
1841         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
1842
1843 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1844
1845         * tests/test-func.c: Also test value of __func__.
1846
1847 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1848
1849         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
1850         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
1851
1852 2009-11-05  Bruno Haible  <bruno@clisp.org>
1853
1854         Fix link error.
1855         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
1856         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
1857         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
1858
1859 2009-11-05  Bruno Haible  <bruno@clisp.org>
1860
1861         Tests for module 'inet_pton'.
1862         * modules/inet_pton-tests: New file.
1863         * tests/test-inet_pton.c: New file.
1864
1865 2009-11-05  Bruno Haible  <bruno@clisp.org>
1866
1867         Tests for module 'inet_ntop'.
1868         * modules/inet_ntop-tests: New file.
1869         * tests/test-inet_ntop.c: New file.
1870
1871 2009-11-04  Eric Blake  <ebb9@byu.net>
1872
1873         stdlib-safer: wrap all mkstemp variants
1874         * modules/mkostemp (configure.ac): Set witness.
1875         * modules/mkostemps (configure.ac): Likewise.
1876         * modules/mkstemps (configure.ac): Likewise.
1877         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
1878         (mkstemps_safer): Wrap more functions.
1879         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
1880         wrapping.
1881         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
1882         (mkstemps_safer): Implement the wrappers.
1883
1884         mkstemps, mkostemps: new modules
1885         * modules/mkostemps: New module.
1886         * modules/mkstemps: Likewise.
1887         * lib/mkostemps.c (mkostemps): New file.
1888         * lib/mkstemps.c (mkstemps): Likewise.
1889         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
1890         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
1891         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
1892         * modules/stdlib (Makefile.am): Substitute them.
1893         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
1894         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
1895         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
1896         * doc/gnulib.texi (Glibc stdlib.h): Include them.
1897         * MODULES.html.sh (File system functions): Mention them.
1898
1899         tempname: resync from glibc
1900         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
1901         same values for __GT_FILE as glibc.  Abort even when assertions
1902         are disabled.
1903         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
1904         match its value otherwise.  Allow idempotent inclusion.
1905         * lib/mkdtemp.c (mkdtemp): Adjust caller.
1906         * lib/mkostemp.c (mkostemp): Likewise.
1907         * lib/mkstemp.c (mkstemp): Likewise.
1908         * lib/tmpfile.c (tmpfile): Likewise.
1909         * NEWS: Document this.
1910
1911         utimens: fix use of futimens on older Linux
1912         * lib/utimens.c (fdutimens): Use updated, rather than original,
1913         timespec to avoid bug in older Linux kernel.
1914         Reported by Simon Josefsson.
1915
1916 2009-11-04  Bruno Haible  <bruno@clisp.org>
1917
1918         Make num_processors more flexible and consistent.
1919         * lib/nproc.h (enum nproc_query): New type.
1920         (num_processors): Add a 'query' argument.
1921         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
1922         (num_processors): Add a 'query' argument. Test the value of the
1923         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
1924         mingw, count the number of CPUs available for the current process.
1925         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
1926         Check for sched_getaffinity and sched_getaffinity_np.
1927         * modules/nproc (Depends-on): Add c-ctype, extensions.
1928         * NEWS: Mention the change.
1929
1930 2009-11-03  Bruno Haible  <bruno@clisp.org>
1931
1932         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
1933
1934 2009-11-03  Jim Meyering  <meyering@redhat.com>
1935
1936         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
1937         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
1938         if it is defined.
1939
1940 2009-11-02  Eric Blake  <ebb9@byu.net>
1941
1942         mktime, timegm: share common declaration
1943         * lib/mktime-internal.h: New file.
1944         * lib/mktime.c: Use it rather than open-coding a declaration.
1945         * lib/timegm.c: Likewise.
1946         * modules/mktime (Files): Ship it.
1947         * modules/timegm (Files): Likewise.
1948         Suggested by Bruno Haible.
1949
1950         test-update-copyright: update test to match script changes
1951         * tests/test-update-copyright.sh: Avoid hard-coding perl
1952         location.  Don't update *.bak created by earlier runs.
1953
1954 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
1955             Simon Josefsson  <simon@josefsson.org>
1956             Bruno Haible  <bruno@clisp.org>
1957
1958         Fix link error on Solaris 8.
1959         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
1960         also in libnsl. Define also INET_PTON_LIB.
1961         * modules/inet_pton (Link): New section.
1962
1963 2009-11-02  Simon Josefsson  <simon@josefsson.org>
1964             Bruno Haible  <bruno@clisp.org>
1965
1966         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
1967         * modules/inet_ntop (Link): New section.
1968         Reported by Boyan Kasarov <bkasarov@gmail.com>.
1969
1970 2009-11-02  Eric Blake  <ebb9@byu.net>
1971
1972         maint: avoid compiler warnings in m4 macros
1973         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
1974         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
1975
1976 2009-11-02  Simon Josefsson  <simon@josefsson.org>
1977
1978         * m4/pmccabe2html.m4: Remove file.
1979         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
1980         function.  Change maintainer.
1981         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
1982         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
1983         Courtès).
1984
1985 2009-10-31  Eric Blake  <ebb9@byu.net>
1986
1987         fseeko: fix m4 regression
1988         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
1989         regression from 2009-10-27.
1990         Reported by Ralf Wildenhues.
1991
1992 2009-10-31  Jim Meyering  <meyering@redhat.com>
1993
1994         inttostr: aesthetics and improved (compile-time) safety
1995         Define inttype_is_signed rather than inttype_is_unsigned,
1996         since the sole use is via "#if inttype_is_signed".
1997         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
1998         inttype_is_unsigned.
1999         * lib/offtostr.c (inttype_is_signed): Likewise.
2000         * lib/uinttostr.c (inttype_is_signed): Likewise.
2001         * lib/umaxtostr.c (inttype_is_signed): Likewise.
2002         * lib/inttostr.c (inttostr): Use verify to cross-check the
2003         inttype_is_signed value and the signedness of the actual type.
2004         * modules/inttostr (Depends-on): Add verify.
2005
2006 2009-10-30  Eric Blake  <ebb9@byu.net>
2007
2008         build: avoid compiler warnings
2009         * lib/fchmodat.c (lchmod): Mark unused variables.
2010         * lib/getopt.c (_getopt_initialize): Likewise.
2011         * lib/mktime.c (__mktime_internal): Provide prototype.
2012         * lib/inttostr.c (inttostr): Avoid compiler warning even with
2013         older gcc that do not understand #pragma GCC diagnostic.
2014         * lib/uinttostr.c (inttype_is_unsigned): Define.
2015         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
2016
2017 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
2018
2019         stat: fix compilation on AIX
2020         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
2021         only see struct stat64.
2022
2023 2009-10-30  Eric Blake  <ebb9@byu.net>
2024
2025         exclude: make more robust
2026         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
2027         rather than masking a coding bug.
2028         Suggested by Bruno Haible.
2029
2030 2009-10-30  Jim Meyering  <meyering@redhat.com>
2031
2032         perl scripts: remove #!/usr/bin/perl in favor of more portable...
2033         Rather than putting #!/usr/bin/perl on the first line,
2034         start with a variant of what's recommended by "man perlrun" that
2035         invokes the first "perl" program from your shell's search path.
2036         * build-aux/gitlog-to-changelog: Replace #!... as above.
2037         Add a "Local Variables" perl mode setting.
2038         Prompted by a patch from Ludovic Courtès.
2039         Improved by Eric Blake.
2040         * build-aux/useless-if-before-free: Likewise.
2041         * build-aux/announce-gen: Likewise.
2042         * build-aux/update-copyright: Likewise.
2043
2044 2009-10-29  Eric Blake  <ebb9@byu.net>
2045
2046         filenamecat-lgpl: adjust clients
2047         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
2048         filenamecat.
2049         * modules/renameat (Depends-on): Likewise.
2050
2051         filenamecat: split into filenamecat-lgpl
2052         * modules/filenamecat-lgpl: New module.
2053         * modules/filenamecat (Files): Move library-safe files into
2054         filenamecat-lgpl.
2055         (Depends-on): Add filenamecat-lgpl.
2056         (configure.ac): Declare witness.
2057         * lib/filenamecat.h (file_name_concat): Only declare when using
2058         GPL module.
2059         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
2060         Move...
2061         * lib/filenamecat-lgpl.c: ...into new file.
2062         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
2063         (gl_FILE_NAME_CONCAT): Use it.
2064         * MODULES.html.sh (File system functions): Mention new module.
2065
2066         argp: avoid memory leak
2067         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
2068         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
2069         base_name, since the latter malloc()s and can call exit().
2070         Leak introduced 2006-07-03.
2071
2072         dirname-lgpl: adjust clients that don't need full dirname
2073         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
2074         * modules/filenamecat (Depends-on): Likewise.
2075         * modules/linkat (Depends-on): Likewise.
2076         * modules/mkancesdirs (Depends-on): Likewise.
2077         * modules/mkdir (Depends-on): Likewise.
2078         * modules/openat (Depends-on): Likewise.
2079         * modules/savewd (Depends-on): Likewise.
2080         * modules/rename (Depends-on): Likewise.
2081         (License): Relax license.
2082         * modules/mkdir-tests (Depends-on): Drop progname.
2083         (Makefile.am): Delete unneeded LDADD.
2084         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
2085
2086         dirname: split into dirname-lgpl
2087         * modules/dirname-lgpl: New module.
2088         * modules/dirname (Files): Move library-safe files into
2089         dirname-lgpl.
2090         (Depends-on): Add dirname-lgpl.
2091         (configure.ac): Declare witness.
2092         * modules/double-slash-root (License): Relax license.
2093         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
2094         module.
2095         * lib/dirname.c (dir_len, mdir_name): Move...
2096         * lib/dirname-lgpl.c: ...into new file.
2097         * lib/basename.c (last_component, base_len): Move...
2098         * lib/basename-lgpl.c: ...into new file.
2099         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
2100         (gl_DIRNAME): Use it.
2101         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
2102         Mention new module.
2103         * modules/dirname-tests (Depends-on): Add progname.
2104         * tests/test-dirname.c (program_name): Delete.
2105
2106         mkdir: make safe for libraries
2107         * modules/mkdir (Depends-on): Drop xalloc.
2108         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
2109         exit.
2110
2111         tests: avoid some compiler warnings
2112         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
2113         literals.
2114         * tests/test-memchr.c (main): Avoid type mismatch.
2115         * tests/test-arpa_inet.c (main): Avoid unused parameters.
2116         * tests/test-base64.c (main): Likewise.
2117         * tests/test-getdelim.c (main): Likewise.
2118         * tests/test-gethostname.c (main): Likewise.
2119         * tests/test-getline.c (main): Likewise.
2120         * tests/test-netinet_in.c (main): Likewise.
2121         * tests/test-select.c (open_server_socket, main): Likewise.
2122         * tests/test-select-stdin.c (main): Likewise.
2123         * tests/test-sockets.c (main): Likewise.
2124         * tests/test-strsignal.c (main): Likewise.
2125         * tests/test-sys_select.c (main): Likewise.
2126         * tests/test-sys_socket.c (main): Likewise.
2127         * tests/test-u64.c (main): Likewise.
2128         * tests/test-xfprintf-posix.c (main): Likewise.
2129         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
2130
2131         sockets: avoid compiler warning
2132         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
2133
2134         maint: detect usage(1) and other suspicious exits
2135         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
2136
2137 2009-10-29  Jim Meyering  <meyering@redhat.com>
2138
2139         timespec: long-to-int truncation could make timespec_cmp malfunction
2140         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
2141         a multiple of 2^32 nanoseconds as no difference.
2142
2143 2009-10-28  Jim Meyering  <meyering@redhat.com>
2144
2145         fprintftime: wrap macro code argument in "do {...} while(0)"
2146         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
2147         cpy macro must be a statement that can be followed by a semicolon.
2148         Now that the else clause contains a comment and is hence longer
2149         than one line, I require curly braces.  That in turn requires
2150         that we wrap this code block in the standard do...while(0).
2151
2152         fprintftime: remove stray semicolon from previous change
2153         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
2154
2155         fprintftime: avoid a warning about ignored fwrite return value
2156         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
2157         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
2158         that is unsafe.
2159         * modules/fprintftime (Depends-on): Add ignore-value.
2160
2161         exclude: avoid an unwarranted warning
2162         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
2163
2164 2009-10-27  Eric Blake  <ebb9@byu.net>
2165
2166         fseek: avoid compilation failure when fflush is replaced
2167         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
2168         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
2169         module is in use.
2170         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
2171         module is not in use; since REPLACE_FSEEK worked otherwise.
2172         (GNULIB_FTELLO): Likewise for ftell.
2173         Reported by Ian Beckwith and others.
2174
2175 2009-10-27  Bruno Haible  <bruno@clisp.org>
2176
2177         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
2178         Reported by Jim Meyering.
2179
2180 2009-10-27  Jim Meyering  <jim@meyering.net>
2181             Bruno Haible  <bruno@clisp.org>
2182
2183         Avoid warning despite dropping the return value of fwrite.
2184         * lib/unicodeio.c: Include ignore-value.h.
2185         (fwrite_success_callback): Explicitly ignore fwrite's return value.
2186         * modules/unicodeio (Depends-on): Add ignore-value.
2187
2188 2009-10-26  Eric Blake  <ebb9@byu.net>
2189
2190         areadlinkat: fix fallback path
2191         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
2192         pointer and zero.
2193
2194 2009-10-22  Pádraig Brady  <P@draigBrady.com>
2195
2196         Use a better IO block size for modern systems
2197         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
2198         * lib/md2.c: Likewise.
2199         * lib/md4.c: Likewise.
2200         * lib/md5.c: Likewise.
2201         * lib/sha1.c: Likewise.
2202         * lib/sha256.c: Likewise.
2203         * lib/sha512.c: Likewise.
2204
2205 2009-10-22  Eric Blake  <ebb9@byu.net>
2206
2207         tests: avoid several compiler warnings
2208         * tests/test-getcwd.c (main): Avoid buffer underflow.
2209         * tests/test-getdate.c (main): String literals are not safe with
2210         putenv, so use setenv.  Declare unused argument.
2211         * modules/getdate-tests (Depends-on): Add setenv.
2212         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
2213         problems with string literals in char *.
2214         * tests/test-hash.c (main): Avoid shadowing declaration.
2215         (insert_new): Treat string literals as char const *.
2216         * tests/test-getopt.h (test_getopt): Likewise.
2217         (getopt_loop): Alter types to minimize casting elsewhere.
2218         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
2219         (test_getopt_long_posix): Likewise.
2220         (do_getopt_long): Add wrapper to minimize casting.
2221         * tests/test-atexit.c (clear_temp_file): Use void.
2222         * tests/test-areadlink-with-size.c (main): Declare unused
2223         arguments.
2224         * tests/test-areadlink.c (main): Likewise.
2225         * tests/test-areadlinkat-with-size.c (main): Likewise.
2226         * tests/test-areadlinkat.c (main): Likewise.
2227         * tests/test-canonicalize-lgpl.c (main): Likewise.
2228         * tests/test-canonicalize.c (main): Likewise.
2229         * tests/test-dirent-safer.c (main): Likewise.
2230         * tests/test-dirname.c (main): Likewise.
2231         * tests/test-dup2.c (main): Likewise.
2232         * tests/test-fchdir.c (main): Likewise.
2233         * tests/test-fcntl-h.c (main): Likewise.
2234         * tests/test-fcntl-safer.c (main): Likewise.
2235         * tests/test-fdopendir.c (main): Likewise.
2236         * tests/test-fdutimensat.c (main): Likewise.
2237         * tests/test-fflush.c (main): Likewise.
2238         * tests/test-filenamecat.c (main): Likewise.
2239         * tests/test-filevercmp.c (main): Likewise.
2240         * tests/test-fopen-safer.c (main): Likewise.
2241         * tests/test-fopen.c (main): Likewise.
2242         * tests/test-fpending.c (main): Likewise.
2243         * tests/test-fpurge.c (main): Likewise.
2244         * tests/test-freading.c (main): Likewise.
2245         * tests/test-fstatat.c (main): Likewise.
2246         * tests/test-fsync.c (main): Likewise.
2247         * tests/test-futimens.c (main): Likewise.
2248         * tests/test-getndelim2.c (main): Likewise.
2249         * tests/test-gettimeofday.c (main): Likewise.
2250         * tests/test-getopt.c (main): Likewise.
2251         * tests/test-i-ring.c (main): Likewise.
2252         * tests/test-inttypes.c (main): Likewise.
2253         * tests/test-link.c (main): Likewise.
2254         * tests/test-lstat.c (main): Likewise.
2255         * tests/test-math.c (main): Likewise.
2256         * tests/test-md5.c (main): Likewise.
2257         * tests/test-memchr2.c (main): Likewise.
2258         * tests/test-memrchr.c (main): Likewise.
2259         * tests/test-mkdir.c (main): Likewise.
2260         * tests/test-mkdirat.c (main): Likewise.
2261         * tests/test-mkfifoat.c (main): Likewise.
2262         * tests/test-open.c (main): Likewise.
2263         * tests/test-openat-safer.c (main): Likewise.
2264         * tests/test-openat.c (main): Likewise.
2265         * tests/test-quotearg.c (main): Likewise.
2266         * tests/test-rawmemchr.c (main): Likewise.
2267         * tests/test-readlink.c (main): Likewise.
2268         * tests/test-remove.c (main): Likewise.
2269         * tests/test-rename.c (main): Likewise.
2270         * tests/test-renameat.c (main): Likewise.
2271         * tests/test-rmdir.c (main): Likewise.
2272         * tests/test-sha1.c (main): Likewise.
2273         * tests/test-signal.c (main): Likewise.
2274         * tests/test-sigaction.c (main): Likewise.
2275         * tests/test-stat.c (main): Likewise.
2276         * tests/test-stat-time.c (main): Likewise.
2277         * tests/test-stddef.c (main): Likewise.
2278         * tests/test-stdint.c (main): Likewise.
2279         * tests/test-stdio.c (main): Likewise.
2280         * tests/test-stdlib.c (main): Likewise.
2281         * tests/test-strchrnul.c (main): Likewise.
2282         * tests/test-strerror.c (main): Likewise.
2283         * tests/test-string.c (main): Likewise.
2284         * tests/test-strtod.c (main): Likewise.
2285         * tests/test-strverscmp.c (main): Likewise.
2286         * tests/test-symlink.c (main): Likewise.
2287         * tests/test-symlinkat.c (main): Likewise.
2288         * tests/test-sys_stat.c (main): Likewise.
2289         * tests/test-sys_time.c (main): Likewise.
2290         * tests/test-time.c (main): Likewise.
2291         * tests/test-unistd.c (main): Likewise.
2292         * tests/test-unlink.c (main): Likewise.
2293         * tests/test-unlinkat.c (main): Likewise.
2294         * tests/test-utimens.c (main): Likewise.
2295         * tests/test-utimensat.c (main): Likewise.
2296         * tests/test-version-etc.c (main): Likewise.
2297         * tests/test-wchar.c (main): Likewise.
2298         * tests/test-wctype.c (main): Likewise.
2299         * tests/test-xprintf-posix.c (main): Likewise.
2300         * tests/test-posixtm.c (main): Likewise.
2301         (STREQ): Delete unused macro.
2302         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
2303         shadowed variables.
2304         * tests/test-memchr.c (main): Likewise.
2305
2306 2009-10-21  Eric Blake  <ebb9@byu.net>
2307
2308         areadlinkat: avoid failure on older glibc
2309         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
2310         rather than mis-comparing 0 against FUNC_RESULT of char*.
2311
2312 2009-10-21  Bruno Haible  <bruno@clisp.org>
2313
2314         * modules/stpncpy (License): Relicense under LGPLv2+.
2315         Reported by David Lutterkort <lutter@redhat.com>.
2316
2317 2009-10-20  Eric Blake  <ebb9@byu.net>
2318
2319         utimensat: work around Solaris 9 bug
2320         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
2321         has trailing slash bugs.
2322         * tests/test-lutimens.h (test_lutimens): Enhance test.
2323         * tests/test-utimens.h (test_utimens): Likewise.
2324         * doc/posix-functions/utime.texi (utime): Enhance documentation.
2325         * doc/posix-functions/utimes.texi (utimes): Likewise.
2326         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2327         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
2328         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
2329         * doc/posix-functions/futimens.texi (futimens): Likewise.
2330
2331         fdutimensat: new module
2332         * modules/fdutimensat: New file.
2333         * lib/fdutimensat.c (fdutimensat): Likewise.
2334         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
2335         * MODULES.html.sh (File system functions): Mention module.
2336         * modules/fdutimensat-tests: New test.
2337         * tests/test-fdutimensat.c: Likewise.
2338
2339         doc: regenerate INSTALL
2340         * doc/INSTALL: Reflect recent autoconf update.
2341         * doc/INSTALL.ISO: Likewise.
2342         * doc/INSTALL.UTF-8: Likewise.
2343
2344 2009-10-20  Pádraig Brady  <P@draigBrady.com>
2345
2346         acl: warn if ACL support is not detected
2347         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
2348
2349 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
2350
2351         * lib/nproc.h: Add extern "C" block for C++.
2352
2353 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
2354             Bruno Haible  <bruno@clisp.org>
2355
2356         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
2357         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
2358         * doc/posix-functions/isalpha.texi: Likewise.
2359         * doc/posix-functions/isblank.texi: Likewise.
2360         * doc/posix-functions/iscntrl.texi: Likewise.
2361         * doc/posix-functions/isdigit.texi: Likewise.
2362         * doc/posix-functions/isgraph.texi: Likewise.
2363         * doc/posix-functions/islower.texi: Likewise.
2364         * doc/posix-functions/isprint.texi: Likewise.
2365         * doc/posix-functions/ispunct.texi: Likewise.
2366         * doc/posix-functions/isspace.texi: Likewise.
2367         * doc/posix-functions/isupper.texi: Likewise.
2368         * doc/posix-functions/isxdigit.texi: Likewise.
2369
2370 2009-10-18  Bruno Haible  <bruno@clisp.org>
2371
2372         Tests for module 'isblank'.
2373         * modules/isblank-tests: New file.
2374         * tests/test-isblank.c: New file.
2375
2376         New module 'isblank'.
2377         * lib/isblank.c: New file.
2378         * m4/isblank.m4: New file.
2379         * modules/isblank: New file.
2380         * doc/posix-functions/isblank.texi: Mention the new module.
2381
2382 2009-10-18  Bruno Haible  <bruno@clisp.org>
2383
2384         New module 'ctype'.
2385         * lib/ctype.in.h: New file.
2386         * m4/ctype.m4: New file.
2387         * modules/ctype: New file.
2388         * doc/posix-headers/ctype.texi: Mention the new module.
2389
2390 2009-10-18  Jim Meyering  <meyering@redhat.com>
2391
2392         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
2393         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
2394         right after its initialization, rather than farther down.
2395         Keeping these in close proximity makes it easier to ensure
2396         that each such variable is initialized.  E.g.,
2397
2398             LIB_CLOCK_GETTIME=
2399             AC_SUBST([LIB_CLOCK_GETTIME])
2400
2401         This change also increments these serial numbers.
2402         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
2403         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2404         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
2405
2406 2009-10-18  Bruno Haible  <bruno@clisp.org>
2407
2408         Don't let environment variables perturb build.
2409         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
2410         (gl_PREREQ_GETHRXTIME): ... not here.
2411
2412 2009-10-18  Bruno Haible  <bruno@clisp.org>
2413
2414         Avoid symlink attack in localcharset module.
2415         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
2416         (O_NOFOLLOW): Define fallback.
2417         (get_charset_aliases): Don't open the file if it is a symbolic link.
2418         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
2419         gl_FCNTL_H.
2420         (gl_FCNTL_H): Require it.
2421         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
2422         * modules/localcharset (Files): Add m4/fcntl_h.m4.
2423         Reported by Fergal Glynn <fglynn@veracode.com>.
2424
2425 2009-10-18  Bruno Haible  <bruno@clisp.org>
2426
2427         Implement nproc for mingw.
2428         * lib/nproc.c: Include <windows.h>
2429         (num_processors): On native Windows platforms, try GetSystemInfo.
2430
2431 2009-10-18  Bruno Haible  <bruno@clisp.org>
2432
2433         Implement nproc for IRIX.
2434         * lib/nproc.c: Include <sys/sysmp.h>.
2435         (num_processors): On IRIX systems, try sysmp.
2436         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
2437
2438 2009-10-18  Bruno Haible  <bruno@clisp.org>
2439
2440         Implement nproc for HP-UX.
2441         * lib/nproc.c: Include <sys/pstat.h>
2442         (num_processors): On HP-UX systems, try pstat_getdynamic.
2443         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
2444         pstat_getdynamic.
2445
2446 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
2447             Bruno Haible  <bruno@clisp.org>
2448
2449         Implement nproc for NetBSD, OpenBSD.
2450         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
2451         (ARRAY_SIZE): New macro.
2452         (num_processors): On BSD systems, try sysctl of HW_NCPU.
2453         * m4/nproc.m4: New file.
2454         * modules/nproc (Files): Add m4/nproc.m4.
2455         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
2456         (Makefile.am): Instead, augment lib_SOURCES.
2457
2458 2009-10-18  Bruno Haible  <bruno@clisp.org>
2459
2460         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
2461         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
2462         sys/param.h.
2463
2464 2009-10-16  Eric Blake  <ebb9@byu.net>
2465
2466         utimensat: new module
2467         * modules/utimensat: New file.
2468         * lib/utimensat.c (utimensat): Likewise.
2469         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
2470         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
2471         so we can work around Linux bugs.
2472         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2473         * modules/sys_stat (Makefile.am): Substitute them.
2474         * lib/sys_stat.in.h (utimensat): Declare it.
2475         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2476         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2477         * modules/utimensat-tests: New test.
2478         * tests/test-utimensat.c: Likewise.
2479
2480         utimens: let lutimens work on non-symlinks
2481         * lib/utimens.c (lutimens): Fall back to utimens rather than
2482         failing with ENOSYS, when file is not a symlink.
2483         (utimens): Reduce redirection.
2484         * tests/test-lutimens.h (test_lutimens): Update test to cover
2485         non-symlinks.
2486         * tests/test-utimens.h (test_utimens): Update test to cover
2487         symlinks.
2488         * tests/test-utimens.c (main): Update caller.
2489
2490         utimens: cache whether utimensat syscall works
2491         * lib/utimens.c (utimensat_works_really): New cache variable.
2492         (fdutimens, lutimens): Use it to avoid failing syscall.
2493
2494         test-stat-time, test-utimens: improve portability
2495         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
2496         ext4 on alpha, and for cygwin.
2497         * tests/test-utimens-common.h: New file.
2498         (nap): Factor delays into single function.
2499         * tests/test-lutimens.h (test_lutimens): Use new header.
2500         * tests/test-futimens.h (test_futimens): Likewise.
2501         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
2502         timestamps to occur from same machine, as was done previously for
2503         test_utimens.
2504         * modules/utimens-tests (Files): Ship new file.
2505         * modules/futimens-tests (Files): Likewise.
2506         Reported in part by Jim Meyering.
2507
2508         sys_stat: sort replacement declarations
2509         * lib/sys_stat.in.h: Sort declarations.
2510         * lib/futimens.c (futimens): Fix typo.
2511
2512 2009-10-15  Jim Meyering  <meyering@redhat.com>
2513
2514         don't let environment settings perturb build
2515         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
2516         could cause a configure-time and/or build-time malfunction.
2517         Typically, a configure-time function-in-library test is performed
2518         via code like this:
2519
2520           LIB_VAR=
2521           AC_SUBST([LIB_VAR])
2522           prefix_saved_LIBS=$LIBS
2523             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
2524                        [test "$ac_cv_search_FUNC" = "none required" ||
2525                         LIB_VAR=$ac_cv_search_FUNC])
2526           LIBS=$prefix_saved_LIBS
2527
2528         However, in each of the files affected by this change, the LIB_VAR=
2529         initialization was omitted.  Thus, when set in the environment, its
2530         value would propagate into generated Makefiles when FUNC is not found
2531         in LIB_NAME.
2532         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
2533         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2534         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
2535
2536 2009-10-14  Eric Blake  <ebb9@byu.net>
2537
2538         fchdir: avoid infinite recursion in mingw
2539         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
2540         recursing.
2541
2542         test-stat-time: port to mingw
2543         * tests/test-stat-time.c (force_unlink): Return a value.
2544         (test_ctime) [W32]: Fix compilation error.
2545         (nap): Don't call usleep with too large an argument.  Use
2546         force_unlink.
2547         * doc/pastposix-functions/usleep.texi (usleep): Document the
2548         portability issue.
2549
2550 2009-10-13  Jim Meyering  <meyering@redhat.com>
2551
2552         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
2553         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
2554         * modules/pipe-filter-ii: Likewise.
2555         * modules/sys_socket-tests: Likewise.
2556         * modules/tsearch-tests: Likewise.
2557         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
2558         (check): Depend on it.
2559
2560 2009-10-12  Eric Blake  <ebb9@byu.net>
2561
2562         utimens-tests: port to NFS file systems
2563         * tests/test-utimens.h (test_utimens): Refactor utimecmp
2564         comparisons to avoid spurious failures from timestamp drift
2565         between NFS machines.
2566
2567 2009-10-12  Eric Blake  <ebb9@byu.net>
2568
2569         stat-time-tests: minor cleanups
2570         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
2571         * tests/test-stat-time.c (nap): Separate assignment from call.
2572         Suggested by Paolo Bonzini and Bruno Haible.
2573
2574         sys_stat: guarantee struct timespec
2575         * lib/sys_stat.in.h (includes): Always include <time.h>
2576         * modules/sys_stat (Depends-on): Add time.
2577         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
2578         mode_t permission values.
2579         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
2580         get at subsecond timestamps.
2581
2582 2009-10-10  Eric Blake  <ebb9@byu.net>
2583
2584         futimens: new module
2585         * modules/futimens: New file.
2586         * lib/futimens.c (futimens): Likewise.
2587         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
2588         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
2589         we can work around Linux bugs.
2590         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2591         * modules/sys_stat (Makefile.am): Substitute them.
2592         * lib/sys_stat.in.h (futimens): Declare it.
2593         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2594         * doc/posix-functions/futimens.texi (futimens): Likewise.
2595         * modules/futimens-tests: New test.
2596         * tests/test-futimens.c: Likewise.
2597
2598         utimens: introduce fdutimens
2599         * lib/utimens.h (fdutimens): New prototype.
2600         * lib/utimens.c (gl_futimens): Move guts...
2601         (fdutimens): ...to new interface.
2602         * tests/test-utimens.c (do_fdutimens): Use it.
2603
2604         utimens: add UTIME_NOW and UTIME_OMIT support
2605         * lib/utimens.c (validate_timespec, update_timespec): New helper
2606         functions.
2607         (gl_futimens, lutimens): Use them.
2608         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
2609         stdbool, sys_stat.
2610         (Link): Mention resulting library dependency.
2611         * modules/utimecmp (Link): Likewise.
2612         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
2613         (Makefile.am): Pick up library dependency.
2614         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
2615         definition.
2616         * tests/test-sys_stat.c: Test the definitions.
2617         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
2618         * NEWS: Document library dependency.
2619
2620         utimecmp: support symlink timestamps
2621         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
2622         hashing when possible.  Use pathconf when available.
2623         (SYSCALL_RESOLUTION): Recognize tighter resolution.
2624         * modules/utimecmp (Depends-on): Add lstat.
2625
2626         utimens: add lutimens interface
2627         * lib/utimens.c (lutimens): New function.
2628         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
2629         * lib/utimens.h (lutimens): Declare new interface.
2630         * tests/test-utimens.c (main): Enhance test.
2631         * tests/test-lutimens.h (test_lutimens): New file.
2632         * modules/utimens-tests (Files): Distribute it.
2633         (Depends-on): Add symlink.
2634         (configure.ac): Check for usleep.
2635
2636         utimens: validate futimens usage
2637         * lib/utimens.c (gl_futimens): Require valid fd up front, using
2638         fewer syscalls on failure later on.  Avoid compiler warning on
2639         mingw.
2640         * modules/utimens (Depends-on): Add dup2.
2641
2642         utimens: add test
2643         * modules/utimens-tests: New test.
2644         * tests/test-utimens.h: New file.
2645         * tests/test-futimens.h: Likewise.
2646         * tests/test-utimens.c: Likewise.
2647
2648         doc: mention timestamp portability issues
2649         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
2650         instead.
2651         * doc/posix-functions/utime.texi (utime): Likewise.
2652         * doc/posix-functions/utimes.texi (utimes): Likewise.
2653         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
2654         instead.
2655         * doc/posix-functions/futimens.texi (futimens): Mention utimens
2656         module.
2657         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2658         Mention weakness with symlink timestamps.
2659         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
2660         to utimensat/futimens instead.
2661         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
2662
2663         test-dup2: enhance test
2664         * tests/test-dup2.c (main): Also check AT_FDCWD.
2665
2666         test-stat-time: avoid more spurious failures
2667         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
2668         xfs; and avoid race if the two timestamps cross quantization edge.
2669
2670         relocatable: prefer 'file system' over 'filesystem'
2671         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
2672         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
2673         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
2674         * doc/relocatable.texi (Enabling Relocatability): Likewise.
2675         * lib/relocatable.c (compute_curr_prefix): Likewise.
2676
2677 2009-10-10  Jim Meyering  <meyering@redhat.com>
2678
2679         stat-time-tests: check for the usleep function
2680         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
2681
2682 2009-10-10  Bruno Haible  <bruno@clisp.org>
2683
2684         * modules/xnanosleep: Put the Link section after the Include section.
2685
2686 2009-10-09  Eric Blake  <ebb9@byu.net>
2687
2688         dup2: work around FreeBSD 6.1 bug
2689         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
2690         * doc/posix-functions/dup2.texi (dup2): Document it.
2691         Reported by Nelson H. F. Beebe and Jim Meyering.
2692
2693         test-stat-time: port to buggy NFS clients
2694         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
2695         (test_ctime): Also skip test if mtime and ctime are skewed.
2696
2697         maint: prefer 'file system' over 'filesystem'
2698         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
2699         * doc/posix-functions/lstat.texi (lstat): Likewise.
2700         * lib/file-has-acl.c (file_has_acl): Likewise.
2701         * lib/fwriteerror.c [TEST]: Likewise.
2702         * tests/test-areadlink.h (test_areadlink): Likewise.
2703         * tests/test-areadlinkat-with-size.c (main): Likewise.
2704         * tests/test-areadlinkat.c (main): Likewise.
2705         * tests/test-canonicalize-lgpl.c (main): Likewise.
2706         * tests/test-canonicalize.c (main): Likewise.
2707         * tests/test-fstatat.c (main): Likewise.
2708         * tests/test-linkat.c (main): Likewise.
2709         * tests/test-lstat.h (test_lstat_func): Likewise.
2710         * tests/test-mkdir.h (test_mkdir): Likewise.
2711         * tests/test-readlink.h (test_readlink): Likewise.
2712         * tests/test-remove.c (main): Likewise.
2713         * tests/test-rename.h (test_rename): Likewise.
2714         * tests/test-renameat.c (main): Likewise.
2715         * tests/test-rmdir.h (test_rmdir_func): Likewise.
2716         * tests/test-symlink.h (test_symlink): Likewise.
2717         * tests/test-symlinkat.c (main): Likewise.
2718         * tests/test-unlink.h (test_unlink_func): Likewise.
2719         * tests/test-unlinkat.c (main): Likewise.
2720
2721         maint: make realtime library usage explicit
2722         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
2723         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
2724         * modules/settime (Link): Likewise.
2725         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
2726
2727         test-stat-time: speed up execution
2728         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
2729         warning on mingw.
2730         (nap): New helper function.
2731         (prepare_test): Use it to reduce sleep time.
2732         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
2733         execution.
2734         * modules/stat-time-tests (configure.ac): Check for usleep.
2735
2736 2009-10-09  Jim Meyering  <meyering@redhat.com>
2737
2738         selinux-h: always use getfilecon wrappers
2739         * lib/getfilecon.c: New file.
2740         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
2741         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
2742         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
2743         (fgetfilecon): Provide a stub.
2744         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
2745         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
2746         file unconditionally.
2747         When <selinux/selinux.h> is found, arrange to use wrappers.
2748         * modules/selinux-h (Files): Add getfilecon.c.
2749         (Makefile.am): Substitute include-next-related bits
2750         into the now-always-generated selinux/selinux.h file.
2751         * doc/glibc-functions/lgetfilecon.texi: New file.
2752         * doc/glibc-functions/fgetfilecon.texi: New file.
2753         * doc/glibc-functions/getfilecon.texi: New file.
2754         * doc/glibc-functions/getfilecon-desc.texi: New file.
2755         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
2756         which to pull in the new files.
2757         * MODULES.html.sh (Misc): Add selinux-h.
2758
2759 2009-10-08  Jim Meyering  <meyering@redhat.com>
2760
2761         unistd: fix comment typo
2762         * lib/unistd.in.h (euidaccess): Fix a comment typo.
2763
2764 2009-10-08  Eric Blake  <ebb9@byu.net>
2765
2766         areadlink: use SIZE_MAX consistently
2767         * modules/areadlink (Depends-on): Add stdint.
2768         * modules/areadlink-with-size (Depends-on): Likewise.
2769         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
2770         gives NULL; drop sys/types, since unistd gives size_t; and add
2771         stdint for SIZE_MAX.
2772         (SIZE_MAX): Rely on headers.
2773         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
2774         and add stdint.
2775         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
2776         (SIZE_MAX): Likewise.
2777         (INITIAL_BUF_SIZE): Turn into enum.
2778         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
2779
2780 2009-10-08  Jim Meyering  <meyering@redhat.com>
2781
2782         areadlinkat: avoid compilation failure
2783         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
2784         Fix typo in comment.
2785
2786 2009-10-07  Eric Blake  <ebb9@byu.net>
2787
2788         areadlinkat-with-size: new module
2789         * modules/areadlinkat-with-size: New module.
2790         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
2791         * lib/areadlink.h (areadlinkat): Declare it.
2792         * MODULES.html.sh (File system functions): Mention it.
2793         * modules/areadlinkat-with-size-tests: New test.
2794         * tests/test-areadlinkat-with-size.c: New file.
2795
2796         xreadlinkat: new module
2797         * modules/xreadlinkat: New module.
2798         * lib/xreadlinkat.c (xreadlinkat): New file.
2799         * lib/xreadlink.h (xreadlinkat): Declare it.
2800         * MODULES.html.sh (File system functions): Mention it.
2801
2802         areadlinkat: new module
2803         * lib/at-func.c (FUNC_FAIL): New define.
2804         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
2805         * modules/areadlinkat: New module.
2806         * lib/linkat.c (areadlinkat): Move...
2807         * lib/areadlinkat.c (areadlinkat): ...to new file.
2808         * lib/areadlink.h (areadlinkat): Declare it.
2809         * modules/linkat (Depends-on): Add areadlinkat.
2810         * MODULES.html.sh (File system functions): Mention it.
2811         * modules/areadlinkat-tests: New test.
2812         * tests/test-areadlinkat.c: New file.
2813
2814         areadlink, areadlink-with-size: add tests
2815         * modules/areadlink-tests: New test.
2816         * modules/areadlink-with-size-tests: Likewise.
2817         * tests/test-areadlink.h: New file.
2818         * tests/test-areadlink.c: Likewise.
2819         * tests/test-areadlink-with-size.c: Likewise.
2820
2821         maint: minor cleanups
2822         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
2823         _UNUSED_PARAMETER_ instead.
2824         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
2825         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
2826         * modules/linkat-tests (Files): Distribute test-link.h.
2827
2828         openat, utimens: whitespace cleanup
2829         * lib/openat.c: Prefer space throughout, rather than mix of 8
2830         spaces vs. tabs.
2831         * lib/at-func.c: Likewise.
2832         * lib/utimens.c: Likewise.
2833
2834         openat: avoid using wrong fd
2835         * lib/openat.c (openat_permissive): Reject user's fd if saving the
2836         working directory chooses same fd.
2837         * lib/at-func.c (AT_FUNC_NAME): Likewise.
2838
2839         mkdir, mkdirat: fix cygwin 1.5.x bug
2840         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
2841         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
2842         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
2843         bug.
2844         (gl_PREREQ_MKDIR): Delete unused macro.
2845         * modules/mkdir (Files): Track file rename.
2846         (configure.ac): Update macro name.
2847         * modules/openat (Depends-on): Add mkdir.
2848         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
2849
2850         mkdir, mkdirat: add tests
2851         * modules/mkdir-tests: New test.
2852         * tests/test-mkdir.h: New file.
2853         * tests/test-mkdir.c: Likewise.
2854         * tests/test-mkdirat.c: Likewise.
2855         * modules/openat-tests (Files): Add new files.
2856         (Makefile.am): Run new test.
2857
2858 2009-10-06  Eric Blake  <ebb9@byu.net>
2859
2860         doc: tweak *at function documentation
2861         * doc/posix-functions/faccessat.texi (faccessat): Mention
2862         known issue with replacement.
2863         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
2864         * doc/posix-functions/linkat.texi (linkat): Likewise.
2865         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
2866         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
2867         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
2868         * doc/posix-functions/renameat.texi (renameat): Likewise.
2869         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
2870
2871         openat: fix GNU/Hurd bug in unlinkat
2872         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
2873         broken.
2874         * doc/posix-functions/unlink.texi (unlink): Document this.
2875         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
2876
2877         fdopendir: fix GNU/Hurd bug
2878         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
2879         allowing non-directory fds.
2880         * lib/fdopendir.c (rpl_fdopendir): Work around it.
2881         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
2882         * modules/dirent (Makefile.am): Substitute it.
2883         * lib/dirent.in.h (fdopendir): Declare replacement.
2884         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
2885         * tests/test-fdopendir.c (main): Test something other than
2886         /dev/null, since on Hurd that behaves like a directory.
2887
2888         test-symlink: port to GNU/Hurd
2889         * tests/test-symlink.h (test_symlink): Relax expected errno.
2890
2891         doc: tweak more cygwin information
2892         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
2893         now compatible with glibc.
2894         * doc/posix-functions/getopt.texi (getopt): Likewise.
2895
2896         getopt-gnu: add another test
2897         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
2898         guarantee behavior relied on by m4.
2899         * tests/test-getopt.c (main): Use it.
2900         * modules/getopt-posix-tests (Depends-on): Add setenv.
2901         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
2902
2903         getopt: fix compilation on darwin
2904         * lib/getopt.in.h (includes): Leave breadcrumbs during system
2905         include.
2906         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
2907         Reported by Ludovic Courtès.
2908
2909 2009-10-06  Bruno Haible  <bruno@clisp.org>
2910
2911         * modules/size_max (Description): Discourage its use.
2912         Reported by Simon Josefsson.
2913
2914 2009-10-06  Jim Meyering  <meyering@redhat.com>
2915
2916         linkat: avoid compilation failure
2917         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
2918
2919 2009-10-05  Eric Blake  <ebb9@byu.net>
2920
2921         linkat: support Linux 2.6.17
2922         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
2923         linkat on Linux, but allow cache variable override.
2924         * lib/linkat.c (rpl_linkat): Define override.
2925         * modules/linkat (Depends-on): Add symlinkat.
2926         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
2927         * modules/unistd (Makefile.am): Substitute it.
2928         * lib/unistd.in.h (linkat): Declare replacement.
2929         Reported by Pádraig Brady.
2930
2931         quotearg: port test to systems with C.UTF-8 locale
2932         * tests/test-quotearg.c (struct result_strings): Add another
2933         member, differentiating between C.ASCII and C.UTF-8 handling.
2934         (compare_strings): Add parameter.
2935         (main): Adjust all callers.
2936
2937         getopt: avoid clash with FreeBSD _getopt_internal
2938         * lib/getopt.in.h (_getopt_internal): Override the name.
2939         * lib/getopt_int.h (includes): Pick up any overrides.
2940         Reported by Reuben Thomas.
2941
2942         hash: allow C89 compilation
2943         * lib/hash.c (check_tuning): Move declaration before statement.
2944         Reported by Reuben Thomas.
2945
2946 2009-10-05  Karl Berry  <karl@gnu.org>
2947
2948         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
2949
2950 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
2951             Bruno Haible  <bruno@clisp.org>
2952
2953         * lib/uname.c (uname): Use a table-driven algorithm to compute
2954         Windows NT versions.
2955
2956 2009-10-04  Bruno Haible  <bruno@clisp.org>
2957
2958         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
2959         program_invocation_short_name.
2960         * modules/progname (configure.ac): Test for presence of
2961         program_invocation_short_name.
2962         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
2963
2964 2009-10-04  Bruno Haible  <bruno@clisp.org>
2965
2966         * lib/progname.c (set_program_name): Fix comment.
2967         Reported by Jim Meyering.
2968
2969 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
2970             Bruno Haible  <bruno@clisp.org>
2971
2972         * lib/uname.c: Include <string.h>.
2973         (uname): Do only one call to GetVersionEx in the common case.
2974
2975 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
2976             Bruno Haible  <bruno@clisp.org>
2977
2978         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
2979         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
2980         (uname): Add support for Windows CE and various non-x86 CPU types.
2981
2982 2009-10-03  Bruno Haible  <bruno@clisp.org>
2983
2984         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
2985         invocation to tests/configure.ac.
2986         Reported by Ian Beckwith <ianb@erislabs.net>.
2987
2988 2009-10-02  Eric Blake  <ebb9@byu.net>
2989
2990         fchdir: avoid compiler warning
2991         * lib/fchdir.c (canonicalize_file_name)
2992         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
2993
2994         test-open: support mingw errno values
2995         * tests/test-open.h (test_open): Relax test.
2996         * tests/test-fopen.h (test_fopen): Likewise.
2997         * tests/test-openat-safer.c (main): Likewise.
2998
2999         open: fix opening directory on mingw
3000         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
3001
3002         test-open: on GNU/Hurd, /dev/null is a directory
3003         * tests/test-fopen.h (main): Rename...
3004         (test_fopen): ...to this.  Use a guaranteed non-directory when
3005         confirming open behavior on trailing slash.
3006         * tests/test-openat-safer.c (main): Likewise.
3007         * tests/test-open.h (main): Likewise....
3008         (test_open): ...to this.
3009         * tests/test-fopen.c (main): Adjust caller.
3010         * tests/test-fopen-safer.c (main): Likewise.
3011         * tests/test-open.c (main): Likewise.
3012         * tests/test-fcntl-safer.c (main): Likewise.
3013         Reported by Samuel Thibault.
3014
3015         rename, fchdir: don't ignore chdir failure
3016         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
3017         * lib/rename.c (rpl_rename) [W32]: Likewise.
3018         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
3019         an empty destination directory if source cannot be renamed,
3020         although there is still possibility for failure.
3021         * doc/posix-functions/rename.texi (rename): Document the race.
3022         Reported by Jim Meyering.
3023
3024         maint: cleanup whitespace in recent commits
3025         * lib/rename.c (rpl_rename): Remove tabs.
3026         * tests/test-link.h (test_link): Likewise.
3027         * lib/fchdir.c (get_name): Likewise.
3028         Reported by Jim Meyering.
3029
3030 2009-10-02  Ben Pfaff  <blp@gnu.org>
3031
3032         relocatable-prog-wrapper: Add missing dependency on
3033         double-slash-root.
3034         * modules/relocatable-prog-wrapper: Add dependency.
3035         Reported by Ian Beckwith <ianb@erislabs.net>.
3036
3037 2009-10-02  Eric Blake  <ebb9@byu.net>
3038
3039         renameat: fix Solaris bugs
3040         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
3041         needed fixing.
3042         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
3043         * modules/stdio (Makefile.am): Substitute it.
3044         * lib/stdio.in.h (renameat): Declare replacement.
3045         * lib/renameat.c (rpl_renameat): Implement fix.
3046
3047         renameat: new module
3048         * modules/renameat: New file.
3049         * lib/renameat.c (renameat): Likewise.
3050         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
3051         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
3052         * modules/stdio (Makefile.am): Substitute them.
3053         * lib/stdio.in.h (renameat): Declare it.
3054         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3055         * doc/posix-functions/renameat.texi (renameat): Likewise.
3056         * modules/renameat-tests: New test.
3057         * tests/test-renameat.c: Likewise.
3058
3059         rename: fix mingw bugs
3060         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
3061         directory overwrite bugs.
3062
3063         rename: fix another cygwin 1.5 bug
3064         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
3065         checks.
3066         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
3067         unnecessary cygwin workarounds.  Also work around bug with moving
3068         full directory onto an empty one.
3069         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
3070
3071         rename-dest-slash: merge into rename module
3072         * modules/rename-dest-slash (Status): Mark obsolete.
3073         (Depends-on): Add rename.
3074         (Files): Let rename do it all.
3075         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
3076         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
3077         * m4/rename-dest-slash.m4: ...so this file can be deleted.
3078         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
3079         * lib/rename.c (rpl_rename): Update comments.
3080
3081         rename: fix cygwin 1.5.x bugs
3082         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
3083         * lib/rename.c (rpl_rename): Work around them.
3084         * modules/rename (Depends-on): Add same-inode.
3085
3086         rename: fix Solaris 10 bug
3087         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
3088         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
3089         was the only bug.
3090
3091         rename: fix Solaris 9 bug
3092         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
3093         on non-directory.  Avoid calling exit.
3094         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
3095         strdup.
3096         * modules/rename-tests (Depends-on): Drop lstat.
3097         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
3098         (gl_PREREQ_RENAME): Delete unused macro.
3099
3100         rename-dest-slash: fix NetBSD bug
3101         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
3102         links.
3103         * modules/rename-dest-slash (Depends-on): Add same-inode.
3104
3105         rename-tests: new test, exposes several platform bugs
3106         * modules/rename-tests: New file.
3107         * tests/test-rename.h: Likewise.
3108         * tests/test-rename.c: Likewise.
3109         * doc/posix-functions/rename.texi (rename): Improve documentation,
3110         including bugs that will eventually be fixed in gnulib.
3111
3112 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
3113
3114         * lib/uname.c: Include <stdlib.h>
3115         (uname): Assume version info is available.
3116
3117 2009-10-02  Jim Meyering  <meyering@redhat.com>
3118
3119         gnu-web-doc-update: correct --help output
3120         * build-aux/gnu-web-doc-update: Make --help output relevant.
3121
3122         gnu-web-doc-update: add standard options
3123         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
3124
3125         gnu-web-doc-update: New module.
3126         Use this script to automatically update the on-line web documentation
3127         for your GNU project at http://www.gnu.org/software/$pkg/manual/
3128         * modules/gnu-web-doc-update: New file, from coreutils.
3129         * build-aux/gnu-web-doc-update: New script.
3130
3131 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
3132
3133         link: LoadLibrary is not needed.
3134         * lib/link.c: Use GetModuleHandle.
3135
3136 2009-10-01  Eric Blake  <ebb9@byu.net>
3137
3138         getopt: bump serial number
3139         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
3140         change.
3141
3142         tests: tighten link, rmdir, and remove tests
3143         * tests/test-link.h (includes): No need to use <config.h> here.
3144         Clean up if directory hard link was created, otherwise test for
3145         trailing '.'.
3146         * tests/test-linkat.c (main): Simplify.
3147         * tests/test-remove.c (main): Enhance test for trailing '.'.
3148         * tests/test-rmdir.h (test_rmdir_func): Likewise.
3149
3150 2009-10-01  Jim Meyering  <meyering@redhat.com>
3151
3152         maint.mk: requiring "make major" was annoying, for a "minor" release.
3153         What is intended is "stable", to contrast with alpha and beta,
3154         so require "make stable", not "make major".
3155         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
3156         (get_tool_versions): Likewise.
3157         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
3158
3159 2009-09-30  Ben Pfaff  <blp@gnu.org>
3160
3161         Fix broken build of replacement for Windows tmpfile().
3162         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
3163         flags argument added along with the 'mkostemp' module.
3164
3165 2009-09-28  Bruno Haible  <bruno@clisp.org>
3166
3167         Avoid identifier clash with POSIX function 'remove' defined as a macro.
3168         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
3169         to 'remove_elt'.
3170         (gl_list_remove): Update.
3171         * lib/gl_list.c (gl_list_remove): Update.
3172         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
3173         to 'remove_elt'.
3174         (gl_oset_remove): Update.
3175         * lib/gl_list.c (gl_oset_remove): Update.
3176         Reported by Eric Blake.
3177
3178 2009-09-28  Eric Blake  <ebb9@byu.net>
3179
3180         doc: mention yet more cygwin 1.7 status
3181         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
3182         cygwin.
3183         * doc/glibc-functions/execvpe.texi (execvpe): New file.
3184         * doc/gnulib.texi (Glibc unistd.h): Mention it.
3185
3186         argp: fix test failure
3187         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
3188         that are not upper-case.  Pass correct range to tolower.
3189
3190 2009-09-27  Jim Meyering  <meyering@redhat.com>
3191
3192         test-yesno: work around sparc-dash here-document infelicity
3193         Without this change, the literal \177 byte in a here document
3194         would make dash 0.5.5.1-3 access uninitialized memory.
3195         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
3196         Instead, use a marker, "@", and filter through tr to create the desired
3197         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
3198
3199 2009-09-27  Bruno Haible  <bruno@clisp.org>
3200
3201         Disable untested support for new flavours of ACLs on AIX.
3202         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
3203         progress.
3204         * lib/set-mode-acl.c (qset_acl): Likewise.
3205
3206 2008-12-07  Bruno Haible  <bruno@clisp.org>
3207
3208         Add support for new flavours of ACLs on AIX. (Untested.)
3209         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
3210         (file_has_acl): Add support for newer AIX.
3211         * lib/set-mode-acl.c (qset_acl): Likewise.
3212         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
3213         Rainer Tammer <tammer@tammer.net>.
3214
3215 2009-09-26  Eric Blake  <ebb9@byu.net>
3216
3217         argp: fix compilation of getopt
3218         * lib/getopt.in.h (includes): Use different guard than glibc.
3219         Reported by Sergey Poznyakoff.
3220
3221         doc: mention more cygwin 1.7 status
3222         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
3223         bug.
3224         * doc/posix-functions/execl.texi (execl): Likewise.
3225         * doc/posix-functions/execle.texi (execle): Likewise.
3226         * doc/posix-functions/execlp.texi (execlp): Likewise.
3227         * doc/posix-functions/execv.texi (execv): Likewise.
3228         * doc/posix-functions/execve.texi (execve): Likewise.
3229         * doc/posix-functions/execvp.texi (execvp): Likewise.
3230         * doc/glibc-functions/canonicalize_file_name.texi
3231         (canonicalize_file_name): Cygwin 1.7 now provides this.
3232         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
3233         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
3234         on AT_SYMLINK_NOFOLLOW.
3235
3236 2009-09-24  Eric Blake  <ebb9@byu.net>
3237
3238         test-linkat: make test more robust
3239         * tests/test-linkat.c (main): Avoid collision with EEXIST.
3240
3241         getopt: fix inclusion guards for cygwin
3242         * modules/getopt-posix (Depends-on): Add include-next.
3243         (Makefile.am): Substitute more items in replacement header.
3244         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
3245         <getopt.h>.
3246         * lib/getopt.in.h (includes): Use split inclusion guard, and
3247         prefer <getopt.h> over include <unistd.h> when one is present.
3248         (option): Also override name of 'struct option'.
3249
3250         same-inode: revert prior change; it is not yet ready
3251         * NEWS: Undo mention of this change.
3252         * lib/same-inode.h (same-inode.h): Undo tri-state change.
3253         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
3254         * lib/cycle-check.c (cycle_check): Likewise.
3255         * lib/same.c (same_name): Likewise.
3256         * lib/at-func2.c (at_func2): Likewise.
3257
3258 2009-09-23  Eric Blake  <ebb9@byu.net>
3259
3260         linkat: new module
3261         * modules/linkat: New file.
3262         * lib/at-func2.c (at_func2): Likewise.
3263         * lib/linkat.c (linkat): Likewise.
3264         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
3265         * lib/openat-priv.h (at_func2): Add declaration.
3266         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3267         * modules/unistd (Makefile.am): Substitute them.
3268         * lib/unistd.in.h (linkat): Declare it.
3269         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3270         * doc/posix-functions/linkat.texi (linkat): Likewise.
3271         * doc/posix-functions/link.texi (link): Tweak wording.
3272         * tests/test-link.c (main): Move guts...
3273         * tests/test-link.h (test_link): ...into new file.
3274         * modules/linkat-tests: New test.
3275         * tests/test-linkat.c: Likewise.
3276         * modules/link-tests (Files): Ship new file.
3277         (Depends-on): Add stdbool.
3278
3279         dirname: add library-safe mdir_name
3280         * lib/dirname.h (mdir_name): New prototype.
3281         * lib/dirname.c (dir_name): Move guts...
3282         (mdir_name): ...to new function that avoids xalloc_die.
3283
3284         fchdir: another mingw fix
3285         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
3286         * lib/fchdir.c (get_name): New helper method; skips canonicalize
3287         on mingw (where it has not yet been ported), and make it optional
3288         elsewhere.
3289         (_gl_register_fd): Use it.
3290
3291         same-inode: make SAME_INODE tri-state, to port to mingw
3292         * NEWS: Mention this change.
3293         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
3294         st_ino always being 0.
3295         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
3296         * lib/cycle-check.c (cycle_check): Likewise.
3297         * lib/same.c (same_name): Likewise.
3298
3299         lstat: avoid mingw compilation error
3300         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
3301         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
3302         lstat ourselves.
3303         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
3304         was adequate.
3305         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
3306         the checks for lstat.
3307         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
3308
3309         link: fix test failure on Solaris 9
3310         * lib/link.c (rpl_link): Don't assume link will catch bogus
3311         trailing slash on source.
3312
3313         test-symlinkat: enhance test
3314         * tests/test-readlink.c (main): Move guts...
3315         * tests/test-readlink.h (test_readlink): ...into new file.
3316         * tests/test-symlink.c (main): Move guts...
3317         * tests/test-symlink.h (test_symlink): ...into new file.
3318         * tests/test-symlinkat.c (main): Use new files for further
3319         coverage.
3320         (do_symlink, do_readlink): New helper functions.
3321         * modules/symlink-tests (Files): Ship new file.
3322         (Depends-on): Add stdbool.
3323         * modules/readlink-tests (Files): Ship new file.
3324         (Depends-on): Add stdbool.
3325         * modules/symlinkat-tests (Files): Use new files.
3326
3327 2009-09-23  Eric Blake  <ebb9@byu.net>
3328
3329         readlink: document portability issue with symlink length
3330         * doc/posix-functions/lstat.texi (lstat): Mention that some file
3331         systems have bogus st_size on symlinks, and mention the
3332         areadlink-with-size module.
3333         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
3334         * doc/posix-functions/readlink.texi (readlink): Mention the
3335         areadlink module, and ERANGE failure.
3336         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
3337         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
3338
3339         readlink: fix Solaris 9 bug with trailing slash
3340         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
3341         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
3342         * doc/posix-functions/readlink.texi (readlink): Document this.
3343         * modules/readlink-tests: New test.
3344         * tests/test-readlink.c: Likewise.
3345
3346         readlink: fix cygwin 1.5.x bug with return type
3347         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
3348         * lib/unistd.in.h (readlink): Use ssize_t.
3349         * lib/readlink.c (readlink): Likewise.
3350         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3351         * modules/unistd (Makefile.am): Substitute it.
3352         * lib/unistd.in.h (readlink): Declare replacement.
3353         * doc/posix-functions/readlink.texi (readlink): Document this.
3354
3355         symlink: use throughout gnulib
3356         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
3357         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
3358         symlink is not used.
3359         * modules/symlinkat (Depends-on): Add symlink.
3360         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
3361         * modules/canonicalize-tests (Depends-on): Likewise.
3362         * modules/lstat-tests (Depends-on): Likewise.
3363         * modules/openat-tests (Depends-on): Likewise.
3364         * modules/remove-tests (Depends-on): Likewise.
3365         * modules/rmdir-tests (Depends-on): Likewise.
3366         * modules/unlink-tests (Depends-on): Likewise.
3367         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
3368         * tests/test-canonicalize.c (symlink): Likewise.
3369         * tests/test-fstatat.c (symlink): Likewise.
3370         * tests/test-lstat.c (symlink): Likewise.
3371         * tests/test-remove.c (symlink): Likewise.
3372         * tests/test-rmdir.c (symlink): Likewise.
3373         * tests/test-unlink.c (symlink): Likewise.
3374         * tests/test-unlinkat.c (symlink): Likewise.
3375
3376         symlink: new module, for Solaris 9 bug
3377         * modules/symlink: New file.
3378         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
3379         * lib/symlink.c: Likewise.
3380         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
3381         * modules/unistd (Makefile.am): Substitute them.
3382         * lib/unistd.in.h (symlink): Declare replacement.
3383         * MODULES.html.sh (File system functions): Mention it.
3384         * doc/posix-functions/symlink.texi (symlink): Likewise.
3385         * modules/symlink-tests: New test.
3386         * tests/test-symlink.c: Likewise.
3387
3388 2009-09-23  Bruno Haible  <bruno@clisp.org>
3389
3390         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
3391         when needed.
3392         Test case: gnulib-tool --import --with-tests atexit inttypes.
3393         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
3394
3395 2009-09-23  Bruno Haible  <bruno@clisp.org>
3396
3397         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
3398         subcommand, not in a subshell.
3399
3400 2009-09-22  Eric Blake  <ebb9@byu.net>
3401
3402         unistd: sort replacement declarations
3403         * lib/unistd.in.h: Sort declarations.
3404
3405         open, openat: minor optimization
3406         * lib/open.c (open): If open succeeded, len is non-zero.
3407         * lib/openat.c (rpl_openat): Likewise.
3408
3409         link-follow: ensure correct result
3410         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
3411         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
3412         distinguish between possible failures.
3413
3414 2009-09-21  Eric Blake  <ebb9@byu.net>
3415
3416         fts: avoid compiler warning
3417         * lib/fts.c (dirent_inode_sort_may_be_useful)
3418         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
3419
3420 2009-09-19  Bruno Haible  <bruno@clisp.org>
3421
3422         * lib/progreloc.c (canonicalize_file_name): New declaration.
3423
3424 2009-09-19  Eric Blake  <ebb9@byu.net>
3425
3426         link: fix quoting
3427         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
3428
3429         openat: fix openat bugs on Solaris 9
3430         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
3431         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
3432         * modules/openat (Depends-on): Add open.
3433         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
3434         * modules/fcntl-h (Makefile.am): Substitute it.
3435         * lib/fcntl.in.h (openat): Declare replacement.
3436         * doc/posix-functions/openat.texi (openat): Document this.
3437
3438         openat: move fstatat and unlinkat into correct files
3439         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
3440         compiled.
3441         * lib/openat.c (fstatat, unlinkat): Move...
3442         * lib/fstatat.c (fstatat): ...into correct files.
3443         * lib/unlinkat.c (unlinkat): Likewise.
3444
3445         openat: fix unlinkat bugs on Solaris 9
3446         * lib/unlinkat.c (unlinkat): New file.
3447         * modules/openat (Depends-on): Add unlink.
3448         (Files): Distribute it.
3449         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
3450         trailing slash behavior is broken.
3451         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3452         * modules/unistd (Makefile.am): Substitute it.
3453         * lib/unistd.in.h (unlinkat): Declare replacement.
3454         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
3455
3456         openat: fix fstatat bugs on Solaris 9
3457         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
3458         stat.
3459         * doc/posix-functions/fstatat.texi (fstatat): Document this.
3460
3461         test-unlinkat: enhance test, to expose Solaris 9 bug
3462         * tests/test-unlink.c (main): Factor guts...
3463         * tests/test-unlink.h (test_rmdir_func): ...into new file.
3464         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
3465         * tests/test-rmdir.c (main): Adjust caller.
3466         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
3467         (unlinker): New helper function.
3468         (rmdirat): Enhance check.
3469         * modules/rmdir-tests (Depends-on): Add stdbool.
3470         * modules/unlink-tests (Depends-on): Likewise.
3471         (Files): Add test-unlink.h.
3472         * modules/openat-tests (Files): Likewise.
3473         (Depends-on): Add unlinkdir.
3474
3475         test-fstatat: new test, to expose Solaris 9 bugs
3476         * tests/test-stat.c (main): Factor guts...
3477         * tests/test-stat.h (test_stat_func): ...into new file.
3478         * tests/test-lstat.c (main): Factor guts...
3479         * tests/test-lstat.h (test_lstat_func): ...into new file.
3480         * tests/test-fstatat.c: New file.
3481         * modules/stat-tests (Files): Add test-stat.h.
3482         * modules/lstat-tests (Files): Add test-lstat.h.
3483         (Depends-on): Add stdbool.
3484         * modules/openat-tests (Depends-on): Add pathmax.
3485         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
3486         (Makefile.am): Run new test.
3487
3488         remove: new module, for mingw and Solaris 9 bugs
3489         * modules/remove: New file.
3490         * lib/remove.c: Likewise.
3491         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
3492         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
3493         * modules/stdio (Makefile.am): Use them.
3494         * lib/stdio.in.h (remove): Declare replacement.
3495         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3496         * doc/posix-functions/remove.texi (remove): Likewise.
3497         * modules/remove-tests: New test.
3498         * tests/test-remove.c: Likewise.
3499
3500         unlink: new module, for Solaris 9 bug
3501         * modules/unlink: New file.
3502         * lib/unlink.c: Likewise.
3503         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
3504         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3505         * modules/unistd (Makefile.am): Use them.
3506         * lib/unistd.in.h (stat): Declare replacement.
3507         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3508         * doc/posix-functions/unlink.texi (unlink): Likewise.
3509         * modules/unlink-tests: New test.
3510         * tests/test-unlink.c: Likewise.
3511
3512         lstat: fix Solaris 9 bug
3513         * lib/lstat.c (lstat): Also check for trailing slash on
3514         non-symlink, non-directories.  Use stat module to simplify logic.
3515         * doc/posix-functions/lstat.texi (lstat): Document it.
3516         * modules/lstat-tests (Depends-on): Add errno, same-inode.
3517         (configure.ac): Check for symlink.
3518         * tests/test-lstat.c (main): Add more tests.
3519
3520         stat: add as dependency to other modules
3521         * modules/chown (Depends-on): Add stat.
3522         * modules/euidaccess (Depends-on): Likewise.
3523         * modules/fchdir (Depends-on): Likewise.
3524         * modules/isdir (Depends-on): Likewise.
3525         * modules/link (Depends-on): Likewise.
3526         * modules/lstat (Depends-on): Likewise.
3527         * modules/mkdir-p (Depends-on): Likewise.
3528         * modules/modechange (Depends-on): Likewise.
3529         * modules/open (Depends-on): Likewise.
3530         * modules/readlink (Depends-on): Likewise.
3531         * modules/same (Depends-on): Likewise.
3532
3533         stat: fix Solaris 9 bug
3534         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
3535         slash.
3536         * lib/stat.c (rpl_stat): Work around it.
3537         * doc/posix-functions/stat.texi (stat): Update documentation.
3538
3539         stat: new module, for mingw bug
3540         * modules/stat: New file.
3541         * lib/stat.c: Likewise.
3542         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
3543         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
3544         * modules/sys_stat (Makefile.am): Use them.
3545         * lib/sys_stat.in.h (stat): Declare replacement.
3546         * lib/openat.c (fstatat): Deal with lstat and stat being function
3547         macros.
3548         * modules/openat (Depends-on): Add inline.
3549         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3550         * doc/posix-functions/stat.texi (stat): Likewise.
3551         * modules/stat-tests: New test.
3552         * tests/test-stat.c: Likewise.
3553
3554 2009-09-19  Jim Meyering  <meyering@redhat.com>
3555
3556         syntax-check: detect unnecessary inclusion of canonicalize.h
3557         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
3558
3559 2009-09-19  Eric Blake  <ebb9@byu.net>
3560
3561         canonicalize-lgpl: adjust clients to use correct header
3562         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
3563         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
3564         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
3565         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
3566         * lib/progreloc.c (includes): Likewise.
3567
3568 2009-09-19  Jim Meyering  <meyering@redhat.com>
3569
3570         test-posixtm.c: correct a comment
3571         * tests/test-posixtm.c: Correct first-line comment.
3572         Spotted by Eric Blake.
3573
3574 2009-09-16  Jim Meyering  <meyering@redhat.com>
3575
3576         posixtm-tests: make T const-correct; add a test case
3577         * tests/test-posixtm.c (T): Declare const.
3578         Add a test for -(2^31+1).
3579         Remove useless can-succeed-only-in-2002 test.
3580
3581         posixtm-tests: adjust the sole failing test
3582         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
3583         expected output matches what mktime now produces.  Cross-checked via
3584         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
3585
3586         posixtm: move #ifdef'd tests into a new module
3587         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
3588         * tests/test-posixtm.c: ... this new file.
3589         * modules/posixtm-tests: New module.
3590
3591 2009-09-19  Eric Blake  <ebb9@byu.net>
3592
3593         openat: simplify use of at-func.c
3594         * lib/at-func.c (includes): Include prerequisites here, to
3595         simplify requirements on client files.
3596         * lib/openat-priv.h: Add double-inclusion guard.
3597         * lib/faccessat.c (includes): Simplify.
3598         * lib/fchmodat.c (includes): Likewise.
3599         * lib/fchownat.c (includes): Likewise.
3600         * lib/mkdirat.c (includes): Likewise.
3601         * lib/mkfifoat.c (includes): Likewise.
3602         * lib/symlinkat.c (includes): Likewise.
3603
3604         openat: allow return of fd 0
3605         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
3606         * modules/save-cwd (Depends-on): Replace fcntl-safer with
3607         unistd-safer.
3608         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
3609         <fcntl.h>; this module does not leak fds.
3610         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
3611         must be allowed to return 0, leaving openat_safer to add the
3612         safety.
3613         (openat_permissive): Avoid writing to just-opened fd 2 if
3614         restoring the current directory fails.
3615         * lib/openat-die.c (openat_restore_fail): Add comment.
3616         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
3617         (save_cwd): Guarantee safe fd, but without use of open_safer.
3618         * tests/test-openat.c: New test.
3619         * modules/openat-tests (Files, Makefile.am): Distribute and build
3620         new file.
3621
3622         relocatable-prog-wrapper: fix build
3623         * modules/relocatable-prog-wrapper (Files): Update name of
3624         canonicalize m4 file, broken on 2009-09-17.
3625         Reported by emad hajjar <aleppos@hotmail.com>.
3626
3627 2009-09-19  Bruno Haible  <bruno@clisp.org>
3628
3629         * lib/safe-alloc.h: Use the standard header with GPL copyright.
3630         * lib/safe-alloc.c: Likewise.
3631         Reported by Ian Beckwith <ianb@erislabs.net>.
3632
3633 2009-09-18  Bruno Haible  <bruno@clisp.org>
3634
3635         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
3636         Reported by <erobles@sensacd.com.mx>.
3637
3638 2009-09-17  Eric Blake  <ebb9@byu.net>
3639
3640         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
3641         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
3642         slashes when checking if last component is missing.
3643         * tests/test-canonicalize.c (main): Test this.
3644
3645         canonicalize, canonicalize-lgpl: honor // if distinct from /
3646         * modules/canonicalize (Files): Add double-slash-root.m4.
3647         * modules/canonicalize-lgpl (Files): Likewise.
3648         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
3649         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
3650         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
3651         fallback definition.
3652         (canonicalize_filename_mode): Use it to protect //.
3653         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
3654         (__realpath): Likewise.
3655         * tests/test-canonicalize.c (main): Test this.
3656         * tests/test-canonicalize-lgpl.c (main): Likewise.
3657         * modules/canonicalize-tests (Depends-on): Add same-inode.
3658         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
3659
3660         canonicalize-lgpl: fix glibc bug with trailing slash
3661         * m4/canonicalize-lgpl.m4: Move contents...
3662         * m4/canonicalize.m4: ...here.
3663         (gl_CANONICALIZE_LGPL): Factor realpath check...
3664         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
3665         glibc 2.3.5 bug, fixed 2005-04-27.
3666         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
3667         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
3668         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
3669         * modules/canonicalize-lgpl (Files): Manage file rename.
3670         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
3671         * modules/stdlib (Makefile.am): Substitute witness.
3672         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
3673         is needed.
3674         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
3675         replacement is required.
3676         * lib/canonicalize.c (canonicalize_file_name): Likewise.
3677         * doc/glibc-functions/canonicalize_file_name.texi
3678         (canonicalize_file_name): Document this.
3679         * doc/posix-functions/realpath.texi (realpath): Likewise.
3680
3681         canonicalize-lgpl: reject non-directory with trailing slash
3682         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
3683         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
3684         catches failures in glibc 2.3.5.
3685         * tests/test-canonicalize.c (main): Likewise.
3686
3687         canonicalize-lgpl: use native realpath if it works
3688         * lib/canonicalize-lgpl.c (realpath): Guard with
3689         FUNC_REALPATH_WORKS.
3690         * lib/stdlib.in.h (realpath): Make declaration optional based on
3691         HAVE_REALPATH.
3692         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
3693         native realpath works.
3694         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
3695         * modules/stdlib (Makefile.am): Substitute witness.
3696
3697         canonicalize, canonicalize-lgpl: use <stdlib.h>
3698         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
3699         (Include): Mention <stdlib.h>.
3700         (configure.ac): Mention functions we provide.
3701         * modules/canonicalize (configure.ac): Likewise.
3702         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
3703         realpath if canonicalize_file_name is missing.
3704         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
3705         * modules/stdlib (Makefile.am): Substitute witnesses.
3706         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
3707         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
3708         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
3709         * NEWS: Document this.
3710         * doc/glibc-functions/canonicalize_file_name.texi
3711         (canonicalize_file_name): Likewise.
3712         * doc/posix-functions/realpath.texi (realpath): Likewise.
3713         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
3714
3715         test-canonicalize: consolidate into single C program
3716         * tests/test-canonicalize.sh: Delete; move setup into...
3717         * tests/test-canonicalize.c (main): ...the program, making it
3718         easier to run in debugger.  Add some tests.
3719         * modules/canonicalize-tests (Files): Remove unused file.
3720         (Depends-on): Add progname.
3721         (configure.ac, Makefile.am): Simplify.
3722
3723         test-canonicalize-lgpl: consolidate into single C program
3724         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
3725         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
3726         easier to run in debugger.  Add some tests.
3727         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
3728         (configure.ac, Makefile.am): Simplify.
3729
3730         canonicalize: avoid resolvepath
3731         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
3732         unnecessary checks.
3733         * lib/canonicalize.c (includes): Simplify.
3734         (canonicalize_file_name): Drop resolvepath implementation.
3735         * modules/canonicalize (Depends-on): Drop filenamecat.
3736
3737         canonicalize: don't lose errno
3738         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
3739         over calls to free.
3740
3741         canonicalize: simplify errno handling
3742         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
3743         assignment.
3744
3745         canonicalize, canonicalize-lgpl: update module dependencies
3746         * modules/canonicalize (Depends-on): Add extensions, lstat,
3747         pathmax, stdlib.
3748         (Files): Drop pathmax.h.
3749         (configure.ac): Adjust macro name.
3750         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
3751         lstat, stdlib, sys_stat.
3752         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
3753         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
3754         extensions.
3755         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
3756         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
3757         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
3758         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
3759         declaration, if available.
3760         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
3761         we can rely on the readlink module.
3762         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
3763         (includes): Use <unistd.h> unconditionally.
3764
3765 2009-09-17  Eric Blake  <ebb9@byu.net>
3766
3767         maint: make Include sections of modules consistent
3768         * modules/alloca: Use only header name; no need to list #include.
3769         * modules/alloca-opt: Likewise.
3770         * modules/arpa_inet: Likewise.
3771         * modules/canon-host: Likewise.
3772         * modules/configmake: Likewise.
3773         * modules/dirent: Likewise.
3774         * modules/eealloc: Likewise.
3775         * modules/environ: Likewise.
3776         * modules/fchdir: Likewise.
3777         * modules/fcntl: Likewise.
3778         * modules/fcntl-h: Likewise.
3779         * modules/gethrxtime: Likewise.
3780         * modules/gettime: Likewise.
3781         * modules/ignore-value: Likewise.
3782         * modules/inet_ntop: Likewise.
3783         * modules/inet_pton: Likewise.
3784         * modules/inttypes: Likewise.
3785         * modules/isnand-nolibm: Likewise.
3786         * modules/isnanf-nolibm: Likewise.
3787         * modules/mbchar: Likewise.
3788         * modules/mbfile: Likewise.
3789         * modules/mbiter: Likewise.
3790         * modules/mbuiter: Likewise.
3791         * modules/netdb: Likewise.
3792         * modules/netinet_in: Likewise.
3793         * modules/nproc: Likewise.
3794         * modules/pagealign_alloc: Likewise.
3795         * modules/poll: Likewise.
3796         * modules/printf-frexp: Likewise.
3797         * modules/pthread: Likewise.
3798         * modules/putenv: Likewise.
3799         * modules/random_r: Likewise.
3800         * modules/relocatable-prog: Likewise.
3801         * modules/search: Likewise.
3802         * modules/select: Likewise.
3803         * modules/selinux-h: Likewise.
3804         * modules/settime: Likewise.
3805         * modules/signal: Likewise.
3806         * modules/size_max: Likewise.
3807         * modules/socklen: Likewise.
3808         * modules/ssize_t: Likewise.
3809         * modules/stdarg: Likewise.
3810         * modules/stdbool: Likewise.
3811         * modules/stddef: Likewise.
3812         * modules/stdint: Likewise.
3813         * modules/stdio: Likewise.
3814         * modules/stdlib: Likewise.
3815         * modules/string: Likewise.
3816         * modules/strings: Likewise.
3817         * modules/sys_file: Likewise.
3818         * modules/sys_ioctl: Likewise.
3819         * modules/sys_select: Likewise.
3820         * modules/sys_socket: Likewise.
3821         * modules/sys_stat: Likewise.
3822         * modules/sys_time: Likewise.
3823         * modules/sys_times: Likewise.
3824         * modules/sys_utsname: Likewise.
3825         * modules/sys_wait: Likewise.
3826         * modules/sysexits: Likewise.
3827         * modules/time: Likewise.
3828         * modules/times: Likewise.
3829         * modules/tmpfile: Likewise.
3830         * modules/trim: Likewise.
3831         * modules/unistd: Likewise.
3832         * modules/wchar: Likewise.
3833         * modules/wctype: Likewise.
3834
3835 2009-09-17  Bruno Haible  <bruno@clisp.org>
3836
3837         Make getdate.y compile on QNX and NetBSD 5 / i386.
3838         * m4/getdate.m4 (gl_GETDATE): Conditionally define
3839         TIME_T_FITS_IN_LONG_INT.
3840         * lib/getdate.y (long_time_t): New type.
3841         (relative_time): Change type of 'seconds' field to long_time_t.
3842         (get_date): Update types of local variables. Check against overflow
3843         during conversion from long_time_t to time_t.
3844         Reported by Matt Kraai <kraai@ftbfs.org>
3845         and Hasso Tepper <hasso@netbsd.org>.
3846
3847 2009-09-17  Bruno Haible  <bruno@clisp.org>
3848
3849         * modules/COPYING: Update copyright years.
3850         * modules/README: Likeiwse.
3851         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
3852         Reported by Ian Beckwith <ianb@erislabs.net>.
3853
3854 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
3855
3856         * users.txt: Update references for gnuit package.
3857
3858 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
3859
3860         * m4/getdelim.m4: Fix typo in copyright line.
3861
3862 2009-09-17  Bruno Haible  <bruno@clisp.org>
3863
3864         * lib/atoll.c: Use the standard header with GPL copyright.
3865         * lib/argz.in.h: Likewise.
3866         * lib/glob.c: Likewise.
3867         * lib/glob-libc.h: Likewise.
3868         * lib/random_r.c: Likewise.
3869         * lib/siglist.h: Likewise.
3870         * lib/strsignal.c: Likewise.
3871         Reported by Ian Beckwith <ianb@erislabs.net>.
3872
3873 2009-09-17  Eric Blake  <ebb9@byu.net>
3874
3875         rmdir: ensure correct dependency order
3876         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
3877
3878 2009-09-17  Bruno Haible  <bruno@clisp.org>
3879
3880         Disable assertion that fails on NetBSD 5 / i386.
3881         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
3882         Reported by Sam Steingold <sds@gnu.org>
3883         and Hasso Tepper <hasso@netbsd.org>.
3884
3885 2009-09-16  Eric Blake  <ebb9@byu.net>
3886
3887         unlinkdir: port to mingw
3888         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
3889         on which no one can unlink a directory.
3890
3891         stdlib: sort witness names
3892         * modules/stdlib (Makefile.am): Sort replacements.
3893         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
3894         * lib/stdlib.in.h: Likewise.
3895
3896         parse-duration-tests: avoid link failure
3897         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
3898         LIBINTL.
3899         Reported by Tom G. Christensen.
3900
3901         openat-tests: ensure unlinkat behaves like rmdir
3902         * tests/test-rmdir.c (main): Factor guts...
3903         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
3904         * modules/rmdir-tests (Files): Ship new file.
3905         * modules/openat-tests: New test.
3906         * tests/test-unlinkat.c: Likewise.
3907
3908         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
3909         * modules/rmdir-errno (Status, Notice): Now obsolete.
3910
3911         rmdir: work around cygwin 1.5.x and mingw bugs
3912         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
3913         * lib/rmdir.c (rmdir): Work around it.
3914         * modules/rmdir (Status, Notice): No longer obsolete.
3915         (Files): Add dos.m4.
3916         (Depends-on): Add unistd.
3917         (configure.ac): Set witnesses.
3918         (License): Relax to LGPLv2+.
3919         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
3920         * modules/unistd (Makefile.am): Substitute witnesses.
3921         * lib/unistd.in.h (rmdir): Declare replacement.
3922         * doc/posix-functions/rmdir.texi (rmdir): Document this.
3923         * modules/rmdir-tests: New tests.
3924         * tests/test-rmdir.c: Likewise.
3925
3926 2009-09-15  Eric Blake  <ebb9@byu.net>
3927
3928         fchdir: improve use of replacement functions
3929         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
3930         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
3931         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
3932         REPLACE_CLOSEDIR.
3933         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
3934         * modules/sys_stat (Makefile.am): Substitute correct witness.
3935         * modules/dirent (Makefile.am): Likewise.
3936         * modules/unistd (Makefile.am): Likewise.
3937         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
3938         * lib/unistd.in.h (dup): Likewise.
3939         * lib/sys_stat.in.h (fstat): Likewise.
3940
3941         maint: ignore gnulib-tool temp files
3942         * .gitignore: Ignore files created during gnulib-tool --test.
3943
3944 2009-09-13  Jim Meyering  <meyering@redhat.com>
3945
3946         posixtm: don't reject a time that specify "60" as the number of seconds
3947         * lib/posixtm.c (posixtime): The code to reject invalid dates
3948         would also reject a time specified with the .60 suffix.
3949         But POSIX allows that, in order to accommodate leap seconds.
3950         So don't reject it.
3951         (main): Adjust tests accordingly.
3952         * modules/posixtm (Depends-on): Add stpcpy.
3953
3954 2009-09-11  Jim Meyering  <meyering@redhat.com>
3955
3956         announce-gen: include [$release_type] in emitted Subject:
3957         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
3958         e.g., [stable] in the emitted Subject: line.
3959
3960 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3961
3962         Remove obsolete macros from several modules.
3963         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
3964         obsolete Autoconf macros with their modern counterparts.
3965         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
3966         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
3967         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
3968         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
3969         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
3970         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
3971         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
3972         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
3973         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
3974         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
3975         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
3976         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
3977         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
3978         * m4/sockets.m4 (gl_SOCKETS): Likewise.
3979         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
3980         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
3981         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
3982         * m4/time_r.m4 (gl_TIME_R): Likewise.
3983         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
3984         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
3985         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
3986
3987         Fix copyright header in build-aux scripts.
3988         * build-aux/git-version-gen: Fix copyright header to match GPLv3
3989         recommendation.
3990         * build-aux/ncftpput-ftp: Likewise.
3991         * build-aux/update-copyright: Likewise.
3992
3993 2009-09-09  Eric Blake  <ebb9@byu.net>
3994
3995         test-link: allow Linux choice of errno
3996         * tests/test-link.c (main): Relax test for alternate error.
3997
3998         strndup: fix improper m4 caching
3999         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
4000         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
4001         (gl_PREREQ_STRNDUP): Delete.
4002         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
4003         * modules/string (Makefile.am): Substitute it.
4004         * lib/string.in.h (strndup): Modernize prototype.
4005
4006         getcwd: port to mingw
4007         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
4008         different from the POSIX assumptions made throughout the getcwd
4009         module; fortunately, the mingw getcwd does not need replacement.
4010         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
4011         * modules/getcwd-tests: New test.
4012         * tests/test-getcwd.c: Likewise.
4013
4014         link: fix platform bugs
4015         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
4016         * lib/link.c (link): Work around them.  Fix related mingw bug.
4017         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
4018         * modules/unistd (Makefile.am): Substitute it.
4019         * lib/unistd.in.h (link): Declare replacement.
4020         * doc/posix-functions/link.texi (link): Document this.
4021         * modules/link (Depends-on): Add strdup-posix, sys_stat.
4022
4023         test-link: consolidate into single C program, test more cases
4024         * tests/test-link.sh: Delete.
4025         * tests/test-link.c: Test more error conditions.  Exposes bugs on
4026         at least Cygwin and Solaris.
4027         * modules/link-tests (Files): Remove unused file.
4028         (Depends-on): Add errno, sys_stat.
4029         (Makefile.am): Simplify.
4030
4031 2009-09-08  Bruno Haible  <bruno@clisp.org>
4032
4033         Work around towlower, towupper bug on mingw.
4034         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
4035         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
4036         * doc/posix-functions/towlower.texi: Mention the mingw bug.
4037         * doc/posix-functions/towupper.texi: Likewise.
4038         Reported by Eric Blake.
4039
4040 2009-09-08  Jim Meyering  <meyering@redhat.com>
4041
4042         build: don't try to run autoheader if we don't use it
4043         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
4044         is not used in configure.ac.
4045
4046 2009-09-08  Eric Blake  <ebb9@byu.net>
4047
4048         euidaccess: fix compilation error
4049         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
4050
4051         rawmemchr: relax license
4052         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
4053         okay.
4054         Reported by Jim Meyering.
4055
4056         mkfifoat: new module
4057         * modules/mkfifoat: New file.
4058         * lib/mkfifoat.c: Likewise.
4059         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
4060         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
4061         * modules/sys_stat (Makefile.am): Use them.
4062         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
4063         * MODULES.html.sh (File system functions): Mention module.
4064         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
4065         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
4066         * modules/mkfifoat-tests: New test.
4067         * tests/test-mkfifoat.c: Likewise.
4068
4069         strchrnul: relax license
4070         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
4071         okay.
4072         Reported by Jim Meyering.
4073
4074 2009-09-08  Eric Blake  <ebb9@byu.net>
4075
4076         fstatat: fix compilation on Solaris
4077         * lib/fstatat.c (includes): Add fcntl.h.
4078         Reported by Pádraig Brady.
4079
4080 2009-09-07  Eric Blake  <ebb9@byu.net>
4081
4082         rename: modernize replacement
4083         * modules/rename (Depends-on): Add stdio.
4084         (configure.ac): Declare witness.
4085         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
4086         stdio take care of replacement.
4087         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
4088         * modules/stdio (Makefile.am): Substitute them.
4089         * lib/stdio.in.h (rename): Declare replacement.
4090         * lib/rename.c (includes): Allow cross-compilation to non-windows
4091         machines.
4092         * doc/posix-functions/rename.texi (rename): Improve
4093         documentation.
4094
4095         stdio: sort witness names
4096         * modules/stdio (Makefile.am): Sort replacements.
4097         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
4098         * lib/stdio.in.h: Likewise.
4099
4100         getcwd: minor cleanups
4101         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
4102         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
4103
4104         openat: provide more convenience names
4105         * modules/faccessat (configure.ac): Add C witness.
4106         * lib/unistd.in.h (readlinkat): Fix typo.
4107         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
4108         convenience wrappers.
4109         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
4110         wrappers in syntax checks.
4111
4112 2009-09-06  Eric Blake  <ebb9@byu.net>
4113
4114         doc: fix comments in recent patches
4115         * lib/faccessat.c: Mention correct function.
4116         * lib/fchmodat.c: Likewise.
4117         * lib/fchownat.c: Likewise.
4118         * lib/symlinkat.c: Likewise.
4119         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
4120         constants.
4121
4122         faccessat, symlinkat: continue cleanup of previous patch
4123         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
4124         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
4125         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
4126         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
4127         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
4128         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
4129         set.
4130
4131 2009-09-06  Bruno Haible  <bruno@clisp.org>
4132
4133         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
4134         (fstatat): Declare if GNULIB_FSTATAT is set.
4135         (mkdirat): Declare if GNULIB_MKDIRAT is set.
4136         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
4137         (unlinkat): Declare if GNULIB_UNLINKAT is set.
4138         * modules/fcntl-h (Files): Remove m4/openat.m4.
4139         * modules/sys_stat (Files): Remove m4/openat.m4.
4140         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
4141         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
4142         * modules/unistd (Files): Remove m4/openat.m4.
4143         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
4144         GNULIB_OPENAT.
4145         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
4146         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
4147         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
4148         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
4149         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
4150         gl_OPENAT_DEFAULTS.
4151         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
4152         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
4153         Don't require gl_OPENAT_DEFAULTS.
4154         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
4155         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
4156         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
4157         (gl_OPENAT_DEFAULTS): Remove macro.
4158
4159 2009-09-06  Bruno Haible  <bruno@clisp.org>
4160
4161         * modules/openat (configure.ac): Remove unneeded witness.
4162
4163 2009-09-06  Bruno Haible  <bruno@clisp.org>
4164
4165         Set errno to ENOSYS when a function is entirely unsupported.
4166         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
4167         EOPNOTSUPP.
4168         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
4169         * modules/chown (Depends-on): Remove errno.
4170
4171 2009-09-06  Bruno Haible  <bruno@clisp.org>
4172
4173         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
4174
4175 2009-09-06  Bruno Haible  <bruno@clisp.org>
4176
4177         * lib/sys_stat.in.h: Fix preprocessor command indentation.
4178
4179 2009-09-06  Ben Pfaff  <blp@gnu.org>
4180             Bruno Haible  <bruno@clisp.org>
4181
4182         Work around a glibc bug in strtok_r.
4183         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
4184         Undefine if UNDEFINE_STRTOK_R is set.
4185         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
4186         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4187         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
4188         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
4189         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
4190         UNDEFINE_STRTOK_R.
4191         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
4192
4193 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
4194
4195         exclude: minor fix
4196         * lib/exclude.c: Include wctype.h
4197
4198 2009-09-06  Akim Demaille  <demaille@gostai.com>
4199
4200         bootstrap: improve error message
4201         * build-aux/bootstrap (find_tool): Upon failure, report the list
4202         of candidates.
4203         Honor the initial value of the envvar.
4204
4205 2009-09-05  Eric Blake  <ebb9@byu.net>
4206
4207         symlinkat: new module
4208         * modules/symlinkat: New file.
4209         * lib/symlinkat.c: Likewise.
4210         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
4211         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
4212         * modules/unistd (Makefile.am): Use them.
4213         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
4214         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
4215         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
4216         * MODULES.html.sh (File system functions): Mention module.
4217         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
4218         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
4219         * modules/symlinkat-tests: New test.
4220         * tests/test-symlinkat.c: Likewise.
4221
4222         test-openat-safer: add more checks
4223         * tests/test-openat-safer.c (main): Check more code paths.
4224
4225 2009-09-05  Jim Meyering  <meyering@redhat.com>
4226
4227         syntax-check: detect unnecessary inclusion of openat.h
4228         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
4229
4230 2009-09-05  Bruno Haible  <bruno@clisp.org>
4231
4232         Support towlower, towupper.
4233         * doc/posix-functions/towlower.texi: Mention module wctype.
4234         * doc/posix-functions/towupper.texi: Likewise.
4235         * lib/wctype.in.h (towlower, towupper): New functions.
4236         * tests/test-wctype.c: Include stdio.h, stdlib.h.
4237         (ASSERT): New macro.
4238         (e): New variable.
4239         (main): Test also towlower, towupper. Test WEOF argument.
4240         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
4241
4242 2009-09-05  Bruno Haible  <bruno@clisp.org>
4243
4244         Fix conversion behaviour when the input is invalid.
4245         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
4246         mark occurring in first pass of indirect conversion.
4247         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
4248         input.
4249         Found by clang's static analyzer.
4250
4251 2009-09-05  Bruno Haible  <bruno@clisp.org>
4252
4253         * tests/test-striconveh.c (main): Test indirect conversion on platforms
4254         where direct conversion is possible.
4255
4256 2009-09-04  Eric Blake  <ebb9@byu.net>
4257
4258         openat: fail with ENOENT on empty name
4259         * lib/openat-proc.c (openat_proc_name): Special-case the empty
4260         buffer.
4261
4262         link-follow: fix logic bug in prior patch
4263         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
4264         reversed sense of yes and no in prior patch.  Avoid confusing
4265         compilation failure with desired semantics.
4266
4267         link-follow: accomodate mingw and cross-compilation
4268         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
4269         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
4270         cross-compilation results to -1, to make linkat easier to
4271         implement when cross-compiling.  Trivially support mingw.
4272         * modules/link-follow (configure.ac): Call new name.
4273         * NEWS: Mention this.
4274
4275 2009-09-03  Eric Blake  <ebb9@byu.net>
4276
4277         faccessat: compile replacement
4278         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
4279         needed.
4280
4281         fts: fix compilation error
4282         * lib/fts.c (includes): Re-add "openat.h", for
4283         openat_needs_fchdir.
4284
4285         faccessat: new module
4286         * modules/faccessat: New file.
4287         * lib/faccessat.c: Likewise.
4288         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
4289         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
4290         * modules/unistd (Makefile.am): Use it.
4291         * lib/unistd.in.h (faccessat): Declare it.
4292         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
4293         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
4294         * MODULES.html.sh (File system functions): Mention it.
4295         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
4296         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
4297
4298         euidaccess: prefer POSIX over non-standard implementation
4299         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
4300         * lib/euidaccess.c (euidaccess): Use it if available.
4301
4302         openat: make template easier to use
4303         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
4304         AT_FUNC_F2 to be undefined.
4305         (VALIDATE_FLAG): New macro; use it to reject bad flags.
4306         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
4307         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
4308         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
4309         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
4310         Likewise.
4311         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
4312         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
4313         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
4314         Likewise.
4315
4316         openat: declare in POSIX headers
4317         * NEWS: Mention this.
4318         * modules/openat (configure.ac): Declare witnesses.
4319         (Depends-on): Add fcntl-h, sys_stat, unistd.
4320         (Include): Mention correct headers.
4321         * modules/fcntl-h (Depends-on): Add link-warning.
4322         (Files): Add openat.m4.
4323         (Makefile.am): Substitute witnesses.
4324         * modules/sys_stat (Files, Makefile.am): Likewise.
4325         * modules/unistd (Files, Makefile.am): Likewise.
4326         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
4327         (gl_OPENAT_DEFAULTS): New macro.
4328         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
4329         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
4330         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
4331         (SYS_STAT_H): Remove unused variable.
4332         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
4333         * lib/fcntl--.h (includes): Remove unneeded header.
4334         * lib/openat-safer.c (includes): Likewise.
4335         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
4336         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
4337         appropriate headers.
4338         (__OPENAT_PREFIX): Delete.
4339         * lib/fcntl.in.h (openat): Provide declaration.
4340         (AT_FDCWD): Fix Solaris bug.
4341         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
4342         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
4343         * lib/fchmodat.c (includes):  Adjust to find declaration.
4344         * lib/fchownat.c (includes): Likewise.
4345         * lib/mkdirat.c (includes): Likewise.
4346         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
4347         still visible.
4348
4349 2009-09-02  Eric Blake  <ebb9@byu.net>
4350
4351         errno: use consistently
4352         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
4353         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
4354         * lib/canonicalize.c (ELOOP): Likewise.
4355         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
4356         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
4357         * lib/lchown.c (EOPNOTSUPP): Likewise.
4358         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
4359         * lib/savewd.c (ESTALE): Likewise.
4360         * lib/settime.c (ENOSYS): Likewise.
4361         * lib/utimens.c (ENOSYS): Likewise.
4362         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
4363         * lib/chdir-safer.c (ELOOP): Likewise.
4364         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
4365         * modules/c-stack (Depends-on): Add errno.
4366         * modules/canonicalize (Depends-on): Likewise.
4367         * modules/chdir-safer (Depends-on): Likewise.
4368         * modules/fdopendir (Depends-on): Likewise.
4369         * modules/inet_ntop (Depends-on): Likewise.
4370         * modules/inet_pton (Depends-on): Likewise.
4371         * modules/lchown (Depends-on): Likewise.
4372         * modules/openat (Depends-on): Likewise.
4373         * modules/savewd (Depends-on): Likewise.
4374         * modules/settime (Depends-on): Likewise.
4375         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
4376
4377         fts: avoid leaking fds
4378         * modules/fts (Depends-on): Add cloexec.
4379         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
4380         flag.
4381
4382         fts: make directory fds more robust
4383         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
4384         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
4385
4386         backupfile, chdir-long, fts, savedir: make safer
4387         * lib/backupfile.c (includes): Use "dirent--.h", since
4388         numbered_backup can write to stderr during readdir.
4389         * lib/savedir.c (includes): Likewise.
4390         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
4391         emulation can write to stderr on failure.
4392         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
4393         * lib/getcwd.c: Document why opendir_safer is unused.
4394         * lib/glob.c: Likewise.
4395         * lib/scandir.c: Likewise.
4396         * lib/openat-proc.c: Likewise, for open_safer.
4397         * modules/backupfile (Depends-on): Add dirent-safer.
4398         * modules/savedir (Depends-on): Likewise.
4399         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
4400         * modules/chdir-long (Depends-on): Add openat-safer.
4401
4402         openat-safer: new module
4403         * modules/openat-safer: New file.
4404         * lib/openat-safer.c: Likewise.
4405         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
4406         * lib/fcntl-safer.h (openat_safer): Declare.
4407         * lib/fcntl--.h (openat): Override.
4408         * MODULES.html.sh (File descriptor based I/O): Mention it.
4409         * lib/openat.h: Add double-inclusion guards.
4410         * lib/openat.c (includes): Only include "fcntl-safer.h", not
4411         "fcntl--.h", so we can implement openat.
4412         * modules/openat-safer-tests: New test.
4413         * tests/test-openat-safer.c: New file.
4414
4415         dirent-safer: new module
4416         * modules/dirent-safer: New file.
4417         * lib/dirent--.h: Likewise.
4418         * lib/dirent-safer.h: Likewise.
4419         * lib/opendir-safer.c: Likewise.
4420         * m4/dirent-safer.m4: Likewise.
4421         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
4422         * modules/dirent-safer-tests: New test.
4423         * tests/test-dirent-safer.c: New file.
4424         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
4425
4426         fdopendir: optimize on mingw
4427         * lib/unistd.in.h (_gl_directory_name): New prototype.
4428         * lib/fchdir.c (_gl_directory_name): Implement it.
4429         (fchdir): Use it to simplify implementation.
4430         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
4431         fchdir, when available, to avoid calling [f]chdir().
4432
4433         fdopendir: split into its own module
4434         * lib/openat.c (fdopendir): Move...
4435         * lib/fdopendir.c: ...into new file.
4436         * modules/fdopendir: New module.
4437         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
4438         * modules/openat (Depends-on): Add fdopendir.
4439         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
4440         fdopendir here.
4441         * modules/savedir (Depends-on): Only need fdopendir, not full
4442         openat.
4443         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
4444         * lib/openat.h (fdopendir): Drop prototype.
4445         * lib/dirent.in.h (fdopendir): Provide prototype.
4446         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
4447         * modules/dirent (Makefile.am): Substitute them.
4448         * MODULES.html.sh (File system functions): Mention it.
4449         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
4450         * modules/fdopendir-tests: New file.
4451         * tests/test-fdopendir.c: Likewise.
4452
4453         fchdir: use more consistent macro convention
4454         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
4455         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
4456         REPLACE_FCHDIR, rather than relying on config.h macros.
4457         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
4458         inside a single make-time REPLACE_FCHDIR block, rather than using
4459         the config.h FCHDIR_REPLACEMENT.
4460         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
4461         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
4462         Manage fstat replacement.
4463         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
4464         REPLACE_FCHDIR.
4465         * modules/sys_stat (Files): Add m4/unistd_h.m4.
4466         (Makefile.am): Substitute REPLACE_FCHDIR.
4467         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
4468         FCHDIR_REPLACEMENT.
4469         * lib/dup-safer.c (dup_safer): Likewise.
4470         * lib/dup2.c (rpl_dup2): Likewise.
4471         * lib/dup3.c (rpl_dup3): Likewise.
4472         * lib/open.c (rpl_open): Likewise.
4473
4474         fchdir: simplify error handling, and support dup3
4475         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
4476         stdbool, malloc-posix, realloc-posix.
4477         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
4478         (ensure_dirs_slot): Return false on allocation failure.
4479         (rpl_dup2): Delete.
4480         (_gl_register_dup): New function.
4481         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
4482         (_gl_register_fd): Close fd on allocation failure.
4483         * lib/fcntl.in.h (_gl_register_fd): Update signature.
4484         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
4485         prototype.
4486         (rpl_dup2_fchdir): Delete prototype.
4487         * lib/open.c (open): Update caller.
4488         * lib/dup2.c (dup2): Track fchdir metadata.
4489         * lib/dup3.c (dup3): Likewise.
4490         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
4491         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
4492
4493 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4494
4495         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
4496         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
4497         don't pass arguments to AC_OUTPUT.
4498
4499 2009-09-02  Bruno Haible  <bruno@clisp.org>
4500
4501         * modules/mkdtemp (License): Relicense under LGPLv2+.
4502         Reported by Paolo Bonzini.
4503
4504 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4505
4506         Replace uses of obsolete autoconf macros in Jim's modules.
4507         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
4508         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
4509         can evoke a warning from autoconf when run with -Wobsolete
4510         enabled.  They were declared obsolete for good reasons (see
4511         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
4512         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
4513         should not continue using the deprecated macros.
4514         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
4515         obsolete Autoconf macros with modern counterparts.
4516         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
4517         * m4/dos.m4 (gl_AC_DOS): Likewise.
4518         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
4519         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
4520         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
4521         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
4522         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
4523         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
4524         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
4525         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
4526         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
4527         Likewise.
4528         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
4529         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
4530         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
4531         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
4532         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
4533         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
4534
4535 2009-09-01  Eric Blake  <ebb9@byu.net>
4536
4537         fchdir: fix off-by-one bug in previous patch
4538         * lib/fchdir.c (rpl_fstat): Use correct bounds.
4539         (_gl_unregister_fd): Delete useless if.
4540
4541 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
4542
4543         maint.mk: sort the list of syntax-check rules
4544         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
4545         easier to get a sense of progress when the rules are run sequentially
4546         and take a long time.
4547
4548 2009-09-01  Simon Josefsson  <simon@josefsson.org>
4549
4550         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
4551         * modules/netinet_in: Likewise.
4552         * modules/sys_file: Likewise.
4553         * modules/sys_ioctl: Likewise.
4554         * modules/sys_select: Likewise.
4555         * modules/sys_socket: Likewise.
4556         * modules/sys_stat: Likewise.
4557         * modules/sys_time: Likewise.
4558         * modules/sys_times: Likewise.
4559         * modules/sys_utsname: Likewise.
4560         * modules/sys_wait: Likewise.
4561
4562 2009-09-01  Jim Meyering  <meyering@redhat.com>
4563
4564         fts: help ensure that return values are not ignored
4565         * lib/fts_.h (__GNUC_PREREQ): Define.
4566         (__attribute_warn_unused_result__): Define.
4567         (fts_children, fts_close, fts_open, fts_read): Declare with
4568         __attribute_warn_unused_result__.
4569
4570         fts: fts_close now fails also when closing a dir file descriptor fails
4571         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
4572         and propagate to caller, along with errno.
4573
4574         announce-gen: correct formatting in --help output
4575         * build-aux/announce-gen (usage): Move the one-line description in
4576         --help output "up", to where it belongs, just after Usage:.
4577
4578 2009-08-31  Eric Blake  <ebb9@byu.net>
4579
4580         fchdir: port to mingw
4581         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
4582         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
4583         opened, then use a substitute.
4584         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
4585         replacement.
4586         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
4587         (_gl_register_fd): No need to check stat if open already filters
4588         all directories.
4589         (fchdir): Fix error condition to match POSIX.
4590         * modules/fchdir (Depends-on): Add sys_stat.
4591         * doc/posix-functions/open.texi (open): Document the limitation.
4592         * modules/fchdir-tests: New file.
4593         * tests/test-fchdir.c: Likewise.
4594
4595         canonicalize: allow cross-testing from cygwin to mingw
4596         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
4597         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
4598         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
4599         Likewise.
4600         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
4601         target does not support symlinks.
4602         * tests/test-canonicalize-lgpl.sh: Likewise.
4603
4604         chown: avoid compilation warning on mingw
4605         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
4606         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
4607         mingw.
4608         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
4609         * modules/chown (Depends-on): Add errno.
4610
4611 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
4612
4613         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
4614         command.
4615
4616 2009-08-31  Jim Meyering  <meyering@redhat.com>
4617
4618         canonicalize: remove useless initialization
4619         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
4620         initialization of local, "end".
4621
4622 2009-08-30  Bruno Haible  <bruno@clisp.org>
4623
4624         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
4625         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
4626         ENOSYS.
4627
4628 2009-08-30  Bruno Haible  <bruno@clisp.org>
4629
4630         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
4631         /usr/xpg4/bin/tr when it exists.
4632         * tests/test-pipe-filter-gi1.sh: Likewise.
4633
4634 2009-08-30  Bruno Haible  <bruno@clisp.org>
4635
4636         Work around deficient /usr/bin/id program on Solaris.
4637         * tests/test-file-has-acl.sh (ID): New variable.
4638         * tests/test-set-mode-acl.sh (ID): Likewise.
4639         * tests/test-copy-acl.sh (ID): Likewise.
4640         * tests/test-copy-file.sh (ID): Likewise.
4641
4642 2009-08-30  Bruno Haible  <bruno@clisp.org>
4643
4644         New module 'xstriconveh'.
4645         * lib/xstriconveh.h: New file.
4646         * lib/xstriconveh.c: New file.
4647         * modules/xstriconveh: New file.
4648
4649 2009-08-30  Bruno Haible  <bruno@clisp.org>
4650
4651         Make it easier to use mem_cd_iconveh.
4652         * lib/striconveh.h (iconveh_t): New type.
4653         (iconveh_open, iconveh_close): New declarations.
4654         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
4655         with a single 'const iconveh_t *' argument.
4656         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
4657         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
4658         with a single 'const iconveh_t *' argument.
4659         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
4660         * tests/test-striconveh.c (main): Update.
4661         * NEWS: Mention the change.
4662
4663 2009-08-30  Bruno Haible  <bruno@clisp.org>
4664
4665         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
4666         problem.
4667
4668 2009-08-30  Bruno Haible  <bruno@clisp.org>
4669
4670         Work around iconv_open problem on Solaris.
4671         * lib/iconv_open-solaris.gperf: New file.
4672         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
4673         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
4674         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
4675         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
4676         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
4677         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
4678
4679 2009-08-29  Jim Meyering  <meyering@redhat.com>
4680
4681         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
4682         * top/maint.mk (cvs-check): Remove target; it was just an alias
4683         to the better-named vc-diff-check.
4684         (maintainer-distcheck): Remove rule.  It was used only from
4685         the (alpha/beta/major) target, and all of its commands but one
4686         were coreutils-specific.
4687         (vc-dist): Remove rule.
4688         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
4689         Run vc-diff-check, not vc-dist.
4690         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
4691
4692 2009-08-27  Bruno Haible  <bruno@clisp.org>
4693
4694         * tests/test-bitrotate.c (main): Remove test that uses a shift count
4695         of 0.
4696
4697 2009-08-27  Bruno Haible  <bruno@clisp.org>
4698
4699         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
4700         compilers.
4701         * doc/func.texi: Document the SunPRO C bug.
4702
4703 2009-08-27  Bruno Haible  <bruno@clisp.org>
4704
4705         Fix link error on Solaris.
4706         * tests/test-parse-duration.c (xstrdup): Remove function.
4707
4708 2009-08-26  Pádraig Brady  <P@draigbrady.com>
4709
4710         ignore-value: handle pointer types, too
4711         * lib/ignore-value.h (__attribute__): Remove definition.
4712         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
4713         of a more concise and more-often effective "(void) i" statement.
4714         (ignore_ptr): New function to suppress warnings from functions that
4715         return pointers, and to make it explicit that one function doesn't
4716         handle all cases.
4717
4718 2009-08-25  Bruno Haible  <bruno@clisp.org>
4719
4720         dup2: work around a Linux bug.
4721         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
4722         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
4723         * doc/posix-functions/dup2.texi: Mention the Linux bug.
4724         Reported by Simon Josefsson.
4725
4726 2009-08-25  Jim Meyering  <meyering@redhat.com>
4727
4728         libguestfs uses gnulib
4729         * users.txt: Add libguestfs.
4730
4731 2009-08-24  Eric Blake  <ebb9@byu.net>
4732
4733         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
4734         * lib/pipe2.c (includes): Add binary-io.h.
4735         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
4736
4737 2009-08-24  Bruno Haible  <bruno@clisp.org>
4738
4739         Tolerate declared but missing accept4 syscall.
4740         * lib/accept4.c (accept4): Invoke original accept4 function first, if
4741         available.
4742         * lib/sys_socket.in.h (accept4): If the function is already present,
4743         override it.
4744         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
4745         * modules/accept4 (Makefile.am): Compile accept4.c always.
4746         Reported by Paolo Bonzini and Eric Blake.
4747
4748 2009-08-23  Bruno Haible  <bruno@clisp.org>
4749
4750         New module 'accept4'.
4751         * lib/sys_socket.in.h (accept4): New declaration.
4752         * lib/accept4.c: New file.
4753         * m4/accept4.m4: New file.
4754         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
4755         GNULIB_ACCEPT4, HAVE_ACCEPT4.
4756         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
4757         HAVE_ACCEPT4.
4758         * modules/accept4: New file.
4759         * doc/glibc-functions/accept4.texi: Mention the new module.
4760
4761 2009-08-24  Jim Meyering  <meyering@redhat.com>
4762
4763         progname: also set global program_invocation_name, when possible
4764         Before this change, a libtool-enabled program that calls glibc's
4765         error function would report the program name as
4766         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
4767         * modules/progname (configure.ac): Check for a declaration of
4768         program_invocation_name.
4769         * lib/progname.c:  Include <errno.h>.
4770         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
4771         Set program_invocation_name.
4772
4773 2009-08-23  Bruno Haible  <bruno@clisp.org>
4774
4775         * lib/dup3.c: Include <string.h>.
4776
4777 2009-08-23  Bruno Haible  <bruno@clisp.org>
4778
4779         * lib/dup3.c (dup3): Test only once whether the system actually exists.
4780         * lib/pipe2.c (pipe2): Likewise.
4781         Suggested by Eric Blake.
4782
4783 2009-08-23  Bruno Haible  <bruno@clisp.org>
4784
4785         Tolerate declared but missing dup3 syscall.
4786         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
4787         * lib/unistd.in.h (dup3): If the function is already present,
4788         override it.
4789         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
4790         * modules/dup3 (Makefile.am): Compile dup3.c always.
4791         Reported by Paolo Bonzini.
4792
4793 2009-08-23  Bruno Haible  <bruno@clisp.org>
4794
4795         Tolerate declared but missing pipe2 syscall.
4796         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
4797         available.
4798         * lib/unistd.in.h (pipe2): If the function is already present,
4799         override it.
4800         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
4801         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
4802         Reported by Paolo Bonzini.
4803
4804 2009-08-23  Bruno Haible  <bruno@clisp.org>
4805
4806         * lib/pipe2.c (pipe2): Move #ifs inside function.
4807
4808 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4809
4810         quotearg: document limitations of quote_these_too
4811         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
4812         those limitations are created.
4813         * lib/quotearg.h (set_char_quoting): Document that digits and
4814         letters that are special after backslash are not permitted.
4815         (quotearg_char): Cross-reference set_char_quoting documentation.
4816
4817 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
4818
4819         quotearg: implement custom_quoting_style
4820         * lib/quotearg.c: (struct quoting_options): Add left_quote and
4821         right_quote fields.
4822         (set_custom_quoting): New public function.
4823         (quotearg_buffer_restyled): Add left_quote and right_quote
4824         arguments, handle them very much like locale quoting, and update
4825         all uses.
4826         (quotearg_n_custom): New public function.
4827         (quotearg_n_custom_mem): New public function.
4828         (quotearg_custom): New public function.
4829         (quotearg_custom_mem): New public function.
4830         * lib/quotearg.h: Prototype and document new public functions.
4831         (enum quoting_style): For escape_quoting_style and
4832         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
4833         ignored even though they're otherwise like c_quoting_style.
4834         Add custom_quoting_style member and document with comparison to
4835         clocale_quoting_style.
4836         * tests/test-quotearg.c (custom_quotes): New array.
4837         (custom_results): New array.
4838         (main): Extend to test custom quoting.
4839
4840 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4841
4842         quotearg: fix right quote escaping when it's in quote_these_too
4843         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
4844         quote, be sure to prepend only one backslash.
4845         * tests/test-quotearg.c (use_quote_double_quotes): New function.
4846         (main): Test it.
4847
4848 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4849
4850         quotearg-tests: test escaping of embedded locale quotes
4851         * tests/test-quotearg.c (struct result_strings): Add member for
4852         new input.
4853         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
4854         (inputs): Add new input.
4855         (results_g): Add expected results.
4856         (flag_results): Likewise.
4857         (locale_results): Likewise.
4858         (compare_strings): Check those.
4859
4860 2009-08-23  Bruno Haible  <bruno@clisp.org>
4861
4862         Tests for module 'dup3'.
4863         * modules/dup3-tests: New file.
4864         * tests/test-dup3.c: New file.
4865
4866         New module 'dup3'.
4867         * lib/unistd.in.h (dup3): New declaration.
4868         * lib/dup3.c: New file.
4869         * m4/dup3.m4: New file.
4870         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
4871         HAVE_DUP3.
4872         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
4873         * modules/dup3: New file.
4874         * doc/glibc-functions/dup3.texi: Mention the new module.
4875
4876 2009-08-23  Bruno Haible  <bruno@clisp.org>
4877
4878         Tweak the dup2 test.
4879         * tests/test-dup2.c (main): Create the test file empty. Verify that an
4880         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
4881         the test file is still empty. Fix argument order of lseek.
4882
4883 2009-08-23  Bruno Haible  <bruno@clisp.org>
4884
4885         Avoid test link errors when the modules getopt-gnu, gettext are used.
4886         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
4887         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
4888
4889 2009-08-23  Bruno Haible  <bruno@clisp.org>
4890
4891         Fix getdtablesize() on mingw.
4892         * lib/getdtablesize.c (getdtablesize): Implement differently.
4893         * lib/unistd.in.h (getdtablesize): Improve comment.
4894
4895 2009-08-23  Bruno Haible  <bruno@clisp.org>
4896
4897         New module 'mkostemp'.
4898         Based on Ulrich Drepper's 2007-08-10 change in glibc.
4899         * lib/stdlib.in.h (mksotemp): New declaration.
4900         * lib/mkostemp.c: New file, from glibc with modifications.
4901         * lib/tempname.h (GT_FILE): Remove outdated comment.
4902         (gen_tempname): Add flags argument.
4903         * lib/tempname.c (__GT_BIGFILE): Remove macro.
4904         (__GT_FILE): Map to 1.
4905         (small_open, large_open): Remove macros.
4906         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
4907         * lib/mkstemp.c (mkstemp): Update.
4908         * lib/mkdtemp.c (mkdtemp): Likewise.
4909         * m4/mkostemp.m4: New file.
4910         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
4911         HAVE_MKOSTEMP.
4912         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
4913         HAVE_MKOSTEMP.
4914         * modules/mkostemp: New file, based on modules/mkstemp.
4915         * doc/glibc-functions/mkostemp.texi: Mention the new module.
4916         * NEWS: Mention the change.
4917
4918 2009-08-23  Bruno Haible  <bruno@clisp.org>
4919
4920         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
4921         Reported by Eric Blake.
4922
4923 2009-08-23  Bruno Haible  <bruno@clisp.org>
4924
4925         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
4926         Reported by Eric Blake.
4927
4928 2009-08-23  Bruno Haible  <bruno@clisp.org>
4929
4930         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
4931         * modules/pipe2 (Depends-on): Likewise.
4932
4933 2009-08-23  Eric Blake  <ebb9@byu.net>
4934
4935         fcntl-h: add O_TTY_INIT support
4936         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
4937         * tests/test-fcntl-h.c (o): Test it.
4938         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
4939
4940         fcntl-h: rename from fcntl, in preparation for fcntl(2)
4941         * modules/fcntl: Move <fcntl.h> header replacement...
4942         * modules/fcntl-h: ...to new name, so as not to collide with
4943         like-named function.
4944         * tests/test-fcntl.c: Rename...
4945         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
4946         * modules/fcntl-tests: Rename...
4947         * modules/fcntl-h-tests: ...to this.  Update test file name.
4948         * modules/chdir-long (Depends-on): Update clients.
4949         * modules/chdir-safer (Depends-on): Likewise.
4950         * modules/fcntl-safer (Depends-on): Likewise.
4951         * modules/fts (Depends-on): Likewise.
4952         * modules/mkancesdirs (Depends-on): Likewise.
4953         * modules/mkdir-p (Depends-on): Likewise.
4954         * modules/open (Depends-on): Likewise.
4955         * modules/savewd (Depends-on): Likewise.
4956         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
4957         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
4958
4959 2009-08-22  Bruno Haible  <bruno@clisp.org>
4960
4961         * modules/binary-io (License): Relicense under LGPL.
4962         * modules/pipe2 (License): Likewise.
4963
4964 2009-08-22  Bruno Haible  <bruno@clisp.org>
4965
4966         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
4967         return value.
4968         * lib/pipe-filter-gi.c (filter_init): Likewise.
4969         Reported by Eric Blake.
4970
4971 2009-08-22  Bruno Haible  <bruno@clisp.org>
4972
4973         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
4974         * modules/pipe (Depends-on): Add pipe2.
4975
4976 2009-08-22  Bruno Haible  <bruno@clisp.org>
4977
4978         Tests for module 'pipe2'.
4979         * modules/pipe2-tests: New file.
4980         * tests/test-pipe2.c: New file.
4981
4982         New module 'pipe2'.
4983         * lib/unistd.in.h (pipe2): New declaration.
4984         * lib/pipe2.c: New file.
4985         * m4/pipe2.m4: New file.
4986         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
4987         HAVE_PIPE2.
4988         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
4989         * modules/pipe2: New file.
4990         * doc/glibc-functions/pipe2.texi: Mention the new module.
4991
4992 2009-08-22  Bruno Haible  <bruno@clisp.org>
4993
4994         Reference some new glibc functions.
4995         * doc/glibc-functions/accept4.texi: New file.
4996         * doc/glibc-functions/dup3.texi: New file.
4997         * doc/glibc-functions/mkostemp.texi: New file.
4998         * doc/glibc-functions/pipe2.texi: New file.
4999         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
5000         (Glibc sys/socket.h): Refer to accept4.
5001         (Glibc unistd.h): Refer to dup3, pipe2.
5002         Reported by Eric Blake.
5003
5004 2009-08-22  Jim Meyering  <meyering@redhat.com>
5005             Bruno Haible  <bruno@clisp.org>
5006
5007         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
5008         This makes it so packages using automake-1.11's silent-rules option
5009         can print e.g., a single "GEN    configmake.h" line, rather than
5010         the 30+ statements that perform the job.  If you want to see the
5011         actual commands, you can still run "make V=1".
5012         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
5013         so that make output is abbreviated when those variables are defined
5014         appropriately.
5015         * modules/argz: Likewise.
5016         * modules/arpa_inet: Likewise.
5017         * modules/byteswap: Likewise.
5018         * modules/configmake: Likewise.
5019         * modules/dirent: Likewise.
5020         * modules/errno: Likewise.
5021         * modules/fcntl: Likewise.
5022         * modules/float: Likewise.
5023         * modules/fnmatch: Likewise.
5024         * modules/getopt-posix: Likewise.
5025         * modules/glob: Likewise.
5026         * modules/iconv_open: Likewise.
5027         * modules/inttypes: Likewise.
5028         * modules/localcharset: Likewise.
5029         * modules/locale: Likewise.
5030         * modules/math: Likewise.
5031         * modules/netdb: Likewise.
5032         * modules/netinet_in: Likewise.
5033         * modules/poll: Likewise.
5034         * modules/posix_spawnp-tests: Likewise.
5035         * modules/sched: Likewise.
5036         * modules/search: Likewise.
5037         * modules/selinux-h: Likewise.
5038         * modules/signal: Likewise.
5039         * modules/spawn: Likewise.
5040         * modules/stdarg: Likewise.
5041         * modules/stdbool: Likewise.
5042         * modules/stddef: Likewise.
5043         * modules/stdint: Likewise.
5044         * modules/stdio: Likewise.
5045         * modules/stdlib: Likewise.
5046         * modules/string: Likewise.
5047         * modules/strings: Likewise.
5048         * modules/sys_file: Likewise.
5049         * modules/sys_ioctl: Likewise.
5050         * modules/sys_select: Likewise.
5051         * modules/sys_socket: Likewise.
5052         * modules/sys_stat: Likewise.
5053         * modules/sys_time: Likewise.
5054         * modules/sys_times: Likewise.
5055         * modules/sys_utsname: Likewise.
5056         * modules/sys_wait: Likewise.
5057         * modules/sysexits: Likewise.
5058         * modules/time: Likewise.
5059         * modules/unistd: Likewise.
5060         * modules/wchar: Likewise.
5061         * modules/wctype: Likewise.
5062
5063 2009-08-22  Jim Meyering  <meyering@redhat.com>
5064
5065         announce-gen: detect write failure
5066         * build-aux/announce-gen: Add Coda at end.
5067         Remove equivalent-but-more-verbose block at top.
5068
5069 2009-08-19  Akim Demaille  <demaille@gostai.com>
5070
5071         bootstrap: --help to stdout.
5072         * bootstrap (usage): Don't send --help to stderr.
5073         Use a here doc instead of a long string.
5074
5075 2009-08-21  Eric Blake  <ebb9@byu.net>
5076
5077         test-popen-safer: split from test-popen
5078         * tests/test-popen.c (main): Move...
5079         * tests/test-popen.h: ...into new file.
5080         * tests/test-popen-safer2.c: New file.
5081         * modules/popen-tests (Files): Add test-popen.h.
5082         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
5083         Suggested by Bruno Haible.
5084
5085         test-fcntl-safer: split from test-open
5086         * tests/test-open.c (main): Move...
5087         * tests/test-open.h: ...into new file.
5088         * tests/test-fcntl-safer.c: New file.
5089         * modules/open-tests (Files): Add test-open.h.
5090         * modules/fcntl-safer-tests: New file.
5091         Suggested by Bruno Haible.
5092
5093         test-fopen-safer: split from test-fopen
5094         * tests/test-fopen.c (main): Move...
5095         * tests/test-fopen.h: ...into new file.
5096         * tests/test-fopen-safer.c: New file.
5097         * modules/fopen-tests (Files): Add test-fopen.h.
5098         * modules/fopen-safer-tests: New file.
5099         Suggested by Bruno Haible.
5100
5101 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
5102
5103         popen-safer: test O_CLOEXEC at run-time.
5104         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
5105
5106 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
5107
5108         fcntl: move more flags to the header
5109         * lib/cloexec.c: Do not define FD_CLOEXEC here.
5110         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
5111         * lib/fcntl.in.h: Do both things here.
5112
5113 2009-08-21  Jim Meyering  <meyering@redhat.com>
5114
5115         consistently remove $@-t before redirecting to it
5116         * modules/argz: Remove $@-t and $@ before redirecting to the former.
5117         * modules/alloca-opt: Likewise.
5118         * modules/byteswap: Likewise.
5119         * modules/fnmatch: Likewise.
5120         * modules/getopt-posix: Likewise.
5121         * modules/glob: Likewise.
5122         * modules/poll: Likewise.
5123         * modules/posix_spawnp-tests: Likewise.
5124         * modules/sys_socket: Likewise.
5125         * modules/sysexits: Likewise.
5126
5127 2009-08-21  Eric Blake  <ebb9@byu.net>
5128
5129         popen: simplify access to original popen
5130         * lib/popen.c (rpl_popen): No need to worry about popen being a
5131         macro.
5132         Reported by Bruno Haible.
5133
5134 2009-08-20  Eric Blake  <ebb9@byu.net>
5135
5136         build: avoid some compiler warnings
5137         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
5138         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
5139         type.
5140         (new_exclude_segment, excluded_file_pattern_p)
5141         (excluded_file_name_p): Reduce scope.
5142         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
5143         old-style declaration.
5144
5145 2009-08-20  Simon Josefsson  <simon@josefsson.org>
5146
5147         * tests/test-exclude1.sh: Handle Windows EOL.
5148         * tests/test-exclude2.sh: Likewise.
5149         * tests/test-exclude3.sh: Likewise.
5150         * tests/test-exclude4.sh: Likewise.
5151         * tests/test-exclude5.sh: Likewise.
5152         * tests/test-exclude6.sh: Likewise.
5153         * tests/test-exclude7.sh: Likewise.
5154
5155 2009-08-19  Akim Demaille  <demaille@gostai.com>
5156
5157         bootstrap: find sha1sum when named gsha1sum.
5158         * bootstrap (find_tool): New.
5159         ($SHA1SUM): New.
5160         Use it.
5161
5162 2009-08-20  Jim Meyering  <meyering@redhat.com>
5163
5164         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
5165         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
5166         expression that converts "." in a file name to "\." in the resulting
5167         regexp.  Start with a dummy statement, so that prior shell variable
5168         definitions are expanded portably.  Reported by Simon Josefsson.
5169
5170 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
5171
5172         Fix polling for writeability of a screen buffer.
5173         * lib/poll.c: Distinguish input and screen buffers for the
5174         Win32 implementation.
5175         * lib/select.c: Likewise.
5176
5177 2009-08-19  Eric Blake  <ebb9@byu.net>
5178
5179         popen-safer: prevent popen from clobbering std descriptors
5180         * modules/popen-safer: New file.
5181         * lib/popen-safer.c: Likewise.
5182         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
5183         * lib/stdio--.h (popen): Provide override.
5184         * lib/stdio-safer.h (popen_safer): Provide declaration.
5185         * tests/test-popen.c (includes): Partially test this.
5186         * modules/popen-safer-tests: New file, for more tests.
5187         * tests/test-popen-safer.c: Likewise.
5188         * MODULES.html.sh (file stream based Input/Output): Mention it.
5189
5190         tests: test some of the *-safer modules
5191         * modules/fopen-safer (Depends-on): Add fopen.
5192         * modules/fcntl-safer (Depends-on): Add fcntl.
5193         * modules/stdlib-safer (Depends-on): Add stdlib.
5194         (configure.ac): Set indicator.
5195         * modules/unistd-safer (configure.ac): Likewise.
5196         * modules/tmpfile-safer (configure.ac): Likewise.
5197         (Depends-on): Add tmpfile.
5198         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
5199         active.
5200         * tests/test-fopen.c (includes): Test safer versions when they are
5201         in use.
5202         * tests/test-open.c (includes): Likewise.
5203
5204         popen: fix cygwin 1.5 bug when stdin closed
5205         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
5206         * modules/popen: New file.
5207         * modules/popen-tests: Likewise.
5208         * tests/test-popen.c: Likewise.
5209         * m4/popen.m4: Likewise.
5210         * lib/popen.c: Likewise.
5211         * lib/stdio.in.h (popen): New declaration.
5212         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
5213         * modules/stdio (Makefile.am): Likewise.
5214         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
5215
5216 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
5217
5218         maint.mk: give full control over update-copyright exclusions
5219         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
5220         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
5221         (update-copyright): Don't force inclusion of top-level
5222         ChangeLog.  Don't force exclusion of all COPYING files, but make
5223         them the default exclusion instead.
5224
5225 2009-08-16  Bruno Haible  <bruno@clisp.org>
5226
5227         Fix test failures on Solaris 10.
5228         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
5229         tests when Solaris iconv() is used.
5230         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
5231         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
5232         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
5233         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
5234         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
5235
5236 2009-08-16  Bruno Haible  <bruno@clisp.org>
5237
5238         Fix test failures on Solaris 10.
5239         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
5240         'tr' program and pass it as first argument.
5241         * tests/test-pipe-filter-gi1.sh: Likewise.
5242         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
5243         program as first argument.
5244         * tests/test-pipe-filter-gi1.c (main): Likewise.
5245
5246 2009-08-16  Eric Blake  <ebb9@byu.net>
5247
5248         fpurge: fix previous commits
5249         * modules/fpurge (Makefile.am): Make replacement conditional,
5250         partially reverting 2007-04-29 change; missed in previous
5251         attempt.
5252         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
5253         is missing.
5254
5255 2009-08-16  Bruno Haible  <bruno@clisp.org>
5256
5257         Clarify fpurge's effect on the file position.
5258         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
5259         * tests/test-fpurge.c (main): Make a second pass for checking the file
5260         position.
5261
5262 2009-08-16  Bruno Haible  <bruno@clisp.org>
5263
5264         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
5265         declaration of fpurge is missing.
5266         * tests/test-fpurge.c (main): Check that the file has not more contents
5267         than expected. Close the file before removing it.
5268
5269 2009-08-15  Eric Blake  <ebb9@byu.net>
5270
5271         fpurge: don't wrap working cygwin implementation
5272         * lib/fpurge.c (fpurge): Fix comment typo.
5273         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
5274         1.7 to avoid replacement.
5275         * tests/test-fpurge.c (main): Enhance test.
5276
5277 2009-08-15  Eric Blake  <ebb9@byu.net>
5278         and Jim Meyering  <meyering@redhat.com>
5279
5280         test-update-copyright: skip if perl is insufficient
5281         * tests/test-update-copyright.sh: Failure to run maintainer tool
5282         should not cause testsuite failure on cygwin 1.5.
5283
5284 2009-08-14  Eric Blake  <ebb9@byu.net>
5285
5286         doc: mention more functions added in cygwin 1.7.0
5287         * doc/posix-headers/limits.texi (limits.h): Update for recent
5288         cygwin additions.
5289         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
5290         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
5291         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
5292         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
5293         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
5294
5295 2009-08-14  Eric Blake  <ebb9@byu.net>
5296
5297         maint.mk: simplify update-copyright rule
5298         * top/maint.mk (update-copyright-local): Delete, and document how
5299         to do it in cfg.mk instead.
5300         (update-copyright-exclude-regexp): Delete, and document how to do
5301         it in .x-update-copyright instead.
5302         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
5303         exclude ChangeLog.
5304
5305 2009-08-14  Bruno Haible  <bruno@clisp.org>
5306
5307         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
5308
5309 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5310
5311         maint.mk: support update-copyright-env
5312         * top/maint.mk (update-copyright-env): Define place-holder.
5313         (update-copyright): Expand $(update-copyright-env) before
5314         invoking update-copyright.
5315
5316 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5317
5318         update-copyright: implement forced reformatting
5319         * build-aux/update-copyright: Implement and document
5320         UPDATE_COPYRIGHT_FORCE.
5321         * tests/test-update-copyright.sh: Test it.
5322
5323 2009-08-14  Eric Blake  <ebb9@byu.net>
5324         and Bruno Haible  <bruno@clisp.org>
5325
5326         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
5327         * tests/test-locale.c: Revert previous patch related to NULL.
5328         * tests/test-stdio.c: Likewise.
5329         * tests/test-stdlib.c: Likewise.
5330         * tests/test-string.c: Likewise.
5331         * tests/test-unistd.c: Likewise.
5332         * modules/time-tests (Depends-on): Add verify.
5333         * modules/wchar-tests (Depends-on): Likewise.
5334         * tests/test-time.c: Test for NULL compliance.
5335         * tests/test-wchar.c: Likewise.
5336         * modules/locale (Depends-on): Add stddef.
5337         * modules/stdio (Depends-on): Likewise.
5338         * modules/stdlib (Depends-on): Likewise.
5339         * modules/string (Depends-on): Likewise.
5340         * modules/time (Depends-on): Likewise.
5341         * modules/unistd (Depends-on): Likewise.
5342         * modules/wchar (Depends-on): Likewise.
5343         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
5344         * lib/stdlib.in.h (includes): Likewise.
5345         * lib/string.in.h (includes): Likewise.
5346         * lib/time.in.h (includes): Likewise.
5347         * lib/unistd.in.h (includes): Likewise.
5348         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
5349         replaced.
5350         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
5351         * m4/stddef_h.m4: New file.
5352         * modules/stddef: Likewise.
5353         * lib/stddef.in.h: Likewise.
5354         * modules/stddef-tests: Likewise.
5355         * tests/test-stddef.c: Likewise.
5356         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
5357         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
5358         * doc/posix-headers/locale.texi (locale.h): Likewise.
5359         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
5360         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
5361         * doc/posix-headers/string.texi (string.h): Likewise.
5362         * doc/posix-headers/time.texi (time.h): Likewise.
5363         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
5364         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
5365
5366 2009-08-14  Eric Blake  <ebb9@byu.net>
5367
5368         doc: improve git diff of texinfo files
5369         * .gitattributes: Add rule for *.texi files, with hint on how to
5370         use it.
5371         Copied from m4, and based on a report by Bruno Haible.
5372
5373 2009-08-14  Bruno Haible  <bruno@clisp.org>
5374
5375         Disable multithread support by default on Cygwin 1.5.x for real.
5376         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
5377
5378 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5379
5380         update-copyright: much ado about intervals
5381         * build-aux/update-copyright: Implement and document
5382         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
5383         of copyright year intervals.
5384         Also, document UPDATE_COPYRIGHT_YEAR.
5385         * tests/test-update-copyright.sh: Test it.
5386
5387         update-copyright: convert 2-digit to 4-digit years
5388         * build-aux/update-copyright: Implement and document.
5389         * tests/test-update-copyright.sh: Update.
5390
5391 2009-08-14  Jim Meyering  <meyering@redhat.com>
5392
5393         test-exclude: avoid coreutils "make check" failure
5394         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
5395         just as in test-argmatch.c.
5396
5397 2009-08-13  Eric Blake  <ebb9@byu.net>
5398
5399         test-dup2: fix bad assumption
5400         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
5401         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
5402
5403         test-version-etc: fix CRLF portability issue
5404         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
5405         recognize \r.
5406         * tests/test-argp-version-etc-1.sh: Likewise.
5407
5408         getopt: update client modules
5409         * modules/argp (Depends-on): Use getopt-gnu.
5410         * modules/git-merge-changelog (Depends-on): Likewise.
5411         * modules/long-options (Depends-on): Likewise.
5412         * modules/xstrtol (Depends-on): Likewise.
5413
5414 2009-08-13  Simon Josefsson  <simon@josefsson.org>
5415
5416         * tests/test-version-etc.sh: Don't fail on different
5417         project/version.  Don't fail on CRLF differences.  Rewrite to use
5418         multiple -e instead of multiple sed forks, suggested by Eric Blake
5419         <ebb9@byu.net>.
5420         * tests/test-argp-version-etc-1.sh: Likewise.
5421
5422 2009-08-13  Simon Josefsson  <simon@josefsson.org>
5423
5424         * tests/test-version-etc.sh: Don't fail on different
5425         project/version.
5426
5427 2009-08-12  Bruno Haible  <bruno@clisp.org>
5428
5429         Tests for modules 'getopt-posix', 'getopt-gnu'.
5430         * modules/getopt-posix-tests: New file.
5431         * tests/test-getopt.c: New file.
5432         * tests/test-getopt.h: New file.
5433         * tests/test-getopt_long.h: New file.
5434
5435         New modules 'getopt-posix', 'getopt-gnu'.
5436         * modules/getopt-gnu: New file, renamed from modules/getopt.
5437         * modules/getopt-posix: New file.
5438         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
5439         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
5440         (gl_GETOPT): Remove macro.
5441         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
5442         Disable the test against BSD systems that declare optreset. Test
5443         against mingw bug. Test against lack of support of optional arguments
5444         on many platforms.
5445         * doc/glibc-headers/getopt.texi: Update module name and list of
5446         relevant platforms.
5447         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
5448         'getopt-gnu' and more portability problems.
5449         * NEWS: Mention the changes.
5450
5451 2009-08-12  Bruno Haible  <bruno@clisp.org>
5452
5453         Ensure that optarg etc. get declared by <unistd.h>.
5454         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
5455         AC_USE_SYSTEM_EXTENSIONS.
5456         * modules/getopt (Depends-on): Add 'extensions'.
5457
5458 2009-08-12  Bruno Haible  <bruno@clisp.org>
5459
5460         Avoid test link errors.
5461         * modules/pipe-filter-ii-tests (Makefile.am): Define
5462         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
5463         * modules/pipe-filter-gi-tests (Makefile.am): Define
5464         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
5465         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5466
5467 2009-08-12  Bruno Haible  <bruno@clisp.org>
5468
5469         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
5470         gl_GETOPT_SUBSTITUTE before.
5471         (gl_GETOPT): Use it.
5472         * m4/argp.m4 (gl_ARGP): Update.
5473         Reported by Sergey Poznyakoff.
5474
5475         * m4/getopt.m4: Reorder macros.
5476         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
5477         (gl_GETOPT_SUBSTITUTE): Remove macro.
5478
5479 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5480
5481         Minor improvement in gitlog-to-changelog
5482
5483         * build-aux/gitlog-to-changelog: New option `--format' makes
5484         output format string configurable.
5485
5486 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5487
5488         Optimize exclude: use hash tables for non-wildcard patterns.
5489
5490         * lib/exclude.c: Include hash.h and mbuiter.h
5491         (struct exclude_pattern, exclude_segment): New data types.
5492         (struct exclude): Rewrite.
5493         (fnmatch_pattern_has_wildcards): New function.
5494         (new_exclude_segment, free_exclude_segment): New functions.
5495         (excluded_file_pattern_p, excluded_file_name_p): New functions.
5496         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
5497         * lib/exclude.h (is_fnmatch_pattern): New prototype.
5498         * modules/exclude: Depend on hash and mbuiter.
5499
5500         * modules/exclude-tests: New file.
5501         * tests/test-exclude.c: New file.
5502         * tests/test-exclude1.sh: New file.
5503         * tests/test-exclude2.sh: New file.
5504         * tests/test-exclude3.sh: New file.
5505         * tests/test-exclude4.sh: New file.
5506         * tests/test-exclude5.sh: New file.
5507         * tests/test-exclude6.sh: New file.
5508         * tests/test-exclude7.sh: New file.
5509
5510 2009-08-12  Bruno Haible  <bruno@clisp.org>
5511
5512         Ensure that getopt() gets declared by <unistd.h>.
5513         * lib/unistd.in.h: Conditionally include getopt.h.
5514         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
5515         Set GNULIB_UNISTD_H_GETOPT.
5516         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5517         GNULIB_UNISTD_H_GETOPT.
5518         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
5519
5520 2009-08-12  Bruno Haible  <bruno@clisp.org>
5521
5522         Clarify logic.
5523         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
5524         gl_replace_getopt instead of GETOPT_H.
5525
5526 2009-08-12  Bruno Haible  <bruno@clisp.org>
5527
5528         * m4/getopt.m4: Add comments.
5529
5530 2009-08-12  Bruno Haible  <bruno@clisp.org>
5531
5532         Disable multithread support by default on Cygwin 1.5.x.
5533         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
5534         set gl_use_threads=no if not specified otherwise.
5535
5536 2009-08-11  Bruno Haible  <bruno@clisp.org>
5537
5538         Avoid compilation error on NetBSD 5.0.
5539         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
5540         * tests/test-stdio.c: Likewise.
5541         * tests/test-stdlib.c: Likewise.
5542         * tests/test-string.c: Likewise.
5543         * tests/test-unistd.c: Likewise.
5544         Reported by Greg Troxel <gdt@ir.bbn.com>
5545         at <https://savannah.gnu.org/support/?106973>.
5546
5547 2009-08-11  Bruno Haible  <bruno@clisp.org>
5548
5549         * modules/dup2-tests (Depends-on): Remove close.
5550
5551         Undo 2009-07-19 commit.
5552         * modules/acl-tests (Depends-on): Remove close.
5553         * modules/binary-io-tests (Depends-on): Likewise.
5554         * modules/closein-tests (Depends-on): Likewise.
5555         * modules/flock-tests (Depends-on): Likewise.
5556         * modules/fsync-tests (Depends-on): Likewise.
5557         * modules/lseek-tests (Depends-on): Likewise.
5558         * modules/pipe-tests (Depends-on): Likewise.
5559         * modules/posix_spawn-tests (Depends-on): Likewise.
5560         * modules/posix_spawnp-tests (Depends-on): Likewise.
5561         * modules/stat-time-tests (Depends-on): Likewise.
5562         * modules/yesno-tests (Depends-on): Likewise.
5563
5564 2009-08-10  Bruno Haible  <bruno@clisp.org>
5565
5566         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
5567
5568 2009-08-10  Bruno Haible  <bruno@clisp.org>
5569
5570         Fix a gcc warning.
5571         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
5572
5573 2009-08-10  Bruno Haible  <bruno@clisp.org>
5574
5575         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
5576         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
5577         not only the first time.
5578         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
5579         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
5580         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
5581         is 1, not only the the first time.
5582
5583 2009-08-10  Bruno Haible  <bruno@clisp.org>
5584
5585         Make it possible to use module 'gethostname' without module 'close'.
5586         * lib/unistd.in.h (close): Evoke a link error only if
5587         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
5588         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5589         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5590         * modules/unistd (Makefile.am): Substitute
5591         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5592         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
5593         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
5594         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
5595         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5596         * modules/sys_ioctl (Makefile.am): Substitute
5597         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5598         * modules/socket (configure.ac): On native Windows, set
5599         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
5600         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5601         Reported by Sam Steingold <sds@gnu.org>.
5602
5603 2009-08-10  Bruno Haible  <bruno@clisp.org>
5604
5605         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
5606         * modules/ioctl (configure.ac): Likewise.
5607
5608 2009-08-10  Bruno Haible  <bruno@clisp.org>
5609
5610         Avoid collision between gnulib wrapper and libintl wrapper.
5611         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
5612         already defined in intl/printf.c.
5613         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
5614         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
5615
5616 2009-08-09  Bruno Haible  <bruno@clisp.org>
5617
5618         Make <sys/select.h> really self-contained, also on Solaris 10.
5619         * lib/sys_select.in.h: Include <string.h>.
5620         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
5621         Solaris 10 problem.
5622         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
5623         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
5624         Reported by Jim Meyering.
5625
5626 2009-08-09  Bruno Haible  <bruno@clisp.org>
5627
5628         Avoid warnings from 'aclocal' that are due to a use of macro name
5629         AM_XGETTEXT_OPTION that is not defined in automake.
5630         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
5631         automake.
5632         * modules/error (configure.ac): Likewise.
5633         * modules/propername (configure.ac): Likewise.
5634         * modules/vasprintf (configure.ac): Likewise.
5635         * modules/verror (configure.ac): Likewise.
5636         * modules/xprintf (configure.ac): Likewise.
5637         * modules/xvasprintf (configure.ac): Likewise.
5638
5639 2009-08-08  Bruno Haible  <bruno@clisp.org>
5640
5641         Avoid compilation error in C++ mode.
5642         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
5643         Reported by Sam Steingold <sds@gnu.org>.
5644
5645 2009-08-08  Bruno Haible  <bruno@clisp.org>
5646
5647         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
5648         for the various Unix platforms.
5649         * doc/posix-headers/limits.texi: Update platforms list regarding
5650         HOST_NAME_MAX.
5651         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5652
5653 2009-08-07  Jim Meyering  <meyering@redhat.com>
5654
5655         selinux-at: fix typo in a comment
5656         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
5657         Spotted by Paolo Bonzini.
5658
5659         selinux-at: remove redundant m4 code, add documentation
5660         * modules/selinux-at (configure.ac): Remove redundant code.
5661         LIB_SELINUX is already set via the dependent module, selinux-h.
5662         (Include): Add quotes around selinux-at.h.
5663         * lib/selinux-at.h: Add documentation.
5664         Reported by Bruno Haible in
5665         http://marc.info/?l=gnulib-bug&m=124958988300749
5666
5667 2009-08-07  Bruno Haible  <bruno@clisp.org>
5668
5669         Avoid link error on MacOS X 10.3 and 10.4.
5670         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
5671         on non-ELF systems.
5672         * lib/argp-pv.c (argp_program_version): Likewise.
5673         Reported by Simon Josefsson.
5674
5675 2009-08-07  Simon Josefsson  <simon@josefsson.org>
5676
5677         * tests/test-version-etc.sh: Use $EXEEXT.
5678
5679 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
5680
5681         update-copyright: update documentation to point to maint.mk
5682         * build-aux/update-copyright: Here.
5683
5684 2009-08-06  Jim Meyering  <meyering@redhat.com>
5685
5686         maint.mk: support update-copyright-local
5687         * top/maint.mk (update-copyright-local): Define place-holder.
5688         (update-copyright): Depend on $(update-copyright-local).
5689
5690 2009-08-06  Jim Meyering  <meyering@redhat.com>
5691
5692         selinux-at: new module
5693         Initially written for coreutils, this module will soon be
5694         used by findutils, too.
5695         * MODULES.html.sh [Misc]: Add selinux-at.
5696         * lib/selinux-at.h: New file, from coreutils.
5697         * lib/selinux-at.c: Likewise.
5698         * modules/selinux-at: Likewise.
5699         (License): Change from LGPL to GPL, since it depends
5700         on the GPL'd openat module.
5701
5702         doc: update README
5703         * README: Remove references to cogito.
5704         Remove cvs-repo-updating instructions from 2007.
5705         Don't imply that CVS is better if you have limited disk space.
5706
5707 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5708
5709         update-copyright: support C-style comments
5710         * build-aux/update-copyright: Implement and document.
5711         * tests/test-update-copyright.sh: Test.
5712
5713 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5714
5715         update-copyright: support omitted "(C)"
5716         * build-aux/update-copyright: Implement and document.  Also,
5717         allow variable whitespace before "(C)".
5718         * tests/test-update-copyright.sh: Test.
5719
5720 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5721
5722         update-copyright: don't trip on non-FSF copyright statements
5723         * build-aux/update-copyright: Fix so that the first correctly
5724         formatted FSF copyright statement is recognized no matter what
5725         appears before it.  Update documentation.
5726         * tests/test-update-copyright.sh: Test that.
5727
5728 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5729
5730         update-copyright: clean up code a little
5731         * build-aux/update-copyright: Append "_re" to the name of any
5732         variable holding a regular expression.
5733         Replace "old" and "new" with "stmt" in variable names.
5734         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
5735         handled correctly.
5736         Format code more consistently.
5737
5738 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5739
5740         update-copyright-tests: improve portability
5741         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
5742         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
5743
5744 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
5745
5746         update-copyright: support @copyright{} and &copy;
5747         * build-aux/update-copyright: Implement and document.
5748         * tests/test-update-copyright.sh: Test.
5749
5750 2009-08-04  Jim Meyering  <meyering@redhat.com>
5751
5752         update-copyright-tests: correctly test EOL=\r\n handling
5753         * tests/test-update-copyright.sh: Put \r at the end of some lines
5754         for the dos-eol tests.  Based on a patch by Joel E. Denny.
5755
5756         maint.mk: make update-copyright exclusion list more configurable
5757         * top/maint.mk (update-copyright): Default to excluding COPYING,
5758         but allow an override, in case someone does want to update that file.
5759
5760         maint.mk: don't update copyright date in COPYING
5761         * top/maint.mk (update-copyright): Exclude COPYING.
5762
5763         maint.mk: add a copyright-updating rule
5764         * top/maint.mk (update-copyright): New rule.
5765         Derived from coreutils/Makefile.am.
5766
5767         update-copyright: rename some variables
5768         * build-aux/update-copyright: Rename a few variables for clarity.
5769         Tweak syntax.  List Joel E. Denny as coauthor.
5770
5771 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
5772
5773         update-copyright: fix bug for 2-digit last year and add tests
5774         * build-aux/update-copyright: Fix bug.
5775         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
5776         specified.
5777         * modules/update-copyright-tests: New
5778         * tests/test-update-copyright.sh: New.
5779
5780 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5781
5782         update-copyright: handle leading tabs in line prefix
5783         * build-aux/update-copyright: Count leading tabs as 8 spaces
5784         when computing margin.  This helps with the formatting of
5785         ChangeLogs, for example.
5786         Fix documentation a little.
5787
5788 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5789
5790         update-copyright: support EOL=\r\n
5791         * build-aux/update-copyright: Implement that.
5792
5793 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5794
5795         update-copyright: automatically format copyright statements
5796         * build-aux/update-copyright: Implement that.
5797         Also, be a little more predictable and safer by always failing
5798         when the full copyright format is not perfectly recognized as an
5799         unbroken whole.  Discussed at
5800         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
5801         Rewrite documentation.
5802
5803 2009-08-03  Bruno Haible  <bruno@clisp.org>
5804
5805         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
5806
5807 2009-08-02  Bruno Haible  <bruno@clisp.org>
5808
5809         Tests for module 'uname'.
5810         * modules/uname-tests: New file.
5811         * tests/test-uname.c: New file.
5812
5813         New module 'uname'.
5814         * lib/uname.c: New file.
5815         * m4/uname.m4: New file.
5816         * modules/uname: New file.
5817         * doc/posix-functions/uname.texi: Mention the new module.
5818
5819 2009-08-02  Bruno Haible  <bruno@clisp.org>
5820
5821         Tests for module 'sys_utsname'.
5822         * modules/sys_utsname-tests: New file.
5823         * tests/test-sys_utsname.c: New file.
5824
5825         New module 'sys_utsname'.
5826         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
5827         * m4/sys_utsname_h.m4: New file.
5828         * modules/sys_utsname: New file.
5829         * doc/posix-headers/sys_utsname.texi: Mention the new module.
5830
5831 2009-08-02  Bruno Haible  <bruno@clisp.org>
5832
5833         Implicitly initialize the sockets library.
5834         * lib/gethostname.c: Include sockets.h.
5835         (rpl_gethostname): Invoke gl_sockets_startup.
5836         * lib/socket.c: Include sockets.h.
5837         (rpl_socket): Invoke gl_sockets_startup.
5838         * modules/gethostname (Depends-on): Add sockets.
5839         * modules/socket (Depends-on): Likewise.
5840         * tests/test-poll.c: Don't include sockets.h.
5841         (main): Don't invoke gl_sockets_startup.
5842         * tests/test-select.c: Don't include sockets.h.
5843         (main): Don't invoke gl_sockets_startup.
5844
5845 2009-08-02  Bruno Haible  <bruno@clisp.org>
5846
5847         Allow multiple calls to gl_sockets_startup.
5848         * lib/sockets.c (initialized_sockets_version): New variable.
5849         (gl_sockets_startup): Do nothing if already called for this or a higher
5850         version.
5851         (gl_sockets_cleanup): Reset initialized_sockets_version.
5852
5853 2009-08-03  Simon Josefsson  <simon@josefsson.org>
5854
5855         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
5856         different project/version.
5857
5858 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
5859             Bruno Haible  <bruno@clisp.org>
5860
5861         Tests for module 'pipe-filter-gi'.
5862         * modules/pipe-filter-gi-tests: New file.
5863         * tests/test-pipe-filter-gi1.sh: New file.
5864         * tests/test-pipe-filter-gi1.c: New file.
5865         * tests/test-pipe-filter-gi2.sh: New file.
5866         * tests/test-pipe-filter-gi2-main.c: New file.
5867         * tests/test-pipe-filter-gi2-child.c: New file.
5868
5869         New module 'pipe-filter-gi'.
5870         * lib/pipe-filter-gi.c: New file.
5871         * modules/pipe-filter-gi: New file.
5872
5873 2009-08-02  Bruno Haible  <bruno@clisp.org>
5874             Paolo Bonzini  <bonzini@gnu.org>
5875
5876         Tests for module 'pipe-filter-ii'.
5877         * modules/pipe-filter-ii-tests: New file.
5878         * tests/test-pipe-filter-ii1.sh: New file.
5879         * tests/test-pipe-filter-ii1.c: New file.
5880         * tests/test-pipe-filter-ii2.sh: New file.
5881         * tests/test-pipe-filter-ii2-main.c: New file.
5882         * tests/test-pipe-filter-ii2-child.c: New file.
5883
5884         New module 'pipe-filter-ii'.
5885         * lib/pipe-filter.h: New file.
5886         * lib/pipe-filter-ii.c: New file.
5887         * lib/pipe-filter-aux.h: New file.
5888         * modules/pipe-filter-ii: New file.
5889
5890 2009-08-02  Simon Josefsson  <simon@josefsson.org>
5891
5892         * lib/gc-libgcrypt.c: Change copyright to FSF.
5893         * lib/gc-gnulib.c: Likewise.
5894
5895 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
5896
5897         * lib/gethostname.c: Include limits.h.
5898
5899 2009-08-02  Simon Josefsson  <simon@josefsson.org>
5900             Bruno Haible  <bruno@clisp.org>
5901
5902         Ensure HOST_NAME_MAX as part of the gethostname module.
5903         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
5904         define also HOST_NAME_MAX.
5905         * tests/test-gethostname.c: Include <limits.h>.
5906         (main): Check also HOST_NAME_MAX.
5907         * doc/posix-headers/limits.texi: Document the mingw problem.
5908
5909 2009-08-02  Bruno Haible  <bruno@clisp.org>
5910
5911         * lib/gethostname.c (gethostname): Fix handling of large len argument.
5912         Add comments.
5913
5914 2009-03-31  Simon Josefsson  <simon@josefsson.org>
5915
5916         * lib/gethostname.c: Add Windows wrapper.
5917         * m4/gethostname.m4: Look for gethostname in -lws2_32.
5918         * modules/gethostname: Depend on sys_socket & errno, for also
5919         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
5920         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
5921
5922 2009-07-31  Jim Meyering  <meyering@redhat.com>
5923
5924         getloadavg: fix symbol name in comment
5925         * lib/getloadavg.c: Correct a typo I introduced when adding
5926         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
5927         Matt Kraai spotted the problem.
5928
5929 2009-07-29  Matt Kraai  <mkraai@beckman.com>
5930
5931         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
5932         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
5933         code also if ! defined N_NAME_POINTER.
5934         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
5935         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
5936         but the n_name member is a 12-byte array.
5937
5938 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
5939
5940         update-copyright: generalize comment handling
5941         * build-aux/update-copyright: Handle copyright statements
5942         within more comment styles.
5943         Document usage.
5944         Report any file with an external copyright holder or parse failure.
5945
5946 2009-07-29  Jim Meyering  <meyering@redhat.com>
5947
5948         mktime: correct setting of REPLACE_MKTIME
5949         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
5950
5951         update-copyright: new module
5952         * modules/update-copyright: New file.
5953         * build-aux/update-copyright: New file.
5954         * MODULES.html.sh (maint+release support): Add update-copyright.
5955
5956 2009-07-27  Bruno Haible  <bruno@clisp.org>
5957
5958         Fix compilation error when <ctime> is used and mktime is replaced.
5959         * lib/time.in.h (mktime): New declaration.
5960         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
5961         REPLACE_MKTIME instead of defining mktime in config.h.
5962         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
5963         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
5964         Reported by Ross McFarland <rwmcfa1@neces.com>.
5965
5966 2009-07-27  Bruno Haible  <bruno@clisp.org>
5967
5968         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
5969         Reported by Matt Kraai <mkraai@beckman.com>.
5970
5971 2009-07-25  Jim Meyering  <meyering@redhat.com>
5972
5973         maint.mk: avoid warnings about missing files
5974         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
5975         diagnostic when .prev-version does not exist.
5976         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
5977         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
5978         nonexistent cfg.mk.
5979         Suggestions from Simon Josefsson.
5980
5981 2009-07-25  Bruno Haible  <bruno@clisp.org>
5982
5983         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
5984         defined as macros. Needed on QNX 6.4.1.
5985         Reported by Matt Kraai <mkraai@beckman.com>.
5986
5987 2009-07-23  Jim Meyering  <meyering@redhat.com>
5988
5989         maint.mk: invoke "make dist" with a working value of XZ_OPT
5990         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
5991
5992 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
5993
5994         Make fseeko.c compile on QNX.
5995         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
5996
5997 2009-07-22  Peter Simons  <simons@cryp.to>
5998
5999         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
6000         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
6001         * lib/md4.h: Likewise.
6002         * lib/md5.h: Likewise.
6003         * lib/sha1.h: Likewise.
6004         * lib/sha256.h: Likewise.
6005         * lib/sha512.h: Likewise.
6006
6007         tests-sha1: don't assign literal string to 'char *' variable
6008         * tests/test-sha1.c (main): Declare locals with "const" to match
6009         attributes of the right hand side.
6010
6011 2009-07-21  Eric Blake  <ebb9@byu.net>
6012
6013         dup2: fix more mingw problems
6014         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
6015         fd to itself.
6016         * doc/posix-functions/dup2.texi (dup2): Document the bug.
6017         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
6018         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
6019         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
6020         care of mingw bugs.
6021
6022 2009-07-21  Jim Meyering  <meyering@redhat.com>
6023
6024         vc-list-files: avoid failure when /bin/sh is dash
6025         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
6026         On some Debian based systems, /bin/sh is a symlink to dash, and running
6027         this command would omit the "/" following each 'tests' prefix:
6028           dash -x build-aux/vc-list-files -C . tests
6029         That is because bash and dash work differently:
6030           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
6031           bash ok
6032           dash odd
6033
6034 2009-07-21  Eric Blake  <ebb9@byu.net>
6035
6036         dup2-tests: test previous patch
6037         * modules/dup2-tests: New file.
6038         * tests/test-dup2.c: Likewise.
6039         * tests/test-open.c (main): Avoid unspecified behavior.
6040         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
6041         test.
6042
6043         dup2: work around mingw and cygwin 1.5 bug
6044         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
6045         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
6046         * modules/unistd (Makefile.am): Substitute it.
6047         * lib/unistd.in.h (dup2): Declare the replacement.
6048         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
6049         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
6050         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
6051         * modules/execute (Depends-on): Add dup2.
6052         * modules/fseterr (Depends-on): Likewise.
6053         * modules/pipe (Depends-on): Likewise.
6054         * modules/posix_spawn-internal (Depends-on): Likewise.
6055
6056 2009-07-21  Bruno Haible  <bruno@clisp.org>
6057
6058         * modules/.gitattributes: New file.
6059
6060 2009-07-20  Bruno Haible  <bruno@clisp.org>
6061
6062         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
6063         (main): Use it.
6064
6065 2009-07-20  Eric Blake  <ebb9@byu.net>
6066
6067         test-pipe: make a bit more robust.
6068         * tests/test-pipe.c (myerr): Allow error messages regardless of
6069         what we do to stderr.
6070         (test_pipe): Rearrange to avoid deadlock.
6071         (child_main): Try a larger read, to ensure we avoided deadlock.
6072         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
6073         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
6074         if misused.
6075
6076 2009-07-19  Jim Meyering  <meyering@redhat.com>
6077
6078         fts: avoid false-positive cycle-detection
6079         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
6080         for each new command line argument.
6081
6082 2009-07-19  Bruno Haible  <bruno@clisp.org>
6083
6084         Fix build error on mingw with the modules sys_select and unistd.
6085         * modules/acl-tests (Depends-on): Add close.
6086         * modules/binary-io-tests (Depends-on): Likewise.
6087         * modules/closein-tests (Depends-on): Likewise.
6088         * modules/flock-tests (Depends-on): Likewise.
6089         * modules/fsync-tests (Depends-on): Likewise.
6090         * modules/lseek-tests (Depends-on): Likewise.
6091         * modules/pipe-tests (Depends-on): Likewise.
6092         * modules/posix_spawn-tests (Depends-on): Likewise.
6093         * modules/posix_spawnp-tests (Depends-on): Likewise.
6094         * modules/stat-time-tests (Depends-on): Likewise.
6095         * modules/yesno-tests (Depends-on): Likewise.
6096
6097 2009-07-19  Bruno Haible  <bruno@clisp.org>
6098
6099         Unify conditionals.
6100         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
6101         macros, not at the compiler macros.
6102         * lib/pipe.c: Likewise.
6103         * lib/execute.c: Likewise.
6104         * lib/spawni.c: Likewise.
6105
6106 2009-07-19  Bruno Haible  <bruno@clisp.org>
6107
6108         Fix handling of closed stdin/stdout/stderr on mingw.
6109         * lib/w32spawn.h: Include unistd.h.
6110         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
6111         file descriptor with O_NOINHERIT flag.
6112         (fd_safer_noinherit): New function, based on fd-safer.c.
6113         (dup_safer_noinherit): New function, based on dup-safer.c.
6114         (undup_safer_noinherit): New function.
6115         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
6116         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
6117         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
6118         instead of fd_safer.
6119         * tests/test-pipe.c: Include <windows.h>.
6120         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
6121
6122         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
6123         from main.
6124         (test_pipe): Pass an extra argument for disambiguation.
6125         (main): Invoke parent_main or child_main.
6126
6127         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
6128         consistently.
6129
6130 2009-07-18  Eric Blake  <ebb9@byu.net>
6131
6132         test-pipe: fix mingw build
6133         * tests/test-pipe.c (main): Avoid fcntl on mingw.
6134
6135 2009-07-18  Bruno Haible  <bruno@clisp.org>
6136
6137         * modules/pipe-tests (Makefile.am): Fix typo.
6138
6139 2009-07-18  Eric Blake  <ebb9@byu.net>
6140
6141         error: fix mingw build
6142         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
6143         Reported by Bruno Haible.
6144
6145         error: avoid undefined use of stdout
6146         * lib/error.c (error, error_at_line): Check that fd 1 is open
6147         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
6148         is handling faults and the close_stdout module wants to report the
6149         detection of closed stdout as an error.
6150
6151 2009-07-17  Eric Blake  <ebb9@byu.net>
6152
6153         pipe: be robust in face of closed fds
6154         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
6155         should cause child to misbehave.
6156         * modules/pipe-tests: New module.
6157         * tests/test-pipe.c: New file.
6158         * tests/test-pipe.sh: New file.
6159         Reported by Akim Demaille.
6160
6161 2009-07-14  Bruno Haible  <bruno@clisp.org>
6162
6163         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
6164         Reported by anonymous kc.
6165
6166 2009-07-07  Jim Meyering  <meyering@redhat.com>
6167
6168         maint.mk: don't look for translatable strings in *.m4 or *.mk
6169         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
6170         when searching for translatable strings.
6171
6172 2009-07-05  Jim Meyering  <meyering@redhat.com>
6173
6174         remove superfluous parentheses in STREQ definition
6175         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
6176         * lib/getugroups.c (STREQ): Likewise.
6177         * lib/fnmatch.c (STREQ): Likewise.
6178         Spotted by Bruno Haible.
6179
6180 2009-07-04  Jim Meyering  <meyering@redhat.com>
6181
6182         argv-iter: new module
6183         * MODULES.html.sh: Add argv-iter.
6184         * lib/argv-iter.c, lib/argv-iter.h: New files.
6185         * modules/argv-iter: New file.
6186         * modules/argv-iter-tests: New file.
6187         * tests/test-argv-iter.c: Test it.
6188
6189 2009-07-04  Bruno Haible  <bruno@clisp.org>
6190
6191         Fix assertion.
6192         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
6193         contains more exact copies of a given entry than file2, leave the extra
6194         copies unpaired rather than aborting.
6195         Reported by Eric Blake.
6196
6197 2009-07-02  Bruno Haible  <bruno@clisp.org>
6198
6199         Speedup git-merge-changelog for git cherry-pick.
6200         * lib/git-merge-changelog.c (struct entries_mapping): New type.
6201         (entries_mapping_get): New function, extracted from compute_mapping.
6202         (entries_mapping_reverse_get): New function.
6203         (compute_mapping): Add a 'full' argument. Return the result in a
6204         'struct entries_mapping'.
6205         (main): Update. Access the mappings through entries_mapping_get.
6206         Reported by Eric Blake.
6207
6208 2009-07-02  Bruno Haible  <bruno@clisp.org>
6209
6210         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
6211         best_i.
6212
6213 2009-07-02  Bruno Haible  <bruno@clisp.org>
6214
6215         Speed up approximate search for matching ChangeLog entries.
6216         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
6217         argument. Call fstrcmp_bounded instead of fstrcmp.
6218         (compute_mapping, try_split_merged_entry, main): Update callers.
6219
6220 2009-07-02  Bruno Haible  <bruno@clisp.org>
6221
6222         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
6223
6224 2009-06-30  Bruno Haible  <bruno@clisp.org>
6225
6226         Reduce the number of uc_is_cased calls.
6227         * lib/unicase.h (casing_suffix_context_t): Add
6228         'first_char_except_ignorable' field.
6229         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
6230         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
6231         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
6232         Update initializer.
6233         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
6234         case-ignorable characters.
6235         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
6236         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
6237         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
6238         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
6239         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
6240
6241 2009-06-30  Bruno Haible  <bruno@clisp.org>
6242
6243         Tests for module 'unicase/ignorable'.
6244         * modules/unicase/ignorable-tests: New file.
6245         * tests/unicase/test-ignorable.c: New file, generated by
6246         gen-uni-tables.
6247
6248         Tests for module 'unicase/cased'.
6249         * modules/unicase/cased-tests: New file.
6250         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
6251         * tests/unicase/test-predicate-part1.h: New file, derived from
6252         tests/unictype/test-predicate-part1.h.
6253         * tests/unicase/test-predicate-part2.h: New file, same as
6254         tests/unictype/test-predicate-part2.h.
6255
6256         Fix evaluation of "Before C" condition of FINAL_SIGMA.
6257         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
6258         (output_casing_properties): New function.
6259         (main): Call it.
6260         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
6261         * lib/unicase/cased.c: Include unictype/bitmap.h.
6262         (uc_is_cased): Define through a bitmap lookup.
6263         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
6264         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
6265         (uc_is_case_ignorable): Define through a bitmap lookup.
6266         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
6267         lib/unictype/bitmap.h.
6268         (Depends-on): Add inline. Clean up.
6269         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
6270         lib/unictype/bitmap.h.
6271         (Depends-on): Add inline. Clean up.
6272         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
6273         recognition.
6274         * tests/unicase/test-u16-tolower.c (main): Likewise.
6275         * tests/unicase/test-u32-tolower.c (main): Likewise.
6276
6277 2009-06-30  Bruno Haible  <bruno@clisp.org>
6278
6279         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
6280         * lib/unicase/u16-casemap.c: Likewise.
6281         * lib/unicase/u32-casemap.c: Likewise.
6282
6283 2009-06-29  Bruno Haible  <bruno@clisp.org>
6284
6285         Define u32_casefold as a wrapper around u32_ct_casefold.
6286         * lib/unicase/u32-casefold.c: Update.
6287         * modules/unicase/u32-casefold (Depends-on): Add
6288         unicase/u32-ct-casefold, unicase/empty-prefix-context,
6289         unicase/empty-suffix-context. Clean up.
6290
6291         Define u16_casefold as a wrapper around u16_ct_casefold.
6292         * lib/unicase/u16-casefold.c: Update.
6293         * modules/unicase/u16-casefold (Depends-on): Add
6294         unicase/u16-ct-casefold, unicase/empty-prefix-context,
6295         unicase/empty-suffix-context. Clean up.
6296
6297         Define u8_casefold as a wrapper around u8_ct_casefold.
6298         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
6299         * lib/unicase/u8-casefold.c: Update.
6300         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
6301         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6302
6303         Define u32_totitle as a wrapper around u32_ct_totitle.
6304         * lib/unicase/u32-totitle.c: Update.
6305         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
6306         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6307
6308         Define u16_totitle as a wrapper around u16_ct_totitle.
6309         * lib/unicase/u16-totitle.c: Update.
6310         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
6311         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6312
6313         Define u8_totitle as a wrapper around u8_ct_totitle.
6314         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
6315         functions.
6316         (FUNC): Delegate to U_CT_TOTITLE.
6317         * lib/unicase/u8-totitle.c: Update.
6318         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
6319         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6320
6321         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
6322         invocation.
6323         * modules/unicase/u32-tolower (Depends-on): Add
6324         unicase/empty-prefix-context, unicase/empty-suffix-context.
6325
6326         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
6327         invocation.
6328         * modules/unicase/u16-tolower (Depends-on): Add
6329         unicase/empty-prefix-context, unicase/empty-suffix-context.
6330
6331         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
6332         * modules/unicase/u8-tolower (Depends-on): Add
6333         unicase/empty-prefix-context, unicase/empty-suffix-context.
6334
6335         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
6336         invocation.
6337         * modules/unicase/u32-toupper (Depends-on): Add
6338         unicase/empty-prefix-context, unicase/empty-suffix-context.
6339
6340         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
6341         invocation.
6342         * modules/unicase/u16-toupper (Depends-on): Add
6343         unicase/empty-prefix-context, unicase/empty-suffix-context.
6344
6345         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
6346         * modules/unicase/u8-toupper (Depends-on): Add
6347         unicase/empty-prefix-context, unicase/empty-suffix-context.
6348
6349         New module 'unicase/u32-ct-casefold'.
6350         * lib/unicase/u32-ct-casefold.c: New file.
6351         * modules/unicase/u32-ct-casefold: New file.
6352
6353         New module 'unicase/u16-ct-casefold'.
6354         * lib/unicase/u16-ct-casefold.c: New file.
6355         * modules/unicase/u16-ct-casefold: New file.
6356
6357         New module 'unicase/u8-ct-casefold'.
6358         * lib/unicase/u8-ct-casefold.c: New file.
6359         * lib/unicase/u-ct-casefold.h: New file, derived from
6360         lib/unicase/u-casefold.h.
6361         * modules/unicase/u8-ct-casefold: New file.
6362
6363         New module 'unicase/u32-ct-totitle'.
6364         * lib/unicase/u32-ct-totitle.c: New file.
6365         * modules/unicase/u32-ct-totitle: New file.
6366
6367         New module 'unicase/u16-ct-totitle'.
6368         * lib/unicase/u16-ct-totitle.c: New file.
6369         * modules/unicase/u16-ct-totitle: New file.
6370
6371         New module 'unicase/u8-ct-totitle'.
6372         * lib/unicase/u8-ct-totitle.c: New file.
6373         * lib/unicase/u-ct-totitle.h: New file, derived from
6374         lib/unicase/u-totitle.h.
6375         * modules/unicase/u8-ct-totitle: New file.
6376
6377         New module 'unicase/u32-ct-tolower'.
6378         * lib/unicase/u32-ct-tolower.c: New file.
6379         * modules/unicase/u32-ct-tolower: New file.
6380
6381         New module 'unicase/u16-ct-tolower'.
6382         * lib/unicase/u16-ct-tolower.c: New file.
6383         * modules/unicase/u16-ct-tolower: New file.
6384
6385         New module 'unicase/u8-ct-tolower'.
6386         * lib/unicase/u8-ct-tolower.c: New file.
6387         * modules/unicase/u8-ct-tolower: New file.
6388
6389         New module 'unicase/u32-ct-toupper'.
6390         * lib/unicase/u32-ct-toupper.c: New file.
6391         * modules/unicase/u32-ct-toupper: New file.
6392
6393         New module 'unicase/u16-ct-toupper'.
6394         * lib/unicase/u16-ct-toupper.c: New file.
6395         * modules/unicase/u16-ct-toupper: New file.
6396
6397         New module 'unicase/u8-ct-toupper'.
6398         * lib/unicase/u8-ct-toupper.c: New file.
6399         * modules/unicase/u8-ct-toupper: New file.
6400
6401         Add context arguments to u*_casemap functions.
6402         * lib/unicase/unicasemap.h: Include unicase.h.
6403         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
6404         suffix_context arguments.
6405         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
6406         functions.
6407         (FUNC): Add prefix_context and suffix_context arguments. Use
6408         uc_is_cased and uc_is_case_ignorable.
6409         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
6410         * lib/unicase/u16-casemap.c: Likewise.
6411         * lib/unicase/u32-casemap.c: Likewise.
6412         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
6413         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6414         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
6415         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6416         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
6417         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6418
6419         New module 'unicase/u32-suffix-context'.
6420         * lib/unicase/u32-suffix-context.c: New file.
6421         * modules/unicase/u32-suffix-context: New file.
6422
6423         New module 'unicase/u16-suffix-context'.
6424         * lib/unicase/u16-suffix-context.c: New file.
6425         * modules/unicase/u16-suffix-context: New file.
6426
6427         New module 'unicase/u8-suffix-context'.
6428         * lib/unicase/u8-suffix-context.c: New file.
6429         * lib/unicase/u-suffix-context.h: New file.
6430         * modules/unicase/u8-suffix-context: New file.
6431
6432         New module 'unicase/empty-suffix-context'.
6433         * lib/unicase/empty-suffix-context.c: New file.
6434         * modules/unicase/empty-suffix-context: New file.
6435
6436         New module 'unicase/u32-prefix-context'.
6437         * lib/unicase/u32-prefix-context.c: New file.
6438         * modules/unicase/u32-prefix-context: New file.
6439
6440         New module 'unicase/u16-prefix-context'.
6441         * lib/unicase/u16-prefix-context.c: New file.
6442         * modules/unicase/u16-prefix-context: New file.
6443
6444         New module 'unicase/u8-prefix-context'.
6445         * lib/unicase/u8-prefix-context.c: New file.
6446         * lib/unicase/u-prefix-context.h: New file.
6447         * lib/unicase/context.h: New file.
6448         * modules/unicase/u8-prefix-context: New file.
6449
6450         New module 'unicase/empty-prefix-context'.
6451         * lib/unicase/empty-prefix-context.c: New file.
6452         * modules/unicase/empty-prefix-context: New file.
6453
6454         New module 'unicase/ignorable'.
6455         * lib/unicase/ignorable.c: New file.
6456         * modules/unicase/ignorable: New file.
6457
6458         New module 'unicase/cased'.
6459         * lib/unicase/caseprop.h: New file.
6460         * lib/unicase/cased.c: New file.
6461         * modules/unicase/cased: New file.
6462
6463         New functions for case mapping of substrings.
6464         * lib/unicase.h (casing_prefix_context_t): New type.
6465         (unicase_empty_prefix_context): New variable.
6466         (u8_casing_prefix_context, u16_casing_prefix_context,
6467         u32_casing_prefix_context, u8_casing_prefixes_context,
6468         u16_casing_prefixes_context, u32_casing_prefixes_context): New
6469         declarations.
6470         (casing_suffix_context_t): New type.
6471         (unicase_empty_suffix_context): New variable.
6472         (u8_casing_suffix_context, u16_casing_suffix_context,
6473         u32_casing_suffix_context, u8_casing_suffixes_context,
6474         u16_casing_suffixes_context, u32_casing_suffixes_context,
6475         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
6476         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
6477         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
6478         declarations.
6479
6480 2009-06-28  Jim Meyering  <meyering@redhat.com>
6481
6482         boostrap: indent only with spaces
6483         * build-aux/bootstrap: Indent only with spaces, never TABs.
6484
6485         bootstrap: split long lines
6486         * build-aux/bootstrap: Keep line length < 80.
6487
6488         bootstrap: sync from coreutils
6489         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
6490         just as autoreconf does.  Verify a list of prerequisite
6491         package-name,version-number pairs if defined in bootstrap.conf.
6492         Refer to README-prereq, if prerequisites are not satisfied.
6493
6494 2009-06-27  Eric Blake  <ebb9@byu.net>
6495
6496         tests: add test for bogus NULL definition
6497         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
6498         * tests/test-stdlib.c: Likewise.
6499         * tests/test-string.c: Likewise.
6500         * tests/test-locale.c: Likewise.
6501         * tests/test-unistd.c: Likewise.
6502         * modules/stdio-tests (Depends-on): Add verify.
6503         * modules/stdlib-tests (Depends-on): Likewise.
6504         * modules/string-tests (Depends-on): Likewise.
6505         * modules/locale-tests (Depends-on): Likewise.
6506         * modules/unistd-tests (Depends-on): Likewise.
6507
6508 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
6509
6510         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
6511         self-explaining comment.
6512         * m4/selinux-selinux-h: Update serial.
6513         (gl_LIBSELINUX): New macro, adding a warning for missing development
6514         packages to code extracted from...
6515         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
6516         Add warning for missing development packages here, too.
6517
6518 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
6519
6520         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
6521
6522 2009-06-25  Eric Blake  <ebb9@byu.net>
6523
6524         version-etc: fix regression
6525         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
6526         gcc.
6527         (version_etc): Use it, to catch bugs with trailing NULL.
6528         * lib/version-etc.c (version_etc_arn): Delete unused argument.
6529         (version_etc_va): Fix logic bug.
6530         * modules/version-etc-tests: Add test.
6531         * tests/test-version-etc.c: New file.
6532         * tests/test-version-etc.sh: Likewise.
6533
6534 2009-06-25  Sam Steingold  <sds@gnu.org>
6535
6536         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
6537         mbtowc declaration.
6538
6539 2009-06-25  Eric Blake  <ebb9@byu.net>
6540
6541         fpurge: migrate into <stdio.h>
6542         * lib/fpurge.h: Delete...
6543         * lib/stdio.in.h (fpurge): ...and declare here, instead.
6544         * lib/fpurge.c (fpurge): Change declaring header.
6545         * modules/fpurge (Files): Drop deleted file.
6546         (Depends-on): Add stdio.
6547         (configure.ac): Set witness.
6548         * modules/stdio (Makefile.am): Support fpurge macros.
6549         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
6550         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
6551         * lib/fflush.c: Update client.
6552         * tests/test-fpurge.c: Likewise.
6553         * NEWS: Mention the change.
6554
6555 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6556
6557         * lib/argp-version-etc.c (program_authors): Add const
6558         qualifier.
6559         * lib/version-etc.c: Fix typos in the comments.
6560         * modules/argp-version-etc: Depends on version-etc.
6561
6562 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6563
6564         argp-version-etc: new module.
6565
6566         * lib/argp-version-etc.c: New file.
6567         * lib/argp-version-etc.h: New file.
6568         * modules/argp-version-etc: New file.
6569         * modules/argp-version-etc-tests: New file.
6570         * tests/test-argp-version-etc.c: New test.
6571         * tests/test-argp-version-etc-1.sh: New test.
6572
6573 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6574
6575         Provide additional interfaces and documentation for version-etc
6576         module.
6577
6578         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
6579         interfaces.
6580         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
6581         prototypes.
6582
6583 2009-06-24  Bruno Haible  <bruno@clisp.org>
6584
6585         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
6586         HAVE_LIB${NAME} macro.
6587         Reported by Sam Steingold <sds@gnu.org>.
6588
6589 2009-06-23  Simon Josefsson  <simon@josefsson.org>
6590
6591         * modules/hash-tests (test_hash_LDADD): Link to libintl when
6592         needed.
6593
6594 2009-06-21  Bruno Haible  <bruno@clisp.org>
6595
6596         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
6597         work.
6598         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
6599         together with LIB${NAME}, LTLIB${NAME}.
6600         Reported by Sam Steingold <sds@gnu.org>.
6601
6602 2009-06-20  Jim Meyering  <meyering@redhat.com>
6603
6604         tests: make sc_require_test_exit_idiom more generic
6605         * top/maint.mk (Exit_witness_file): New overridable variable.
6606         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
6607         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
6608
6609 2009-06-19  Jim Meyering  <meyering@redhat.com>
6610
6611         hash: reverse order of src/dst parameters in an internal interface
6612         * lib/hash.c (transfer_entries): Reverse order of parameters to
6613         put DST before SRC.  Adjust callers.
6614
6615         tests: test-hash: avoid wholesale duplication
6616         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
6617         Instead, use a loop and add a single conditional.
6618
6619         tests: test-hash: allow seed selection via a command line argument
6620         * tests/test-hash.c (get_seed): New function.
6621         (main): Use it.
6622
6623 2009-06-19  Eric Blake  <ebb9@byu.net>
6624
6625         hash: avoid memory leak on allocation failure
6626         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
6627         failure.  Factor repeated algorithm...
6628         (transfer_entries): ...into new helper routine.
6629         (hash_delete): React to hash_rehash return value.
6630
6631         hash: reduce memory pressure in hash_rehash no-op case
6632         * lib/hash.c (next_prime): Avoid overflow.
6633         (hash_initialize): Factor bucket size computation...
6634         (compute_bucket_size): ...into new helper function.
6635         (hash_rehash): Use new function and open coding to reduce memory
6636         pressure, and avoid a memory leak in USE_OBSTACK code.
6637         Reported by Jim Meyering.
6638
6639 2009-06-18  Eric Blake  <ebb9@byu.net>
6640
6641         hash: make rotation more obvious
6642         * modules/hash (Depends-on): Add bitrotate and stdint.
6643         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
6644         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
6645         (SIZE_MAX): Rely on headers for definition.
6646         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
6647         (raw_hasher): Use rotr_sz.
6648         Suggested by Jim Meyering.
6649
6650         hash: fix memory leak in last patch
6651         * lib/hash.c (hash_rehash): Avoid memory leak.
6652
6653         hash: avoid no-op rehashing
6654         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
6655
6656         hash: provide default callback functions
6657         * lib/hash.c (raw_hasher, raw_comparator): New functions.
6658         (hash_initialize): Use them as defaults.
6659         * tests/test-hash.c (main): Test this.
6660
6661         hash: minor optimization
6662         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
6663         when possible.
6664         (hash_initialize): Document this promise.
6665         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
6666         * tests/test-hash.c (hash_compare_strings): Test this.
6667
6668 2009-06-18  Bruno Haible  <bruno@clisp.org>
6669
6670         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
6671         going to be replaced anyway.
6672
6673 2009-06-18  Bruno Haible  <bruno@clisp.org>
6674
6675         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
6676         in one place.
6677         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
6678         be replaced anyway.
6679
6680 2009-06-18  Eric Blake  <ebb9@byu.net>
6681
6682         hash: check for resize before insertion
6683         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
6684         threshold before insertion, so that a pathological hash_rehash
6685         that fills every bucket can still trigger another rehash.
6686
6687 2009-06-18  Jim Meyering  <meyering@redhat.com>
6688
6689         hash-tests: add a loop around the small tests
6690         * tests/test-hash.c (main): Repeat small tests with selected
6691         small initial table sizes.
6692
6693 2009-06-17  Eric Blake  <ebb9@byu.net>
6694
6695         hash: minor cleanups
6696         * lib/hash.h (hash_entry): Make opaque, by moving...
6697         * lib/hash.c (hash_entry): ...here.
6698         (hash_insert): Clarify restrictions on what can be inserted.
6699         (hash_get_next): Clarify when it is safe to remove an element
6700         during traversal.
6701         (check_tuning): Skip verification when tuning is known safe.
6702         (hash_initialize): Clarify restrictions on tuning.
6703
6704 2009-06-17  Jim Meyering  <jim@meyering.net>
6705         and Eric Blake  <ebb9@byu.net>
6706
6707         hash-tests: new module
6708         * modules/hash-tests: New file.
6709         * tests/test-hash.c: New file.
6710
6711 2009-06-17  Eric Blake  <ebb9@byu.net>
6712
6713         strstr-simple: document new module
6714         * MODULES.html.sh: Document new module.
6715
6716         strstr, strcasestr: replace on platforms with broken memchr
6717         * modules/strstr: Split into...
6718         * modules/strstr-simple: ...new module that does not care about
6719         performance, but does care about glibc bug.
6720         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
6721         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
6722         if platform memchr is broken, per Debian bug 521737.
6723         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
6724         memchr.
6725         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
6726         * doc/posix-functions/strstr.texi (strstr): Document the fix.
6727         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
6728         * modules/mountlist (Depends-on): Add strstr-simple.
6729         * modules/gen-uni-tables (Depends-on): Likewise.
6730         * modules/argz (Depends-on): Add strstr.
6731
6732 2009-06-17  Bruno Haible  <bruno@clisp.org>
6733
6734         * modules/posix_spawn-internal (Depends-on): Add errno.
6735
6736 2009-06-17  Bruno Haible  <bruno@clisp.org>
6737
6738         Define missing ESTALE on Interix 3.5.
6739         * lib/errno.in.h (ESTALE): Assign a value if missing.
6740         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
6741         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
6742         missing.
6743         * doc/posix-headers/errno.texi: Mention the Interix bug.
6744         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
6745
6746 2009-06-15  Eric Blake  <ebb9@byu.net>
6747
6748         memchr, memchr2: add valgrind exception
6749         * lib/memchr.valgrind: New file.
6750         * lib/memchr2.valgrind: New file.
6751         * modules/memchr (Files): Distribute valgrind file.
6752         * modules/memchr2 (Files): Likewise.
6753
6754         docs: memchr is no longer obsolete
6755         * MODULES.html.sh: Move memchr from obsolete to string.h section.
6756         * lib/string.in.h (memchr): Simplify logic.
6757
6758 2009-06-14  Jim Meyering  <meyering@redhat.com>
6759
6760         link-follow: fix the "checking..." message to not mention trailing slash
6761         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
6762         never considered trailing slashes.
6763
6764 2009-06-14  Bruno Haible  <bruno@clisp.org>
6765
6766         * m4/memchr.m4: Mention also the bug on IA-64.
6767         * doc/posix-functions/memchr.texi: Likewise.
6768
6769 2009-06-12  Eric Blake  <ebb9@byu.net>
6770
6771         memchr: detect broken x86_64 and alpha implementations
6772         * modules/memchr-tests (Depends-on): Move mmap detection...
6773         * modules/memchr (Depends-on): ...here.
6774         (configure.ac): Set indicator.
6775         * lib/string.in.h (memchr): Declare replacement.
6776         * modules/string (Makefile.am): Trigger replacement.
6777         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
6778         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
6779         bugs.
6780         * doc/posix-functions/memchr.texi (memchr): Document the bug.
6781         * modules/getpagesize (License): Relax license.
6782
6783 2009-06-11  Bruno Haible  <bruno@clisp.org>
6784
6785         * lib/idpriv.h: Add more references.
6786
6787 2009-06-08  Bruno Haible  <bruno@clisp.org>
6788
6789         Tests for module 'idpriv-droptemp'.
6790         * modules/idpriv-droptemp-tests: New file.
6791         * tests/test-idpriv-droptemp.sh: New file.
6792         * tests/test-idpriv-droptemp.su.sh: New file.
6793         * tests/test-idpriv-droptemp.c: New file.
6794
6795         New module 'idpriv-droptemp'.
6796         * lib/idpriv-droptemp.c: New file.
6797         * modules/idpriv-droptemp: New file.
6798
6799 2009-06-08  Bruno Haible  <bruno@clisp.org>
6800
6801         Tests for module 'idpriv-drop'.
6802         * modules/idpriv-drop-tests: New file.
6803         * tests/test-idpriv-drop.sh: New file.
6804         * tests/test-idpriv-drop.su.sh: New file.
6805         * tests/test-idpriv-drop.c: New file.
6806
6807         New module 'idpriv-drop'.
6808         * lib/idpriv.h: New file.
6809         * lib-idpriv-drop.c: New file.
6810         * m4/idpriv.m4: New file.
6811         * modules/idpriv-drop: New file.
6812
6813 2009-06-08  Bruno Haible  <bruno@clisp.org>
6814
6815         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
6816         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
6817         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
6818         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
6819         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
6820         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
6821         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
6822
6823 2009-06-08  Eric Blake  <ebb9@byu.net>
6824
6825         test-strstr: use memory fence, when possible
6826         * tests/test-strstr.c (main): Use memory fence, in order to be
6827         more likely to trigger Debian bug 521737.
6828         * modules/strstr-tests (Files): Pull in additional files.
6829
6830         memchr: no longer obsolete, for wider field testing
6831         * modules/memchr (Status, Notice): Delete, this module is no
6832         longer obsolete.
6833         * modules/vasnprintf (Depends-on): Add memchr.
6834
6835 2009-06-07  Jim Meyering  <meyering@redhat.com>
6836
6837         hash: declare some functions with the warn_unused_result attribute
6838         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
6839
6840 2009-06-07  Bruno Haible  <bruno@clisp.org>
6841
6842         * tests/test-alignof.c: Don't test int64_t if it does not exist.
6843         Reported by Eric Blake.
6844
6845 2009-06-06  Eric Blake  <ebb9@byu.net>
6846
6847         test-alignof: fix typo with long double
6848         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
6849         compiler error.
6850
6851 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
6852
6853         Escape non-texinfo { and }s.
6854         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
6855         markup error.
6856
6857 2009-06-04  Jim Meyering  <meyering@redhat.com>
6858
6859         gitlog-to-changelog: don't infloop on an empty commit log
6860         * build-aux/gitlog-to-changelog: Warn about an empty log message.
6861         Reported by Boris Petersen <transacid@centerim.org>.
6862
6863 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
6864
6865         version-etc: extend for packagers
6866         Add three new configure options, intended for packagers:
6867           --with-packager="packager name"
6868           --with-packager-version="packager-specific version"
6869           --with-packager-bug-reports="packager bug reporting"
6870         An example with coreutils:
6871           $ ./configure \
6872             --with-packager=Gentoo \
6873             --with-packager-bug-report=http://bugs.gentoo.org/ \
6874             --with-packager-version="patchset 1.6"
6875           $ ./src/ls --version | head -n3
6876           ls (GNU coreutils) 7.1-dirty
6877           Packaged by Gentoo (patchset 1.6)
6878           Copyright (C) 2009 Free Software Foundation, Inc.
6879         Note that the bug reporting info via --help doesn't show up because
6880         coreutils uses its own custom emit_bug_reporting_address() implementation
6881         in src/system.h.  If it didn't, it'd look like:
6882           $ ./src/ls --help | tail -n4
6883           Report bugs to <bug-coreutils@gnu.org>.
6884           Report Gentoo bugs to <http://bugs.gentoo.org/>.
6885           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
6886           General help using GNU software: <http://www.gnu.org/gethelp/>.
6887         * lib/version-etc.c: Print new information, if provided.
6888         * m4/version-etc.m4: New file.
6889         * modules/version-etc (Files): Add m4/version-etc.m4.
6890         (configure.ac): Add gl_VERSION_ETC.
6891
6892 2009-05-31  Bruno Haible  <bruno@clisp.org>
6893
6894         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
6895         and 'int64_t'.
6896         * modules/alignof-tests (Dependencies): Add stdint.
6897         Reported by Eric Blake.
6898
6899 2009-05-31  Bruno Haible  <bruno@clisp.org>
6900
6901         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
6902         restriction due to compiler bugs.
6903         Reported by Eric Blake.
6904
6905 2009-05-31  Simon Josefsson  <simon@josefsson.org>
6906             Bruno Haible  <bruno@clisp.org>
6907
6908         Fix test-alignof failure.
6909         * lib/alignof.h (alignof_slot): New macro.
6910         (alignof_type): New macro, with the same semantics as the previous
6911         'alignof'.
6912         (alignof): Alias to alignof_slot.
6913         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
6914         check that the results are usable as constant expressions.
6915
6916 2009-05-31  Bruno Haible  <bruno@clisp.org>
6917
6918         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
6919         * tests/test-memchr.c (main): Check that memchr does not read past the
6920         first occurrence of the byte.
6921         * tests/test-strstr.c (main): Update comment.
6922         Suggested by Eric Blake.
6923
6924 2009-05-30  Bruno Haible  <bruno@clisp.org>
6925
6926         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
6927         detail how to use dumpbin.
6928         Reported by David Byron <dbyron@dbyron.com>.
6929
6930 2009-06-02  Simon Josefsson  <simon@josefsson.org>
6931
6932         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
6933
6934 2009-06-02  Simon Josefsson  <simon@josefsson.org>
6935
6936         * m4/manywarnings.m4: Add GCC 4.4 warnings.
6937
6938 2009-05-28  Bruno Haible  <bruno@clisp.org>
6939
6940         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
6941         build-aux/ files.
6942
6943 2009-05-28  Simon Josefsson  <simon@josefsson.org>
6944
6945         * gnulib-tool (func_import): Transform license on build-aux/ files too.
6946
6947 2009-05-27  Simon Josefsson  <simon@josefsson.org>
6948
6949         * gnulib-tool (sed_transform_main_lib_file)
6950         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
6951         regexps.
6952
6953 2009-05-26  Simon Josefsson  <simon@josefsson.org>
6954
6955         * tests/test-strstr.c: Add another self-test.
6956         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
6957         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
6958
6959 2009-05-23  Bruno Haible  <bruno@clisp.org>
6960
6961         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
6962         change.
6963
6964 2009-05-21  Bruno Haible  <bruno@clisp.org>
6965
6966         Simplify use of mode_t varargs.
6967         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
6968         uses 'mode_t' or 'int'.
6969         * lib/openat.c (openat): Likewise.
6970         * lib/open-safer.c (open_safer): Likewise.
6971         * m4/mode_t.m4: New file.
6972         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
6973         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
6974         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
6975         * modules/open (Files): Add m4/mode_t.m4.
6976         * modules/openat (Files): Likewise.
6977         * modules/fcntl-safer (Files): Likewise.
6978         Suggested by Eric Blake.
6979
6980 2009-05-21  Pádraig Brady  <P@draigbrady.com>
6981
6982         * doc/glibc-functions/fallocate.texi: New file.
6983         * doc/gnulib.texi: Include it.
6984
6985 2009-05-21  Eric Blake  <ebb9@byu.net>
6986             Bruno Haible  <bruno@clisp.org>
6987
6988         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
6989         invocations.
6990         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
6991
6992 2009-05-21  Eric Blake  <ebb9@byu.net>
6993             Bruno Haible  <bruno@clisp.org>
6994
6995         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
6996         include_next. Fix of 2008-11-20 commit.
6997         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
6998         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
6999         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
7000         NEXT_MATH_H.
7001         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
7002         instead of NEXT_MATH_H.
7003
7004 2009-05-21  Bruno Haible  <bruno@clisp.org>
7005
7006         Avoid redefinition warnings for SIZE_MAX.
7007         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
7008         Reported by Simon Josefsson.
7009
7010 2009-05-21  Bruno Haible  <bruno@clisp.org>
7011
7012         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
7013         AC_CACHE_VAL.
7014
7015 2009-05-20  Bruno Haible  <bruno@clisp.org>
7016
7017         Make zeroptr.h work on mingw.
7018         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
7019         mprotect.
7020         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
7021         * modules/memchr2-tests (configure.ac): Likewise.
7022         * modules/memcmp-tests (configure.ac): Likewise.
7023         * modules/memmem-tests (configure.ac): Likewise.
7024         * modules/memrchr-tests (configure.ac): Likewise.
7025         Reported by Simon Josefsson.
7026
7027 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7028
7029         * tests/test-glob.c: Include string.h for strcmp prototype.
7030
7031 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7032
7033         * modules/getdelim (Depends-on): Add explicit stdint, although it
7034         was implicitly already pulled in via realloc-posix.
7035         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
7036
7037 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7038
7039         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
7040         G. Christensen" <tgc@jupiterrise.com>.
7041         * m4/sys_socket_h.m4: Check for sa_family_t.
7042         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
7043         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
7044         * tests/test-sys_socket.c: Check that sa_family_t works.
7045
7046 2009-05-18  Eric Blake  <ebb9@byu.net>
7047
7048         maint.mk: allow gnulib_dir in VPATH build
7049         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
7050
7051 2009-05-15  Jim Meyering  <meyering@redhat.com>
7052
7053         maint.mk: Give gnulib_dir a default definition.
7054         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
7055         Thus, most packages no longer need to specify this variable in cfg.mk
7056
7057 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
7058
7059         rename.m4: fix typos that would make non-mingw cross-configure fail
7060         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
7061
7062 2009-05-13  Eric Blake  <ebb9@byu.net>
7063
7064         mmap-anon: avoid out-of-order autoconf expansion
7065         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
7066         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
7067         * modules/memchr-tests (Depends-on): Add extensions.
7068         * modules/memchr2-tests (Depends-on): Add extensions.
7069         * modules/memcmp-tests (Depends-on): Add extensions.
7070         * modules/memmem-tests (Depends-on): Add extensions.
7071         * modules/memrchr-tests (Depends-on): Add extensions.
7072
7073 2009-05-13  Bruno Haible  <bruno@clisp.org>
7074
7075         Make some tests ISO C 99 compliant.
7076         * tests/zerosize-ptr.h: New file.
7077         * tests/test-memchr.c: Include zerosize-ptr.h.
7078         (main): Use a zero-size object pointer instead of NULL.
7079         * tests/test-memchr2.c: Include zerosize-ptr.h.
7080         (main): Use a zero-size object pointer instead of NULL.
7081         * tests/test-memcmp.c: Include zerosize-ptr.h.
7082         (main): Use a zero-size object pointer instead of NULL.
7083         * tests/test-memmem.c: Include zerosize-ptr.h.
7084         (main): Use a zero-size object pointer instead of NULL.
7085         * tests/test-memrchr.c: Include zerosize-ptr.h.
7086         (main): Use a zero-size object pointer instead of NULL.
7087         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
7088         m4/mmap-anon.m4.
7089         (Depends-on): Add getpagesize.
7090         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7091         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
7092         m4/mmap-anon.m4.
7093         (Depends-on): Add getpagesize.
7094         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7095         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
7096         m4/mmap-anon.m4.
7097         (Depends-on): Add getpagesize.
7098         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7099         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
7100         m4/mmap-anon.m4.
7101         (Depends-on): Add getpagesize.
7102         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7103         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
7104         m4/mmap-anon.m4.
7105         (Depends-on): Add getpagesize.
7106         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7107
7108 2009-05-12  Bruno Haible  <bruno@clisp.org>
7109
7110         Tests for module 'alignof'.
7111         * modules/alignof-tests: New file.
7112         * tests/test-alignof.c: New file.
7113
7114 2009-05-12  Bruno Haible  <bruno@clisp.org>
7115
7116         Fix alignof macro.
7117         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
7118         vendor compilers that are always correct.
7119
7120 2009-05-12  Bruno Haible  <bruno@clisp.org>
7121
7122         Make the MAP_ANONYMOUS detection work on HP-UX 11.
7123         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
7124         not whether its fully works.
7125
7126 2009-05-12  Bruno Haible  <bruno@clisp.org>
7127
7128         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
7129
7130 2009-05-12  Jim Meyering  <meyering@redhat.com>
7131
7132         * top/maint.mk: Adjust backslash alignment.
7133
7134 2009-05-11  Simon Josefsson  <simon@josefsson.org>
7135
7136         * top/maint.mk: Make $(srcdir)/build-aux configurable.
7137
7138 2009-05-11  Eric Blake  <ebb9@byu.net>
7139
7140         argp: avoid undefined behavior
7141         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
7142         macros.
7143
7144 2009-05-08  Simon Josefsson  <simon@josefsson.org>
7145
7146         * tests/test-vc-list-files-git.sh: Do git config of user.email and
7147         user.name to prevent git commit from complaining.
7148
7149 2009-05-10  Bruno Haible  <bruno@clisp.org>
7150
7151         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
7152         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
7153         it rewrites every file name only once.
7154         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
7155
7156 2009-05-08  Bruno Haible  <bruno@clisp.org>
7157
7158         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
7159         instead of 'max'.
7160
7161 2009-05-08  Simon Josefsson  <simon@josefsson.org>
7162
7163         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
7164         sockaddr_storage test.
7165
7166 2009-05-07  Simon Josefsson  <simon@josefsson.org>
7167
7168         * modules/sys_socket (Makefile.am): Substitute
7169         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
7170         * m4/sys_socket_h.m4: Check for sockaddr_storage.
7171         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
7172         * tests/test-sys_socket.c: Check sockaddr_storage.
7173
7174 2009-05-08  Bruno Haible  <bruno@clisp.org>
7175
7176         New module 'alignof'.
7177         * lib/alignof.h: New file.
7178         * modules/alignof: New file.
7179
7180 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7181             Bruno Haible  <bruno@clisp.org>
7182
7183         Fix test-file-has-acl on FreeBSD.
7184         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
7185         mask is implicitly added.
7186         * tests/test-file-has-acl.c: Include <signal.h>.
7187         (main): Terminate the test after 5 seconds.
7188         * modules/acl-tests (configure.ac): Check for alarm function.
7189
7190 2009-05-04  Bruno Haible  <bruno@clisp.org>
7191
7192         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
7193         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
7194         * modules/errno (configure.ac): Drop AC_REQUIRE.
7195         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
7196         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
7197
7198 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7199
7200         * modules/glob-tests: New module.
7201         * tests/test-glob.c: Add.
7202
7203 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7204
7205         * modules/fnmatch-tests: New module.
7206         * tests/test-fnmatch.c: Add.
7207
7208 2009-05-04  Eric Blake  <ebb9@byu.net>
7209
7210         maint: make the new no-submodule-changes rule VPATH-safe
7211         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
7212
7213 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7214             Bruno Haible  <bruno@clisp.org>
7215
7216         acl: Fix infinite loop on FreeBSD.
7217         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
7218         of return value from acl_get_entry.
7219         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
7220         Likewise.
7221
7222 2009-05-03  Bruno Haible  <bruno@clisp.org>
7223
7224         * lib/acl-internal.h (acl_entries): Clarify return value.
7225         * lib/acl_entries.c (acl_entries): Likewise.
7226
7227 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7228
7229         Bug fix in acl module.
7230         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
7231
7232 2009-05-03  Bruno Haible  <bruno@clisp.org>
7233
7234         Create gperf-generated file in the source dir, not in the build dir.
7235         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
7236         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
7237         * modules/unicase/locale-language (unicase/locale-languages.h):
7238         Likewise.
7239         * modules/unicase/special-casing (unicase/special-casing-table.h):
7240         Likewise.
7241         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
7242         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
7243         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
7244         Reported by Ralf Wildenhues.
7245
7246 2009-05-03  Bruno Haible  <bruno@clisp.org>
7247
7248         * modules/fnmatch (Description, configure.ac): Taken from
7249         fnmatch-posix.
7250         * modules/fnmatch-posix: Turn into a symbolic reference to the
7251         'fnmatch' module, and deprecate.
7252         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
7253
7254 2009-05-03  Bruno Haible  <bruno@clisp.org>
7255
7256         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
7257         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
7258         Reported by Ralf Wildenhues.
7259
7260 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7261
7262         * m4/fnmatch.m4: Fix fnmatch re-define.
7263
7264 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7265
7266         priv-set: new module and tests; adapt write-any-file
7267         * lib/priv-set.c: New file.
7268         * lib/priv-set.h: New file.
7269         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
7270         * lib/write-any-file.c: Simplify by using priv-set module.
7271         * m4/priv-set.m4: New file.
7272         * modules/priv-set: New file.
7273         * modules/unlinkdir: Add dependency on priv-set module.
7274         * modules/write-any-file: Likewise.
7275
7276         Tests for module 'priv-set'.
7277         * modules/priv-set-tests: New file.
7278         * tests/test-priv-set.c: New file.
7279
7280 2009-05-03  Jim Meyering  <meyering@redhat.com>
7281             Bruno Haible  <bruno@clisp.org>
7282
7283         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
7284         use the converted UTF-8 variant of the name instead.
7285
7286 2009-05-03  Jim Meyering  <meyering@redhat.com>
7287
7288         tests: tighten some getdate tests
7289         * tests/test-getdate.c (main): Tighten tests: require equality,
7290         not just greater than.  Set TZ envvar to UTC0.
7291
7292 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
7293
7294         getdate: correctly interpret "next monday" when run on a Monday
7295         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
7296         that e.g., "next tues" (when run on a tuesday) results in a date
7297         that is one week in the future, and not today's date.
7298         I.e., add a week when the wday is the same as the current one.
7299         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
7300         and earlier by Martin Bernreuther and Jan Minář.
7301         * tests/test-getdate.c (main): Check that "next DAY" is always in
7302         the future and that "last DAY" is always in the past.
7303
7304 2009-05-02  Jim Meyering  <meyering@redhat.com>
7305
7306         build: ensure that a release build fails when a submodule is unclean
7307         * top/maint.mk (no-submodule-changes): New rule.
7308         (alpha beta major): Depend on it.
7309
7310 2009-05-02  Bruno Haible  <bruno@clisp.org>
7311
7312         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
7313         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
7314         shell variable gl_fnmatch_required to detect which variant is
7315         requested.
7316         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
7317         gl_FUNC_FNMATCH_POSIX.
7318         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
7319         exclude fnmatch-posix.
7320
7321 2009-05-02  Bruno Haible  <bruno@clisp.org>
7322
7323         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
7324         * modules/mbsrtowcs (License): Change to LGPLv2+.
7325         * modules/strnlen1 (License): Likewise.
7326         Reported by Simon Josefsson.
7327
7328 2009-05-02  Bruno Haible  <bruno@clisp.org>
7329
7330         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
7331         "cross".
7332         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
7333         gnulib-tool was called with option --source-base=lib.
7334
7335 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7336
7337         Use automake *-local hooks without commands, for extensibility.
7338         * modules/localcharset (Makefile.am): Rename install-exec-local
7339         rule to install-exec-localcharset, and make it a prerequisite of
7340         install-exec-local.  Likewise, rename the uninstall-local rule to
7341         uninstall-localcharset, and make it a prerequisite of the former.
7342
7343 2009-05-01  Bruno Haible  <bruno@clisp.org>
7344
7345         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
7346         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
7347         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
7348         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
7349         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
7350         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
7351         m4/locale-zh.m4, m4/codeset.m4.
7352
7353         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
7354         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
7355         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
7356         m4/locale-zh.m4.
7357
7358         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
7359         REPLACE_WCRTOMB if mbstate_t must be replaced.
7360         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
7361         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
7362
7363 2009-05-01  Bruno Haible  <bruno@clisp.org>
7364
7365         Avoid compiler warnings when redefining macros defined by <libintl.h>.
7366         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
7367         dngettext, dcngettext, textdomain, bindtextdomain,
7368         bind_textdomain_codeset): Undefine before redefining.
7369
7370 2009-04-30  Bruno Haible  <bruno@clisp.org>
7371
7372         Fix bug introduced on 2009-04-25.
7373         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
7374         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
7375         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
7376         is defined.
7377         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
7378         is defined.
7379         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
7380         is defined.
7381         Reported by Elbert_Pol <elbert.pol@gmail.com>.
7382
7383 2009-04-28  Bruno Haible  <bruno@clisp.org>
7384
7385         Comment tweaks.
7386         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
7387         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
7388         * lib/unicase.h (u*_casexfrm): Likewise.
7389         Reported by Paolo Bonzini.
7390
7391 2009-04-28  Bruno Haible  <bruno@clisp.org>
7392
7393         Fix a compilation error.
7394         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
7395         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
7396         Reported by Jim Meyering.
7397
7398 2009-04-27  Bruno Haible  <bruno@clisp.org>
7399
7400         New module 'libunistring'.
7401         * modules/libunistring: New file.
7402         * m4/libunistring.m4: New file.
7403         * MODULES.html.sh (Unicode string functions): Add it.
7404
7405 2009-04-27  Eric Blake  <ebb9@byu.net>
7406
7407         maint.mk: allow package-specific header to provide <config.h>
7408         * top/maint.mk (sc_require_config_h): New variable.
7409         (sc_require_config_h, sc_require_config_h_first): Use it.
7410
7411 2009-04-27  Simon Josefsson  <simon@josefsson.org>
7412
7413         * top/maint.mk (sc_avoid_if_before_free): Except
7414         useless-if-before-free script.
7415
7416 2009-04-27  Eric Blake  <ebb9@byu.net>
7417
7418         maintainer-makefile: depend on all required helper scripts
7419         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
7420         useless-if-before-free.
7421         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
7422         version, rather than assuming gnulib checkout is available.
7423         Reported by Simen Josefsson.
7424
7425 2009-04-26  Bruno Haible  <bruno@clisp.org>
7426
7427         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
7428         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
7429         "../" or "..".
7430
7431 2009-04-26  Bruno Haible  <bruno@clisp.org>
7432
7433         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
7434         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
7435         AC_LIB_HAVE_LINKFLAGS.
7436
7437 2009-04-26  Bruno Haible  <bruno@clisp.org>
7438
7439         Simplify calling convention of u*_conv_from_encoding.
7440         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
7441         u32_conv_from_encoding): Expect a resultbuf argument and return the
7442         result directly as a pointer.
7443         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
7444         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
7445         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
7446         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
7447         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
7448         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
7449         Update.
7450         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
7451         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
7452         * lib/vasnprintf.c (VASNPRINTF): Update.
7453         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
7454         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
7455         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
7456         * NEWS: Mention the change.
7457
7458 2009-04-26  Bruno Haible  <bruno@clisp.org>
7459
7460         Simplify calling convention of u*_conv_to_encoding.
7461         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
7462         u32_conv_to_encoding): Expect a resultbuf argument and return the
7463         result directly as a pointer.
7464         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
7465         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
7466         freeing scaled_offsets if mem_iconveha failed.
7467         * lib/unicase/u-casexfrm.h (FUNC): Update.
7468         * lib/uninorm/u-normxfrm.h (FUNC): Update.
7469         * lib/vasnprintf.c (VASNPRINTF): Update.
7470         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
7471         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
7472         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
7473         * NEWS: Mention the change.
7474
7475 2009-04-26  Bruno Haible  <bruno@clisp.org>
7476
7477         Avoid test failures on AIX and OSF/1.
7478         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
7479         malloc(0).
7480         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
7481         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
7482         Likewise.
7483         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
7484         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
7485         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
7486         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
7487         * doc/posix-functions/malloc.texi: Document the portability problem
7488         related to malloc(0).
7489
7490 2009-04-26  Bruno Haible  <bruno@clisp.org>
7491
7492         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
7493         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
7494         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
7495
7496 2009-04-25  Bruno Haible  <bruno@clisp.org>
7497
7498         Avoid link error when creating a namespace clean library.
7499         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
7500         as macro with arguments if already defined as an alias.
7501         * lib/signbitf.c (gl_signbitf): Don't undefine.
7502         * lib/signbitd.c (gl_signbitd): Don't undefine.
7503         * lib/signbitl.c (gl_signbitl): Don't undefine.
7504
7505 2009-04-25  Jim Meyering  <meyering@redhat.com>
7506
7507         vc-list-files: fix another quoting bug
7508         * build-aux/vc-list-files: Avoid sed backslash expansion
7509         of pathological directory names.
7510
7511 2009-04-25  Eric Blake  <ebb9@byu.net>
7512
7513         vc-list-files: fix shell quoting error
7514         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
7515         timestamp.
7516
7517 2009-04-25  Jim Meyering  <meyering@redhat.com>
7518
7519         vc-list-files: restore lost functionality with subdir argument
7520         * build-aux/vc-list-files: When given a non-"." sub-directory
7521         argument, substitute the $dir/ prefix back onto each resulting name.
7522         Otherwise, coreutils' root_tests check would fail.
7523
7524 2009-04-24  Eric Blake  <ebb9@byu.net>
7525
7526         vc-list-files: ignore git symlinks
7527         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
7528         than ls-files, to ignore git symlinks.
7529
7530         maint.mk: import improvements from m4
7531         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
7532         (move_if_change): Delete unused macro.
7533         (news-date-check, vc-diff-check): Support VPATH builds.
7534         (announcement): Likewise.  Split --bootstrap-tools list...
7535         (boostrap-tools): ...into separate list, which can be overridden
7536         in cfg.mk.
7537         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
7538         requiring dependency on useless-if-before-free module.
7539         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
7540         Support VPATH builds.
7541
7542 2009-04-24  Jim Meyering  <meyering@redhat.com>
7543
7544         maint.mk: remove coreutils-specific rules and variables
7545         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
7546         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
7547         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
7548
7549         maint.mk: remove obsolete rule
7550         * top/maint.mk (rel-check): Remove rule.
7551         (WGET, WGETFLAGS): Remove now-unused variables.
7552
7553 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7554
7555         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
7556         consistency.
7557
7558         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
7559         '$(PATH_SEPARATOR)' instead of ':'.
7560
7561 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7562
7563         * lib/getopt1.c (main): Use 'const' for static array.
7564
7565 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7566
7567         * top/maint.mk: Sync with coreutils.
7568         * NEWS: Explain incompatibilities.
7569
7570 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7571             Bruno Haible  <bruno@clisp.org>
7572
7573         Fix cross-compilation results.
7574         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
7575         statement, as third argument of AC_TRY_RUN.
7576         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
7577         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
7578         Likewise.
7579         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
7580         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
7581         Likewise.
7582         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
7583         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
7584         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
7585
7586 2009-04-20  Bruno Haible  <bruno@clisp.org>
7587
7588         Avoid test failure on mingw.
7589         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
7590
7591 2009-04-20  Bruno Haible  <bruno@clisp.org>
7592
7593         Avoid compilation error on mingw.
7594         * modules/localename-tests (Depends-on): Add locale.
7595
7596 2009-04-19  Bruno Haible  <bruno@clisp.org>
7597
7598         Support for building a shared library on Windows platforms.
7599         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
7600         (main): Test the presence of UNINORM_NFC here.
7601         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
7602         (main): Test the presence of UNINORM_NFD here.
7603         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
7604         (main): Test the presence of UNINORM_NFKC here.
7605         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
7606         (main): Test the presence of UNINORM_NFKD here.
7607
7608 2009-04-19  Bruno Haible  <bruno@clisp.org>
7609
7610         Avoid a compiler warning.
7611         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
7612         Change type of variable 'sequence'.
7613
7614 2009-04-19  Bruno Haible  <bruno@clisp.org>
7615
7616         * modules/configmake (Makefile.am): When the contents of configmake.h
7617         does not change, arrange to preserve its modification time.
7618
7619 2009-04-17  Simon Josefsson  <simon@josefsson.org>
7620
7621         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
7622         gettext domain.
7623
7624 2009-04-16  Jim Meyering  <meyering@redhat.com>
7625
7626         useless-if-before-free: improve conversion code
7627         * build-aux/useless-if-before-free: Adjust code-in-comment to match
7628         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
7629
7630 2009-04-14  Bruno Haible  <bruno@clisp.org>
7631
7632         * modules/fcntl (Depends-on): Add extensions.
7633         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
7634
7635 2009-04-12  Ben Pfaff  <blp@gnu.org>
7636
7637         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
7638         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
7639
7640 2009-03-20  Ben Pfaff  <blp@gnu.org>
7641
7642         Make rename replace existing destinations on Windows.
7643         * m4/rename.m4: Add test for Mingw.
7644         * lib/rename.c: Add rename replacement that uses MoveFileEx with
7645         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
7646         * doc/posix-functions/rename.texi: Document.
7647
7648 2009-04-10  Bruno Haible  <bruno@clisp.org>
7649
7650         New include file "iconveh.h".
7651         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
7652         * lib/striconveh.h: Include it.
7653         (enum iconv_ilseq_handler): Remove definition.
7654         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
7655         striconveh.h.
7656         * lib/striconveha.c: Include striconveh.h.
7657         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
7658         * modules/striconveh (Files): Add lib/iconveh.h.
7659         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
7660         lib/striconveh.h.
7661
7662 2009-04-10  Bruno Haible  <bruno@clisp.org>
7663
7664         * lib/uniconv.h: Update comment.
7665
7666 2009-04-10  Bruno Haible  <bruno@clisp.org>
7667
7668         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
7669         always.
7670         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
7671         * lib/unistr/u16-mbtouc-aux.c: Likewise.
7672         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
7673         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
7674         "unistring-notinline.h", so that the function gets defined always.
7675         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
7676         * lib/unistr/u8-uctomb.c: Likewise.
7677         * lib/unistr/u16-mbtouc.c: Likewise.
7678         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
7679         * lib/unistr/u16-uctomb.c: Likewise.
7680         * lib/unistr/u32-mbtouc.c: Likewise.
7681         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
7682         * lib/unistr/u32-uctomb.c: Likewise.
7683
7684 2009-04-10  Bruno Haible  <bruno@clisp.org>
7685
7686         Mark 'utime' obsolete.
7687         * modules/utime (Status, Notice): New sections.
7688         Suggested by Jim Meyering.
7689
7690         Fix cross-compile guess for utime test.
7691         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
7692         autoconf.
7693         * doc/posix-functions/utime.texi: Give more precisions.
7694         Reported by Jan <ipif@ymail.com>.
7695
7696 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
7697
7698         filevercmp: correct today's change
7699         * lib/filevercmp.c: Also handle coreutils' test inputs.
7700         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
7701
7702         Fix regression in 'filevercmp' module. Thanks Sven Joachim
7703         for reporting it.
7704         * lib/filevercmp.c: Special handle for "", "." and "..".
7705         * tests/test-filevercmp.c: Enlarge the set suite.
7706
7707 2009-04-07  Jim Meyering  <meyering@redhat.com>
7708
7709         useless-if-before-free: show how to remove braced useless free, too
7710         * build-aux/useless-if-before-free: still only in a comment, though.
7711
7712 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
7713
7714         maint.mk: import changes to syntax-check macros from coreutils
7715         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
7716         Use them in the relevant macros.
7717
7718 2009-04-06  Bruno Haible  <bruno@clisp.org>
7719
7720         Fix unportable use of bit-fields.
7721         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
7722         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
7723         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
7724
7725 2009-04-06  Bruno Haible  <bruno@clisp.org>
7726
7727         Avoid test failures on AIX and OSF/1.
7728         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
7729         that malloc(0) = NULL.
7730         * tests/unicase/test-u8-tolower.c (check): Likewise.
7731         * tests/unicase/test-u8-totitle.c (check): Likewise.
7732         * tests/unicase/test-u8-toupper.c (check): Likewise.
7733         * tests/unicase/test-u16-casefold.c (check): Likewise.
7734         * tests/unicase/test-u16-tolower.c (check): Likewise.
7735         * tests/unicase/test-u16-totitle.c (check): Likewise.
7736         * tests/unicase/test-u16-toupper.c (check): Likewise.
7737         * tests/unicase/test-u32-casefold.c (check): Likewise.
7738         * tests/unicase/test-u32-tolower.c (check): Likewise.
7739         * tests/unicase/test-u32-totitle.c (check): Likewise.
7740         * tests/unicase/test-u32-toupper.c (check): Likewise.
7741         * tests/uninorm/test-u8-nfc.c (check): Likewise.
7742         * tests/uninorm/test-u8-nfd.c (check): Likewise.
7743         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
7744         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
7745         * tests/uninorm/test-u16-nfc.c (check): Likewise.
7746         * tests/uninorm/test-u16-nfd.c (check): Likewise.
7747         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
7748         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
7749         * tests/uninorm/test-u32-nfc.c (check): Likewise.
7750         * tests/uninorm/test-u32-nfd.c (check): Likewise.
7751         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
7752         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
7753
7754 2009-04-05  Bruno Haible  <bruno@clisp.org>
7755
7756         Work around an autoconf limitation.
7757         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
7758         comment line if it would be longer than 3 KB.
7759
7760 2009-04-05  Bruno Haible  <bruno@clisp.org>
7761
7762         Avoid test failure with libiconv-1.13.
7763         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
7764         of the expected test results.
7765
7766 2009-04-05  Bruno Haible  <bruno@clisp.org>
7767
7768         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
7769         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
7770         that it should be installed.
7771
7772 2009-04-05  Bruno Haible  <bruno@clisp.org>
7773
7774         * gnulib-tool: New option --copy-file.
7775         (func_usage): Document it.
7776         (func_dest_tmpfilename): Moved out of func_import.
7777         (func_add_file, func_update_file): New functions, extracted from
7778         func_import.
7779         (func_import): Update.
7780
7781 2009-04-05  Karl Berry  <karl@gnu.org>
7782
7783         * README: prominently mention gnulib-tool.
7784         Rearrange sections so getting the code is near the top.
7785
7786 2009-04-05  Bruno Haible  <bruno@clisp.org>
7787
7788         * lib/unicase.h: Mention u*_cmp2.
7789         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
7790         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
7791         * lib/unicase/ulc-casecmp.c: Likewise.
7792         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
7793         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
7794         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
7795         unistr/u8-cmp.
7796         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
7797         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
7798         unistr/u16-cmp.
7799         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
7800         unistr/u32-cmp.
7801
7802         * lib/uninorm.h: Mention u*_cmp2.
7803         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
7804         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
7805         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
7806         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
7807         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
7808         unistr/u8-cmp.
7809         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
7810         unistr/u16-cmp.
7811         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
7812         unistr/u32-cmp.
7813
7814         New module 'unistr/u32-cmp2'.
7815         * lib/unistr/u32-cmp2.c: New file.
7816         * modules/unistr/u32-cmp2: New file.
7817
7818         New module 'unistr/u16-cmp2'.
7819         * lib/unistr/u16-cmp2.c: New file.
7820         * modules/unistr/u16-cmp2: New file.
7821
7822         New module 'unistr/u8-cmp2'.
7823         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
7824         * lib/unistr/u8-cmp2.c: New file.
7825         * lib/unistr/u-cmp2.h: New file.
7826         * modules/unistr/u8-cmp2: New file.
7827
7828 2009-04-05  Bruno Haible  <bruno@clisp.org>
7829
7830         * lib/unictype.h (uc_property_is_valid): New macro.
7831         * tests/unictype/test-pr_byname.c (main): Use it.
7832
7833         * lib/unistr.h: Doc fixes.
7834         * lib/uniconv.h: Doc fixes.
7835         * lib/unictype.h: Doc fixes.
7836
7837 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
7838
7839         Port coreutils 7.2 to Solaris 8.
7840
7841         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
7842         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
7843         for Solaris 8.  This is a bit of a hack, as it means it's the
7844         caller's responsibility to add -lnsl if needed, but most likely it
7845         won't be needed since only getaddrinfo uses this and getaddrinfo
7846         isn't needed on Solaris 8.
7847
7848         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
7849         problem to Solaris 8 encountered with coreutils 7.2, which
7850         resulted in a message "fnmatch.c:292: warning: passing argument 4
7851         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
7852         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
7853
7854 2009-04-03  Simon Josefsson  <simon@josefsson.org>
7855
7856         * m4/ld-version-script.m4: Add FIXME comment.
7857
7858 2009-04-02  Simon Josefsson  <simon@josefsson.org>
7859
7860         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
7861         SOVERSION variable.
7862
7863 2009-04-02  Bruno Haible  <bruno@clisp.org>
7864
7865         * Makefile (info, html, dvi, pdf): Combine the rules.
7866         Suggested by Jim Meyering.
7867
7868 2009-04-01  Bruno Haible  <bruno@clisp.org>
7869
7870         * Makefile (info, html, dvi, pdf): New targets.
7871         Reported by Reuben Thomas <rrt@sc3d.org>.
7872
7873 2009-04-01  Bruno Haible  <bruno@clisp.org>
7874
7875         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
7876         can be put into PATH.
7877         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
7878
7879 2009-04-01  Bruno Haible  <bruno@clisp.org>
7880
7881         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
7882
7883 2009-04-01  Bruno Haible  <bruno@clisp.org>
7884
7885         Rename module 'visibility'.
7886         * modules/lib-symbol-visibility: Renamed from modules/visibility.
7887         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
7888         * doc/gnulib.texi: Update.
7889         * MODULES.html.sh (Misc): Update.
7890         * NEWS: Mention the change.
7891
7892 2009-04-01  Simon Josefsson  <simon@josefsson.org>
7893
7894         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
7895         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
7896         Eric Blake <ebb9@byu.net> for review.
7897         * MODULES.html.sh: Add lib-msvc-compat.
7898         * doc/gnulib.texi: Link to new section.
7899         * m4/ld-output-def.m4: New file.
7900         * doc/ld-output-def.texi: New file.
7901
7902 2009-04-01  Simon Josefsson  <simon@josefsson.org>
7903
7904         Rename ld-version-script to lib-symbol-versions.  Suggested by
7905         Bruno Haible <bruno@clisp.org>.
7906         * modules/ld-version-script: Renamed to lib-symbol-versions.
7907         * doc/ld-version-script.texi: Fix module name.
7908         * MODULES.html.sh: Add lib-symbol-versions.
7909
7910 2009-03-31  Simon Josefsson  <simon@josefsson.org>
7911
7912         * modules/u64-tests: New file.
7913         * tests/test-u64.c: New file.
7914
7915 2009-03-04  Simon Josefsson  <simon@josefsson.org>
7916
7917         * MODULES.html.sh: Mention u64.
7918         * modules/u64: New module.
7919         * modules/crypto/sha512: Depend on u64 module instead of providing
7920         u64.h.
7921
7922 2009-03-27  Eric Blake  <ebb9@byu.net>
7923
7924         test-strerror: make debugging EAI_SYSTEM easier
7925         * modules/getaddrinfo-tests (Depends-on): Add strerror.
7926         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
7927         failure was EAI_SYSTEM.
7928
7929 2009-03-25  Bruno Haible  <bruno@clisp.org>
7930
7931         Fix a problem with --enable-relocatable on Solaris 7.
7932         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
7933         since 2008-02-24.
7934
7935 2009-03-25  Eric Blake  <ebb9@byu.net>
7936
7937         test-sockets: avoid gcc warning
7938         * tests/test-sockets.c (main): Silence compiler warning.
7939
7940 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
7941
7942         New modules nproc, pthread, contributed by Glen Lenker.
7943
7944         * MODULES.html.sh: Add pthread, nproc.
7945         * lib/nproc.c: New file.
7946         * lib/nproc.h: New file.
7947         * lib/pthread.in.h: New file.
7948         * m4/pthread.m4: New file.
7949         * modules/nproc: New file.
7950         * modules/pthread: New file.
7951
7952 2009-03-24  Simon Josefsson  <simon@josefsson.org>
7953
7954         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
7955         New variable.
7956
7957 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
7958
7959         filevercmp: handle simple~ and numbered.~3~ backup suffixes
7960         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
7961         * tests/test-filevercmp.c: Add tests for backup suffixes.
7962
7963 2009-03-24  Simon Josefsson  <simon@josefsson.org>
7964
7965         * modules/stdlib (Depends-on): Add stdint, needed when defining
7966         struct random_data on, for example, HP-UX 10.20.  Reported by
7967         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
7968
7969 2009-03-24  Simon Josefsson  <simon@josefsson.org>
7970
7971         * lib/readline.c (readline): Call fflush on stdout after printing
7972         prompt.
7973
7974 2009-03-20  Bruno Haible  <bruno@clisp.org>
7975
7976         Remove dependency from 'close' module to -lws2_32 on native Windows.
7977         * lib/close-hook.h: New file.
7978         * lib/close-hook.c: New file.
7979         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
7980         w32sock.h.
7981         (_gl_close_fd_maybe_socket): Remove function.
7982         (rpl_close): Invoke execute_all_close_hooks instead of
7983         _gl_close_fd_maybe_socket.
7984         * lib/sockets.c: Include close-hook.h, w32sock.h.
7985         (close_fd_maybe_socket): New function, essentially from lib/close.c.
7986         (close_sockets_hook): New variable.
7987         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
7988         (gl_sockets_cleanup): Unregister it.
7989         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
7990         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
7991         * modules/close-hook: New file.
7992         * modules/close (Files): Remove lib/w32sock.h.
7993         (Depends-on): Add close-hook.
7994         (Link): Remove section.
7995         * modules/sockets (Files): Add lib/w32sock.h.
7996         (Depends-on): Add close-hook.
7997         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
7998         invocation.
7999         * NEWS: Mention that LIB_CLOSE is gone.
8000
8001 2009-03-23  Eric Blake  <ebb9@byu.net>
8002
8003         signal-tests: test previous patch
8004         * tests/test-signal.c: New file.
8005         * modules/signal-tests: Likewise.
8006
8007         signal.h: always support 'volatile sig_atomic_t'
8008         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
8009         (gl_SIGNAL_H_DEFAULTS): Add a default.
8010         * modules/signal (Makefile.am): Substitute if needed.
8011         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
8012         users can blindly add volatile.
8013         * doc/posix-headers/signal.texi (signal.h): Document it.
8014         Reported by Matthew Woehlke.
8015
8016 2009-03-23  Jim Meyering  <meyering@redhat.com>
8017
8018         pathmax: PATH_MAX: use pathconf only when available
8019         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
8020         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
8021         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
8022         This avoids a link failure in a PSP cross-compilation environment
8023         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
8024
8025         * lib/vasnprintf.c (divide): Fix typo in comment.
8026
8027 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8028
8029         * gnulib-tool (func_filter_filelist): Fix comment.
8030
8031 2009-03-20  Bruno Haible  <bruno@clisp.org>
8032
8033         Make sockets.h self-contained.
8034         * lib/sockets.c: Include sockets.h first.
8035         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
8036
8037 2009-03-19  Eric Blake  <ebb9@byu.net>
8038
8039         doc: mention more functions added in cygwin 1.7.0
8040         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
8041         addition.
8042         * doc/posix-functions/log2f.texi: Likewise.
8043
8044 2009-03-19  Jim Meyering  <meyering@redhat.com>
8045
8046         fsusage: avoid syntax error due to statement-before-declaration
8047         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
8048         after all declarations.  Reported by Matthew Woehlke in
8049         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
8050
8051 2009-03-18  Eric Blake  <ebb9@byu.net>
8052
8053         build-aux/compile: sync from automake
8054         * build-aux/compile: New file, from automake.
8055         * config/srclist.txt: Mention build-aux/compile.
8056
8057 2009-03-17  Bruno Haible  <bruno@clisp.org>
8058
8059         * lib/git-merge-changelog.c: Fix typo in comment.
8060         Reported by Reuben Thomas <rrt@sc3d.org>.
8061
8062 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
8063
8064         * m4/regex.m4: update and improve help for
8065         --without-included-regex.
8066
8067 2009-03-17  Simon Josefsson  <simon@josefsson.org>
8068
8069         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
8070         failure on missing include files.
8071
8072 2009-03-17  Eric Blake  <ebb9@byu.net>
8073
8074         doc: mention more functions added in cygwin 1.7.0
8075         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
8076         addition.
8077         * doc/posix-functions/fwscanf.texi: Likewise.
8078         * doc/posix-functions/swprintf.texi: Likewise.
8079         * doc/posix-functions/swscanf.texi: Likewise.
8080         * doc/posix-functions/vfwprintf.texi: Likewise.
8081         * doc/posix-functions/vfwscanf.texi: Likewise.
8082         * doc/posix-functions/vswprintf.texi: Likewise.
8083         * doc/posix-functions/vswscanf.texi: Likewise.
8084         * doc/posix-functions/vwprintf.texi: Likewise.
8085         * doc/posix-functions/vwscanf.texi: Likewise.
8086         * doc/posix-functions/wcscasecmp.texi: Likewise.
8087         * doc/posix-functions/wcsdup.texi: Likewise.
8088         * doc/posix-functions/wcsftime.texi: Likewise.
8089         * doc/posix-functions/wcsncasecmp.texi: Likewise.
8090         * doc/posix-functions/wprintf.texi: Likewise.
8091         * doc/posix-functions/wscanf.texi: Likewise.
8092         * doc/glibc-functions/gethostbyname2.texi: Likewise.
8093
8094 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8095
8096         maint.mk: really add $(AM_MAKEFLAGS)
8097         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
8098         was inadvertently omitted in the last commit.
8099         Spotted by Bruno Haible.
8100
8101         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
8102         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
8103         $(AM_MAKEFLAGS)' rather than plain `make'.
8104
8105         gnulib-tool: execute $MAKE not make
8106         * gnulib-tool: Default $MAKE to 'make'.
8107         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
8108         than make.  Initialize $MAKE in the do-autobuild script.
8109
8110         gnulib-tool: use $MAKE not make in generated files
8111         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
8112         make, in generated files.  Initialize $MAKE in the do-autobuild
8113         script.
8114
8115         * top/GNUmakefile (_have-git-version-gen): Fix typo.
8116
8117         GNUmakefile: disable parallelism only for multiple, recursive targets
8118         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
8119         additions in the Makefile.
8120         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
8121         by Automake.
8122         (.NOTPARALLEL): Only disable parallel builds if multiple targets
8123         are listed on the command line and at least one of them is
8124         listed in $(ALL_RECURSIVE_TARGETS).
8125
8126 2009-03-14  Bruno Haible  <bruno@clisp.org>
8127
8128         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
8129         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
8130         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
8131         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
8132         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
8133         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
8134         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
8135         unistr/u8-uctomb.
8136         * modules/unistr/u8-strchr (Depends-on): Likewise.
8137         * modules/unistr/u8-strrchr (Depends-on): Likewise.
8138         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
8139         unistr/u16-uctomb.
8140         * modules/unistr/u16-strchr (Depends-on): Likewise.
8141         * modules/unistr/u16-strrchr (Depends-on): Likewise.
8142
8143 2009-03-12  Bruno Haible  <bruno@clisp.org>
8144
8145         Work around select() bug on Interix 3.5.
8146         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
8147         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
8148         * m4/select.m4: New file.
8149         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
8150         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
8151         * modules/select (Files): Add m4/select.m4.
8152         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
8153         * modules/nanosleep (Depends-on): Add select.
8154         * modules/poll (Depends-on): Likewise.
8155         * doc/posix-functions/select.texi: Mention the Interix bug.
8156         Reported by Markus Duft <mduft@gentoo.org>.
8157
8158         * lib/select.c: Renamed from lib/winsock-select.c.
8159         * modules/select (Files): Add lib/select.c, remove
8160         lib/winsock-select.c.
8161         (configure.ac): Update.
8162
8163 2009-03-12  Jim Meyering  <meyering@redhat.com>
8164
8165         avoid gcc warnings about unused macro definitions
8166         * lib/readtokens.c (STREQ): Remove unused definition.
8167         * lib/xmalloc.c (SIZE_MAX): Likewise.
8168         * lib/openat-die.c (N_): Likewise.
8169         * lib/mountlist.c (SIZE_MAX): Remove definition.
8170         Instead, include <stdint.h>.
8171         * lib/readutmp.c: Likewise.
8172         * modules/readutmp (Depends-on): Add stdint.
8173         * modules/mountlist (Depends-on): Add stdint.
8174         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
8175
8176 2009-03-10  Bruno Haible  <bruno@clisp.org>
8177
8178         Tests for module 'mbmemcasecoll'.
8179         * modules/mbmemcasecoll-tests: New file.
8180         * tests/test-mbmemcasecoll1.sh: New file.
8181         * tests/test-mbmemcasecoll2.sh: New file.
8182         * tests/test-mbmemcasecoll3.sh: New file.
8183         * tests/test-mbmemcasecoll.c: New file.
8184
8185         New module 'mbmemcasecoll'.
8186         * lib/mbmemcasecoll.h: New file.
8187         * lib/mbmemcasecoll.c: New file.
8188         * modules/mbmemcasecoll: New file.
8189
8190         * tests/test-mbmemcasecmp.h: New file, extracted from
8191         tests/test-mbmemcasecmp.c.
8192         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
8193         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
8194         (main): Update.
8195         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
8196
8197 2009-03-09  Bruno Haible  <bruno@clisp.org>
8198
8199         Tests for module 'mbmemcasecmp'.
8200         * modules/mbmemcasecmp-tests: New file.
8201         * tests/test-mbmemcasecmp1.sh: New file.
8202         * tests/test-mbmemcasecmp2.sh: New file.
8203         * tests/test-mbmemcasecmp3.sh: New file.
8204         * tests/test-mbmemcasecmp.c: New file.
8205
8206         New module 'mbmemcasecmp'.
8207         * lib/mbmemcasecmp.h: New file.
8208         * lib/mbmemcasecmp.c: New file.
8209         * modules/mbmemcasecmp: New file.
8210
8211 2009-03-09  Bruno Haible  <bruno@clisp.org>
8212
8213         Tests for module 'unicase/ulc-casecoll'.
8214         * modules/unicase/ulc-casecoll-tests: New file.
8215         * tests/unicase/test-ulc-casecoll1.sh: New file.
8216         * tests/unicase/test-ulc-casecoll2.sh: New file.
8217         * tests/unicase/test-ulc-casecoll.c: New file.
8218
8219         New module 'unicase/ulc-casecoll'.
8220         * lib/unicase.h (ulc_casecoll): New declaration.
8221         * lib/unicase/ulc-casecoll.c: New file.
8222         * modules/unicase/ulc-casecoll: New file.
8223
8224         New module 'unicase/ulc-casexfrm'.
8225         * lib/unicase.h (ulc_casexfrm): New declaration.
8226         * lib/unicase/ulc-casexfrm.c: New file.
8227         * modules/unicase/ulc-casexfrm: New file.
8228
8229 2009-03-09  Bruno Haible  <bruno@clisp.org>
8230
8231         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
8232         invocations.
8233
8234         * m4/mbscasecmp.m4: Remove file.
8235         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
8236         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
8237
8238         * m4/mbscasestr.m4: Remove file.
8239         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
8240         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
8241
8242         * m4/mbschr.m4: Remove file.
8243         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
8244         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
8245
8246         * m4/mbscspn.m4: Remove file.
8247         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
8248         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
8249
8250         * m4/mbslen.m4: Remove file.
8251         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
8252         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
8253
8254         * m4/mbsncasecmp.m4: Remove file.
8255         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
8256         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
8257
8258         * m4/mbsnlen.m4: Remove file.
8259         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
8260         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
8261
8262         * m4/mbspbrk.m4: Remove file.
8263         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
8264         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
8265
8266         * m4/mbspcasecmp.m4: Remove file.
8267         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
8268         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
8269
8270         * m4/mbsrchr.m4: Remove file.
8271         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
8272         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
8273
8274         * m4/mbssep.m4: Remove file.
8275         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
8276         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
8277
8278         * m4/mbsspn.m4: Remove file.
8279         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
8280         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
8281
8282         * m4/mbsstr.m4: Remove file.
8283         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
8284         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
8285
8286         * m4/mbstok_r.m4: Remove file.
8287         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
8288         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
8289
8290         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
8291
8292         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
8293         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
8294
8295         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
8296
8297 2009-03-08  Bruno Haible  <bruno@clisp.org>
8298
8299         Tests for module 'unicase/ulc-casecmp'.
8300         * modules/unicase/ulc-casecmp-tests: New file.
8301         * tests/unicase/test-ulc-casecmp1.sh: New file.
8302         * tests/unicase/test-ulc-casecmp2.sh: New file.
8303         * tests/unicase/test-ulc-casecmp.c: New file.
8304
8305         New module 'unicase/ulc-casecmp'.
8306         * lib/unicase.h (ulc_casecmp): New declaration.
8307         * lib/unicase/ulc-casecmp.c: New file.
8308         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
8309         'const SRC_UNIT *'.
8310         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
8311         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
8312         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
8313         * modules/unicase/ulc-casecmp: New file.
8314
8315         Tests for module 'unicase/u32-is-cased'.
8316         * modules/unicase/u32-is-cased-tests: New file.
8317         * tests/unicase/test-u32-is-cased.c: New file.
8318
8319         Tests for module 'unicase/u16-is-cased'.
8320         * modules/unicase/u16-is-cased-tests: New file.
8321         * tests/unicase/test-u16-is-cased.c: New file.
8322
8323         Tests for module 'unicase/u8-is-cased'.
8324         * modules/unicase/u8-is-cased-tests: New file.
8325         * tests/unicase/test-u8-is-cased.c: New file.
8326         * tests/unicase/test-is-cased.h: New file.
8327
8328         New module 'unicase/u32-is-cased'.
8329         * lib/unicase/u32-is-cased.c: New file.
8330         * modules/unicase/u32-is-cased: New file.
8331
8332         New module 'unicase/u16-is-cased'.
8333         * lib/unicase/u16-is-cased.c: New file.
8334         * modules/unicase/u16-is-cased: New file.
8335
8336         New module 'unicase/u8-is-cased'.
8337         * lib/unicase/u8-is-cased.c: New file.
8338         * lib/unicase/u-is-cased.h: New file.
8339         * modules/unicase/u8-is-cased: New file.
8340
8341         Tests for module 'unicase/u32-is-casefolded'.
8342         * modules/unicase/u32-is-casefolded-tests: New file.
8343         * tests/unicase/test-u32-is-casefolded.c: New file.
8344
8345         Tests for module 'unicase/u16-is-casefolded'.
8346         * modules/unicase/u16-is-casefolded-tests: New file.
8347         * tests/unicase/test-u16-is-casefolded.c: New file.
8348
8349         Tests for module 'unicase/u8-is-casefolded'.
8350         * modules/unicase/u8-is-casefolded-tests: New file.
8351         * tests/unicase/test-u8-is-casefolded.c: New file.
8352         * tests/unicase/test-is-casefolded.h: New file.
8353
8354         New module 'unicase/u32-is-casefolded'.
8355         * lib/unicase/u32-is-casefolded.c: New file.
8356         * modules/unicase/u32-is-casefolded: New file.
8357
8358         New module 'unicase/u16-is-casefolded'.
8359         * lib/unicase/u16-is-casefolded.c: New file.
8360         * modules/unicase/u16-is-casefolded: New file.
8361
8362         New module 'unicase/u8-is-casefolded'.
8363         * lib/unicase/u8-is-casefolded.c: New file.
8364         * modules/unicase/u8-is-casefolded: New file.
8365
8366         Tests for module 'unicase/u32-is-titlecase'.
8367         * modules/unicase/u32-is-titlecase-tests: New file.
8368         * tests/unicase/test-u32-is-titlecase.c: New file.
8369
8370         Tests for module 'unicase/u16-is-titlecase'.
8371         * modules/unicase/u16-is-titlecase-tests: New file.
8372         * tests/unicase/test-u16-is-titlecase.c: New file.
8373
8374         Tests for module 'unicase/u8-is-titlecase'.
8375         * modules/unicase/u8-is-titlecase-tests: New file.
8376         * tests/unicase/test-u8-is-titlecase.c: New file.
8377         * tests/unicase/test-is-titlecase.h: New file.
8378
8379         New module 'unicase/u32-is-titlecase'.
8380         * lib/unicase/u32-is-titlecase.c: New file.
8381         * modules/unicase/u32-is-titlecase: New file.
8382
8383         New module 'unicase/u16-is-titlecase'.
8384         * lib/unicase/u16-is-titlecase.c: New file.
8385         * modules/unicase/u16-is-titlecase: New file.
8386
8387         New module 'unicase/u8-is-titlecase'.
8388         * lib/unicase/u8-is-titlecase.c: New file.
8389         * modules/unicase/u8-is-titlecase: New file.
8390
8391         Tests for module 'unicase/u32-is-lowercase'.
8392         * modules/unicase/u32-is-lowercase-tests: New file.
8393         * tests/unicase/test-u32-is-lowercase.c: New file.
8394
8395         Tests for module 'unicase/u16-is-lowercase'.
8396         * modules/unicase/u16-is-lowercase-tests: New file.
8397         * tests/unicase/test-u16-is-lowercase.c: New file.
8398
8399         Tests for module 'unicase/u8-is-lowercase'.
8400         * modules/unicase/u8-is-lowercase-tests: New file.
8401         * tests/unicase/test-u8-is-lowercase.c: New file.
8402         * tests/unicase/test-is-lowercase.h: New file.
8403
8404         New module 'unicase/u32-is-lowercase'.
8405         * lib/unicase/u32-is-lowercase.c: New file.
8406         * modules/unicase/u32-is-lowercase: New file.
8407
8408         New module 'unicase/u16-is-lowercase'.
8409         * lib/unicase/u16-is-lowercase.c: New file.
8410         * modules/unicase/u16-is-lowercase: New file.
8411
8412         New module 'unicase/u8-is-lowercase'.
8413         * lib/unicase/u8-is-lowercase.c: New file.
8414         * modules/unicase/u8-is-lowercase: New file.
8415
8416         Tests for module 'unicase/u32-is-uppercase'.
8417         * modules/unicase/u32-is-uppercase-tests: New file.
8418         * tests/unicase/test-u32-is-uppercase.c: New file.
8419
8420         Tests for module 'unicase/u16-is-uppercase'.
8421         * modules/unicase/u16-is-uppercase-tests: New file.
8422         * tests/unicase/test-u16-is-uppercase.c: New file.
8423
8424         Tests for module 'unicase/u8-is-uppercase'.
8425         * modules/unicase/u8-is-uppercase-tests: New file.
8426         * tests/unicase/test-u8-is-uppercase.c: New file.
8427         * tests/unicase/test-is-uppercase.h: New file.
8428
8429         New module 'unicase/u32-is-uppercase'.
8430         * lib/unicase/u32-is-uppercase.c: New file.
8431         * modules/unicase/u32-is-uppercase: New file.
8432
8433         New module 'unicase/u16-is-uppercase'.
8434         * lib/unicase/u16-is-uppercase.c: New file.
8435         * modules/unicase/u16-is-uppercase: New file.
8436
8437         New module 'unicase/u8-is-uppercase'.
8438         * lib/unicase/u8-is-uppercase.c: New file.
8439         * modules/unicase/u8-is-uppercase: New file.
8440
8441         New module 'unicase/u32-is-invariant'.
8442         * lib/unicase/u32-is-invariant.c: New file.
8443         * modules/unicase/u32-is-invariant: New file.
8444
8445         New module 'unicase/u16-is-invariant'.
8446         * lib/unicase/u16-is-invariant.c: New file.
8447         * modules/unicase/u16-is-invariant: New file.
8448
8449         New module 'unicase/u8-is-invariant'.
8450         * lib/unicase/u8-is-invariant.c: New file.
8451         * lib/unicase/invariant.h: New file.
8452         * lib/unicase/u-is-invariant.h: New file.
8453         * modules/unicase/u8-is-invariant: New file.
8454
8455         Tests for module 'unicase/u32-casecoll'.
8456         * modules/unicase/u32-casecoll-tests: New file.
8457         * tests/unicase/test-u32-casecoll.c: New file.
8458
8459         Tests for module 'unicase/u16-casecoll'.
8460         * modules/unicase/u16-casecoll-tests: New file.
8461         * tests/unicase/test-u16-casecoll.c: New file.
8462
8463         Tests for module 'unicase/u8-casecoll'.
8464         * modules/unicase/u8-casecoll-tests: New file.
8465         * tests/unicase/test-u8-casecoll.c: New file.
8466
8467         New module 'unicase/u32-casecoll'.
8468         * lib/unicase/u32-casecoll.c: New file.
8469         * modules/unicase/u32-casecoll: New file.
8470
8471         New module 'unicase/u16-casecoll'.
8472         * lib/unicase/u16-casecoll.c: New file.
8473         * modules/unicase/u16-casecoll: New file.
8474
8475         New module 'unicase/u8-casecoll'.
8476         * lib/unicase/u8-casecoll.c: New file.
8477         * lib/unicase/u-casecoll.h: New file.
8478         * modules/unicase/u8-casecoll: New file.
8479
8480         New module 'unicase/u32-casexfrm'.
8481         * lib/unicase/u32-casexfrm.c: New file.
8482         * modules/unicase/u32-casexfrm: New file.
8483
8484         New module 'unicase/u16-casexfrm'.
8485         * lib/unicase/u16-casexfrm.c: New file.
8486         * modules/unicase/u16-casexfrm: New file.
8487
8488         New module 'unicase/u8-casexfrm'.
8489         * lib/unicase/u8-casexfrm.c: New file.
8490         * lib/unicase/u-casexfrm.h: New file.
8491         * modules/unicase/u8-casexfrm: New file.
8492
8493         Tests for module 'unicase/u32-casecmp'.
8494         * modules/unicase/u32-casecmp-tests: New file.
8495         * tests/unicase/test-u32-casecmp.c: New file.
8496
8497         Tests for module 'unicase/u16-casecmp'.
8498         * modules/unicase/u16-casecmp-tests: New file.
8499         * tests/unicase/test-u16-casecmp.c: New file.
8500
8501         Tests for module 'unicase/u8-casecmp'.
8502         * modules/unicase/u8-casecmp-tests: New file.
8503         * tests/unicase/test-u8-casecmp.c: New file.
8504         * tests/unicase/test-casecmp.h: New file.
8505
8506         New module 'unicase/u32-casecmp'.
8507         * lib/unicase/u32-casecmp.c: New file.
8508         * modules/unicase/u32-casecmp: New file.
8509
8510         New module 'unicase/u16-casecmp'.
8511         * lib/unicase/u16-casecmp.c: New file.
8512         * modules/unicase/u16-casecmp: New file.
8513
8514         New module 'unicase/u8-casecmp'.
8515         * lib/unicase/u8-casecmp.c: New file.
8516         * lib/unicase/u-casecmp.h: New file.
8517         * modules/unicase/u8-casecmp: New file.
8518
8519         Tests for module 'unicase/u32-casefold'.
8520         * modules/unicase/u32-casefold-tests: New file.
8521         * tests/unicase/test-u32-casefold.c: New file.
8522
8523         Tests for module 'unicase/u16-casefold'.
8524         * modules/unicase/u16-casefold-tests: New file.
8525         * tests/unicase/test-u16-casefold.c: New file.
8526
8527         Tests for module 'unicase/u8-casefold'.
8528         * modules/unicase/u8-casefold-tests: New file.
8529         * tests/unicase/test-u8-casefold.c: New file.
8530
8531         New module 'unicase/u32-casefold'.
8532         * lib/unicase/u32-casefold.c: New file.
8533         * modules/unicase/u32-casefold: New file.
8534
8535         New module 'unicase/u16-casefold'.
8536         * lib/unicase/u16-casefold.c: New file.
8537         * modules/unicase/u16-casefold: New file.
8538
8539         New module 'unicase/u8-casefold'.
8540         * lib/unicase/u8-casefold.c: New file.
8541         * lib/unicase/u-casefold.h: New file.
8542         * modules/unicase/u8-casefold: New file.
8543
8544         New module 'unicase/tocasefold'.
8545         * lib/unicase/casefold.h: New file.
8546         * lib/unicase/tocasefold.c: New file.
8547         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
8548         * modules/unicase/tocasefold: New file.
8549
8550         Tests for module 'unicase/u32-totitle'.
8551         * modules/unicase/u32-totitle-tests: New file.
8552         * tests/unicase/test-u32-totitle.c: New file.
8553
8554         Tests for module 'unicase/u16-totitle'.
8555         * modules/unicase/u16-totitle-tests: New file.
8556         * tests/unicase/test-u16-totitle.c: New file.
8557
8558         Tests for module 'unicase/u8-totitle'.
8559         * modules/unicase/u8-totitle-tests: New file.
8560         * tests/unicase/test-u8-totitle.c: New file.
8561
8562         New module 'unicase/u32-totitle'.
8563         * lib/unicase/u32-totitle.c: New file.
8564         * modules/unicase/u32-totitle: New file.
8565
8566         New module 'unicase/u16-totitle'.
8567         * lib/unicase/u16-totitle.c: New file.
8568         * modules/unicase/u16-totitle: New file.
8569
8570         New module 'unicase/u8-totitle'.
8571         * lib/unicase/u8-totitle.c: New file.
8572         * lib/unicase/u-totitle.h: New file.
8573         * modules/unicase/u8-totitle: New file.
8574
8575         Tests for module 'unicase/u32-tolower'.
8576         * modules/unicase/u32-tolower-tests: New file.
8577         * tests/unicase/test-u32-tolower.c: New file.
8578
8579         Tests for module 'unicase/u16-tolower'.
8580         * modules/unicase/u16-tolower-tests: New file.
8581         * tests/unicase/test-u16-tolower.c: New file.
8582
8583         Tests for module 'unicase/u8-tolower'.
8584         * modules/unicase/u8-tolower-tests: New file.
8585         * tests/unicase/test-u8-tolower.c: New file.
8586
8587         New module 'unicase/u32-tolower'.
8588         * lib/unicase/u32-tolower.c: New file.
8589         * modules/unicase/u32-tolower: New file.
8590
8591         New module 'unicase/u16-tolower'.
8592         * lib/unicase/u16-tolower.c: New file.
8593         * modules/unicase/u16-tolower: New file.
8594
8595         New module 'unicase/u8-tolower'.
8596         * lib/unicase/u8-tolower.c: New file.
8597         * modules/unicase/u8-tolower: New file.
8598
8599         Tests for module 'unicase/u32-toupper'.
8600         * modules/unicase/u32-toupper-tests: New file.
8601         * tests/unicase/test-u32-toupper.c: New file.
8602
8603         Tests for module 'unicase/u16-toupper'.
8604         * modules/unicase/u16-toupper-tests: New file.
8605         * tests/unicase/test-u16-toupper.c: New file.
8606
8607         Tests for module 'unicase/u8-toupper'.
8608         * modules/unicase/u8-toupper-tests: New file.
8609         * tests/unicase/test-u8-toupper.c: New file.
8610
8611         New module 'unicase/u32-toupper'.
8612         * lib/unicase/u32-toupper.c: New file.
8613         * modules/unicase/u32-toupper: New file.
8614
8615         New module 'unicase/u16-toupper'.
8616         * lib/unicase/u16-toupper.c: New file.
8617         * modules/unicase/u16-toupper: New file.
8618
8619         New module 'unicase/u8-toupper'.
8620         * lib/unicase/u8-toupper.c: New file.
8621         * modules/unicase/u8-toupper: New file.
8622
8623         New module 'unicase/u32-casemap'.
8624         * lib/unicase/u32-casemap.c: New file.
8625         * modules/unicase/u32-casemap: New file.
8626
8627         New module 'unicase/u16-casemap'.
8628         * lib/unicase/u16-casemap.c: New file.
8629         * modules/unicase/u16-casemap: New file.
8630
8631         New module 'unicase/u8-casemap'.
8632         * lib/unicase/unicasemap.h: New file.
8633         * lib/unicase/u8-casemap.c: New file.
8634         * lib/unicase/u-casemap.h: New file.
8635         * modules/unicase/u8-casemap: New file.
8636
8637         New module 'unicase/special-casing'.
8638         * lib/unicase/special-casing.h: New file.
8639         * lib/unicase/special-casing.c: New file.
8640         * lib/unicase/special-casing-table.gperf: New file, generated by
8641         gen-uni-tables.c.
8642         * modules/unicase/special-casing: New file.
8643
8644         Tests for module 'unicase/locale-language'.
8645         * modules/unicase/locale-language-tests: New file.
8646         * tests/unicase/test-locale-language.sh: New file.
8647         * tests/unicase/test-locale-language.c: New file.
8648
8649         New module 'unicase/locale-language'.
8650         * lib/unicase/locale-language.c: New file.
8651         * lib/unicase/locale-languages.gperf: New file.
8652         * modules/unicase/locale-language: New file.
8653
8654         Generate more tables for case conversion and case folding.
8655         * lib/gen-uni-tables.c (SCC_*): New enum items.
8656         (struct special_casing_rule): New type.
8657         (casing_rules, num_casing_rules, allocated_casing_rules): New
8658         variables.
8659         (add_casing_rule, fill_casing_rules): New functions.
8660         (struct casefold_rule): New type.
8661         (casefolding_rules, num_casefolding_rules,
8662         allocated_casefolding_rules): New variables.
8663         (fill_casefolding_rules): New function.
8664         (unicode_casefold): New variable.
8665         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
8666         sort_casing_rules, output_casing_rules): New functions.
8667         (main): Accept to more arguments: SpecialCasing.txt and
8668         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
8669         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
8670         Output mapping for casefolding.
8671
8672         * lib/unicase.h: Include stdbool.h, uninorm.h.
8673         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
8674         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
8675         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
8676         arguments.
8677         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
8678         resultp arguments.
8679         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
8680         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
8681         resultp arguments.
8682         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
8683         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
8684         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
8685         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
8686         declarations.
8687         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
8688
8689 2009-03-08  Bruno Haible  <bruno@clisp.org>
8690
8691         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
8692         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
8693         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
8694         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
8695
8696 2009-03-07  Bruno Haible  <bruno@clisp.org>
8697
8698         Adjust u*_normcmp, u*_normcoll API.
8699         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
8700         u16_normcoll, u32_normcoll): Change failure conventions.
8701         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
8702         errno and return -1.
8703         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
8704
8705 2009-03-07  Bruno Haible  <bruno@clisp.org>
8706
8707         Tests for module 'uninorm/u32-normcoll'.
8708         * modules/uninorm/u32-normcoll-tests: New file.
8709         * tests/uninorm/test-u32-normcoll.c: New file.
8710
8711         Tests for module 'uninorm/u16-normcoll'.
8712         * modules/uninorm/u16-normcoll-tests: New file.
8713         * tests/uninorm/test-u16-normcoll.c: New file.
8714
8715         Tests for module 'uninorm/u8-normcoll'.
8716         * modules/uninorm/u8-normcoll-tests: New file.
8717         * tests/uninorm/test-u8-normcoll.c: New file.
8718
8719 2009-03-07  Bruno Haible  <bruno@clisp.org>
8720
8721         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
8722         tests/uninorm/test-u32-normcmp.c.
8723         * tests/uninorm/test-u32-normcmp.c: Include it.
8724         (test_nonascii): New function, extracted from main. Add some more
8725         tests.
8726         (main): Invoke test_ascii and test_nonascii.
8727         * modules/uninorm/u32-normcmp-tests (Files): Add
8728         tests/uninorm/test-u32-normcmp.h.
8729         (Depends-on): Remove uninorm/u32-normcmp.
8730
8731         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
8732         tests/uninorm/test-u16-normcmp.c.
8733         * tests/uninorm/test-u16-normcmp.c: Include it.
8734         (test_nonascii): New function, extracted from main. Add some more
8735         tests.
8736         (main): Invoke test_ascii and test_nonascii.
8737         * modules/uninorm/u16-normcmp-tests (Files): Add
8738         tests/uninorm/test-u16-normcmp.h.
8739         (Depends-on): Remove uninorm/u16-normcmp.
8740
8741         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
8742         tests/uninorm/test-u8-normcmp.c.
8743         * tests/uninorm/test-u8-normcmp.c: Include it.
8744         (test_nonascii): New function, extracted from main. Add some more
8745         tests.
8746         (main): Invoke test_ascii and test_nonascii.
8747         * modules/uninorm/u8-normcmp-tests (Files): Add
8748         tests/uninorm/test-u8-normcmp.h.
8749         (Depends-on): Remove uninorm/u8-normcmp.
8750
8751 2009-03-07  Bruno Haible  <bruno@clisp.org>
8752
8753         New module 'uninorm/u32-normcoll'.
8754         * lib/uninorm/u32-normcoll.c: New file.
8755         * modules/uninorm/u32-normcoll: New file.
8756
8757         New module 'uninorm/u16-normcoll'.
8758         * lib/uninorm/u16-normcoll.c: New file.
8759         * modules/uninorm/u16-normcoll: New file.
8760
8761         New module 'uninorm/u8-normcoll'.
8762         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
8763         declarations.
8764         * lib/uninorm/u8-normcoll.c: New file.
8765         * lib/uninorm/u-normcoll.h: New file.
8766         * modules/uninorm/u8-normcoll: New file.
8767
8768         New module 'uninorm/u32-normxfrm'.
8769         * lib/uninorm/u32-normxfrm.c: New file.
8770         * modules/uninorm/u32-normxfrm: New file.
8771
8772         New module 'uninorm/u16-normxfrm'.
8773         * lib/uninorm/u16-normxfrm.c: New file.
8774         * modules/uninorm/u16-normxfrm: New file.
8775
8776         New module 'uninorm/u8-normxfrm'.
8777         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
8778         declarations.
8779         * lib/uninorm/u8-normxfrm.c: New file.
8780         * lib/uninorm/u-normxfrm.h: New file.
8781         * modules/uninorm/u8-normxfrm: New file.
8782
8783 2009-03-07  Bruno Haible  <bruno@clisp.org>
8784
8785         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
8786         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
8787         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
8788
8789 2009-03-07  Bruno Haible  <bruno@clisp.org>
8790
8791         New module 'memxfrm'.
8792         * lib/memxfrm.h: New file.
8793         * lib/memxfrm.c: New file.
8794         * modules/memxfrm: New file.
8795
8796 2009-03-07  Bruno Haible  <bruno@clisp.org>
8797
8798         New module 'memcmp2'.
8799         * lib/memcmp2.h: New file.
8800         * lib/memcmp2.c: New file.
8801         * modules/memcmp2: New file.
8802
8803 2009-03-07  Bruno Haible  <bruno@clisp.org>
8804
8805         Tests for module 'uninorm/decomposing-form'.
8806         * modules/uninorm/decomposing-form-tests: New file.
8807         * tests/uninorm/test-decomposing-form.c: New file.
8808
8809         New module 'uninorm/decomposing-form'.
8810         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
8811         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
8812         Add 'decomposing_variant' field.
8813         * lib/uninorm/decomposing-form.c: New file.
8814         * lib/uninorm/nfc.c (uninorm_nfc): Update.
8815         * lib/uninorm/nfd.c (uninorm_nfd): Update.
8816         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
8817         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
8818         * modules/uninorm/decomposing-form: New file.
8819         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
8820         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
8821
8822 2009-03-07  Bruno Haible  <bruno@clisp.org>
8823
8824         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
8825         strings.
8826
8827 2009-03-06  Bruno Haible  <bruno@clisp.org>
8828
8829         Tests for module 'uninorm/u32-normcmp'.
8830         * tests/uninorm/test-u32-normcmp.c: New file.
8831         * modules/uninorm/u32-normcmp-tests: New file.
8832
8833         Tests for module 'uninorm/u16-normcmp'.
8834         * tests/uninorm/test-u16-normcmp.c: New file.
8835         * modules/uninorm/u16-normcmp-tests: New file.
8836
8837         Tests for module 'uninorm/u8-normcmp'.
8838         * tests/uninorm/test-u8-normcmp.c: New file.
8839         * modules/uninorm/u8-normcmp-tests: New file.
8840
8841         New module 'uninorm/u32-normcmp'.
8842         * lib/uninorm/u32-normcmp.c: New file.
8843         * modules/uninorm/u32-normcmp: New file.
8844
8845         New module 'uninorm/u16-normcmp'.
8846         * lib/uninorm/u16-normcmp.c: New file.
8847         * modules/uninorm/u16-normcmp: New file.
8848
8849         New module 'uninorm/u8-normcmp'.
8850         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
8851         declarations.
8852         * lib/uninorm/u8-normcmp.c: New file.
8853         * lib/uninorm/u-normcmp.h: New file.
8854         * modules/uninorm/u8-normcmp: New file.
8855
8856 2009-03-06  Bruno Haible  <bruno@clisp.org>
8857
8858         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
8859         Reported by Eric Blake.
8860
8861 2009-03-06  Eric Blake  <ebb9@byu.net>
8862             Bruno Haible  <bruno@clisp.org>
8863
8864         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
8865         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
8866         condition.
8867         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
8868         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
8869         condition.
8870         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
8871
8872 2009-03-06  Eric Blake  <ebb9@byu.net>
8873
8874         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
8875         to avoid compiler warnings.
8876         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
8877
8878 2009-03-05  Bruno Haible  <bruno@clisp.org>
8879
8880         * tests/test-ftell.c (main): Disable test beyond end of file on
8881         FreeMiNT.
8882         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
8883
8884 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
8885
8886         * lib/filevercmp.c: Move hidden files up in ordering.
8887         * tests/test-filevercmp.c: Add tests for hidden files.
8888
8889 2009-03-04  Bruno Haible  <bruno@clisp.org>
8890
8891         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
8892         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
8893         AM_CFLAGS.
8894         Reported by Simon Josefsson.
8895
8896 2009-03-03  Bruno Haible  <bruno@clisp.org>
8897
8898         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
8899         Reported by Simon Josefsson.
8900
8901         * doc/ld-version-script.texi: Update node reference.
8902
8903 2009-03-03  Bruno Haible  <bruno@clisp.org>
8904
8905         * modules/visibility (License): Change to 'unlimited'.
8906         Suggested by Simon Josefsson.
8907
8908 2009-03-03  Jim Meyering  <meyering@redhat.com>
8909
8910         unlinkdir: cannot_unlink_dir may modify process state
8911         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
8912         it's neither thread-safe nor appropriate for use in a library.
8913
8914 2009-03-03  Eric Blake  <ebb9@byu.net>
8915
8916         test-closein: silence test under Darwin
8917         * tests/test-closein.sh: Ignore stderr from cat, since we don't
8918         care if it dies from EPIPE or EBADF.
8919
8920 2009-03-03  Bruno Haible  <bruno@clisp.org>
8921
8922         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
8923         earlier.
8924         * doc/visibility.texi: Fix @node and @section.
8925
8926 2009-03-03  Simon Josefsson  <simon@josefsson.org>
8927
8928         * doc/gnulib.texi: Link to sections for ld version script and
8929         visibility.
8930         * doc/visibility.texi: Add @node and @section.
8931         * modules/ld-version-script: New module.
8932         * m4/ld-version-script.m4: New file.
8933         * doc/ld-version-script.texi: New file.
8934
8935 2009-03-02  David Lutterkort  <lutter@redhat.com>
8936
8937         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
8938         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
8939
8940 2009-03-02  Bruno Haible  <bruno@clisp.org>
8941
8942         * doc/visibility.texi: Mention libtool's -export-symbols option.
8943
8944 2009-03-02  Jim Meyering  <meyering@redhat.com>
8945
8946         announce-gen: new option: --no-print-checksums
8947         * build-aux/announce-gen (usage): Describe it.
8948         (print_checksums): Print a newline here, not in the [*] footnote.
8949         (main): Honor it.
8950
8951 2009-03-01  Bruno Haible  <bruno@clisp.org>
8952
8953         Use socklen_t in the native Windows replacements prototypes.
8954         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
8955         instead of 'int'.
8956         * lib/getsockopt.c (rpl_getsockopt): Likewise.
8957         * lib/setsockopt.c (rpl_setsockopt): Likewise.
8958         * modules/getsockopt (Depends-on): Add socklen.
8959         * modules/setsockopt (Depends-on): Add socklen.
8960
8961 2009-03-01  Bruno Haible  <bruno@clisp.org>
8962
8963         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
8964         least 4.2.
8965
8966 2009-03-01  Eric Blake  <ebb9@byu.net>
8967             Bruno Haible  <bruno@clisp.org>
8968
8969         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
8970         error messages.
8971         * lib/wait-process.c (wait_subprocess): Omit error message about
8972         deadly signal sent to the child of termsigp != NULL.
8973
8974 2009-03-01  Eric Blake  <ebb9@byu.net>
8975
8976         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
8977
8978 2009-03-01  Bruno Haible  <bruno@clisp.org>
8979
8980         Avoid a gcc warning.
8981         * tests/test-sched.c (b): Make global.
8982         Reported by Eric Blake.
8983
8984 2009-01-19  Martin Lambers  <marlam@marlam.de>
8985
8986         Provide POSIX semantics for socket timeout options on W32.
8987         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
8988         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
8989         * modules/setsockopt: Depend on sys_time module for struct timeval.
8990         * modules/getsockopt: Depend on sys_time module for struct timeval.
8991
8992 2009-03-01  Simon Josefsson  <simon@josefsson.org>
8993
8994         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
8995         __USE_GNU, for consistency with netdb.in.h.
8996         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
8997
8998 2009-03-01  Bruno Haible  <bruno@clisp.org>
8999
9000         More support for FreeMiNT.
9001         * lib/fseeko.c (rpl_fseeko): Complete last commit.
9002         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9003
9004 2009-03-01  Bruno Haible  <bruno@clisp.org>
9005
9006         More support for FreeMiNT.
9007         * lib/fpurge.c (fpurge): Correct last commit.
9008         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9009
9010 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9011
9012         Fix unportable awk script in vc-list-files.
9013         * build-aux/vc-list-files: In the replacement awk script, use
9014         substr with a second argument of 1, not zero.
9015         Report by Simon Josefsson.
9016
9017 2009-02-28  Bruno Haible  <bruno@clisp.org>
9018
9019         More support for FreeMiNT.
9020         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
9021         to FreeMiNT today.
9022         * lib/fwriting.c (fwriting): Likewise.
9023         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
9024
9025 2009-02-28  Bruno Haible  <bruno@clisp.org>
9026
9027         * tests/test-freadseek.c (main): Disable test beyond end of file on
9028         FreeMiNT.
9029         * tests/test-ftello.c (main): Likewise.
9030         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
9031
9032 2009-02-28  Bruno Haible  <bruno@clisp.org>
9033
9034         Add tentative support for FreeMiNT.
9035         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
9036         * lib/fpurge.c (fpurge): Likewise.
9037         * lib/freadable.c (freadable): Likewise.
9038         * lib/freading.c (freading): Likewise.
9039         * lib/freadptr.c (freadptr): Likewise.
9040         * lib/freadseek.c (freadptrinc): Likewise.
9041         * lib/fseeko.c (rpl_fseeko): Likewise.
9042         * lib/fseterr.c (fseterr): Likewise.
9043         * lib/fwritable.c (fwritable): Likewise.
9044         * lib/fwriting.c (fwriting): Likewise.
9045         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
9046         Hourihane.
9047         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9048
9049 2009-02-28  Bruno Haible  <bruno@clisp.org>
9050
9051         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
9052         SIGCHLD.
9053         Reported by Jim Meyering.
9054
9055 2009-02-28  Bruno Haible  <bruno@clisp.org>
9056
9057         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
9058         Mention the results of these tests on various platforms.
9059         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
9060         order.
9061         * doc/posix-functions/printf.texi: Likewise.
9062         * doc/posix-functions/snprintf.texi: Likewise.
9063         * doc/posix-functions/sprintf.texi: Likewise.
9064         * doc/posix-functions/vfprintf.texi: Likewise.
9065         * doc/posix-functions/vprintf.texi: Likewise.
9066         * doc/posix-functions/vsnprintf.texi: Likewise.
9067         * doc/posix-functions/vsprintf.texi: Likewise.
9068         * doc/glibc-functions/obstack_printf.texi: Likewise.
9069         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
9070
9071 2009-02-28  Bruno Haible  <bruno@clisp.org>
9072
9073         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
9074         Reported by Loïc Minier <lool@dooz.org>.
9075
9076 2009-02-27  Bruno Haible  <bruno@clisp.org>
9077
9078         * gnulib-tool (func_import): Make the sed expression used to create the
9079         sed script for updating the .gitignore file POSIX compliant.
9080         Reported by Eric Blake.
9081
9082 2009-02-27  Bruno Haible  <bruno@clisp.org>
9083
9084         * gnulib-tool (sed): Don't alias as "sed --posix".
9085         Reported by Eric Blake.
9086
9087 2009-02-27  Bruno Haible  <bruno@clisp.org>
9088
9089         Avoid test link errors.
9090         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
9091         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
9092         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
9093         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
9094         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9095
9096 2009-02-27  Bruno Haible  <bruno@clisp.org>
9097
9098         Avoid spurious "(cached)" in configure output.
9099         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
9100         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
9101         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
9102         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
9103         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
9104         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
9105         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
9106         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
9107         Reported by Eric Blake.
9108
9109 2009-02-27  Eric Blake  <ebb9@byu.net>
9110
9111         printf: fix regression in previous patch
9112         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
9113
9114 2009-02-27  Bruno Haible  <bruno@clisp.org>
9115
9116         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
9117         value.
9118         * lib/stdint.in.h: Likewise.
9119         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
9120
9121 2009-02-27  Eric Blake  <ebb9@byu.net>
9122
9123         doc: mention more functions added in cygwin 1.7.0
9124         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
9125         addition.
9126         * doc/posix-functions/open_wmemstream.texi: Likewise.
9127         * doc/posix-functions/wcsnlen.texi: Likewise.
9128         * doc/posix-functions/wcsnrtombs.texi: Likewise.
9129         * doc/posix-functions/wcstod.texi: Likewise.
9130         * doc/posix-functions/wcstof.texi: Likewise.
9131         * doc/posix-functions/wcstoimax.texi: Likewise.
9132         * doc/posix-functions/wcstok.texi: Likewise.
9133         * doc/posix-functions/wcstoumax.texi: Likewise.
9134
9135         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
9136         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
9137         * doc/posix-functions/fprintf.texi: Update.
9138         * doc/posix-functions/printf.texi: Update.
9139         * doc/posix-functions/snprintf.texi: Update.
9140         * doc/posix-functions/sprintf.texi: Update.
9141         * doc/posix-functions/vfprintf.texi: Update.
9142         * doc/posix-functions/vprintf.texi: Update.
9143         * doc/posix-functions/vsnprintf.texi: Update.
9144         * doc/posix-functions/vsprintf.texi: Update.
9145         * doc/glibc-functions/obstack_printf.texi: Update.
9146         * doc/glibc-functions/obstack_vprintf.texi: Update.
9147
9148 2009-02-26  Eric Blake  <ebb9@byu.net>
9149
9150         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
9151         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
9152         compilation bug by using runtime conversion.
9153         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
9154         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
9155         * modules/ceill-tests (Files): Use nan.h.
9156         * modules/floorl-tests (Files): Likewise.
9157         * modules/frexpl-tests (Files): Likewise.
9158         * modules/isnanl-tests (Files): Likewise.
9159         * modules/ldexpl-tests (Files): Likewise.
9160         * modules/roundl-tests (Files): Likewise.
9161         * modules/truncl-tests (Files): Likewise.
9162         * tests/test-ceill.c (main): Use a working NaN.
9163         * tests/test-floorl.c (main): Likewise.
9164         * tests/test-frexpl.c (main): Likewise.
9165         * tests/test-isnan.c (test_long_double): Likewise.
9166         * tests/test-isnanl.h (main): Likewise.
9167         * tests/test-ldexpl.h (main): Likewise.
9168         * tests/test-roundl.h (main): Likewise.
9169         * tests/test-truncl.h (main): Likewise.
9170         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
9171
9172 2009-02-26  Eric Blake  <ebb9@byu.net>
9173             Bruno Haible  <bruno@clisp.org>
9174
9175         Work around a *printf bug with %ls on Solaris.
9176         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
9177         precision is specified, sprintf stops converting the wide string
9178         argument when the number of bytes that have been produced by this
9179         conversion equals or exceeds the precision.
9180         * doc/posix-functions/fprintf.texi: Update.
9181         * doc/posix-functions/printf.texi: Update.
9182         * doc/posix-functions/snprintf.texi: Update.
9183         * doc/posix-functions/sprintf.texi: Update.
9184         * doc/posix-functions/vfprintf.texi: Update.
9185         * doc/posix-functions/vprintf.texi: Update.
9186         * doc/posix-functions/vsnprintf.texi: Update.
9187         * doc/posix-functions/vsprintf.texi: Update.
9188         * doc/glibc-functions/obstack_printf.texi: Update.
9189         * doc/glibc-functions/obstack_vprintf.texi: Update.
9190
9191 2009-02-26  Eric Blake  <ebb9@byu.net>
9192
9193         stdlib: favor compiler check of random.h
9194         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
9195         to avoid an ObjC random.h installed by Swarm.
9196
9197 2009-02-26  Bruno Haible  <bruno@clisp.org>
9198
9199         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
9200         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
9201         Reported by Gary V. Vaughan <gary@gnu.org>.
9202
9203 2009-02-26  Bruno Haible  <bruno@clisp.org>
9204
9205         Fix *printf behaviour regarding the %ls directive.
9206         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
9207         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
9208         NEED_PRINTF_DIRECTIVE_LS.
9209         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
9210         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
9211         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9212         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
9213         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
9214         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
9215         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
9216         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9217         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9218         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9219         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9220         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
9221         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9222         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9223         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9224         * doc/posix-functions/fprintf.texi: Update.
9225         * doc/posix-functions/printf.texi: Update.
9226         * doc/posix-functions/snprintf.texi: Update.
9227         * doc/posix-functions/sprintf.texi: Update.
9228         * doc/posix-functions/vfprintf.texi: Update.
9229         * doc/posix-functions/vprintf.texi: Update.
9230         * doc/posix-functions/vsnprintf.texi: Update.
9231         * doc/posix-functions/vsprintf.texi: Update.
9232         * doc/glibc-functions/obstack_printf.texi: Update.
9233         * doc/glibc-functions/obstack_vprintf.texi: Update.
9234         Reported by Eric Blake.
9235
9236 2009-02-25  Bruno Haible  <bruno@clisp.org>
9237
9238         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
9239         with known value.
9240         Reported by Gary V. Vaughan <gary@gnu.org>.
9241
9242 2009-02-25  Bruno Haible  <bruno@clisp.org>
9243
9244         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
9245         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
9246         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
9247         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
9248         Reported by Gary V. Vaughan <gary@gnu.org>.
9249
9250 2009-02-25  Bruno Haible  <bruno@clisp.org>
9251
9252         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
9253         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
9254         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
9255         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
9256         Reported by Gary V. Vaughan <gary@gnu.org>.
9257
9258 2009-02-25  Eric Blake  <ebb9@byu.net>
9259
9260         tests: skip fseek/ftell tests if ungetc is broken
9261         * m4/ungetc.m4: New file.
9262         * modules/fseek-tests: Split test, so ungetc dependency is
9263         separate from rest of test.
9264         * modules/fseeko-tests: Likewise.
9265         * modules/ftell-tests: Likewise.
9266         * modules/ftello-tests: Likewise.
9267         * tests/test-fseek.c (main): Isolate ungetc dependency.
9268         * tests/test-fseeko.c (main): Likewise.
9269         * tests/test-ftell.c (main): Likewise.
9270         * tests/test-ftello.c (main): Likewise.
9271         * tests/test-fseek2.sh: New file.
9272         * tests/test-fseeko2.sh: Likewise.
9273         * tests/test-ftell2.sh: Likewise.
9274         * tests/test-ftello2.sh: Likewise.
9275
9276 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
9277
9278         test-getaddrinfo: fix usage of skip return code 77
9279         * tests/test-gettaddrinfo.c: Return skip code 77 only
9280         for first occurance of skip (4x77 is not 77)
9281
9282 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
9283
9284         strtod: avoid C99 decl-after-statement
9285         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
9286
9287 2009-02-24  Eric Blake  <ebb9@byu.net>
9288
9289         strtod: detect HP-UX 11.31 bug
9290         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
9291         Reported by Gary V. Vaughan.
9292
9293 2009-02-23  Bruno Haible  <bruno@clisp.org>
9294
9295         Fix invalid read past end of memory block.
9296         * lib/vasnprintf.c (DCHAR_SET): Define.
9297         (local_wcslen): Define only when needed.
9298         (local_strnlen, local_wcsnlen): New functions.
9299         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
9300         directives that involve a conversion ourselves.
9301         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
9302         wcsnlen, mbrtowc, wcrtomb.
9303         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
9304         * tests/test-vasprintf-posix.c (test_function): Likewise.
9305         * tests/test-snprintf-posix.h (test_function): Likewise.
9306         * tests/test-sprintf-posix.h (test_function): Likewise.
9307         Reported by Ben Pfaff <blp@cs.stanford.edu>.
9308
9309 2009-02-22  Bruno Haible  <bruno@clisp.org>
9310
9311         Implement new clarified decomposition of Hangul syllables.
9312         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
9313         of type LTV, return only a pairwise decomposition.
9314         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
9315         Likewise.
9316         * tests/uninorm/test-decomposition.c (main): Updated expected result.
9317         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
9318         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
9319
9320 2009-02-22  Bruno Haible  <bruno@clisp.org>
9321
9322         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
9323         zero-length results and shrink excess allocated memory.
9324         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
9325         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
9326         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
9327         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
9328         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
9329         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
9330         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
9331         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
9332         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
9333         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
9334         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
9335         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
9336
9337 2009-02-21  Bruno Haible  <bruno@clisp.org>
9338
9339         * doc/gnulib.texi: Include safe-alloc.texi earlier.
9340         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
9341         spaces after a period. Put a space between a macro name and its
9342         argument list. Trivial rewordings.
9343         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
9344         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
9345         (main): Return 0 explicitly.
9346
9347 2009-02-21  Bruno Haible  <bruno@clisp.org>
9348
9349         Tests for module 'uninorm/filter'.
9350         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
9351         * modules/uninorm/filter-tests: New file.
9352
9353         New module 'uninorm/filter'.
9354         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
9355         uninorm_filter_flush, uninorm_filter_free): New declarations.
9356         * lib/uninorm/uninorm-filter.c: New file.
9357         * modules/uninorm/filter: New file.
9358
9359 2009-02-21  Bruno Haible  <bruno@clisp.org>
9360
9361         Tests for module 'uninorm/nfkc'.
9362         * tests/uninorm/test-nfkc.c: New file.
9363         * tests/uninorm/test-u8-nfkc.c: New file.
9364         * tests/uninorm/test-u16-nfkc.c: New file.
9365         * tests/uninorm/test-u32-nfkc.c: New file.
9366         * tests/uninorm/test-u32-nfkc-big.sh: New file.
9367         * tests/uninorm/test-u32-nfkc-big.c: New file.
9368         * modules/uninorm/nfkc-tests: New file.
9369
9370         New module 'uninorm/nfkc'.
9371         * lib/uninorm/nfkc.c: New file.
9372         * modules/uninorm/nfkc: New file.
9373
9374         Tests for module 'uninorm/nfkd'.
9375         * tests/uninorm/test-nfkd.c: New file.
9376         * tests/uninorm/test-u8-nfkd.c: New file.
9377         * tests/uninorm/test-u16-nfkd.c: New file.
9378         * tests/uninorm/test-u32-nfkd.c: New file.
9379         * tests/uninorm/test-u32-nfkd-big.sh: New file.
9380         * tests/uninorm/test-u32-nfkd-big.c: New file.
9381         * modules/uninorm/nfkd-tests: New file.
9382
9383         New module 'uninorm/nfkd'.
9384         * lib/uninorm/nfkd.c: New file.
9385         * modules/uninorm/nfkd: New file.
9386
9387         Tests for module 'uninorm/nfc'.
9388         * tests/uninorm/test-nfc.c: New file.
9389         * tests/uninorm/test-u8-nfc.c: New file.
9390         * tests/uninorm/test-u16-nfc.c: New file.
9391         * tests/uninorm/test-u32-nfc.c: New file.
9392         * tests/uninorm/test-u32-nfc-big.sh: New file.
9393         * tests/uninorm/test-u32-nfc-big.c: New file.
9394         * modules/uninorm/nfc-tests: New file.
9395
9396         New module 'uninorm/nfc'.
9397         * lib/uninorm/nfc.c: New file.
9398         * modules/uninorm/nfc: New file.
9399
9400         Tests for module 'uninorm/nfd'.
9401         * tests/uninorm/test-nfd.c: New file.
9402         * tests/uninorm/test-u8-nfd.c: New file.
9403         * tests/uninorm/test-u16-nfd.c: New file.
9404         * tests/uninorm/test-u32-nfd.c: New file.
9405         * tests/uninorm/test-u32-nfd-big.sh: New file.
9406         * tests/uninorm/test-u32-nfd-big.c: New file.
9407         * tests/uninorm/test-u32-normalize-big.h: New file.
9408         * tests/uninorm/test-u32-normalize-big.c: New file.
9409         * tests/uninorm/NormalizationTest.txt: New file, created from
9410         Unicode 5.1.0 NormalizationTest.txt.
9411         * modules/uninorm/nfd-tests: New file.
9412
9413         New module 'uninorm/nfd'.
9414         * lib/uninorm/nfd.c: New file.
9415         * modules/uninorm/nfd: New file.
9416
9417         New module 'uninorm/u32-normalize'.
9418         * lib/uninorm/u32-normalize.c: New file.
9419         * modules/uninorm/u32-normalize: New file.
9420
9421         New module 'uninorm/u16-normalize'.
9422         * lib/uninorm/u16-normalize.c: New file.
9423         * modules/uninorm/u16-normalize: New file.
9424
9425         New module 'uninorm/u8-normalize'.
9426         * lib/uninorm/u8-normalize.c: New file.
9427         * lib/uninorm/normalize-internal.h: New file.
9428         * lib/uninorm/u-normalize-internal.h: New file.
9429         * modules/uninorm/u8-normalize: New file.
9430
9431         New module 'uninorm/decompose-internal'.
9432         * lib/uninorm/decompose-internal.c: New file.
9433         * modules/uninorm/decompose-internal: New file.
9434
9435         Tests for module 'uninorm/composition'.
9436         * tests/uninorm/test-composition.c: New file.
9437         * modules/uninorm/composition-tests: New file.
9438
9439         New module 'uninorm/composition'.
9440         * lib/uninorm/composition.c: New file.
9441         * lib/uninorm/composition-table.gperf: New file, generated by
9442         gen-uni-tables.
9443         * modules/uninorm/composition: New file.
9444
9445         Tests for module 'uninorm/compat-decomposition'.
9446         * tests/uninorm/test-compat-decomposition.c: New file.
9447         * modules/uninorm/compat-decomposition-tests: New file.
9448
9449         New module 'uninorm/compat-decomposition'.
9450         * lib/uninorm/decompose-internal.h: New file.
9451         * lib/uninorm/compat-decomposition.c: New file.
9452         * modules/uninorm/compat-decomposition: New file.
9453
9454         Tests for module 'uninorm/canonical-decomposition'.
9455         * tests/uninorm/test-canonical-decomposition.c: New file.
9456         * modules/uninorm/canonical-decomposition-tests: New file.
9457
9458         New module 'uninorm/canonical-decomposition'.
9459         * lib/uninorm/canonical-decomposition.c: New file.
9460         * modules/uninorm/canonical-decomposition: New file.
9461
9462         Tests for module 'uninorm/decomposition'.
9463         * tests/uninorm/test-decomposition.c: New file.
9464         * modules/uninorm/decomposition-tests: New file.
9465
9466         New module 'uninorm/decomposition'.
9467         * lib/uninorm/decomposition.c: New file.
9468         * modules/uninorm/decomposition: New file.
9469
9470         New module 'uninorm/decomposition-table'.
9471         * lib/uninorm/decomposition-table.h: New file.
9472         * lib/uninorm/decomposition-table.c: New file.
9473         * lib/uninorm/decomposition-table1.h: New file, generated by
9474         gen-uni-tables.
9475         * lib/uninorm/decomposition-table2.h: New file, generated by
9476         gen-uni-tables.
9477         * modules/uninorm/decomposition-table: New file.
9478
9479         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
9480         (UC_DECOMP_*): New enumeration items.
9481         (get_decomposition): New function.
9482         (struct decomp_table): New type.
9483         (output_decomposition, output_decomposition_tables): New functions.
9484         (unicode_composition_exclusions): New variable.
9485         (fill_composition_exclusions, debug_output_composition_tables): New
9486         functions.
9487         (main): Accept one more argument. Invoke fill_composition_exclusions.
9488         Output decomposition and composition tables.
9489
9490         New module 'uninorm/base'.
9491         * lib/uninorm.h: New file.
9492         * lib/unictype.h: Update comment.
9493         * modules/uninorm/base: New file.
9494
9495 2009-02-21  David Lutterkort  <lutter@redhat.com>
9496
9497         Tests for module 'safe-alloc'.
9498         * tests/test-safe-alloc.c: New file.
9499         * modules/safe-alloc-tests: New file.
9500
9501         New module 'safe-alloc'.
9502         * lib/safe-alloc.h: New file.
9503         * lib/safe-alloc.c: New file.
9504         * m4/safe-alloc.m4: New file.
9505         * modules/safe-alloc: New file.
9506         * doc/safe-alloc.texi: New file.
9507         * doc/gnulib.texi: Include it.
9508         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
9509         safe-alloc.
9510
9511 2009-02-18  Bruno Haible  <bruno@clisp.org>
9512
9513         Fix link error on non-glibc systems.
9514         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
9515         variable.
9516         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9517
9518 2009-02-18  Jim Meyering  <meyering@redhat.com>
9519
9520         fts: avoid used-uninitialized error due to recent change
9521         * lib/fts.c (fts_read): Guard uses of the new member,
9522         parent->fts_n_dirs_remaining, since it's not relevant for
9523         the parent of a directory specified on the command-line.
9524
9525 2009-02-17  James Youngman  <jay@gnu.org>
9526             Bruno Haible  <bruno@clisp.org>
9527
9528         * m4/include_next.m4: Reformulate comment.
9529
9530 2009-02-16  Jim Meyering  <meyering@redhat.com>
9531
9532         fts: add #if guards so that the fts_lgpl module still builds
9533         * lib/fts.c: Guard just-added hash-table-using parts with
9534         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
9535         Reported by Simon Josefsson.
9536
9537 2009-02-15  Bruno Haible  <bruno@clisp.org>
9538
9539         * modules/array-mergesort-tests: New file.
9540         * tests/test-array-mergesort.c: New file.
9541
9542         New module 'array-mergesort'.
9543         * modules/array-mergesort: New file.
9544         * lib/array-mergesort.h: New file.
9545
9546 2009-02-15  Bruno Haible  <bruno@clisp.org>
9547
9548         Fix 2009-02-07 commit.
9549         * lib/gen-uni-tables.c (output_predicate, output_category,
9550         output_combclass, output_bidi_category, output_decimal_digit,
9551         output_digit, output_numeric, output_mirror, output_scripts,
9552         output_ident_category, output_simple_mapping): Fix format directives.
9553         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
9554
9555 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
9556
9557         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
9558         fixes are available from IBM.
9559
9560 2009-02-13  Jim Meyering  <meyering@redhat.com>
9561
9562         fts: arrange not to stat non-directories in more cases
9563         This makes GNU find (when it doesn't need to stat each file)
9564         *much* more efficient at traversing reiserfs file systems.
9565         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
9566         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
9567         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
9568         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
9569         (leaf_optimization_applies): New function.
9570         (LCO_hash, LCO_compare): New helper functions.
9571         (link_count_optimize_ok): New function.
9572         (fts_stat): Initialize new member (if dir).
9573         (fts_read): Decrement parent's fts_n_dirs_remaining count if
9574         we've just stat'ed a directory.  Skip the stat call when possible.
9575         ---
9576         Note this AFS-related exchange:
9577         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
9578         and note find's pioctl call in find/fstype.c.
9579         But that is necessary only if you want to enable the
9580         optimization for AFS, and for now, I don't.
9581
9582         fts: move a function definition "up" (no semantic change)
9583         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
9584         "up" to precede upcoming use of a related function.
9585
9586 2009-02-11  Jim Meyering  <meyering@redhat.com>
9587
9588         fts: correct internal computation of nlinks (optimization-related)
9589         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
9590         whether the current entry is a directory, so don't test it.
9591
9592 2009-02-10  Bruno Haible  <bruno@clisp.org>
9593
9594         Tests for module 'uniwbrk/ulc-wordbreaks'.
9595         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
9596         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
9597         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
9598
9599         Tests for module 'uniwbrk/u32-wordbreaks'.
9600         * modules/uniwbrk/u32-wordbreaks-tests: New file.
9601         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
9602
9603         Tests for module 'uniwbrk/u16-wordbreaks'.
9604         * modules/uniwbrk/u16-wordbreaks-tests: New file.
9605         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
9606
9607         Tests for module 'uniwbrk/u8-wordbreaks'.
9608         * modules/uniwbrk/u8-wordbreaks-tests: New file.
9609         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
9610
9611 2009-02-10  Bruno Haible  <bruno@clisp.org>
9612
9613         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
9614         property.
9615         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
9616         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
9617         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
9618
9619 2009-02-10  Simon Josefsson  <simon@josefsson.org>
9620
9621         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
9622         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
9623
9624 2009-02-10  Bruno Haible  <bruno@clisp.org>
9625
9626         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
9627         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
9628         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
9629         * lib/unilbrk/u8-possible-linebreaks.c: Update.
9630         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
9631         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
9632
9633 2009-02-09  Simon Josefsson  <simon@josefsson.org>
9634
9635         * lib/sockets.h (gl_fd_to_handle): New function.
9636
9637         * tests/test-sockets.c: Call gl_fd_to_handle.
9638
9639 2009-02-09  Bruno Haible  <bruno@clisp.org>
9640
9641         * doc/havelib.texi: Document the conventions on bi-arch systems.
9642
9643 2009-02-08  Bruno Haible  <bruno@clisp.org>
9644
9645         Document the AC_LIB_LINKFLAGS macro.
9646         * doc/havelib.texi: New file, mostly written on 2005-05-24.
9647         * doc/gnulib.texi: Include it.
9648
9649 2009-02-08  Bruno Haible  <bruno@clisp.org>
9650
9651         Fix wrong order of sections, compared to TOC.
9652         * doc/gnulib.texi: Include relocatable-maint.texi after the
9653         "Regular expressions" node, not before.
9654
9655 2009-02-08  Bruno Haible  <bruno@clisp.org>
9656
9657         Tests for module 'unicase/totitle'.
9658         * modules/unicase/totitle-tests: New file.
9659
9660         Tests for module 'unicase/tolower'.
9661         * modules/unicase/tolower-tests: New file.
9662
9663         Tests for module 'unicase/toupper'.
9664         * modules/unicase/toupper-tests: New file.
9665         * tests/unicase/test-mapping-part1.h: New file.
9666         * tests/unicase/test-mapping-part2.h: New file.
9667
9668         New module 'unicase/totitle'.
9669         * modules/unicase/totitle: New file.
9670         * lib/unicase/totitle.c: New file.
9671
9672         New module 'unicase/tolower'.
9673         * modules/unicase/tolower: New file.
9674         * lib/unicase/tolower.c: New file.
9675
9676         New module 'unicase/toupper'.
9677         * modules/unicase/toupper: New file.
9678         * lib/unicase/toupper.c: New file.
9679         * lib/unicase/simple-mapping.h: New file.
9680
9681         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
9682         (mapping_table): New structure.
9683         (output_simple_mapping): New function.
9684         (main): Invoke output_simple_mapping_test and output_simple_mapping.
9685         * modules/gen-uni-tables (Description): Update.
9686         * lib/unicase/toupper.h: New file, automatically generated by
9687         gen-uni-tables.
9688         * lib/unicase/tolower.h: New file, automatically generated by
9689         gen-uni-tables.
9690         * lib/unicase/totitle.h: New file, automatically generated by
9691         gen-uni-tables.
9692         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
9693         gen-uni-tables.
9694         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
9695         gen-uni-tables.
9696         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
9697         gen-uni-tables.
9698
9699         New module 'unicase/base'.
9700         * modules/unicase/base: New file.
9701         * lib/unicase.h: New file.
9702
9703 2009-02-08  Bruno Haible  <bruno@clisp.org>
9704
9705         New module 'uniwbrk/ulc-wordbreaks'.
9706         * modules/uniwbrk/ulc-wordbreaks: New file.
9707         * lib/uniwbrk/ulc-wordbreaks.c: New file.
9708
9709         New module 'uniwbrk/u32-wordbreaks'.
9710         * modules/uniwbrk/u32-wordbreaks: New file.
9711         * lib/uniwbrk/u32-wordbreaks.c: New file.
9712
9713         New module 'uniwbrk/u16-wordbreaks'.
9714         * modules/uniwbrk/u16-wordbreaks: New file.
9715         * lib/uniwbrk/u16-wordbreaks.c: New file.
9716
9717         New module 'uniwbrk/u8-wordbreaks'.
9718         * modules/uniwbrk/u8-wordbreaks: New file.
9719         * lib/uniwbrk/u8-wordbreaks.c: New file.
9720         * lib/uniwbrk/u-wordbreaks.h: New file.
9721
9722         New module 'uniwbrk/table'.
9723         * modules/uniwbrk/table: New file.
9724         * lib/uniwbrk/wbrktable.h: New file.
9725         * lib/uniwbrk/wbrktable.c: New file.
9726
9727         New module 'uniwbrk/wordbreak-property'.
9728         * modules/uniwbrk/wordbreak-property: New file.
9729         * lib/uniwbrk/wordbreak-property.c: New file.
9730
9731         * lib/gen-uni-tables.c (WBP_*): New enum items.
9732         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
9733         (unicode_org_wbp): New variable.
9734         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
9735         New functions.
9736         (wbp_table): New structure.
9737         (output_wbp, output_wbrk_tables): New functions.
9738         (main): Accept additional argument. Invoke fill_org_wbp,
9739         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
9740         output_wbrk_tables.
9741         * modules/gen-uni-tables (Description): Update.
9742         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
9743         gen-uni-tables.
9744
9745         New module 'uniwbrk/base'.
9746         * modules/uniwbrk/base: New file.
9747         * lib/uniwbrk.h: New file.
9748
9749 2009-02-08  Bruno Haible  <bruno@clisp.org>
9750
9751         Update to Unicode 5.1.0.
9752         * lib/gen-uni-tables.c (is_property_alphabetic): Include
9753         U+2185..U+2188.
9754         (is_property_default_ignorable_code_point): Don't include characters
9755         of category Cc or Cs and not-a-characters.
9756         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
9757         U+0D79, U+109E, U+109F, U+A60C.
9758         * lib/unictype/bidi_of.h: Regenerated.
9759         * lib/unictype/blocks.h: Regenerated.
9760         * lib/unictype/categ_C.h: Regenerated.
9761         * lib/unictype/categ_Cf.h: Regenerated.
9762         * lib/unictype/categ_Cn.h: Regenerated.
9763         * lib/unictype/categ_L.h: Regenerated.
9764         * lib/unictype/categ_Ll.h: Regenerated.
9765         * lib/unictype/categ_Lm.h: Regenerated.
9766         * lib/unictype/categ_Lo.h: Regenerated.
9767         * lib/unictype/categ_Lu.h: Regenerated.
9768         * lib/unictype/categ_M.h: Regenerated.
9769         * lib/unictype/categ_Mc.h: Regenerated.
9770         * lib/unictype/categ_Me.h: Regenerated.
9771         * lib/unictype/categ_Mn.h: Regenerated.
9772         * lib/unictype/categ_N.h: Regenerated.
9773         * lib/unictype/categ_Nd.h: Regenerated.
9774         * lib/unictype/categ_Nl.h: Regenerated.
9775         * lib/unictype/categ_No.h: Regenerated.
9776         * lib/unictype/categ_P.h: Regenerated.
9777         * lib/unictype/categ_Pd.h: Regenerated.
9778         * lib/unictype/categ_Pe.h: Regenerated.
9779         * lib/unictype/categ_Pf.h: Regenerated.
9780         * lib/unictype/categ_Pi.h: Regenerated.
9781         * lib/unictype/categ_Po.h: Regenerated.
9782         * lib/unictype/categ_Ps.h: Regenerated.
9783         * lib/unictype/categ_S.h: Regenerated.
9784         * lib/unictype/categ_Sk.h: Regenerated.
9785         * lib/unictype/categ_Sm.h: Regenerated.
9786         * lib/unictype/categ_So.h: Regenerated.
9787         * lib/unictype/categ_of.h: Regenerated.
9788         * lib/unictype/combining.h: Regenerated.
9789         * lib/unictype/ctype_alnum.h: Regenerated.
9790         * lib/unictype/ctype_alpha.h: Regenerated.
9791         * lib/unictype/ctype_graph.h: Regenerated.
9792         * lib/unictype/ctype_lower.h: Regenerated.
9793         * lib/unictype/ctype_print.h: Regenerated.
9794         * lib/unictype/ctype_punct.h: Regenerated.
9795         * lib/unictype/ctype_upper.h: Regenerated.
9796         * lib/unictype/decdigit.h: Regenerated.
9797         * lib/unictype/digit.h: Regenerated.
9798         * lib/unictype/mirror.h: Regenerated.
9799         * lib/unictype/numeric.h: Regenerated.
9800         * lib/unictype/pr_alphabetic.h: Regenerated.
9801         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
9802         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
9803         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
9804         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
9805         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
9806         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
9807         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
9808         * lib/unictype/pr_combining.h: Regenerated.
9809         * lib/unictype/pr_dash.h: Regenerated.
9810         * lib/unictype/pr_decimal_digit.h: Regenerated.
9811         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
9812         * lib/unictype/pr_deprecated.h: Regenerated.
9813         * lib/unictype/pr_diacritic.h: Regenerated.
9814         * lib/unictype/pr_extender.h: Regenerated.
9815         * lib/unictype/pr_format_control.h: Regenerated.
9816         * lib/unictype/pr_grapheme_base.h: Regenerated.
9817         * lib/unictype/pr_grapheme_extend.h: Regenerated.
9818         * lib/unictype/pr_grapheme_link.h: Regenerated.
9819         * lib/unictype/pr_id_continue.h: Regenerated.
9820         * lib/unictype/pr_id_start.h: Regenerated.
9821         * lib/unictype/pr_ideographic.h: Regenerated.
9822         * lib/unictype/pr_ignorable_control.h: Regenerated.
9823         * lib/unictype/pr_lowercase.h: Regenerated.
9824         * lib/unictype/pr_math.h: Regenerated.
9825         * lib/unictype/pr_numeric.h: Regenerated.
9826         * lib/unictype/pr_other_alphabetic.h: Regenerated.
9827         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
9828         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
9829         * lib/unictype/pr_other_id_continue.h: Regenerated.
9830         * lib/unictype/pr_other_lowercase.h: Regenerated.
9831         * lib/unictype/pr_other_math.h: Regenerated.
9832         * lib/unictype/pr_punctuation.h: Regenerated.
9833         * lib/unictype/pr_sentence_terminal.h: Regenerated.
9834         * lib/unictype/pr_soft_dotted.h: Regenerated.
9835         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
9836         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
9837         * lib/unictype/pr_unified_ideograph.h: Regenerated.
9838         * lib/unictype/pr_uppercase.h: Regenerated.
9839         * lib/unictype/pr_xid_continue.h: Regenerated.
9840         * lib/unictype/pr_xid_start.h: Regenerated.
9841         * lib/unictype/pr_zero_width.h: Regenerated.
9842         * lib/unictype/scripts.h: Regenerated.
9843         * lib/unictype/scripts_byname.gperf: Regenerated.
9844         * lib/unictype/sy_java_ident.h: Regenerated.
9845         * lib/unilbrk/lbrkprop1.h: Regenerated.
9846         * lib/unilbrk/lbrkprop2.h: Regenerated.
9847         * tests/unictype/test-categ_C.c: Regenerated.
9848         * tests/unictype/test-categ_Cf.c: Regenerated.
9849         * tests/unictype/test-categ_Cn.c: Regenerated.
9850         * tests/unictype/test-categ_L.c: Regenerated.
9851         * tests/unictype/test-categ_Ll.c: Regenerated.
9852         * tests/unictype/test-categ_Lm.c: Regenerated.
9853         * tests/unictype/test-categ_Lo.c: Regenerated.
9854         * tests/unictype/test-categ_Lu.c: Regenerated.
9855         * tests/unictype/test-categ_M.c: Regenerated.
9856         * tests/unictype/test-categ_Mc.c: Regenerated.
9857         * tests/unictype/test-categ_Me.c: Regenerated.
9858         * tests/unictype/test-categ_Mn.c: Regenerated.
9859         * tests/unictype/test-categ_N.c: Regenerated.
9860         * tests/unictype/test-categ_Nd.c: Regenerated.
9861         * tests/unictype/test-categ_Nl.c: Regenerated.
9862         * tests/unictype/test-categ_No.c: Regenerated.
9863         * tests/unictype/test-categ_P.c: Regenerated.
9864         * tests/unictype/test-categ_Pd.c: Regenerated.
9865         * tests/unictype/test-categ_Pe.c: Regenerated.
9866         * tests/unictype/test-categ_Pf.c: Regenerated.
9867         * tests/unictype/test-categ_Pi.c: Regenerated.
9868         * tests/unictype/test-categ_Po.c: Regenerated.
9869         * tests/unictype/test-categ_Ps.c: Regenerated.
9870         * tests/unictype/test-categ_S.c: Regenerated.
9871         * tests/unictype/test-categ_Sk.c: Regenerated.
9872         * tests/unictype/test-categ_Sm.c: Regenerated.
9873         * tests/unictype/test-categ_So.c: Regenerated.
9874         * tests/unictype/test-ctype_alnum.c: Regenerated.
9875         * tests/unictype/test-ctype_alpha.c: Regenerated.
9876         * tests/unictype/test-ctype_graph.c: Regenerated.
9877         * tests/unictype/test-ctype_lower.c: Regenerated.
9878         * tests/unictype/test-ctype_print.c: Regenerated.
9879         * tests/unictype/test-ctype_punct.c: Regenerated.
9880         * tests/unictype/test-ctype_upper.c: Regenerated.
9881         * tests/unictype/test-decdigit.h: Regenerated.
9882         * tests/unictype/test-digit.h: Regenerated.
9883         * tests/unictype/test-numeric.h: Regenerated.
9884         * tests/unictype/test-pr_alphabetic.c: Regenerated.
9885         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
9886         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
9887         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
9888         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
9889         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
9890         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
9891         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
9892         * tests/unictype/test-pr_combining.c: Regenerated.
9893         * tests/unictype/test-pr_dash.c: Regenerated.
9894         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
9895         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
9896         * tests/unictype/test-pr_deprecated.c: Regenerated.
9897         * tests/unictype/test-pr_diacritic.c: Regenerated.
9898         * tests/unictype/test-pr_extender.c: Regenerated.
9899         * tests/unictype/test-pr_format_control.c: Regenerated.
9900         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
9901         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
9902         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
9903         * tests/unictype/test-pr_id_continue.c: Regenerated.
9904         * tests/unictype/test-pr_id_start.c: Regenerated.
9905         * tests/unictype/test-pr_ideographic.c: Regenerated.
9906         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
9907         * tests/unictype/test-pr_lowercase.c: Regenerated.
9908         * tests/unictype/test-pr_math.c: Regenerated.
9909         * tests/unictype/test-pr_numeric.c: Regenerated.
9910         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
9911         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
9912         Regenerated.
9913         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
9914         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
9915         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
9916         * tests/unictype/test-pr_other_math.c: Regenerated.
9917         * tests/unictype/test-pr_punctuation.c: Regenerated.
9918         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
9919         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
9920         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
9921         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
9922         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
9923         * tests/unictype/test-pr_uppercase.c: Regenerated.
9924         * tests/unictype/test-pr_xid_continue.c: Regenerated.
9925         * tests/unictype/test-pr_xid_start.c: Regenerated.
9926         * tests/unictype/test-pr_zero_width.c: Regenerated.
9927
9928         Update to Unicode 5.1.0.
9929         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
9930         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
9931         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
9932         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
9933         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
9934         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
9935         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
9936         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
9937         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
9938         (nonspacing_table_ind): Update.
9939         * tests/uniwidth/test-uc_width2.sh: Update expected result.
9940
9941         Update to Unicode 5.1.0.
9942         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
9943         code transform.
9944         * lib/uniname/uniname.c (unicode_character_name,
9945         unicode_name_character): Add the range 0x1Fxxx to the code transform.
9946         * lib/uniname/uninames.h: Regenerated.
9947         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
9948
9949 2009-02-07  Bruno Haible  <bruno@clisp.org>
9950
9951         Merge gen-ctype and gen-lbrk into a single program.
9952         * lib/gen-uni-tables.c: New file, incorporating
9953         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
9954         Add directory prefixes to the names of the generated files.
9955         * lib/unictype/gen-ctype.c: Remove file.
9956         * lib/unilbrk/gen-lbrk.c: Remove file.
9957         * modules/gen-uni-tables: New file.
9958         * modules/unictype/gen-ctype: Remove file.
9959         * modules/unilbrk/gen-lbrk: Remove file.
9960
9961 2009-02-07  Bruno Haible  <bruno@clisp.org>
9962
9963         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
9964
9965         New module 'unistr/u32-strcoll'.
9966         * modules/unistr/u32-strcoll: New file.
9967         * lib/unistr/u32-strcoll.c: New file.
9968
9969         New module 'unistr/u16-strcoll'.
9970         * modules/unistr/u16-strcoll: New file.
9971         * lib/unistr/u16-strcoll.c: New file.
9972
9973         New module 'unistr/u8-strcoll'.
9974         * modules/unistr/u8-strcoll: New file.
9975         * lib/unistr/u8-strcoll.c: New file.
9976         * lib/unistr/u-strcoll.h: New file.
9977
9978 2009-02-07  Bruno Haible  <bruno@clisp.org>
9979
9980         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
9981         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
9982         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
9983         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
9984         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
9985         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
9986
9987 2009-02-07  Bruno Haible  <bruno@clisp.org>
9988
9989         Make 64-bit clean.
9990         * lib/unictype/gen-ctype.c (output_predicate, output_category,
9991         output_combclass, output_bidi_category, output_decimal_digit,
9992         output_digit, output_numeric, output_mirror, output_scripts,
9993         output_ident_category): Use proper width specifier in format strings.
9994
9995 2009-02-07  Bruno Haible  <bruno@clisp.org>
9996
9997         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
9998         failure behaviour.
9999
10000 2009-02-07  Jim Meyering  <meyering@redhat.com>
10001
10002         regex: avoid compilation failure with upcoming gcc-4.4
10003         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
10004         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
10005         "... error: integer overflow in preprocessor expression".
10006
10007 2009-02-05  Ben Pfaff  <blp@gnu.org>
10008
10009         Fix link errors on Windows when close module is used.
10010         * modules/close: Add $(LIB_CLOSE) to Link section.
10011         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
10012         $(LIB_CLOSE) on Windows.
10013
10014 2009-02-05  Jim Meyering  <meyering@redhat.com>
10015
10016         still avoid unused-parameter warnings, but do it cleanly
10017         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
10018         (get_fs_usage): Cast to void instead.
10019         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
10020         (dev_from_mount_options, read_file_system_list): Cast to void.
10021         Prompted by Bruno Haible.
10022
10023 2009-02-04  Jim Meyering  <meyering@redhat.com>
10024
10025         fsusage.c: correct copyright year
10026         * lib/fsusage.c: Reflect year in which the change is pushed into
10027
10028         avoid misc. warnings
10029         * lib/fsusage.c (UNUSED_PARAM): Define.
10030         (get_fs_usage): Mark parameter "disk" as unused.
10031         * lib/getugroups.c (getgrent): Use "void" in prototype.
10032         * lib/mountlist.c: Mark unused parameters.
10033         (read_file_system_list): Declare a local with "const".
10034         * lib/nanosleep.c (getnow): Declare static.
10035         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
10036
10037         dirfd: set errno upon failure
10038         * lib/dirfd.c: Include <errno.h>.
10039         Set errno to ENOTSUP when returning -1.
10040         * modules/dirfd (Depends-on): Add errno.
10041         Suggested by John Kodis <kodis@comcast.net>.
10042
10043 2009-02-01  Bruno Haible  <bruno@clisp.org>
10044
10045         Don't assume sizeof (long) >= sizeof (void *).
10046         * lib/memcmp.c: Include stdint.h.
10047         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
10048         srcp2 to 'const byte *'.
10049         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
10050         types to uintptr_t.
10051         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
10052         * modules/memcmp (Depends-on): Add stdint.
10053         Reported by Ozkan Sezer <sezeroz@gmail.com>.
10054
10055 2009-01-30  Eric Blake  <ebb9@byu.net>
10056
10057         fix more require-before-expand issues
10058         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
10059         expand, AC_PROG_AWK.
10060         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
10061
10062 2009-01-28  Eric Blake  <ebb9@byu.net>
10063
10064         version-etc: use consistent URL formatting
10065         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
10066         Improve formatting.  Use fputs for string without %.
10067
10068 2009-01-28  Jim Meyering  <meyering@redhat.com>
10069
10070         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
10071         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
10072         "underquoted definition of NAME" from autoconf-2.59.
10073
10074 2009-01-28  Bruno Haible  <bruno@clisp.org>
10075
10076         * doc/gnulib.texi: Add "Obsolete modules" to index.
10077
10078 2009-01-28  Jim Meyering  <meyering@redhat.com>
10079
10080         useless-if-before-free: recognize more variants
10081         * build-aux/useless-if-before-free: Also recognize e.g.,
10082         if (NULL != p) free (p);
10083
10084 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
10085
10086         test-getaddrinfo: skip (don't fail) this test when there's no network
10087         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
10088         on the presumption that it means you lack network access.
10089
10090 2009-01-26  Jim Meyering  <meyering@redhat.com>
10091
10092         fflush: avoid warnings on modern systems
10093         * lib/fflush.c (rpl_fflush): Move declarations of locals,
10094         pos and result, into scopes where they're used.
10095
10096 2009-01-26  Eric Blake  <ebb9@byu.net>
10097
10098         Silence warning reintroduced by recent extensions patch.
10099         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
10100         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
10101         autoconf.
10102
10103         Backport improved autoconf semantics of AC_DEFUN_ONCE.
10104         * m4/00gnulib.m4: New file.
10105         * gnulib-tool (func_get_filelist): Always use it.
10106         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
10107         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
10108
10109 2009-01-25  Bruno Haible  <bruno@clisp.org>
10110
10111         Make test-quotearg work on MacOS X and AIX.
10112         * tests/test-quotearg.sh: New file.
10113         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
10114         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
10115         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
10116         include <libintl.h>.
10117         (fake_locale): Remove variable.
10118         (gettext, dgettext, dcgettext): Remove functions.
10119         (main): Instead of setting a fake locale, set a real locale. Call
10120         textdomain and bindtextdomain.
10121         * modules/quotearg-tests (Files): Add the new files.
10122         (Depends-on): Add gettext, setenv, unsetenv.
10123         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
10124         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
10125         Augment TESTS_ENVIRONMENT.
10126
10127 2009-01-25  Bruno Haible  <bruno@clisp.org>
10128
10129         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
10130         fr_FR.ISO8859-1 locale on MacOS X.
10131         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
10132         ja_JP.eucJP locale on MacOS X.
10133         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
10134         zh_CN.GB18030 locale on MacOS X.
10135
10136 2009-01-25  Bruno Haible  <bruno@clisp.org>
10137
10138         Avoid link errors on MacOS X 10.3.
10139         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
10140         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
10141
10142 2009-01-25  Bruno Haible  <bruno@clisp.org>
10143
10144         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
10145         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
10146         * modules/pipe (Files): Remove m4/posix_spawn.m4.
10147         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
10148         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
10149         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
10150         posix_spawnattr_init, posix_spawnattr_setsigmask,
10151         posix_spawnattr_setflags, posix_spawnattr_destroy.
10152
10153         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
10154         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
10155         * modules/execute (Files): Remove m4/posix_spawn.m4.
10156         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
10157         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
10158         posix_spawnattr_init, posix_spawnattr_setsigmask,
10159         posix_spawnattr_setflags, posix_spawnattr_destroy.
10160
10161 2009-01-25  Bruno Haible  <bruno@clisp.org>
10162
10163         * lib/glthread/threadlib.c: Include <stdlib.h>.
10164
10165 2009-01-25  Bruno Haible  <bruno@clisp.org>
10166
10167         * lib/glthread/threadlib.c (dummy): New declaration.
10168
10169 2009-01-25  Bruno Haible  <bruno@clisp.org>
10170
10171         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
10172         multibyte characters also for the GB18030 encoding. Don't crash when
10173         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
10174
10175 2009-01-25  Bruno Haible  <bruno@clisp.org>
10176
10177         Avoid redefining 'struct random_data' on OSF/1 5.1.
10178         * lib/stdlib.in.h: Include <random.h> if it exists.
10179         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
10180         HAVE_RANDOM_H. Include <random.h> when testing whether
10181         'struct random_data' exists.
10182         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
10183
10184 2009-01-25  Bruno Haible  <bruno@clisp.org>
10185
10186         Don't install charset.alias on MacOS X >= 10.3.
10187         * lib/localcharset.c (DARWIN7): New macro.
10188         (get_charset_aliases): Hardcode the result for Darwin7.
10189         * modules/localcharset (install-exec-local): Don't install
10190         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
10191
10192 2009-01-25  Bruno Haible  <bruno@clisp.org>
10193
10194         Don't install charset.alias on mingw and Cygwin.
10195         * modules/localcharset (install-exec-local): Don't install
10196         charset.alias on mingw and Cygwin, if the file does not yet exist.
10197         The result for these platforms is hardcoded in localcharset.c.
10198
10199 2009-01-25  Bruno Haible  <bruno@clisp.org>
10200
10201         Make it possible again to use AC_GNU_SOURCE together with gnulib.
10202         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
10203         before requiring AC_USE_SYSTEM_EXTENSIONS.
10204
10205 2009-01-25  Jim Meyering  <meyering@redhat.com>
10206
10207         c-strtod: avoid warnings
10208         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
10209         "assignment discards qualifiers from pointer target type" warnings.
10210
10211 2009-01-24  Bruno Haible  <bruno@clisp.org>
10212
10213         Add support for non-UTF-8 locales on MacOS X.
10214         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
10215         canonical encodings. For Darwin 7 and newer, don't map traditional
10216         encodings to UTF-8.
10217         Reported by Vincent Lefevre <vincent@vinc17.org>
10218         at <http://savannah.gnu.org/bugs/?25235>.
10219
10220 2009-01-24  Bruno Haible  <bruno@clisp.org>
10221
10222         * doc/gnulib.texi (Obsolete modules): New section.
10223         Reported by Mike Frysinger <vapier@gentoo.org>.
10224
10225 2009-01-24  Bruno Haible  <bruno@clisp.org>
10226
10227         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
10228         (%.dvi): New rule.
10229
10230 2009-01-24  Bruno Haible  <bruno@clisp.org>
10231
10232         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
10233         Reported by Eric Blake.
10234
10235 2009-01-24  Bruno Haible  <bruno@clisp.org>
10236
10237         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
10238         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
10239         Reported by Gary V. Vaughan <gary@gnu.org>.
10240
10241 2009-01-24  Bruno Haible  <bruno@clisp.org>
10242
10243         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
10244
10245 2009-01-23  Bruno Haible  <bruno@clisp.org>
10246
10247         Make c-strtod, c-strtold usable in libraries.
10248         * lib/c-strtod.c: Include string.h instead of xalloc.h.
10249         (C_STRTOD): Call strdup instead of xstrdup.
10250         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
10251         * modules/c-strtold (Depends-on): Likewise.
10252         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
10253         * NEWS: Mention the change.
10254         Reported by Michael Gold <mgold@ncf.ca>.
10255
10256 2009-01-23  Jim Meyering  <meyering@redhat.com>
10257
10258         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
10259         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
10260         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
10261
10262 2009-01-23  Simon Josefsson  <simon@josefsson.org>
10263
10264         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
10265         GNU CoreUtils.
10266         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
10267         * modules/version-etc (Description): Update.
10268
10269 2009-01-22  Bruno Haible  <bruno@clisp.org>
10270
10271         Cache the C locale object.
10272         * lib/c-strtod.c (c_locale_cache): New variable.
10273         (c_locale): New function.
10274         (C_STRTOD): Use it, and don't call freelocale.
10275         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
10276         Suggested by Paolo Bonzini.
10277
10278 2009-01-21  Bruno Haible  <bruno@clisp.org>
10279
10280         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
10281         conditions other than overflow.
10282
10283 2009-01-21  Bruno Haible  <bruno@clisp.org>
10284
10285         * lib/c-strtod.c: Include errno.h.
10286         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
10287         value from STRTOD_L and STRTOD.
10288
10289 2009-01-21  Bruno Haible  <bruno@clisp.org>
10290         and Jim Meyering  <meyering@redhat.com>
10291
10292         nanosleep: skip configure test (fail it) for apple universal builds
10293         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
10294         universal builds, assume that nanosleep does not work.
10295         * modules/nanosleep (Depends-on): Add multiarch.
10296
10297         mktime: skip configure test (fail it) for apple universal builds
10298         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
10299         universal builds, assume that mktime does not work.
10300         * modules/mktime (Depends-on): Add multiarch.
10301
10302 2009-01-21  Eric Blake  <ebb9@byu.net>
10303
10304         multiarch: avoid expand-before-require warning
10305         * modules/multiarch (configure.ac): Require, rather than expand,
10306         gl_MULTIARCH.
10307         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
10308         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
10309         enforce that all clients require it.  Partial reversion of
10310         2008-12-29 patch.
10311
10312         error: avoid expand-before-require warning
10313         * modules/errno (configure.ac): Require, rather than expand,
10314         gl_HEADER_ERRNO_H.
10315         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
10316         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
10317         enforce that all clients require it.
10318
10319         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
10320         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
10321         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
10322         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
10323
10324 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
10325
10326         Revert:
10327         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
10328
10329         regex: do not depend on obsolete modules.
10330         * modules/regex: Remove memcmp and memmove.
10331
10332 2009-01-20  Bruno Haible  <bruno@clisp.org>
10333
10334         Make the 'link' module link on Windows NT 4.
10335         * lib/link.c (_WIN32_WINNT): Don't define.
10336         (CreateHardLinkFuncType): New type.
10337         (CreateHardLinkFunc, initialized): New variables.
10338         (initialize): New function.
10339         (link): Invoke CreateHardLink indirectly through the function pointer.
10340
10341 2009-01-20  Bruno Haible  <bruno@clisp.org>
10342
10343         Fix compilation failure on mingw.
10344         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
10345
10346 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
10347
10348         * doc/c-strtod.texi: Mention a couple of restrictions.
10349
10350 2009-01-20  Jim Meyering  <meyering@redhat.com>
10351
10352         gettimeofday: move more declarations out of functions
10353         * lib/gettimeofday.c: Move extern declarations of tzset and
10354         gmtime out of containing functions.  Prompted by Bruno Haible.
10355
10356 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
10357
10358         regex: do not depend on obsolete modules.
10359         * modules/regex: Remove memcmp and memmove.
10360
10361 2009-01-19  Bruno Haible  <bruno@clisp.org>
10362
10363         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
10364         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
10365         gl_BIGENDIAN, not AC_C_BIGENDIAN.
10366         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
10367         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
10368
10369 2009-01-19  Bruno Haible  <bruno@clisp.org>
10370
10371         * tests/test-link.c: Include <errno.h>.
10372         (main): Exit with code 77 when a hard link cannot be created due to
10373         the file system.
10374         * tests/test-link.sh: Skip test when a hard link cannot be created due
10375         to the file system.
10376         Suggested by Eric Blake.
10377
10378 2009-01-19  Martin Lambers  <marlam@marlam.de>
10379
10380         * modules/link-tests: New file.
10381         * tests/test-link.sh: New file.
10382         * tests/test-link.c: New file.
10383
10384 2009-01-19  Eric Blake  <ebb9@byu.net>
10385
10386         doc: mention another function added in cygwin 1.7.0
10387         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
10388         Another new function in cygwin 1.7.
10389
10390 2009-01-19  Bruno Haible  <bruno@clisp.org>
10391
10392         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
10393         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
10394         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
10395         gl_BIGENDIAN, not AC_C_BIGENDIAN.
10396         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
10397         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
10398         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
10399         * m4/md4.m4 (gl_MD4): Likewise.
10400         * m4/md5.m4 (gl_MD5): Likewise.
10401         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
10402         * m4/sha1.m4 (gl_SHA1): Likewise.
10403         * m4/sha256.m4 (gl_SHA256): Likewise.
10404         * m4/sha512.m4 (gl_SHA512): Likewise.
10405
10406 2009-01-19  Bruno Haible  <bruno@clisp.org>
10407
10408         * modules/uniname/uniname-tests (Depends-on): Add progname.
10409         * tests/uniname/test-uninames.c: Include progname.h.
10410         (main): Call set_program_name.
10411
10412         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
10413         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
10414         (main): Call set_program_name.
10415
10416         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
10417         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
10418         (main): Call set_program_name.
10419
10420         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
10421         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
10422         (main): Call set_program_name.
10423
10424         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
10425         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
10426         (main): Call set_program_name.
10427
10428         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
10429         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
10430         (main): Call set_program_name.
10431
10432         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
10433         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
10434         (main): Call set_program_name.
10435
10436         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
10437         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
10438         (main): Call set_program_name.
10439
10440         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
10441         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
10442         (main): Call set_program_name.
10443
10444 2009-01-19  Eric Blake  <ebb9@byu.net>
10445
10446         test-unistd: test previous patch
10447         * tests/test-unistd.c: Test *_FILENO macros.
10448
10449         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
10450         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10451         Guarantee a definition.
10452         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
10453         * modules/unistd-safer (Depends-on): Add dependency on unistd.
10454         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
10455         * lib/dup-safer.c (STDERR_FILENO): Likewise.
10456         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10457         Likewise.
10458         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
10459         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
10460         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10461         Likewise.
10462         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
10463         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
10464         (STDERR_FILENO): Likewise.
10465         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
10466         (STDERR_FILENO): Likewise.
10467         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
10468         (STDERR_FILENO): Likewise.
10469         Reported by Elbert Pol.
10470
10471 2009-01-19  Eric Blake  <ebb9@byu.net>
10472
10473         doc: mention more functions added in cygwin 1.7.0
10474         * doc/posix-functions/abort.texi (abort): Update wording related
10475         to cygwin.
10476         * doc/posix-functions/daylight.texi (daylight): Likewise.
10477         * doc/posix-functions/optarg.texi (optarg): Likewise.
10478         * doc/posix-functions/optarg.texi (opterr): Likewise.
10479         * doc/posix-functions/optarg.texi (optind): Likewise.
10480         * doc/posix-functions/optarg.texi (optopt): Likewise.
10481         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
10482         worked in 1.5.x, and was withdrawn in 1.7.
10483         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
10484         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
10485         cygwin versions.
10486         * doc/posix-functions/perror.texi (perror): Likewise.
10487         * doc/posix-functions/printf.texi (printf): Likewise.
10488         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
10489         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
10490         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
10491         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
10492         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
10493         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
10494         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
10495         Likewise.
10496         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
10497         Likewise.
10498         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
10499         this function.
10500         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
10501         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
10502         Likewise.
10503         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
10504         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
10505         * doc/posix-functions/confstr.texi (confstr): Likewise.
10506         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
10507         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
10508         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
10509         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
10510         * doc/posix-functions/fputws.texi (fputws): Likewise.
10511         * doc/posix-functions/fwide.texi (fwide): Likewise.
10512         * doc/posix-functions/getwc.texi (getwc): Likewise.
10513         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
10514         * doc/posix-functions/putwc.texi (putwc): Likewise.
10515         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
10516         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
10517         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
10518         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
10519         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
10520         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
10521         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
10522         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
10523         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
10524         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
10525         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
10526
10527 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
10528
10529         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
10530         * lib/ioctl.c: Include <sys/ioctl.h>.
10531
10532 2009-01-19  Simon Josefsson  <simon@josefsson.org>
10533
10534         * modules/getdate-tests (Depends-on): Add progname.
10535         * tests/test-getdate.c: Use progname module, to avoid link errors
10536         on non-glibc systems.
10537
10538 2009-01-18  Simon Josefsson  <simon@josefsson.org>
10539
10540         * modules/filenamecat-tests (Depends-on): Add progname.
10541         * modules/fstrcmp-tests (Depends-on): Likewise.
10542
10543         * tests/test-filenamecat.c: Use progname module, to avoid link
10544         errors on non-glibc systems.
10545         * tests/test-fstrcmp.c: Likewise.
10546
10547 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
10548
10549         gettimeofday: avoid warning: nested extern declaration of 'localtime'
10550         * lib/gettimeofday.c: Move extern declaration out of function.
10551
10552 2009-01-18  Bruno Haible  <bruno@clisp.org>
10553
10554         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
10555         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
10556         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
10557
10558 2009-01-18  Bruno Haible  <bruno@clisp.org>
10559
10560         * lib/strftime.c (MEMPCPY): Remove unused macro.
10561         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
10562
10563 2009-01-18  Martin Lambers  <marlam@marlam.de>
10564
10565         New module 'link'.
10566         * lib/unistd.in.h (link): New declaration.
10567         * lib/link.c: New file.
10568         * m4/link.m4: New file.
10569         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
10570         HAVE_LINK.
10571         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
10572         * modules/link: New file.
10573         * doc/posix-functions/link.texi: Mention the new module.
10574
10575 2009-01-18  Bruno Haible  <bruno@clisp.org>
10576
10577         * tests/test-avltree_list.c (main): Call set_program_name.
10578         * tests/test-avltree_oset.c (main): Likewise.
10579         * tests/test-obstack-printf.c: Include progname.h.
10580         (main): Call set_program_name.
10581         * tests/test-quotearg.c: Include progname.h.
10582         (main): Call set_program_name.
10583         * tests/test-xmemdup0.c: Include progname.h.
10584         (main): Call set_program_name.
10585
10586 2009-01-18  Bruno Haible  <bruno@clisp.org>
10587
10588         New module 'alphasort'.
10589         * lib/dirent.in.h (alphasort): New declaration.
10590         * lib/alphasort.c: New file, from glibc with modifications.
10591         * m4/alphasort.m4: New file.
10592         * modules/alphasort: New file.
10593         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
10594         HAVE_ALPHASORT.
10595         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
10596         HAVE_ALPHASORT.
10597         * doc/posix-functions/alphasort.texi: Mention the new module and the
10598         portability problems.
10599
10600 2009-01-18  Bruno Haible  <bruno@clisp.org>
10601
10602         New module 'scandir'.
10603         * lib/dirent.in.h (scandir): New declaration.
10604         * lib/scandir.c: New file, from glibc with modifications.
10605         * m4/scandir.m4: New file.
10606         * modules/scandir: New file.
10607         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
10608         HAVE_SCANDIR.
10609         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
10610         HAVE_SCANDIR.
10611         * doc/posix-functions/scandir.texi: Mention the new module and the
10612         portability problems.
10613
10614 2009-01-17  Bruno Haible  <bruno@clisp.org>
10615
10616         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
10617         Update documentation.
10618         (func_remove_suffix): Escape all dots in the suffix. Update
10619         documentation.
10620         (func_filter_filelist): Update documentation.
10621         Reported by Ralf Wildenhues.
10622
10623 2009-01-17  Bruno Haible  <bruno@clisp.org>
10624
10625         * modules/dprintf-posix-tests: New file.
10626         * tests/test-dprintf-posix.sh: New file.
10627         * tests/test-dprintf-posix.c: New file.
10628
10629         New modules 'dprintf', 'dprintf-posix'.
10630         * lib/stdio.in.h (dprintf): New declaration.
10631         * lib/dprintf.c: New file.
10632         * m4/dprintf.m4: New file.
10633         * m4/dprintf-posix.m4: New file.
10634         * modules/dprintf: New file.
10635         * modules/dprintf-posix: New file.
10636         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
10637         HAVE_DPRINTF, REPLACE_DPRINTF.
10638         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
10639         HAVE_DPRINTF, REPLACE_DPRINTF.
10640         * doc/posix-functions/dprintf.texi: Mention the new modules.
10641
10642 2009-01-17  Bruno Haible  <bruno@clisp.org>
10643
10644         * modules/vdprintf-posix-tests: New file.
10645         * tests/test-vdprintf-posix.sh: New file.
10646         * tests/test-vdprintf-posix.c: New file.
10647
10648         New modules 'vdprintf', 'vdprintf-posix'.
10649         * lib/stdio.in.h (vdprintf): New declaration.
10650         * lib/vdprintf.c: New file.
10651         * m4/vdprintf.m4: New file.
10652         * m4/vdprintf-posix.m4: New file.
10653         * modules/vdprintf: New file.
10654         * modules/vdprintf-posix: New file.
10655         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
10656         HAVE_VDPRINTF, REPLACE_VDPRINTF.
10657         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
10658         HAVE_VDPRINTF, REPLACE_VDPRINTF.
10659         * doc/posix-functions/vdprintf.texi: Mention the new modules.
10660
10661 2009-01-17  Bruno Haible  <bruno@clisp.org>
10662
10663         Fix replacement of fopen on mingw.
10664         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
10665         mingw.
10666
10667 2009-01-17  Bruno Haible  <bruno@clisp.org>
10668
10669         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
10670         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
10671
10672 2009-01-17  Bruno Haible  <bruno@clisp.org>
10673
10674         Avoid test-fflush2.sh failure on mingw.
10675         * tests/test-fflush2.c: Include binary-io.h.
10676         (main): Put standard input into binary mode.
10677         * modules/fflush-tests (Depends-on): Add binary-io.
10678
10679 2009-01-17  Bruno Haible  <bruno@clisp.org>
10680
10681         * lib/wchar.in.h: In another particular situation, include only the
10682         system's <wchar.h> file.
10683         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
10684         Reported by Albert Chin-A-Young <china@thewrittenword.com>
10685         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
10686
10687 2009-01-17  Bruno Haible  <bruno@clisp.org>
10688
10689         Support for stripping executables in --enable-relocatable.
10690         * build-aux/install-reloc: Expect one more argument, or an environment
10691         variable RELOC_STRIP_PROG. If set, strip the destination program and
10692         its wrapper.
10693         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
10694         RELOC_STRIP_PROG.
10695         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
10696         to set RELOCATABLE_STRIP.
10697         * NEWS: Mention the new Makefile requirement.
10698
10699 2009-01-17  Bruno Haible  <bruno@clisp.org>
10700
10701         * build-aux/install-reloc: Remove debugging information left over by
10702         C compiler on MacOS X.
10703
10704 2009-01-17  Bruno Haible  <bruno@clisp.org>
10705
10706         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
10707         * lib/progreloc.c (find_executable): Fix type of pointer passed to
10708         _NSGetExecutablePath.
10709
10710 2009-01-16  Jim Meyering  <meyering@redhat.com>
10711
10712         strerror: avoid warnings about discarding "const"
10713         * lib/strerror.c (rpl_strerror): Instead of returning a const
10714         string from each and every "case", use a variable, and add a single
10715         cast after the switch.
10716
10717 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
10718
10719         * lib/arpa_inet.in.h: Add extern "C" block for C++.
10720
10721 2009-01-16  Bruno Haible  <bruno@clisp.org>
10722
10723         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
10724         array initializer syntax that also works in C++ mode.
10725         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10726
10727 2009-01-16  Jim Meyering  <meyering@redhat.com>
10728
10729         poll: suppress a warning
10730         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
10731         to ignore "...unsigned expression < 0 is always false" warnings.
10732
10733 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
10734
10735         poll: remove declarations of unused variables
10736         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
10737         sockbuf and optlen.
10738
10739 2009-01-15  Bruno Haible  <bruno@clisp.org>
10740
10741         Make fflush-after-ungetc POSIX compliant on BSD systems.
10742         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
10743         (clear_ungetc_buffer): Implement also for other systems.
10744         (rpl_fflush): On glibc systems, invoke
10745         clear_ungetc_buffer_preserving_position. Otherwise, invoke
10746         clear_ungetc_buffer after fetching the stream's position, not before.
10747
10748 2009-01-15  Bruno Haible  <bruno@clisp.org>
10749
10750         Make fflush-after-ungetc POSIX compliant on glibc systems.
10751         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
10752         after ungetc.
10753         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
10754         (rpl_fflush): On glibc systems, simply call the system's fflush
10755         function after clearing the ungetc buffer.
10756         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
10757         Instead, lseek only to the end of file, then use the system's fseeko
10758         for the rest. On glibc systems, reset the EOF indicator bit.
10759
10760 2009-01-15  Jim Meyering  <meyering@redhat.com>
10761
10762         openmp.m4: revert quote-adding change, for portability to older autoconf
10763         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
10764         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
10765         Simon Josefsson noticed the problem when using autoconf-2.61.
10766
10767 2009-01-15  Bruno Haible  <bruno@clisp.org>
10768
10769         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
10770         * tests/test-fflush2.c (ASSERT): Always fail.
10771         (main): Add two tests for fflush() after ungetc(), taking into account
10772         the Austin Group's clarification.
10773         Suggested by Eric Blake.
10774
10775 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
10776
10777         mktime.m4: remove K&R-style function prototypes
10778         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
10779         for the Sun C++ compiler.
10780
10781 2009-01-14  Bruno Haible  <bruno@clisp.org>
10782
10783         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
10784         while including <wchar.h>.
10785         * lib/wchar.in.h: In two particular situations on HP-UX, include only
10786         the system's <wchar.h> file.
10787         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10788
10789 2009-01-14  Bruno Haible  <bruno@clisp.org>
10790
10791         * m4/csharp.m4: Don't mention gettext on the serial number line.
10792         * m4/csharpexec.m4: Likewise.
10793         * m4/eaccess.m4: Likewise.
10794         * m4/javaexec.m4: Likewise.
10795         * m4/sig_atomic_t.m4: Likewise.
10796         * m4/tmpdir.m4: Likewise.
10797         * m4/intldir.m4: Bump gettext version.
10798         * m4/lib-ld.m4: Likewise.
10799
10800 2009-01-14  Bruno Haible  <bruno@clisp.org>
10801
10802         * lib/progname.c (set_program_name): Add more comments.
10803         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
10804
10805 2009-01-14  Simon Josefsson  <simon@josefsson.org>
10806
10807         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
10808         were sys/stat.h does not define it.
10809
10810 2009-01-14  Jim Meyering  <meyering@redhat.com>
10811
10812         many *.m4 files: improve m4 quoting
10813         99% of this change was performed by running the following commands:
10814         git ls-files | grep '\.m4$' | xargs perl -pi \
10815           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
10816           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
10817           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
10818           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
10819         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
10820         The remainder were to add Copyright dates, increment serial numbers,
10821         undo some changes in comments, exclude m4/intl.m4, and add quotes
10822         around the "1" in ",1" where the unusual spacing prohibited the
10823         above regexps from doing the job.  For more details, see
10824         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
10825         * m4/acl.m4: Modified.
10826         * m4/afs.m4: Likewise.
10827         * m4/alloca.m4: Likewise.
10828         * m4/argp.m4: Likewise.
10829         * m4/argz.m4: Likewise.
10830         * m4/atexit.m4: Likewise.
10831         * m4/bison-i18n.m4: Likewise.
10832         * m4/bison.m4: Likewise.
10833         * m4/byteswap.m4: Likewise.
10834         * m4/c-stack.m4: Likewise.
10835         * m4/c-strtod.m4: Likewise.
10836         * m4/calloc.m4: Likewise.
10837         * m4/canonicalize-lgpl.m4: Likewise.
10838         * m4/chown.m4: Likewise.
10839         * m4/clock_time.m4: Likewise.
10840         * m4/codeset.m4: Likewise.
10841         * m4/copy-file.m4: Likewise.
10842         * m4/csharp.m4: Likewise.
10843         * m4/csharpcomp.m4: Likewise.
10844         * m4/csharpexec.m4: Likewise.
10845         * m4/d-ino.m4: Likewise.
10846         * m4/d-type.m4: Likewise.
10847         * m4/dirfd.m4: Likewise.
10848         * m4/double-slash-root.m4: Likewise.
10849         * m4/eaccess.m4: Likewise.
10850         * m4/eealloc.m4: Likewise.
10851         * m4/environ.m4: Likewise.
10852         * m4/errno_h.m4: Likewise.
10853         * m4/euidaccess.m4: Likewise.
10854         * m4/execute.m4: Likewise.
10855         * m4/fatal-signal.m4: Likewise.
10856         * m4/fchdir.m4: Likewise.
10857         * m4/fcntl_h.m4: Likewise.
10858         * m4/fileblocks.m4: Likewise.
10859         * m4/filenamecat.m4: Likewise.
10860         * m4/findprog.m4: Likewise.
10861         * m4/flexmember.m4: Likewise.
10862         * m4/fnmatch.m4: Likewise.
10863         * m4/fopen.m4: Likewise.
10864         * m4/fpending.m4: Likewise.
10865         * m4/fprintf-posix.m4: Likewise.
10866         * m4/free.m4: Likewise.
10867         * m4/frexp.m4: Likewise.
10868         * m4/frexpl.m4: Likewise.
10869         * m4/fsusage.m4: Likewise.
10870         * m4/ftruncate.m4: Likewise.
10871         * m4/gc-camellia.m4: Likewise.
10872         * m4/gc-random.m4: Likewise.
10873         * m4/gc.m4: Likewise.
10874         * m4/getaddrinfo.m4: Likewise.
10875         * m4/getcwd-abort-bug.m4: Likewise.
10876         * m4/getcwd-path-max.m4: Likewise.
10877         * m4/getdate.m4: Likewise.
10878         * m4/getdomainname.m4: Likewise.
10879         * m4/getgroups.m4: Likewise.
10880         * m4/gethostname.m4: Likewise.
10881         * m4/gethrxtime.m4: Likewise.
10882         * m4/getline.m4: Likewise.
10883         * m4/getloadavg.m4: Likewise.
10884         * m4/getndelim2.m4: Likewise.
10885         * m4/getpass.m4: Likewise.
10886         * m4/gettext.m4: Likewise.
10887         * m4/gettime.m4: Likewise.
10888         * m4/gettimeofday.m4: Likewise.
10889         * m4/gnulib-common.m4: Likewise.
10890         * m4/group-member.m4: Likewise.
10891         * m4/host-os.m4: Likewise.
10892         * m4/iconv.m4: Likewise.
10893         * m4/iconv_open.m4: Likewise.
10894         * m4/inet_ntop.m4: Likewise.
10895         * m4/inet_pton.m4: Likewise.
10896         * m4/inline.m4: Likewise.
10897         * m4/intldir.m4: Likewise.
10898         * m4/intlmacosx.m4: Likewise.
10899         * m4/intmax.m4: Likewise.
10900         * m4/intmax_t.m4: Likewise.
10901         * m4/inttypes.m4: Likewise.
10902         * m4/inttypes_h.m4: Likewise.
10903         * m4/inttypes-pri.m4: Likewise.
10904         * m4/isapipe.m4: Likewise.
10905         * m4/isnand.m4: Likewise.
10906         * m4/isnanf.m4: Likewise.
10907         * m4/isnanl.m4: Likewise.
10908         * m4/javacomp.m4: Likewise.
10909         * m4/javaexec.m4: Likewise.
10910         * m4/jm-winsz1.m4: Likewise.
10911         * m4/jm-winsz2.m4: Likewise.
10912         * m4/lchown.m4: Likewise.
10913         * m4/lcmessage.m4: Likewise.
10914         * m4/ldexpl.m4: Likewise.
10915         * m4/lib-ld.m4: Likewise.
10916         * m4/lib-link.m4: Likewise.
10917         * m4/libsigsegv.m4: Likewise.
10918         * m4/link-follow.m4: Likewise.
10919         * m4/localcharset.m4: Likewise.
10920         * m4/locale-fr.m4: Likewise.
10921         * m4/locale-ja.m4: Likewise.
10922         * m4/locale-tr.m4: Likewise.
10923         * m4/locale-zh.m4: Likewise.
10924         * m4/lock.m4: Likewise.
10925         * m4/longlong.m4: Likewise.
10926         * m4/ls-mntd-fs.m4: Likewise.
10927         * m4/lstat.m4: Likewise.
10928         * m4/malloc.m4: Likewise.
10929         * m4/mathl.m4: Likewise.
10930         * m4/mbrtowc.m4: Likewise.
10931         * m4/mbstate_t.m4: Likewise.
10932         * m4/mbswidth.m4: Likewise.
10933         * m4/memchr.m4: Likewise.
10934         * m4/memcmp.m4: Likewise.
10935         * m4/memcpy.m4: Likewise.
10936         * m4/memmem.m4: Likewise.
10937         * m4/memmove.m4: Likewise.
10938         * m4/mempcpy.m4: Likewise.
10939         * m4/memrchr.m4: Likewise.
10940         * m4/memset.m4: Likewise.
10941         * m4/minmax.m4: Likewise.
10942         * m4/mkdir-slash.m4: Likewise.
10943         * m4/mkdtemp.m4: Likewise.
10944         * m4/mktime.m4: Likewise.
10945         * m4/mmap-anon.m4: Likewise.
10946         * m4/mountlist.m4: Likewise.
10947         * m4/nanosleep.m4: Likewise.
10948         * m4/nls.m4: Likewise.
10949         * m4/nocrash.m4: Likewise.
10950         * m4/open.m4: Likewise.
10951         * m4/openat.m4: Likewise.
10952         * m4/openmp.m4: Likewise.
10953         * m4/pathmax.m4: Likewise.
10954         * m4/perl.m4: Likewise.
10955         * m4/physmem.m4: Likewise.
10956         * m4/pipe.m4: Likewise.
10957         * m4/po.m4: Likewise.
10958         * m4/poll.m4: Likewise.
10959         * m4/posixtm.m4: Likewise.
10960         * m4/posixver.m4: Likewise.
10961         * m4/printf-frexp.m4: Likewise.
10962         * m4/printf-frexpl.m4: Likewise.
10963         * m4/printf-posix.m4: Likewise.
10964         * m4/printf-posix-rpl.m4: Likewise.
10965         * m4/printf.m4: Likewise.
10966         * m4/progtest.m4: Likewise.
10967         * m4/putenv.m4: Likewise.
10968         * m4/readline.m4: Likewise.
10969         * m4/readlink.m4: Likewise.
10970         * m4/readutmp.m4: Likewise.
10971         * m4/realloc.m4: Likewise.
10972         * m4/regex.m4: Likewise.
10973         * m4/relocatable.m4: Likewise.
10974         * m4/relocatable-lib.m4: Likewise.
10975         * m4/rename-dest-slash.m4: Likewise.
10976         * m4/rename.m4: Likewise.
10977         * m4/rmdir-errno.m4: Likewise.
10978         * m4/rmdir.m4: Likewise.
10979         * m4/roundf.m4: Likewise.
10980         * m4/roundl.m4: Likewise.
10981         * m4/rpmatch.m4: Likewise.
10982         * m4/save-cwd.m4: Likewise.
10983         * m4/selinux-selinux-h.m4: Likewise.
10984         * m4/setenv.m4: Likewise.
10985         * m4/settime.m4: Likewise.
10986         * m4/sig2str.m4: Likewise.
10987         * m4/sig_atomic_t.m4: Likewise.
10988         * m4/signalblocking.m4: Likewise.
10989         * m4/signbit.m4: Likewise.
10990         * m4/sigpipe.m4: Likewise.
10991         * m4/sockets.m4: Likewise.
10992         * m4/sockpfaf.m4: Likewise.
10993         * m4/st_dm_mode.m4: Likewise.
10994         * m4/stat-time.m4: Likewise.
10995         * m4/stdbool.m4: Likewise.
10996         * m4/stdint.m4: Likewise.
10997         * m4/stdint_h.m4: Likewise.
10998         * m4/stpcpy.m4: Likewise.
10999         * m4/stpncpy.m4: Likewise.
11000         * m4/strcase.m4: Likewise.
11001         * m4/strchrnul.m4: Likewise.
11002         * m4/strcspn.m4: Likewise.
11003         * m4/strdup.m4: Likewise.
11004         * m4/strftime.m4: Likewise.
11005         * m4/strndup.m4: Likewise.
11006         * m4/strnlen.m4: Likewise.
11007         * m4/strpbrk.m4: Likewise.
11008         * m4/strptime.m4: Likewise.
11009         * m4/strsep.m4: Likewise.
11010         * m4/strtod.m4: Likewise.
11011         * m4/strtoimax.m4: Likewise.
11012         * m4/strtok_r.m4: Likewise.
11013         * m4/strtol.m4: Likewise.
11014         * m4/strtoll.m4: Likewise.
11015         * m4/strtoul.m4: Likewise.
11016         * m4/strtoull.m4: Likewise.
11017         * m4/strtoumax.m4: Likewise.
11018         * m4/strverscmp.m4: Likewise.
11019         * m4/threadlib.m4: Likewise.
11020         * m4/timegm.m4: Likewise.
11021         * m4/tm_gmtoff.m4: Likewise.
11022         * m4/tmpdir.m4: Likewise.
11023         * m4/tmpfile.m4: Likewise.
11024         * m4/tzset.m4: Likewise.
11025         * m4/uintmax_t.m4: Likewise.
11026         * m4/unlinkdir.m4: Likewise.
11027         * m4/unlocked-io.m4: Likewise.
11028         * m4/uptime.m4: Likewise.
11029         * m4/userspec.m4: Likewise.
11030         * m4/utimbuf.m4: Likewise.
11031         * m4/utime.m4: Likewise.
11032         * m4/utimes-null.m4: Likewise.
11033         * m4/utimes.m4: Likewise.
11034         * m4/vararrays.m4: Likewise.
11035         * m4/vasnprintf.m4: Likewise.
11036         * m4/vfprintf-posix.m4: Likewise.
11037         * m4/vprintf-posix.m4: Likewise.
11038         * m4/wait-process.m4: Likewise.
11039         * m4/wchar_t.m4: Likewise.
11040         * m4/wint_t.m4: Likewise.
11041         * m4/write-any-file.m4: Likewise.
11042         * m4/yield.m4: Likewise.
11043
11044 2009-01-13  Bruno Haible  <bruno@clisp.org>
11045
11046         Avoid test-copy-file.sh failures when ACL support insufficient.
11047         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
11048         TESTS_ENVIRONMENT.
11049         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
11050         Reported by Jim Meyering.
11051
11052 2009-01-13  Bruno Haible  <bruno@clisp.org>
11053
11054         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
11055         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
11056         * modules/unistdio/u8-printf-parse (Files): Likewise.
11057         * modules/unistdio/u32-printf-parse (Files): Likewise.
11058         * modules/unistdio/ulc-printf-parse (Files): Likewise.
11059
11060 2009-01-13  Simon Josefsson  <simon@josefsson.org>
11061
11062         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
11063         and m4/inttypes_h.m4 too.
11064
11065 2009-01-12  Eric Blake  <ebb9@byu.net>
11066
11067         tests: IRIX 6.2 cc can't compile -0.0 into .data
11068         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
11069         rather than at compile-time.
11070         * tests/test-floorl.c (minus_zero): Likewise.
11071         * tests/test-frexpl.c (minus_zero): Likewise.
11072         * tests/test-isnan.c (minus_zerol): Likewise.
11073         * tests/test-isnanl.h (minus_zero): Likewise.
11074         * tests/test-ldexpl.c (minus_zero): Likewise.
11075         * tests/test-roundl.c (minus_zero): Likewise.
11076         * tests/test-signbit.c (minus_zerol): Likewise.
11077         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
11078         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
11079         * tests/test-truncl.c (minus_zero): Likewise.
11080         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
11081         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
11082         Reported by Tom G. Christensen and Nelson H. F. Beebe.
11083
11084 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11085
11086         regex: fix glibc bug 9697
11087         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
11088         handling.
11089
11090 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11091
11092         regex: fix glibc bug 697
11093         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
11094         being NULL also if there are no backreferences.
11095
11096 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11097
11098         regex: merge glibc changes
11099         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
11100         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
11101         re_string_skip_chars, re_string_reconstruct): Likewise.
11102         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
11103
11104 2009-01-07  Jim Meyering  <meyering@redhat.com>
11105
11106         poll: filter through cppi
11107         * lib/poll.c: Indent cpp directives to reflect nesting.
11108
11109 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
11110
11111         poll: don't return uninitialized
11112         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
11113
11114 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
11115
11116         avoid compile failure on AIX 6.1
11117         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
11118         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
11119
11120 2009-01-04  Jim Meyering  <meyering@redhat.com>
11121
11122         remove duplicate inclusion of <stdio.h>
11123         * tests/test-fprintf-posix.c: Likewise.
11124         * tests/test-printf-posix.c: Likewise.
11125         * tests/test-snprintf-posix.c: Likewise.
11126         * tests/test-sprintf-posix.c: Likewise.
11127         * tests/test-vasprintf-posix.c: Likewise.
11128         * tests/test-vfprintf-posix.c: Likewise.
11129         * tests/test-vprintf-posix.c: Likewise.
11130         * tests/test-vsnprintf-posix.c: Likewise.
11131         * tests/test-vsprintf-posix.c: Likewise.
11132
11133 2009-01-03  Jim Meyering  <meyering@redhat.com>
11134
11135         gnulib-tool: fix sed-based filtering
11136         * gnulib-tool (func_filter_filelist): Remove extra backslash
11137         in sed_fff_filter definition.
11138
11139 2009-01-02  Jim Meyering  <meyering@redhat.com>
11140
11141         strftime: avoid compilation failure on Solaris 2.6
11142         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
11143         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
11144         Don't #define mbrlen or mbsinit, since now they're guaranteed to
11145         be available.  Reported by Tom G. Christensen.  Details in
11146         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
11147
11148 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11149             Bruno Haible  <bruno@clisp.org>
11150
11151         Speed up gnulib-tool by doing more string processing through shell
11152         built-ins.
11153         * gnulib-tool (fast_func_append): New variable.
11154         (func_remove_prefix, func_remove_suffix): New functions.
11155         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
11156         (func_filter_filelist): New function.
11157         (func_get_dependencies): Use func_remove_suffix instead of sed.
11158         (func_get_automake_snippet): Use func_filter_filelist instead of a
11159         subshell and sed invocation.
11160
11161 2009-01-01  Bruno Haible  <bruno@clisp.org>
11162
11163         Fix a security bug.
11164         * gnulib-tool (func_import, import, update): Don't allow the characters
11165         '"', '$', '`', '\' in macro arguments that become part of commands that
11166         are evaluated.
11167
11168 2009-01-01  Bruno Haible  <bruno@clisp.org>
11169
11170         * gnulib-tool (func_reset_sigpipe): Add more comments.
11171
11172 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11173
11174         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
11175         func_emit_tests_Makefile_am, func_import): Abort loops early if we
11176         already know the answer.
11177
11178 2009-01-01  Jim Meyering  <meyering@redhat.com>
11179
11180         * lib/version-etc.c (version_etc_va): Update copyright year.
11181
11182 2008-12-30  Bruno Haible  <bruno@clisp.org>
11183
11184         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
11185         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
11186         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
11187
11188 2008-12-29  Eric Blake  <ebb9@byu.net>
11189
11190         multiarch: avoid autoconf AC_REQUIRE bug
11191         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
11192         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
11193         2.63 and older.
11194         Reported by Bruno Haible, and analyzed in
11195         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
11196
11197 2008-12-29  Bruno Haible  <bruno@clisp.org>
11198
11199         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
11200         files in subdirectories correctly.
11201         Reported by Ralf Wildenhues.
11202
11203 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11204
11205         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
11206         rather than 'join FILE -', for Solaris join.
11207
11208 2008-12-29  Bruno Haible  <bruno@clisp.org>
11209
11210         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
11211         quoting.
11212         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
11213         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
11214         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
11215         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
11216         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
11217         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
11218         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
11219         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
11220         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
11221         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
11222         * m4/nls.m4 (AM_NLS): Likewise.
11223         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
11224         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
11225         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
11226         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
11227         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
11228         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
11229         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
11230         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
11231         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
11232         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
11233         * m4/xsize.m4 (gl_XSIZE): Likewise.
11234         Suggested by Jim Meyering.
11235
11236 2008-11-17  Bruce Korb  <bkorb@gnu.org>
11237
11238         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
11239         * lib/parse-duration.c: use a switch instead of cascading if's.
11240
11241 2008-12-29  Eric Blake  <ebb9@byu.net>
11242
11243         wchar.h: supply WEOF on Irix 5.3
11244         * lib/wchar.in.h (wint_t): Also supply WEOF.
11245         * lib/wctype.in.h (wint_t): Likewise.
11246         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
11247         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
11248         Reported by Tom G. Christensen.
11249
11250 2008-12-26  Bruno Haible  <bruno@clisp.org>
11251
11252         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
11253         i486, i586, i686.
11254
11255 2008-12-26  Bruno Haible  <bruno@clisp.org>
11256
11257         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
11258
11259 2008-12-26  Bruno Haible  <bruno@clisp.org>
11260
11261         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
11262         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
11263         not __STDC_CONSTANT_MACROS.
11264         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
11265
11266 2008-12-25  Bruno Haible  <bruno@clisp.org>
11267
11268         Add support for universal builds to vasnprintf.
11269         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
11270         universal builds, guess no.
11271         * modules/vasnprintf-posix (Depends-on): Add multiarch.
11272         * modules/vasprintf-posix (Depends-on): Likewise.
11273         * modules/fprintf-posix (Depends-on): Likewise.
11274         * modules/vfprintf-posix (Depends-on): Likewise.
11275         * modules/snprintf-posix (Depends-on): Likewise.
11276         * modules/vsnprintf-posix (Depends-on): Likewise.
11277         * modules/sprintf-posix (Depends-on): Likewise.
11278         * modules/vsprintf-posix (Depends-on): Likewise.
11279         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
11280         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
11281         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
11282         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
11283         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
11284         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
11285         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
11286
11287         Add support for universal builds to <inttypes.h>.
11288         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
11289         _SCNu64_PREFIX): In Apple
11290         universal builds, define directly, using _LP64.
11291         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
11292         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
11293         * modules/inttypes (Depends-on): Add multiarch.
11294         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
11295
11296         Add support for universal builds to <stdint.h>.
11297         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
11298         universal builds, define directly, using _LP64.
11299         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
11300         Apple universal builds, don't test for the size and suffix of ptrdiff_t
11301         and size_t.
11302         * modules/stdint (Depends-on): Add multiarch.
11303         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
11304
11305         New module 'multiarch'.
11306         * modules/multiarch: New file.
11307         * m4/multiarch.m4: New file.
11308
11309 2008-12-25  Bruno Haible  <bruno@clisp.org>
11310
11311         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
11312
11313 2008-12-25  Bruno Haible  <bruno@clisp.org>
11314
11315         * modules/btowc (License): Relicense under LGPLv2+.
11316         * modules/mbsinit (License): Likewise.
11317         * modules/mbrtowc (License): Likewise.
11318         * modules/wcrtomb (License): Likewise.
11319         * modules/streq (License): Likewise.
11320         Reported by David Lutterkort <lutter@redhat.com>.
11321
11322 2008-12-23  Bruno Haible  <bruno@clisp.org>
11323
11324         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
11325
11326 2008-12-23  Bruno Haible  <bruno@clisp.org>
11327
11328         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
11329         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
11330         GETADDRINFO_LIB, not in LIBS.
11331         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
11332         * modules/canon-host (Link): Likewise.
11333         * NEWS: Mention the change.
11334         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
11335         GETADDRINFO_LIB.
11336
11337 2008-12-22  Bruno Haible  <bruno@clisp.org>
11338
11339         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
11340         * doc/posix-functions/iswalpha_l.texi: Likewise.
11341         * doc/posix-functions/iswblank_l.texi: Likewise.
11342         * doc/posix-functions/iswcntrl_l.texi: Likewise.
11343         * doc/posix-functions/iswctype_l.texi: Likewise.
11344         * doc/posix-functions/iswdigit_l.texi: Likewise.
11345         * doc/posix-functions/iswgraph_l.texi: Likewise.
11346         * doc/posix-functions/iswlower_l.texi: Likewise.
11347         * doc/posix-functions/iswprint_l.texi: Likewise.
11348         * doc/posix-functions/iswpunct_l.texi: Likewise.
11349         * doc/posix-functions/iswspace_l.texi: Likewise.
11350         * doc/posix-functions/iswupper_l.texi: Likewise.
11351         * doc/posix-functions/iswxdigit_l.texi: Likewise.
11352         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
11353         * doc/posix-functions/open_wmemstream.texi: Likewise.
11354         * doc/posix-functions/swscanf.texi: Likewise.
11355         * doc/posix-functions/towctrans_l.texi: Likewise.
11356         * doc/posix-functions/towlower.texi: Likewise.
11357         * doc/posix-functions/towlower_l.texi: Likewise.
11358         * doc/posix-functions/towupper.texi: Likewise.
11359         * doc/posix-functions/towupper_l.texi: Likewise.
11360         * doc/posix-functions/vfwprintf.texi: Likewise.
11361         * doc/posix-functions/vfwscanf.texi: Likewise.
11362         * doc/posix-functions/vswscanf.texi: Likewise.
11363         * doc/posix-functions/vwprintf.texi: Likewise.
11364         * doc/posix-functions/vwscanf.texi: Likewise.
11365         * doc/posix-functions/wcpcpy.texi: Likewise.
11366         * doc/posix-functions/wcpncpy.texi: Likewise.
11367         * doc/posix-functions/wcscasecmp.texi: Likewise.
11368         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
11369         * doc/posix-functions/wcscoll_l.texi: Likewise.
11370         * doc/posix-functions/wcsdup.texi: Likewise.
11371         * doc/posix-functions/wcsncasecmp.texi: Likewise.
11372         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
11373         * doc/posix-functions/wcsnlen.texi: Likewise.
11374         * doc/posix-functions/wcsnrtombs.texi: Likewise.
11375         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
11376         * doc/posix-functions/wctrans_l.texi: Likewise.
11377         * doc/posix-functions/wctype_l.texi: Likewise.
11378         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
11379         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
11380         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
11381         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
11382         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
11383         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
11384         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
11385         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
11386         * doc/glibc-functions/wcschrnul.texi: Likewise.
11387         * doc/glibc-functions/wcsftime_l.texi: Likewise.
11388         * doc/glibc-functions/wcstod_l.texi: Likewise.
11389         * doc/glibc-functions/wcstof_l.texi: Likewise.
11390         * doc/glibc-functions/wcstol_l.texi: Likewise.
11391         * doc/glibc-functions/wcstold_l.texi: Likewise.
11392         * doc/glibc-functions/wcstoll_l.texi: Likewise.
11393         * doc/glibc-functions/wcstoq.texi: Likewise.
11394         * doc/glibc-functions/wcstoul_l.texi: Likewise.
11395         * doc/glibc-functions/wcstoull_l.texi: Likewise.
11396         * doc/glibc-functions/wcstouq.texi: Likewise.
11397         * doc/glibc-functions/wmempcpy.texi: Likewise.
11398
11399 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
11400             Eric Blake  <ebb9@byu.net>
11401             Paolo Bonzini  <bonzini@gnu.org>
11402             Bruno Haible  <bruno@clisp.org>
11403
11404         Make c-stack work on Haiku.
11405         * lib/c-stack.c (SA_ONSTACK): Define fallback.
11406         (c_stack_action): Use SA_ONSTACK flag.
11407
11408 2008-12-22  Bruno Haible  <bruno@clisp.org>
11409
11410         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
11411
11412 2008-12-22  Bruno Haible  <bruno@clisp.org>
11413
11414         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
11415         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
11416         being overridden.
11417         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
11418         New macros.
11419         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
11420         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
11421         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
11422         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
11423
11424 2008-12-22  Bruno Haible  <bruno@clisp.org>
11425
11426         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
11427         from test code.
11428
11429 2008-12-22  Eric Blake  <ebb9@byu.net>
11430
11431         Avoid gcc warnings on cygwin.
11432         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
11433         Avoid unused variable.
11434         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
11435         Likewise.
11436
11437 2008-12-22  Bruno Haible  <bruno@clisp.org>
11438
11439         Remove HAVE_MBRTOWC conditionals.
11440         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
11441         (mbscasecmp): Assume mbrtowc function.
11442         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
11443         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
11444         * lib/mbschr.c: Include mbuiter.h unconditionally.
11445         (mbschr): Assume mbrtowc function.
11446         * lib/mbscspn.c: Include mbuiter.h unconditionally.
11447         (mbscspn): Assume mbrtowc function.
11448         * lib/mbslen.c: Include mbuiter.h unconditionally.
11449         (mbslen): Assume mbrtowc function.
11450         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
11451         (mbsncasecmp): Assume mbrtowc function.
11452         * lib/mbsnlen.c: Include mbiter.h unconditionally.
11453         (mbsnlen): Assume mbrtowc function.
11454         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
11455         (mbspbrk): Assume mbrtowc function.
11456         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
11457         (mbspcasecmp): Assume mbrtowc function.
11458         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
11459         (mbsrchr): Assume mbrtowc function.
11460         * lib/mbssep.c: Include mbuiter.h unconditionally.
11461         (mbssep): Assume mbrtowc function.
11462         * lib/mbsspn.c: Include mbuiter.h unconditionally.
11463         (mbsspn): Assume mbrtowc function.
11464         * lib/mbsstr.c: Include mbuiter.h unconditionally.
11465         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
11466         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
11467         (mbstok_r): Assume mbrtowc function.
11468         * lib/propername.c: Include mbuiter.h unconditionally.
11469         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
11470         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
11471         (trim2): Assume mbrtowc function.
11472         * lib/mbswidth.c (mbsinit): Remove fallback definition.
11473         (mbsnwidth): Assume mbrtowc function.
11474         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
11475         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
11476         fallback definitions.
11477         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
11478
11479 2008-12-22  Bruno Haible  <bruno@clisp.org>
11480
11481         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
11482
11483 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
11484
11485         * modules/regex: Request emulations for the mb*/wc* functions we need.
11486         * m4/regex.m4: Don't look for those functions here.
11487         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
11488
11489 2008-12-22  Bruno Haible  <bruno@clisp.org>
11490
11491         * modules/fnmatch (Depends-on): Remove duplicated dependency.
11492
11493 2008-12-21  Bruno Haible  <bruno@clisp.org>
11494
11495         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
11496         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
11497         (Include): Remove conditionalization.
11498         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
11499         (Include): Remove conditionalization.
11500         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
11501         (Include): Remove conditionalization.
11502         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
11503         * m4/mbfile.m4 (gl_MBFILE): Likewise.
11504         * NEWS: Mention the change.
11505         Reported by Alan Hourihane <alanh@fairlite.co.uk>
11506         via Sergey Poznyakoff <gray@gnu.org.ua>.
11507
11508 2008-12-21  Bruno Haible  <bruno@clisp.org>
11509
11510         * MODULES.html.sh (Extended multibyte and wide character utilities
11511         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
11512         wcrtomb, wcsrtombs.
11513         (Support for systems lacking POSIX:2008): Add accept, bind, close,
11514         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
11515         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
11516         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
11517
11518 2008-12-21  Bruno Haible  <bruno@clisp.org>
11519
11520         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
11521
11522 2008-12-21  Bruno Haible  <bruno@clisp.org>
11523
11524         * modules/wcsnrtombs-tests: New file.
11525         * tests/test-wcsnrtombs1.sh: New file.
11526         * tests/test-wcsnrtombs2.sh: New file.
11527         * tests/test-wcsnrtombs3.sh: New file.
11528         * tests/test-wcsnrtombs4.sh: New file.
11529         * tests/test-wcsnrtombs.c: New file.
11530
11531         New module 'wcsnrtombs'.
11532         * lib/wchar.in.h (wcsnrtombs): New declaration.
11533         * lib/wcsnrtombs.c: New file.
11534         * lib/wcsrtombs-state.c: New file.
11535         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
11536         (internal_state): Remove variable.
11537         * m4/wcsnrtombs.m4: New file.
11538         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
11539         compilation units.
11540         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
11541         HAVE_WCSNRTOMBS.
11542         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
11543         HAVE_WCSNRTOMBS.
11544         * modules/wcsnrtombs: New file.
11545         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
11546         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
11547
11548 2008-12-21  Bruno Haible  <bruno@clisp.org>
11549
11550         * modules/wcsrtombs-tests: New file.
11551         * tests/test-wcsrtombs1.sh: New file.
11552         * tests/test-wcsrtombs2.sh: New file.
11553         * tests/test-wcsrtombs3.sh: New file.
11554         * tests/test-wcsrtombs4.sh: New file.
11555         * tests/test-wcsrtombs.c: New file.
11556
11557         New module 'wcsrtombs'.
11558         * lib/wchar.in.h (wcsrtombs): New declaration.
11559         * lib/wcsrtombs.c: New file.
11560         * m4/wcsrtombs.m4: New file.
11561         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
11562         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
11563         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
11564         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
11565         * modules/wcsrtombs: New file.
11566         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
11567         bugs.
11568
11569 2008-12-21  Bruno Haible  <bruno@clisp.org>
11570
11571         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
11572         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
11573         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
11574         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
11575         if not correct.
11576         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
11577         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
11578         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11579         m4/locale-zh.m4, m4/codeset.m4.
11580         * doc/posix-functions/wcrtomb.texi: Document the bug.
11581
11582 2008-12-21  Bruno Haible  <bruno@clisp.org>
11583
11584         Work around a btowc() bug on IRIX 6.5.
11585         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
11586         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
11587         REPLACE_WTOBC if not.
11588         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
11589         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
11590         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
11591
11592 2008-12-21  Bruno Haible  <bruno@clisp.org>
11593
11594         * modules/wcrtomb-tests: New file.
11595         * tests/test-wcrtomb.sh: New file.
11596         * tests/test-wcrtomb.c: New file.
11597
11598         New module 'wcrtomb'.
11599         * lib/wchar.in.h (wcrtomb): New declaration.
11600         * lib/wcrtomb.c: New file.
11601         * m4/wcrtomb.m4: New file.
11602         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
11603         HAVE_WCRTOMB.
11604         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
11605         HAVE_WCRTOMB.
11606         * modules/wcrtomb: New file.
11607         * doc/posix-functions/wcrtomb.texi: Mention the new module.
11608
11609 2008-12-21  Bruno Haible  <bruno@clisp.org>
11610
11611         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
11612         * modules/mbsrtowcs (Files): Likewise.
11613         * modules/wctob (Files): Likewise.
11614         * modules/c-strcase-tests (Files): Likewise.
11615         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
11616         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
11617         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
11618         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
11619         * modules/vasnprintf-posix-tests (Files): Likewise.
11620
11621 2008-12-21  William Pursell  <bill.pursell@gmail.com>
11622
11623         gitlog-to-changelog: pass all command-line arguments to git-log
11624         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
11625         it is sometimes convenient to filter the commits in various ways.
11626         gitlog-to-changelog only allows --since to specify a start date,
11627         but git-log itself supports many other filtering mechanisms.
11628         At the moment, I want to filter by branch name.  Rather than
11629         adding a --branch option to gitlog-to-changelog, it seems more
11630         flexible to simply pass all options directly to git-log and let
11631         git do the work.  Notice that this effectively makes --since a
11632         redundant option for gitlog-to-changelog, but removing it would
11633         require current usage to change since calls would then require
11634         an additional '--'.
11635
11636 2008-12-21  Bruno Haible  <bruno@clisp.org>
11637
11638         * modules/mbsnrtowcs-tests: New file.
11639         * tests/test-mbsnrtowcs1.sh: New file.
11640         * tests/test-mbsnrtowcs2.sh: New file.
11641         * tests/test-mbsnrtowcs3.sh: New file.
11642         * tests/test-mbsnrtowcs4.sh: New file.
11643         * tests/test-mbsnrtowcs.c: New file.
11644
11645         New module 'mbsnrtowcs'.
11646         * lib/wchar.in.h (mbsnrtowcs): New declaration.
11647         * lib/mbsnrtowcs.c: New file.
11648         * lib/mbsrtowcs-state.c: New file.
11649         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
11650         (internal_state): Remove variable.
11651         * m4/mbsnrtowcs.m4: New file.
11652         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
11653         compilation units.
11654         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
11655         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
11656         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
11657         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
11658         * modules/mbsnrtowcs: New file.
11659         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
11660         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
11661         portability problem.
11662
11663 2008-12-21  Bruno Haible  <bruno@clisp.org>
11664
11665         Work around mbsrtowcs bug.
11666         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
11667         (gl_FUNC_MBSRTOWCS): Invoke it.
11668         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11669         m4/locale-zh.m4.
11670         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
11671
11672 2008-12-21  Bruno Haible  <bruno@clisp.org>
11673
11674         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
11675
11676 2008-12-21  Bruno Haible  <bruno@clisp.org>
11677
11678         Update doc for AIX.
11679         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
11680         16-bit wchar_t type.
11681         * doc/posix-functions/btowc.texi: Likewise.
11682         * doc/posix-functions/fgetwc.texi: Likewise.
11683         * doc/posix-functions/fgetws.texi: Likewise.
11684         * doc/posix-functions/fputwc.texi: Likewise.
11685         * doc/posix-functions/fputws.texi: Likewise.
11686         * doc/posix-functions/fwide.texi: Likewise.
11687         * doc/posix-functions/fwprintf.texi: Likewise.
11688         * doc/posix-functions/fwscanf.texi: Likewise.
11689         * doc/posix-functions/getwchar.texi: Likewise.
11690         * doc/posix-functions/getwc.texi: Likewise.
11691         * doc/posix-functions/iswalnum.texi: Likewise.
11692         * doc/posix-functions/iswalpha.texi: Likewise.
11693         * doc/posix-functions/iswblank.texi: Likewise.
11694         * doc/posix-functions/iswcntrl.texi: Likewise.
11695         * doc/posix-functions/iswctype.texi: Likewise.
11696         * doc/posix-functions/iswdigit.texi: Likewise.
11697         * doc/posix-functions/iswgraph.texi: Likewise.
11698         * doc/posix-functions/iswlower.texi: Likewise.
11699         * doc/posix-functions/iswprint.texi: Likewise.
11700         * doc/posix-functions/iswpunct.texi: Likewise.
11701         * doc/posix-functions/iswspace.texi: Likewise.
11702         * doc/posix-functions/iswupper.texi: Likewise.
11703         * doc/posix-functions/iswxdigit.texi: Likewise.
11704         * doc/posix-functions/mbrtowc.texi: Likewise.
11705         * doc/posix-functions/mbsrtowcs.texi: Likewise.
11706         * doc/posix-functions/mbstowcs.texi: Likewise.
11707         * doc/posix-functions/mbtowc.texi: Likewise.
11708         * doc/posix-functions/putwchar.texi: Likewise.
11709         * doc/posix-functions/putwc.texi: Likewise.
11710         * doc/posix-functions/swprintf.texi: Likewise.
11711         * doc/posix-functions/tolower.texi: Likewise.
11712         * doc/posix-functions/toupper.texi: Likewise.
11713         * doc/posix-functions/towctrans.texi: Likewise.
11714         * doc/posix-functions/ungetwc.texi: Likewise.
11715         * doc/posix-functions/vswprintf.texi: Likewise.
11716         * doc/posix-functions/wcrtomb.texi: Likewise.
11717         * doc/posix-functions/wcscat.texi: Likewise.
11718         * doc/posix-functions/wcschr.texi: Likewise.
11719         * doc/posix-functions/wcscmp.texi: Likewise.
11720         * doc/posix-functions/wcscoll.texi: Likewise.
11721         * doc/posix-functions/wcscpy.texi: Likewise.
11722         * doc/posix-functions/wcscspn.texi: Likewise.
11723         * doc/posix-functions/wcsftime.texi: Likewise.
11724         * doc/posix-functions/wcslen.texi: Likewise.
11725         * doc/posix-functions/wcsncat.texi: Likewise.
11726         * doc/posix-functions/wcsncmp.texi: Likewise.
11727         * doc/posix-functions/wcsncpy.texi: Likewise.
11728         * doc/posix-functions/wcspbrk.texi: Likewise.
11729         * doc/posix-functions/wcsrchr.texi: Likewise.
11730         * doc/posix-functions/wcsrtombs.texi: Likewise.
11731         * doc/posix-functions/wcsspn.texi: Likewise.
11732         * doc/posix-functions/wcsstr.texi: Likewise.
11733         * doc/posix-functions/wcstod.texi: Likewise.
11734         * doc/posix-functions/wcstof.texi: Likewise.
11735         * doc/posix-functions/wcstoimax.texi: Likewise.
11736         * doc/posix-functions/wcstok.texi: Likewise.
11737         * doc/posix-functions/wcstold.texi: Likewise.
11738         * doc/posix-functions/wcstoll.texi: Likewise.
11739         * doc/posix-functions/wcstol.texi: Likewise.
11740         * doc/posix-functions/wcstombs.texi: Likewise.
11741         * doc/posix-functions/wcstoull.texi: Likewise.
11742         * doc/posix-functions/wcstoul.texi: Likewise.
11743         * doc/posix-functions/wcstoumax.texi: Likewise.
11744         * doc/posix-functions/wcswidth.texi: Likewise.
11745         * doc/posix-functions/wcsxfrm.texi: Likewise.
11746         * doc/posix-functions/wctob.texi: Likewise.
11747         * doc/posix-functions/wctomb.texi: Likewise.
11748         * doc/posix-functions/wctrans.texi: Likewise.
11749         * doc/posix-functions/wctype.texi: Likewise.
11750         * doc/posix-functions/wcwidth.texi: Likewise.
11751         * doc/posix-functions/wmemchr.texi: Likewise.
11752         * doc/posix-functions/wmemcmp.texi: Likewise.
11753         * doc/posix-functions/wmemcpy.texi: Likewise.
11754         * doc/posix-functions/wmemmove.texi: Likewise.
11755         * doc/posix-functions/wmemset.texi: Likewise.
11756         * doc/posix-functions/wprintf.texi: Likewise.
11757         * doc/posix-functions/wscanf.texi: Likewise.
11758
11759 2008-12-21  Bruno Haible  <bruno@clisp.org>
11760
11761         Update doc for HP-UX 11.11.
11762         * doc/posix-functions/btowc.texi: Clarify that the function is missing
11763         in HP-UX version 11.00, not in all versions of HP-UX 11.
11764         * doc/posix-functions/fwide.texi: Likewise.
11765         * doc/posix-functions/fwprintf.texi: Likewise.
11766         * doc/posix-functions/fwscanf.texi: Likewise.
11767         * doc/posix-functions/inet_ntop.texi: Likewise.
11768         * doc/posix-functions/inet_pton.texi: Likewise.
11769         * doc/posix-functions/mbrlen.texi: Likewise.
11770         * doc/posix-functions/mbrtowc.texi: Likewise.
11771         * doc/posix-functions/mbsinit.texi: Likewise.
11772         * doc/posix-functions/mbsrtowcs.texi: Likewise.
11773         * doc/posix-functions/swprintf.texi: Likewise.
11774         * doc/posix-functions/swscanf.texi: Likewise.
11775         * doc/posix-functions/towctrans.texi: Likewise.
11776         * doc/posix-functions/vfwprintf.texi: Likewise.
11777         * doc/posix-functions/vswprintf.texi: Likewise.
11778         * doc/posix-functions/vwprintf.texi: Likewise.
11779         * doc/posix-functions/wcrtomb.texi: Likewise.
11780         * doc/posix-functions/wcsrtombs.texi: Likewise.
11781         * doc/posix-functions/wcsstr.texi: Likewise.
11782         * doc/posix-functions/wctob.texi: Likewise.
11783         * doc/posix-functions/wctrans.texi: Likewise.
11784         * doc/posix-functions/wmemchr.texi: Likewise.
11785         * doc/posix-functions/wmemcmp.texi: Likewise.
11786         * doc/posix-functions/wmemcpy.texi: Likewise.
11787         * doc/posix-functions/wmemmove.texi: Likewise.
11788         * doc/posix-functions/wmemset.texi: Likewise.
11789         * doc/posix-functions/wprintf.texi: Likewise.
11790         * doc/posix-functions/wscanf.texi: Likewise.
11791
11792 2008-12-21  Bruno Haible  <bruno@clisp.org>
11793
11794         Work around a portability problem.
11795         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
11796         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
11797
11798 2008-12-20  Bruno Haible  <bruno@clisp.org>
11799
11800         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
11801         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
11802         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
11803         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
11804         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
11805
11806         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
11807         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
11808         set.
11809         (GNULIB_defined_mbstate_t): New macro.
11810         (mbsinit): Redefine if REPLACE_MBSINIT is set.
11811         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
11812         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
11813         reuses the system's mbrtowc function but works around the bugs.
11814         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
11815         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
11816         macros.
11817         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
11818         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
11819         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
11820         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
11821         REPLACE_MBSINIT if mbsinit needs to be overridden.
11822         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
11823         REPLACE_MBSINIT, REPLACE_MBRTOWC.
11824         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
11825         REPLACE_MBSINIT, REPLACE_MBRTOWC.
11826         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11827         m4/locale-zh.m4.
11828         (Depends): Add mbsinit.
11829         * modules/mbsinit (Depends): Add mbrtowc.
11830         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
11831
11832 2008-12-20  Bruno Haible  <bruno@clisp.org>
11833
11834         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
11835         so that there are no conversion errors on AIX.
11836         * tests/test-mbsrtowcs.c (main): LIkewise.
11837
11838 2008-12-20  Bruno Haible  <bruno@clisp.org>
11839
11840         Work around wctob bug on Solaris <= 9.
11841         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
11842         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
11843         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
11844         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
11845         * modules/wctob (Files): Add m4/locale-fr.m4.
11846         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
11847
11848 2008-12-20  Bruno Haible  <bruno@clisp.org>
11849
11850         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
11851         /dev/null.
11852         * tests/test-select-in.sh: Likewise.
11853         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11854
11855 2008-12-20  Bruno Haible  <bruno@clisp.org>
11856
11857         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
11858         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
11859         Cygwin 1.5.x.
11860
11861 2008-12-20  Bruno Haible  <bruno@clisp.org>
11862
11863         Ensure mbstate_t is defined on HP-UX 11.11.
11864         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
11865         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
11866         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
11867         AC_USE_SYSTEM_EXTENSIONS.
11868         * modules/fnmatch (Depends-on): Add extensions.
11869         * modules/mbrlen (Depends-on): Likewise.
11870         * modules/mbrtowc (Depends-on): Likewise.
11871         * modules/mbsinit (Depends-on): Likewise.
11872         * modules/mbsrtowcs (Depends-on): Likewise.
11873         * modules/mbswidth (Depends-on): Likewise.
11874         * modules/quotearg (Depends-on): Likewise.
11875         * modules/strftime (Depends-on): Likewise.
11876
11877 2008-12-20  Bruno Haible  <bruno@clisp.org>
11878
11879         Ensure wctob is declared on IRIX 6.5.
11880         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
11881         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
11882         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
11883         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
11884         of HAVE_WCTOB.
11885         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
11886         HAVE_WCTOB.
11887         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
11888
11889 2008-12-19  Bruno Haible  <bruno@clisp.org>
11890
11891         * modules/mbsrtowcs-tests: New file.
11892         * tests/test-mbsrtowcs1.sh: New file.
11893         * tests/test-mbsrtowcs2.sh: New file.
11894         * tests/test-mbsrtowcs3.sh: New file.
11895         * tests/test-mbsrtowcs4.sh: New file.
11896         * tests/test-mbsrtowcs.c: New file.
11897
11898         New module 'mbsrtowcs'.
11899         * lib/wchar.in.h (mbsrtowcs): New declaration.
11900         * lib/mbsrtowcs.c: New file.
11901         * m4/mbsrtowcs.m4: New file.
11902         * modules/mbsrtowcs: New file.
11903         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
11904         HAVE_MBSRTOWCS.
11905         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
11906         HAVE_MBSRTOWCS.
11907         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
11908
11909 2008-12-19  Bruno Haible  <bruno@clisp.org>
11910
11911         New module 'mbrlen'.
11912         * lib/wchar.in.h (mbrlen): New declaration.
11913         * lib/mbrlen.c: New file.
11914         * m4/mbrlen.m4: New file.
11915         * modules/mbrlen: New file.
11916         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
11917         HAVE_MBRLEN.
11918         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
11919         HAVE_MBRLEN.
11920         * doc/posix-functions/mbrlen.texi: Document the new module.
11921
11922 2008-12-19  Bruno Haible  <bruno@clisp.org>
11923
11924         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
11925         * modules/mbrtowc (Depends-on): Add verify.
11926         Suggested by Paul Eggert.
11927
11928 2008-12-18  Bruno Haible  <bruno@clisp.org>
11929
11930         * modules/mbsinit-tests: New file.
11931         * tests/test-mbsinit.sh: New file.
11932         * tests/test-mbsinit.c: New file.
11933
11934 2008-12-18  Bruno Haible  <bruno@clisp.org>
11935
11936         * modules/mbrtowc-tests: New file.
11937         * tests/test-mbrtowc1.sh: New file.
11938         * tests/test-mbrtowc2.sh: New file.
11939         * tests/test-mbrtowc3.sh: New file.
11940         * tests/test-mbrtowc4.sh: New file.
11941         * tests/test-mbrtowc.c: New file.
11942
11943         New module 'mbrtowc'.
11944         * lib/wchar.in.h (mbstate_t): Override when the system does not have
11945         mbsinit and mbrtowc.
11946         (mbrtowc): New declaration.
11947         * lib/mbrtowc.c: New file.
11948         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
11949         * modules/mbrtowc: New file.
11950         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
11951         HAVE_MBRTOWC.
11952         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
11953         HAVE_MBRTOWC.
11954         * doc/posix-functions/mbrtowc.texi: Document the new module.
11955
11956 2008-12-18  Bruno Haible  <bruno@clisp.org>
11957
11958         New module 'wctob'.
11959         * lib/wchar.in.h (wctob): New declaration.
11960         * lib/wctob.c: New file.
11961         * m4/wctob.m4: New file.
11962         * modules/wctob: New file.
11963         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
11964         HAVE_WCTOB.
11965         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
11966         * doc/posix-functions/wctob.texi: Document the new module.
11967
11968 2008-12-18  Bruno Haible  <bruno@clisp.org>
11969
11970         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
11971         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
11972
11973 2008-12-18  Simon Josefsson  <simon@josefsson.org>
11974
11975         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
11976         G. Christensen" <tgc@jupiterrise.com>.
11977
11978         * lib/flock.c: Need to include errno.h.  Reported by "Tom
11979         G. Christensen" <tgc@jupiterrise.com>.
11980
11981         * lib/flock.c: Need to include string.h.  Reported by "Tom
11982         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
11983         <ebb9@byu.net>.
11984
11985 2008-12-18  Bruno Haible  <bruno@clisp.org>
11986
11987         * m4/locale-ja.m4: New file, from GNU gettext.
11988
11989 2008-12-17  Bruno Haible  <bruno@clisp.org>
11990
11991         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
11992         Suggested by Eric Blake.
11993
11994 2008-12-17  Bruno Haible  <bruno@clisp.org>
11995
11996         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
11997
11998 2008-12-17  Bruno Haible  <bruno@clisp.org>
11999
12000         * lib/mbsinit.c: Include verify.h. Verify an assumption.
12001         * modules/mbsinit (Depends-on): Add verify.
12002         Suggested by Paul Eggert.
12003
12004 2008-12-17  Bruno Haible  <bruno@clisp.org>
12005
12006         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
12007         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
12008         gl_FUNC_MBRTOWC.
12009         * m4/mbiter.m4 (gl_MBITER): LIkewise.
12010         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
12011         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
12012         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
12013         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
12014         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
12015         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
12016         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
12017         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
12018         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
12019         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
12020         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
12021         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
12022         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
12023         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
12024         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
12025         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
12026         * modules/trim (configure.ac): Likewise.
12027
12028 2008-12-17  Bruno Haible  <bruno@clisp.org>
12029
12030         * modules/btowc-tests: New file.
12031         * tests/test-btowc1.sh: New file.
12032         * tests/test-btowc2.sh: New file.
12033         * tests/test-btowc.c: New file.
12034
12035         New module 'btowc'.
12036         * lib/wchar.in.h (btowc): New declaration.
12037         * lib/btowc.c: New file.
12038         * m4/btowc.m4: New file.
12039         * modules/btowc: New file.
12040         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
12041         HAVE_BTOWC.
12042         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
12043         * doc/posix-functions/btowc.texi: Document the new module.
12044
12045 2008-12-17  Bruno Haible  <bruno@clisp.org>
12046
12047         New module 'mbsinit'.
12048         * lib/wchar.in.h (mbsinit): New declaration.
12049         * lib/mbsinit.c: New file.
12050         * m4/mbsinit.m4: New file.
12051         * modules/mbsinit: New file.
12052         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
12053         HAVE_MBSINIT.
12054         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
12055         HAVE_MBSINIT.
12056         * doc/posix-functions/mbsinit.texi: Document the new module.
12057
12058 2008-12-16  Bruno Haible  <bruno@clisp.org>
12059
12060         * lib/unistd.in.h: Add comment.
12061         * tests/test-environ.c: Don't include <stdlib.h>.
12062
12063 2008-12-16  Bruno Haible  <bruno@clisp.org>
12064
12065         * lib/parse-duration.h (parse_duration): Document return value
12066         convention.
12067         * lib/parse-duration.c: Include specification header first. Add
12068         comments.
12069         (_): Remove macro.
12070         (parse_year_month_day, parse_hour_minute_second): Move side effects
12071         outside of strchr call.
12072         (parse_non_iso8601): Move side effects outside of isspace call.
12073         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
12074         call.
12075
12076 2008-12-16  Bruno Haible  <bruno@clisp.org>
12077
12078         * tests/test-parse-duration.sh: Produce no output when the test
12079         succeeds.
12080
12081 2008-12-16  Bruno Haible  <bruno@clisp.org>
12082
12083         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
12084         expressions.
12085
12086 2008-12-15  Bruno Haible  <bruno@clisp.org>
12087
12088         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
12089         * doc/glibc-functions/flistxattr.texi: Likewise.
12090         * doc/glibc-functions/fopencookie.texi: Likewise.
12091         * doc/glibc-functions/fremovexattr.texi: Likewise.
12092         * doc/glibc-functions/fsetxattr.texi: Likewise.
12093         * doc/glibc-functions/getxattr.texi: Likewise.
12094         * doc/glibc-functions/lgetxattr.texi: Likewise.
12095         * doc/glibc-functions/listxattr.texi: Likewise.
12096         * doc/glibc-functions/llistxattr.texi: Likewise.
12097         * doc/glibc-functions/lremovexattr.texi: Likewise.
12098         * doc/glibc-functions/lsetxattr.texi: Likewise.
12099         * doc/glibc-functions/removexattr.texi: Likewise.
12100         * doc/glibc-functions/setxattr.texi: Likewise.
12101         * doc/posix-functions/open_memstream.texi: Likewise.
12102
12103 2008-12-15  Eric Blake  <ebb9@byu.net>
12104
12105         Update doc for cygwin 1.7.
12106         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
12107         functions.
12108         * doc/posix-functions/fchmodat.texi: Likewise.
12109         * doc/posix-functions/fchownat.texi: Likewise.
12110         * doc/posix-functions/fdopendir.texi: Likewise.
12111         * doc/posix-functions/fmemopen.texi: Likewise.
12112         * doc/posix-functions/freeaddrinfo.texi: Likewise.
12113         * doc/posix-functions/fstatat.texi: Likewise.
12114         * doc/posix-functions/futimens.texi: Likewise.
12115         * doc/posix-functions/gai_strerror.texi: Likewise.
12116         * doc/posix-functions/getaddrinfo.texi: Likewise.
12117         * doc/posix-functions/getnameinfo.texi: Likewise.
12118         * doc/posix-functions/if_freenameindex.texi: Likewise.
12119         * doc/posix-functions/if_indextoname.texi: Likewise.
12120         * doc/posix-functions/if_nameindex.texi: Likewise.
12121         * doc/posix-functions/if_nametoindex.texi: Likewise.
12122         * doc/posix-functions/insque.texi: Likewise.
12123         * doc/posix-functions/linkat.texi: Likewise.
12124         * doc/posix-functions/llrint.texi: Likewise.
12125         * doc/posix-functions/llrintf.texi: Likewise.
12126         * doc/posix-functions/llrintl.texi: Likewise.
12127         * doc/posix-functions/lockf.texi: Likewise.
12128         * doc/posix-functions/lrintl.texi: Likewise.
12129         * doc/posix-functions/mkdirat.texi: Likewise.
12130         * doc/posix-functions/mkfifoat.texi: Likewise.
12131         * doc/posix-functions/mknodat.texi: Likewise.
12132         * doc/posix-functions/mq_close.texi: Likewise.
12133         * doc/posix-functions/mq_getattr.texi: Likewise.
12134         * doc/posix-functions/mq_notify.texi: Likewise.
12135         * doc/posix-functions/mq_open.texi: Likewise.
12136         * doc/posix-functions/mq_receive.texi: Likewise.
12137         * doc/posix-functions/mq_send.texi: Likewise.
12138         * doc/posix-functions/mq_setattr.texi: Likewise.
12139         * doc/posix-functions/mq_timedreceive.texi: Likewise.
12140         * doc/posix-functions/mq_timedsend.texi: Likewise.
12141         * doc/posix-functions/mq_unlink.texi: Likewise.
12142         * doc/posix-functions/open_memstream.texi: Likewise.
12143         * doc/posix-functions/openat.texi: Likewise.
12144         * doc/posix-functions/posix_fadvise.texi: Likewise.
12145         * doc/posix-functions/posix_fallocate.texi: Likewise.
12146         * doc/posix-functions/posix_madvise.texi: Likewise.
12147         * doc/posix-functions/posix_memalign.texi: Likewise.
12148         * doc/posix-functions/posix_openpt.texi: Likewise.
12149         * doc/posix-functions/readlinkat.texi: Likewise.
12150         * doc/posix-functions/remque.texi: Likewise.
12151         * doc/posix-functions/renameat.texi: Likewise.
12152         * doc/posix-functions/rintl.texi: Likewise.
12153         * doc/posix-functions/sem_unlink.texi: Likewise.
12154         * doc/posix-functions/shm_open.texi: Likewise.
12155         * doc/posix-functions/shm_unlink.texi: Likewise.
12156         * doc/posix-functions/signgam.texi: Likewise.
12157         * doc/posix-functions/sigset.texi: Likewise.
12158         * doc/posix-functions/stpcpy.texi: Likewise.
12159         * doc/posix-functions/stpncpy.texi: Likewise.
12160         * doc/posix-functions/strerror.texi: Likewise.
12161         * doc/posix-functions/strtod.texi: Likewise.
12162         * doc/posix-functions/symlinkat.texi: Likewise.
12163         * doc/posix-functions/unlinkat.texi: Likewise.
12164         * doc/posix-functions/utimensat.texi: Likewise.
12165         * doc/glibc-functions/bindresvport.texi: Likewise.
12166         * doc/glibc-functions/dn_expand.texi: Likewise.
12167         * doc/glibc-functions/exp10.texi: Likewise.
12168         * doc/glibc-functions/exp10f.texi: Likewise.
12169         * doc/glibc-functions/fgetxattr.texi: Likewise.
12170         * doc/glibc-functions/flistxattr.texi: Likewise.
12171         * doc/glibc-functions/fopencookie.texi: Likewise.
12172         * doc/glibc-functions/freeifaddrs.texi: Likewise.
12173         * doc/glibc-functions/fremovexattr.texi: Likewise.
12174         * doc/glibc-functions/fsetxattr.texi: Likewise.
12175         * doc/glibc-functions/getifaddrs.texi: Likewise.
12176         * doc/glibc-functions/getxattr.texi: Likewise.
12177         * doc/glibc-functions/lgetxattr.texi: Likewise.
12178         * doc/glibc-functions/listxattr.texi: Likewise.
12179         * doc/glibc-functions/llistxattr.texi: Likewise.
12180         * doc/glibc-functions/lremovexattr.texi: Likewise.
12181         * doc/glibc-functions/lsetxattr.texi: Likewise.
12182         * doc/glibc-functions/pow10.texi: Likewise.
12183         * doc/glibc-functions/pow10f.texi: Likewise.
12184         * doc/glibc-functions/rcmd_af.texi: Likewise.
12185         * doc/glibc-functions/removexattr.texi: Likewise.
12186         * doc/glibc-functions/res_init.texi: Likewise.
12187         * doc/glibc-functions/res_mkquery.texi: Likewise.
12188         * doc/glibc-functions/res_query.texi: Likewise.
12189         * doc/glibc-functions/res_querydomain.texi: Likewise.
12190         * doc/glibc-functions/res_send.texi: Likewise.
12191         * doc/glibc-functions/rresvport_af.texi: Likewise.
12192         * doc/glibc-functions/setxattr.texi: Likewise.
12193         * doc/glibc-functions/strcasestr.texi: Likewise.
12194
12195 2008-12-15  Bruno Haible  <bruno@clisp.org>
12196
12197         Fix compilation error on OSF/1 4.0.
12198         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
12199         <sys/time.h>, simply delegate to the system header.
12200         Reported by Daniel Richard G. <oss@teragram.com>.
12201
12202 2008-12-15  Bruno Haible  <bruno@clisp.org>
12203
12204         * doc/posix-functions/openat.texi: Mention the 'openat' module.
12205         * doc/posix-functions/fchmodat.texi: Likewise.
12206         * doc/posix-functions/fchownat.texi: Likewise.
12207         * doc/posix-functions/fdopendir.texi: Likewise.
12208         * doc/posix-functions/fstatat.texi: Likewise.
12209         * doc/posix-functions/mkdirat.texi: Likewise.
12210         * doc/posix-functions/unlinkat.texi: Likewise.
12211
12212 2008-12-14  Bruno Haible  <bruno@clisp.org>
12213
12214         Update doc for POSIX:2008.
12215         * doc/posix-functions/faccessat.texi: New file.
12216         * doc/posix-functions/fchmodat.texi: New file.
12217         * doc/posix-functions/fchownat.texi: New file.
12218         * doc/posix-functions/fdopendir.texi: New file.
12219         * doc/posix-functions/fstatat.texi: New file.
12220         * doc/posix-functions/futimens.texi: New file.
12221         * doc/posix-functions/linkat.texi: New file.
12222         * doc/posix-functions/mkdirat.texi: New file.
12223         * doc/posix-functions/mkfifoat.texi: New file.
12224         * doc/posix-functions/mknodat.texi: New file.
12225         * doc/posix-functions/open_wmemstream.texi: New file.
12226         * doc/posix-functions/openat.texi: New file.
12227         * doc/posix-functions/psiginfo.texi: New file.
12228         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
12229         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
12230         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
12231         * doc/posix-functions/readlinkat.texi: New file.
12232         * doc/posix-functions/renameat.texi: New file.
12233         * doc/posix-functions/strerror_l.texi: New file.
12234         * doc/posix-functions/symlinkat.texi: New file.
12235         * doc/posix-functions/unlinkat.texi: New file.
12236         * doc/posix-functions/utimensat.texi: New file.
12237         * doc/gnulib.texi (Function Substitutes): Add these subsections.
12238
12239 2008-12-14  Bruno Haible  <bruno@clisp.org>
12240
12241         Update doc for POSIX:2008.
12242         * doc/posix-functions/alphasort.texi: Renamed from
12243         doc/glibc-functions/alphasort.texi.
12244         * doc/posix-functions/dirfd.texi: Renamed from
12245         doc/glibc-functions/dirfd.texi.
12246         * doc/posix-functions/dprintf.texi: Renamed from
12247         doc/glibc-functions/dprintf.texi.
12248         * doc/posix-functions/duplocale.texi: Renamed from
12249         doc/glibc-functions/duplocale.texi.
12250         * doc/posix-functions/fexecve.texi: Renamed from
12251         doc/glibc-functions/fexecve.texi.
12252         * doc/posix-functions/fmemopen.texi: Renamed from
12253         doc/glibc-functions/fmemopen.texi.
12254         * doc/posix-functions/freelocale.texi: Renamed from
12255         doc/glibc-functions/freelocale.texi.
12256         * doc/posix-functions/getdate_err.texi: Renamed from
12257         doc/glibc-functions/getdate_err.texi.
12258         * doc/posix-functions/isalnum_l.texi: Renamed from
12259         doc/glibc-functions/isalnum_l.texi.
12260         * doc/posix-functions/isalpha_l.texi: Renamed from
12261         doc/glibc-functions/isalpha_l.texi.
12262         * doc/posix-functions/isblank_l.texi: Renamed from
12263         doc/glibc-functions/isblank_l.texi.
12264         * doc/posix-functions/iscntrl_l.texi: Renamed from
12265         doc/glibc-functions/iscntrl_l.texi.
12266         * doc/posix-functions/isdigit_l.texi: Renamed from
12267         doc/glibc-functions/isdigit_l.texi.
12268         * doc/posix-functions/isgraph_l.texi: Renamed from
12269         doc/glibc-functions/isgraph_l.texi.
12270         * doc/posix-functions/islower_l.texi: Renamed from
12271         doc/glibc-functions/islower_l.texi.
12272         * doc/posix-functions/isprint_l.texi: Renamed from
12273         doc/glibc-functions/isprint_l.texi.
12274         * doc/posix-functions/ispunct_l.texi: Renamed from
12275         doc/glibc-functions/ispunct_l.texi.
12276         * doc/posix-functions/isspace_l.texi: Renamed from
12277         doc/glibc-functions/isspace_l.texi.
12278         * doc/posix-functions/isupper_l.texi: Renamed from
12279         doc/glibc-functions/isupper_l.texi.
12280         * doc/posix-functions/iswalnum_l.texi: Renamed from
12281         doc/glibc-functions/iswalnum_l.texi.
12282         * doc/posix-functions/iswalpha_l.texi: Renamed from
12283         doc/glibc-functions/iswalpha_l.texi.
12284         * doc/posix-functions/iswblank_l.texi: Renamed from
12285         doc/glibc-functions/iswblank_l.texi.
12286         * doc/posix-functions/iswcntrl_l.texi: Renamed from
12287         doc/glibc-functions/iswcntrl_l.texi.
12288         * doc/posix-functions/iswctype_l.texi: Renamed from
12289         doc/glibc-functions/iswctype_l.texi.
12290         * doc/posix-functions/iswdigit_l.texi: Renamed from
12291         doc/glibc-functions/iswdigit_l.texi.
12292         * doc/posix-functions/iswgraph_l.texi: Renamed from
12293         doc/glibc-functions/iswgraph_l.texi.
12294         * doc/posix-functions/iswlower_l.texi: Renamed from
12295         doc/glibc-functions/iswlower_l.texi.
12296         * doc/posix-functions/iswprint_l.texi: Renamed from
12297         doc/glibc-functions/iswprint_l.texi.
12298         * doc/posix-functions/iswpunct_l.texi: Renamed from
12299         doc/glibc-functions/iswpunct_l.texi.
12300         * doc/posix-functions/iswspace_l.texi: Renamed from
12301         doc/glibc-functions/iswspace_l.texi.
12302         * doc/posix-functions/iswupper_l.texi: Renamed from
12303         doc/glibc-functions/iswupper_l.texi.
12304         * doc/posix-functions/iswxdigit_l.texi: Renamed from
12305         doc/glibc-functions/iswxdigit_l.texi.
12306         * doc/posix-functions/isxdigit_l.texi: Renamed from
12307         doc/glibc-functions/isxdigit_l.texi.
12308         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
12309         doc/glibc-functions/mbsnrtowcs.texi.
12310         * doc/posix-functions/mkdtemp.texi: Renamed from
12311         doc/glibc-functions/mkdtemp.texi.
12312         * doc/posix-functions/newlocale.texi: Renamed from
12313         doc/glibc-functions/newlocale.texi.
12314         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
12315         doc/glibc-functions/nl_langinfo_l.texi.
12316         * doc/posix-functions/open_memstream.texi: Renamed from
12317         doc/glibc-functions/open_memstream.texi.
12318         * doc/posix-functions/opterr.texi: Renamed from
12319         doc/glibc-functions/opterr.texi.
12320         * doc/posix-functions/optind.texi: Renamed from
12321         doc/glibc-functions/optind.texi.
12322         * doc/posix-functions/optopt.texi: Renamed from
12323         doc/glibc-functions/optopt.texi.
12324         * doc/posix-functions/psignal.texi: Renamed from
12325         doc/glibc-functions/psignal.texi.
12326         * doc/posix-functions/scandir.texi: Renamed from
12327         doc/glibc-functions/scandir.texi.
12328         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
12329         doc/glibc-functions/sched_get_priority_min.texi.
12330         * doc/posix-functions/signgam.texi: Renamed from
12331         doc/glibc-functions/signgam.texi.
12332         * doc/posix-functions/stpcpy.texi: Renamed from
12333         doc/glibc-functions/stpcpy.texi.
12334         * doc/posix-functions/stpncpy.texi: Renamed from
12335         doc/glibc-functions/stpncpy.texi.
12336         * doc/posix-functions/strcasecmp_l.texi: Renamed from
12337         doc/glibc-functions/strcasecmp_l.texi.
12338         * doc/posix-functions/strcoll_l.texi: Renamed from
12339         doc/glibc-functions/strcoll_l.texi.
12340         * doc/posix-functions/strfmon_l.texi: Renamed from
12341         doc/glibc-functions/strfmon_l.texi.
12342         * doc/posix-functions/strftime_l.texi: Renamed from
12343         doc/glibc-functions/strftime_l.texi.
12344         * doc/posix-functions/strncasecmp_l.texi: Renamed from
12345         doc/glibc-functions/strncasecmp_l.texi.
12346         * doc/posix-functions/strndup.texi: Renamed from
12347         doc/glibc-functions/strndup.texi.
12348         * doc/posix-functions/strnlen.texi: Renamed from
12349         doc/glibc-functions/strnlen.texi.
12350         * doc/posix-functions/strsignal.texi: Renamed from
12351         doc/glibc-functions/strsignal.texi.
12352         * doc/posix-functions/strxfrm_l.texi: Renamed from
12353         doc/glibc-functions/strxfrm_l.texi.
12354         * doc/posix-functions/timer_gettime.texi: Renamed from
12355         doc/glibc-functions/timer_gettime.texi.
12356         * doc/posix-functions/tolower_l.texi: Renamed from
12357         doc/glibc-functions/tolower_l.texi.
12358         * doc/posix-functions/toupper_l.texi: Renamed from
12359         doc/glibc-functions/toupper_l.texi.
12360         * doc/posix-functions/towctrans_l.texi: Renamed from
12361         doc/glibc-functions/towctrans_l.texi.
12362         * doc/posix-functions/towlower_l.texi: Renamed from
12363         doc/glibc-functions/towlower_l.texi.
12364         * doc/posix-functions/towupper_l.texi: Renamed from
12365         doc/glibc-functions/towupper_l.texi.
12366         * doc/posix-functions/uselocale.texi: Renamed from
12367         doc/glibc-functions/uselocale.texi.
12368         * doc/posix-functions/vdprintf.texi: Renamed from
12369         doc/glibc-functions/vdprintf.texi.
12370         * doc/posix-functions/wcpcpy.texi:
12371         Renamed from doc/glibc-functions/wcpcpy.texi.
12372         * doc/posix-functions/wcpncpy.texi: Renamed from
12373         doc/glibc-functions/wcpncpy.texi.
12374         * doc/posix-functions/wcscasecmp.texi: Renamed from
12375         doc/glibc-functions/wcscasecmp.texi.
12376         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
12377         doc/glibc-functions/wcscasecmp_l.texi.
12378         * doc/posix-functions/wcscoll_l.texi: Renamed from
12379         doc/glibc-functions/wcscoll_l.texi.
12380         * doc/posix-functions/wcsdup.texi: Renamed from
12381         doc/glibc-functions/wcsdup.texi.
12382         * doc/posix-functions/wcsncasecmp.texi: Renamed from
12383         doc/glibc-functions/wcsncasecmp.texi.
12384         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
12385         doc/glibc-functions/wcsncasecmp_l.texi.
12386         * doc/posix-functions/wcsnlen.texi: Renamed from
12387         doc/glibc-functions/wcsnlen.texi.
12388         * doc/posix-functions/wcsnrtombs.texi: Renamed from
12389         doc/glibc-functions/wcsnrtombs.texi.
12390         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
12391         doc/glibc-functions/wcsxfrm_l.texi.
12392         * doc/posix-functions/wctrans_l.texi: Renamed from
12393         doc/glibc-functions/wctrans_l.texi.
12394         * doc/posix-functions/wctype_l.texi: Renamed from
12395         doc/glibc-functions/wctype_l.texi.
12396         * doc/gnulib.texi (Function Substitutes): Add these subsections.
12397         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
12398         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
12399         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
12400         these subsections.
12401         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
12402         Remove sections.
12403
12404 2008-12-14  Bruno Haible  <bruno@clisp.org>
12405
12406         Update doc for POSIX:2008.
12407         * doc/posix-functions/*.texi: Update URL of POSIX specification.
12408
12409 2008-12-14  Bruno Haible  <bruno@clisp.org>
12410
12411         Update doc for POSIX:2008.
12412         * doc/pastposix-functions/bcmp.texi: Renamed from
12413         doc/posix-functions/bcmp.texi.
12414         * doc/pastposix-functions/bcopy.texi: Renamed from
12415         doc/posix-functions/bcopy.texi.
12416         * doc/pastposix-functions/bsd_signal.texi: Renamed from
12417         doc/posix-functions/bsd_signal.texi.
12418         * doc/pastposix-functions/bzero.texi: Renamed from
12419         doc/posix-functions/bzero.texi.
12420         * doc/pastposix-functions/ecvt.texi: Renamed from
12421         doc/posix-functions/ecvt.texi.
12422         * doc/pastposix-functions/fcvt.texi: Renamed from
12423         doc/posix-functions/fcvt.texi.
12424         * doc/pastposix-functions/ftime.texi: Renamed from
12425         doc/posix-functions/ftime.texi.
12426         * doc/pastposix-functions/gcvt.texi: Renamed from
12427         doc/posix-functions/gcvt.texi.
12428         * doc/pastposix-functions/getcontext.texi: Renamed from
12429         doc/posix-functions/getcontext.texi.
12430         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
12431         doc/posix-functions/gethostbyaddr.texi.
12432         * doc/pastposix-functions/gethostbyname.texi: Renamed from
12433         doc/posix-functions/gethostbyname.texi.
12434         * doc/pastposix-functions/getwd.texi: Renamed from
12435         doc/posix-functions/getwd.texi.
12436         * doc/pastposix-functions/h_errno.texi: Renamed from
12437         doc/posix-functions/h_errno.texi.
12438         * doc/pastposix-functions/index.texi: Renamed from
12439         doc/posix-functions/index.texi.
12440         * doc/pastposix-functions/makecontext.texi: Renamed from
12441         doc/posix-functions/makecontext.texi.
12442         * doc/pastposix-functions/mktemp.texi: Renamed from
12443         doc/posix-functions/mktemp.texi.
12444         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
12445         doc/posix-functions/pthread_attr_getstackaddr.texi.
12446         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
12447         doc/posix-functions/pthread_attr_setstackaddr.texi.
12448         * doc/pastposix-functions/rindex.texi: Renamed from
12449         doc/posix-functions/rindex.texi.
12450         * doc/pastposix-functions/scalb.texi: Renamed from
12451         doc/posix-functions/scalb.texi.
12452         * doc/pastposix-functions/setcontext.texi: Renamed from
12453         doc/posix-functions/setcontext.texi.
12454         * doc/pastposix-functions/swapcontext.texi: Renamed from
12455         doc/posix-functions/swapcontext.texi.
12456         * doc/pastposix-functions/ualarm.texi: Renamed from
12457         doc/posix-functions/ualarm.texi.
12458         * doc/pastposix-functions/usleep.texi: Renamed from
12459         doc/posix-functions/usleep.texi.
12460         * doc/pastposix-functions/vfork.texi: Renamed from
12461         doc/posix-functions/vfork.texi.
12462         * doc/pastposix-functions/wcswcs.texi: Renamed from
12463         doc/posix-functions/wcswcs.texi.
12464         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
12465         (Function Substitutes): Update.
12466
12467 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12468
12469         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
12470         m4/strerror.m4.
12471
12472 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12473             Bruno Haible  <bruno@clisp.org>
12474
12475         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
12476
12477 2008-12-13  Bruno Haible  <bruno@clisp.org>
12478
12479         * modules/strtoull (Depends-on): Remove unistd.
12480
12481 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12482
12483         * modules/strtoull (Depends-on): Add stdlib.
12484
12485 2008-12-11  Simon Josefsson  <simon@josefsson.org>
12486
12487         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
12488
12489 2008-12-10  Jim Meyering  <meyering@redhat.com>
12490
12491         gl_ASSERT: don't say assertions are disabled when they're not
12492         * m4/assert.m4 (gl_ASSERT): Do not make configure report
12493         "checking whether to enable assertions... no", when they are in
12494         fact enabled.  This is solely a bug in the output of configure.
12495         In spite of saying "no", NDEBUG was not defined in that case.
12496         Also, as noted by Eric Blake, leave assertions enabled upon
12497         --enable-assert=INVALID.
12498
12499 2008-12-10  Bruno Haible  <bruno@clisp.org>
12500
12501         Change MODULES.html to refer to POSIX:2008 where possible.
12502         * MODULES.html.sh (POSIX2008_URL): New variable.
12503         (posix_headers): Remove sys/timeb, ucontext.
12504         (posix2001_headers): New variable.
12505         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
12506         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
12507         index, makecontext, mktemp, pthread_attr_getstackaddr,
12508         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
12509         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
12510         (posix2001_functions): New variable.
12511         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
12512         otherwise.
12513
12514 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12515
12516         add missing include to parse-duration.c
12517         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
12518         * modules/parse-duration (Depends-on): Add xalloc.
12519
12520         fix sed script reading maint.mk
12521         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
12522         (syntax-check-rules): Use it.
12523
12524 2008-12-09  Bruno Haible  <bruno@clisp.org>
12525
12526         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
12527         MacOS X 10.4/PowerPC.
12528         Reported by Simon Josefsson.
12529
12530 2008-12-08  Jim Meyering  <meyering@redhat.com>
12531
12532         work around mingw's lack of some S_IF definitions
12533         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
12534         Reported by Simon Josefsson.
12535
12536 2008-12-08  Bruno Haible  <bruno@clisp.org>
12537
12538         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
12539         applied to variables. Needed on MacOS X 10.4/PowerPC.
12540         Reported by Simon Josefsson.
12541
12542 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
12543         and Eric Blake  <ebb9@byu.net>
12544
12545         assert: honor --enable-assert
12546         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
12547         order to honor --enable-assert, rather than treating it as a
12548         synonym for --disable-assert.
12549
12550 2008-12-08  Jim Meyering  <meyering@redhat.com>
12551
12552         * lib/posixtm.c: Remove now-useless declaration of mktime.
12553
12554         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
12555
12556 2008-12-07  Bruno Haible  <bruno@clisp.org>
12557
12558         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
12559         test_once): Mark functions as static.
12560         * tests/test-tls.c (test_tls): Likewise.
12561
12562 2008-12-07  Bruno Haible  <bruno@clisp.org>
12563
12564         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
12565         iconv_register_autodetect.
12566
12567 2008-12-07  Jim Meyering  <meyering@redhat.com>
12568
12569         posixtm.c: avoid a warning
12570         * lib/posixtm.c (posixtime): Don't initialize tm0.
12571         It's no longer needed to placate gcc4's -Wuninitialized,
12572         and the attempt to placate would elicit a new warning.
12573
12574         unicodeio.c: mark unused parameters
12575         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
12576         (fallback_failure_callback): Likewise.
12577
12578 2008-12-07  Bruno Haible  <bruno@clisp.org>
12579
12580         * gnulib-tool (func_create_testdir): When building the tests
12581         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
12582         Reported by Simon Josefsson.
12583
12584 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12585
12586         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
12587
12588 2008-12-06  Bruno Haible  <bruno@clisp.org>
12589
12590         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
12591         Suggested by Eric Blake.
12592
12593 2008-12-06  Bruno Haible  <bruno@clisp.org>
12594
12595         Fix a c-stack test failure on MacOS X.
12596         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
12597         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
12598         handler for SIGBUS as well.
12599         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
12600         install a signal handler for SIGBUS as well.
12601         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
12602
12603 2008-12-06  Bruno Haible  <bruno@clisp.org>
12604
12605         Advocacy documentation.
12606         * doc/gnulib-intro.texi (Benefits): New section.
12607         * doc/gnulib.texi: Update.
12608
12609 2008-12-06  Bruno Haible  <bruno@clisp.org>
12610
12611         Document the 'manywarnings' module.
12612         * doc/manywarnings.texi: New file.
12613         * doc/gnulib.texi: Include it.
12614
12615 2008-12-05  Eric Blake  <ebb9@byu.net>
12616
12617         tests: silence some gcc warnings
12618         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
12619         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
12620         type mismatches.
12621
12622 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12623             Bruno Haible  <bruno@clisp.org>
12624
12625         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
12626
12627 2008-11-29  Jim Meyering  <meyering@redhat.com>
12628
12629         unicodeio.c: mark unused parameters
12630         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
12631         (fallback_failure_callback): Likewise.
12632
12633         fts: fix a thinko
12634         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
12635         (set_stat_type): Return S_IF*-valued "type" directly.
12636         Prompted by James Youngman's spotting a related bug.
12637         Confirmed by further testing through find.
12638
12639         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
12640         * lib/fts.c (D_TYPE): Define.
12641         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
12642         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
12643         (s_ifmt_shift_bits): New function.
12644         (set_stat_type): New function.
12645         (fts_build): When not calling fts_stat, call set_stat_type
12646         to propagate dirent.d_type info to fts_read caller.
12647         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
12648         fts_statp->st_mode type information may be valid.
12649
12650 2008-11-28  Simon Josefsson  <simon@josefsson.org>
12651
12652         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
12653         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
12654         <sds@gnu.org>.
12655
12656 2008-11-20  Bruno Haible  <bruno@clisp.org>
12657
12658         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
12659         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
12660         INCLUDE_NEXT.
12661         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
12662         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
12663         * modules/math (Makefile.am): Substitute
12664         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
12665         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
12666
12667 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
12668             Bruno Haible  <bruno@clisp.org>
12669
12670         * lib/stdint.in.h: Define all type macros so that their expansion is
12671         a single typedef'ed token. Fixes a compilation failure in Boost which
12672         does "using ::int8_t;".
12673
12674 2008-11-18  Simon Josefsson  <simon@josefsson.org>
12675
12676         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
12677         gl_MANYWARN_ALL_GCC.
12678         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
12679         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
12680         * modules/manywarnings: New file.
12681         * MODULES.html.sh: Mention manywarnings module.
12682
12683 2008-11-18  Bruno Haible  <bruno@clisp.org>
12684
12685         * doc/gnulib-tool.texi (Unit tests): New section.
12686
12687 2008-11-18  Simon Josefsson  <simon@josefsson.org>
12688
12689         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
12690         paths like 'lib/po/foo.po'.
12691
12692 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12693
12694         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
12695         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
12696
12697 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12698
12699         * m4/warnings.m4: Use CPPFLAGS to really check whether the
12700         parameter works.
12701
12702 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12703
12704         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
12705
12706 2008-11-17  Bruce Korb  <bkorb@gnu.org>
12707
12708         * modules/parse-duration-tests: New file.
12709         * tests/test-parse-duration.sh: New file.
12710         * tests/test-parse-duration.c: New file.
12711
12712         New module 'parse-duration'.
12713         * lib/parse-duration.h: New file.
12714         * lib/parse-duration.c: New file.
12715         * modules/parse-duration: New file.
12716
12717 2008-11-17  Bruno Haible  <bruno@clisp.org>
12718
12719         * tests/test-select-out.sh: Comment out the first pipe test.
12720         Reported by Simon Josefsson.
12721
12722 2008-11-17  Bruno Haible  <bruno@clisp.org>
12723
12724         * modules/getaddrinfo (Depends-on): Add servent, hostent.
12725         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
12726         gl_HOSTENT.
12727
12728 2008-11-17  Bruno Haible  <bruno@clisp.org>
12729
12730         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
12731         -lnetwork and -lnet. Needed for Haiku and BeOS.
12732
12733 2008-11-16  Bruno Haible  <bruno@clisp.org>
12734
12735         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
12736
12737 2008-11-16  Bruno Haible  <bruno@clisp.org>
12738
12739         Avoid test failure on Haiku.
12740         * tests/test-fsync.c: Include <errno.h>.
12741         (main): Don't require that fsync (0) fails.
12742
12743 2008-11-15  Bruno Haible  <bruno@clisp.org>
12744
12745         New module 'hostent'.
12746         * modules/hostent: New file.
12747         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
12748
12749 2008-11-15  Bruno Haible  <bruno@clisp.org>
12750
12751         New module 'servent'.
12752         * modules/servent: New file.
12753         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
12754
12755 2008-11-15  Bruno Haible  <bruno@clisp.org>
12756
12757         Avoid generating same test program with two different rules.
12758         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
12759         test-frexp to test-frexp-nolibm.
12760         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
12761         test-frexpl to test-frexpl-nolibm.
12762
12763 2008-11-15  Bruno Haible  <bruno@clisp.org>
12764
12765         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
12766         $(FREXPL_LIBM).
12767
12768 2008-11-15  Bruno Haible  <bruno@clisp.org>
12769
12770         * lib/netdb.in.h: Activate the definitions also when the system's
12771         <netdb.h> has 'struct addrinfo'.
12772         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
12773         EAI_OVERFLOW or AI_NUMERICSERV.
12774         * doc/posix-headers/netdb.texi: Document the problem.
12775
12776 2008-11-15  Bruno Haible  <bruno@clisp.org>
12777
12778         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
12779
12780         Make the 'sched' module work on platforms where <sched.h> exists but
12781         is incomplete (such as Haiku).
12782         * lib/sched.in.h; Include the system's <sched.h> if it exists.
12783         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
12784         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
12785         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
12786         HAVE_STRUCT_SCHED_PARAM.
12787         * modules/sched (Depends-on): Add include_next.
12788         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
12789         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
12790         * doc/posix-headers/sched.texi: Document the issue.
12791
12792 2008-11-13  Jim Meyering  <meyering@redhat.com>
12793
12794         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
12795         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
12796         test would fail due to the difference in the Report bugs to ...
12797         line.  The expected address is empty, "<>", while the actual
12798         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
12799
12800 2008-11-12  Bruno Haible  <bruno@clisp.org>
12801
12802         lstat: don't compile lstat.c on systems lacking lstat
12803         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
12804         which don't have lstat; this is handled by lib/sys_stat.in.h already.
12805         Reported by Daniel P. Berrange via Jim Meyering.
12806
12807 2008-11-12  Jim Meyering  <meyering@redhat.com>
12808
12809         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
12810
12811 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12812
12813         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
12814         instead.
12815
12816 2008-11-12  Bruno Haible  <bruno@clisp.org>
12817
12818         * lib/unicodeio.c: Include unistr.h.
12819         (utf8_wctomb): Remove function.
12820         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
12821
12822 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12823
12824         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
12825         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
12826         <bruno@clisp.org>.
12827         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
12828
12829 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12830
12831         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
12832         * doc/gnulib.texi: Add section for warnings.
12833
12834 2008-11-11  Bruno Haible  <bruno@clisp.org>
12835
12836         * lib/sockets.h: Add a comment.
12837
12838 2008-11-11  Karl Berry  <karl@gnu.org>
12839
12840         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
12841
12842 2008-11-11  Eric Blake  <ebb9@byu.net>
12843
12844         fdl.texi: avoid git symlinks
12845         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
12846
12847 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12848
12849         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
12850
12851 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12852
12853         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
12854         (gl_WARN_ADD): Substitute $2 if literal.
12855
12856 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12857
12858         * m4/warning.m4: Remove.
12859
12860 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12861
12862         * m4/warnings.m4: Almost complete rewrite. :-)
12863
12864 2008-11-10  Simon Josefsson  <simon@josefsson.org>
12865
12866         * modules/warnings: New module.
12867         * m4/warnings.m4: New file.
12868         * MODULES.html.sh: Mention warnings module.
12869         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
12870         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12871
12872 2008-11-10  Eric Blake  <ebb9@byu.net>
12873
12874         fdl.texi: make a symlink to the latest version
12875         * doc/standards.texi: Revert today's earlier change.
12876         * doc/fdl-1.2.texi: Rename from old fdl.texi...
12877         * doc/fdl.texi: ...and replace this with a symlink to the newer
12878         fdl-1.3.texi.
12879
12880 2008-11-10  Bruno Haible  <bruno@clisp.org>
12881
12882         * tests/test-select-fd.c (main): Accept the result file name as fourth
12883         argument.
12884         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
12885         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
12886
12887 2008-11-10  Bruno Haible  <bruno@clisp.org>
12888
12889         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
12890         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
12891         as autoconf-substituted macros.
12892         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
12893         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
12894         gl_NETDB_H_DEFAULTS. Set these variables.
12895         * modules/netdb (Makefile.am): Substitute these variables.
12896
12897 2008-11-10  Eric Blake  <ebb9@byu.net>
12898
12899         standards.texi: include correct file for FDL 1.3
12900         * doc/standards.texi (GNU Free Documentation License): Change
12901         include file to pull in FDL 1.3, not 1.2.
12902
12903         fdl.texi: revert accidental change to license
12904         * doc/fdl.texi: This is FDL 1.2, not 1.3.
12905
12906 2008-11-10  Bruno Haible  <bruno@clisp.org>
12907
12908         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
12909         cross-compiling guesses also when the native compile gives no result.
12910
12911 2008-11-10  Bruno Haible  <bruno@clisp.org>
12912
12913         * lib/spawni.c (__spawni): Force variable into the stack.
12914
12915 2008-11-10  Bruno Haible  <bruno@clisp.org>
12916
12917         Add support for Haiku.
12918         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
12919         glibc and BeOS, but also on Haiku.
12920         * lib/fpurge.c (fpurge): Likewise.
12921         * lib/freadable.c (freadable): Likewise.
12922         * lib/freadahead.c (freadahead): Likewise.
12923         * lib/freading.c (freading): Likewise.
12924         * lib/freadptr.c (freadptr): Likewise.
12925         * lib/freadseek.c (freadptrinc): Likewise.
12926         * lib/fseeko.c (rpl_fseeko): Likewise.
12927         * lib/fseterr.c (fseterr): Likewise.
12928         * lib/fwritable.c (fwritable): Likewise.
12929         * lib/fwriting.c (fwriting): Likewise.
12930         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
12931
12932 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
12933
12934         * lib/config.charset: Treat Haiku like BeOS.
12935
12936 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
12937
12938         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
12939         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
12940
12941 2008-11-08  Bruno Haible  <bruno@clisp.org>
12942
12943         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
12944         AC_CACHE_CHECK.
12945
12946 2008-11-08  Bruno Haible  <bruno@clisp.org>
12947
12948         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
12949
12950 2008-11-08  Bruno Haible  <bruno@clisp.org>
12951
12952         * tests/test-select-fd.c: New file.
12953         * tests/test-select-in.sh: New file.
12954         * tests/test-select-out.sh: New file.
12955         * tests/test-select-stdin.c: New file.
12956         * modules/select-tests (Files): Add the new files.
12957         (Depends-on): Add gettimeofday.
12958         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
12959         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
12960         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
12961
12962 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
12963             Bruno Haible  <bruno@clisp.org>
12964
12965         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
12966
12967 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
12968
12969         * build-aux/pmccabe2html: Added support for C++ source files.
12970
12971 2008-11-05  Ben Pfaff  <blp@gnu.org>
12972
12973         Fix lib/close.c build on Windows.
12974         * modules/close (Files): Add lib/w32sock.h.
12975
12976 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
12977
12978         Accept Bison's NEWS format.
12979         * build-aux/announce-gen (print_news_deltas): Tweak
12980         $re_prefix.
12981
12982 2008-11-04  Bruno Haible  <bruno@clisp.org>
12983
12984         * modules/random_r (Maintainer): Add glibc.
12985
12986 2008-11-04  Simon Josefsson  <simon@josefsson.org>
12987
12988         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
12989         by karl@freefriends.org (Karl Berry).
12990         * doc/alloca.texi: Likewise.
12991         * doc/c-ctype.texi: Likewise.
12992         * doc/c-strcase.texi: Likewise.
12993         * doc/c-strcaseeq.texi: Likewise.
12994         * doc/c-strcasestr.texi: Likewise.
12995         * doc/c-strstr.texi: Likewise.
12996         * doc/c-strtod.texi: Likewise.
12997         * doc/c-strtold.texi: Likewise.
12998         * doc/ctime.texi: Likewise.
12999         * doc/error.texi: Likewise.
13000         * doc/fdl.texi: Likewise.
13001         * doc/gcd.texi: Likewise.
13002         * doc/getdate.texi: Likewise.
13003         * doc/gnulib-intro.texi: Likewise.
13004         * doc/gnulib-tool.texi: Likewise.
13005         * doc/gnulib.texi: Likewise.
13006         * doc/inet_ntoa.texi: Likewise.
13007         * doc/maintain.texi: Likewise.
13008         * doc/make-stds.texi: Likewise.
13009         * doc/quote.texi: Likewise.
13010         * doc/regexprops-generic.texi: Likewise.
13011         * doc/standards.texi: Likewise.
13012         * doc/verify.texi: Likewise.
13013         * doc/visibility.texi: Likewise.
13014         * doc/gnulib.texi (GNU Free Documentation License): Include
13015         fdl-1.3.texi instead of fdl.texi.
13016
13017 2008-11-04  Simon Josefsson  <simon@josefsson.org>
13018
13019         * doc/fdl-1.3.texi: New file, from
13020         <http://www.gnu.org/licenses/fdl-1.3.texi>.
13021         * modules/fdl-1.3: Add.
13022         * MODULES.html.sh: Add fdl-1.3.
13023
13024 2008-11-03  Bruno Haible  <bruno@clisp.org>
13025
13026         Make determination of absolute name of header file work with AIX xlc.
13027         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
13028         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
13029         preprocessing.
13030         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13031         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
13032
13033 2008-11-03  Simon Josefsson  <simon@josefsson.org>
13034
13035         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
13036         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
13037         <ludo@gnu.org>.
13038
13039 2008-11-02  Bruno Haible  <bruno@clisp.org>
13040
13041         Mark 'strpbrk' obsolete.
13042         * modules/strpbrk (Status, Notice): New sections.
13043         * modules/strtok_r (Depends-on): Add strpbrk.
13044
13045 2008-11-02  Bruno Haible  <bruno@clisp.org>
13046
13047         Mark 'strdup' obsolete.
13048         * modules/strdup (Status, Notice): New sections.
13049         * modules/findprog (Depends-on): Add strdup.
13050         * modules/getaddrinfo (Depends-on): Likewise.
13051         * modules/localename (Depends-on): Likewise.
13052         * modules/relocatable-lib (Depends-on): Likewise.
13053         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
13054         * modules/relocatable-prog (Depends-on): Likewise.
13055         * modules/trim (Depends-on): Likewise.
13056         * modules/unictype/gen-ctype (Depends-on): Likewise.
13057         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
13058
13059 2008-11-02  Bruno Haible  <bruno@clisp.org>
13060
13061         Mark 'strcspn' obsolete.
13062         * modules/strcspn (Status, Notice): New sections.
13063
13064 2008-11-02  Bruno Haible  <bruno@clisp.org>
13065
13066         Mark 'rmdir' obsolete.
13067         * modules/rmdir (Status, Notice): New sections.
13068         * modules/clean-temp (Depends-on): Add rmdir.
13069         * modules/openat (Depends-on): Likewise.
13070
13071 2008-11-02  Bruno Haible  <bruno@clisp.org>
13072
13073         Mark 'raise' obsolete.
13074         * modules/raise (Status, Notice): New sections.
13075         (Include): Specify <signal.h>.
13076         * modules/stdio (Depends-on): Add raise.
13077         * modules/write (Depends-on): Likewise.
13078
13079 2008-11-02  Bruno Haible  <bruno@clisp.org>
13080
13081         Mark 'memset' obsolete.
13082         * modules/memset (Status, Notice): New sections.
13083
13084 2008-11-02  Bruno Haible  <bruno@clisp.org>
13085
13086         Mark 'memmove' obsolete.
13087         * modules/memmove (Status, Notice): New sections.
13088         * modules/argp (Depends-on): Add memmove.
13089         * modules/argz (Depends-on): Likewise.
13090         * modules/canonicalize (Depends-on): Likewise.
13091         * modules/canonicalize-lgpl (Depends-on): Likewise.
13092         * modules/fts (Depends-on): Likewise.
13093         * modules/getcwd (Depends-on): Likewise.
13094         * modules/human (Depends-on): Likewise.
13095         * modules/regex (Depends-on): Likewise.
13096         * modules/striconveh (Depends-on): Likewise.
13097         * modules/trim (Depends-on): Likewise.
13098         * modules/unistr/u8-move (Depends-on): Likewise.
13099         * modules/unistr/u16-move (Depends-on): Likewise.
13100         * modules/unistr/u32-move (Depends-on): Likewise.
13101
13102 2008-11-02  Bruno Haible  <bruno@clisp.org>
13103
13104         Mark 'memcpy' obsolete.
13105         * modules/memcpy (Status, Notice): New sections.
13106
13107 2008-11-02  Bruno Haible  <bruno@clisp.org>
13108
13109         Mark 'memcmp' obsolete.
13110         * modules/memcmp (Status, Notice): New sections.
13111         * modules/argmatch (Depends-on): Add memchr.
13112         * modules/backupfile (Depends-on): Likewise.
13113         * modules/c-strcasestr (Depends-on): Likewise.
13114         * modules/crypto/des (Depends-on): Likewise.
13115         * modules/csharpcomp (Depends-on): Likewise.
13116         * modules/fnmatch (Depends-on): Likewise.
13117         * modules/git-merge-changelog (Depends-on): Likewise.
13118         * modules/isnand (Depends-on): Likewise.
13119         * modules/isnand-nolibm (Depends-on): Likewise.
13120         * modules/isnanf (Depends-on): Likewise.
13121         * modules/isnanf-nolibm (Depends-on): Likewise.
13122         * modules/isnanl (Depends-on): Likewise.
13123         * modules/isnanl-nolibm (Depends-on): Likewise.
13124         * modules/mbchar (Depends-on): Likewise.
13125         * modules/memcoll (Depends-on): Likewise.
13126         * modules/quotearg (Depends-on): Likewise.
13127         * modules/regex (Depends-on): Likewise.
13128         * modules/relocatable-prog (Depends-on): Likewise.
13129         * modules/same (Depends-on): Likewise.
13130         * modules/signbit (Depends-on): Likewise.
13131         * modules/strcasestr-simple (Depends-on): Likewise.
13132         * modules/unictype/gen-ctype (Depends-on): Likewise.
13133         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
13134         * modules/uniname/uniname (Depends-on): Likewise.
13135         * modules/unistr/u8-cmp (Depends-on): Likewise.
13136
13137 2008-11-02  Bruno Haible  <bruno@clisp.org>
13138
13139         Mark 'memchr' obsolete.
13140         * modules/memchr (Status, Notice): New sections.
13141         * modules/argp (Depends-on): Add memchr.
13142         * modules/base64 (Depends-on): Likewise.
13143         * modules/c-strcasestr (Depends-on): Likewise.
13144         * modules/chdir-long (Depends-on): Likewise.
13145         * modules/fnmatch (Depends-on): Likewise.
13146         * modules/getsubopt (Depends-on): Likewise.
13147         * modules/git-merge-changelog (Depends-on): Likewise.
13148         * modules/glob (Depends-on): Likewise.
13149         * modules/strcasestr-simple (Depends-on): Likewise.
13150         * modules/strnlen (Depends-on): Likewise.
13151
13152 2008-11-02  Bruno Haible  <bruno@clisp.org>
13153
13154         Mark 'atexit' obsolete.
13155         * modules/atexit (Status, Notice): New sections.
13156         * modules/chdir-long (Depends-on): Add atexit.
13157         * modules/wait-process (Depends-on): Likewise.
13158
13159 2008-11-02  Bruno Haible  <bruno@clisp.org>
13160
13161         * gnulib-tool: New option --with-obsolete.
13162         (func_usage): Document it.
13163         (func_modules_transitive_closure): Drop obsolete dependencies if
13164         incobsolete is not true.
13165         (func_import): Read and save the incobsolete variable to the cache.
13166
13167 2008-11-02  Bruno Haible  <bruno@clisp.org>
13168
13169         * modules/TEMPLATE-EXTENDED: New field 'Status'.
13170         * gnulib-tool: New option --extract-status.
13171         (func_usage): Document it.
13172         (sed_extract_prog): Recognize it.
13173         (func_get_status): New function.
13174
13175 2008-10-30  Simon Josefsson  <simon@josefsson.org>
13176
13177         * modules/sockets (License): Change from LGPL to LGPLv2+.
13178
13179 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13180
13181         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
13182
13183 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13184
13185         * MODULES.html.sh (Support for systems lacking POSIX:2001):
13186         Mention times and sys_times.
13187         * modules/sys_times, modules/sys_times-tests: New modules.
13188         * modules/times, modules/times-tests: Likewise
13189         * m4/sys_times_h.m4: New file.
13190         * lib/sys_times.in.h: Likewise
13191         * lib/times.c: Likewise.
13192         * tests/test-sys_times.c: Likewise.
13193         * tests/test-times.c: Likewise.
13194         * doc/posix-headers/sys_times.texi: Update.
13195         * doc/posix-functions/times.texi: Update.
13196
13197 2008-10-28  Jim Meyering  <meyering@redhat.com>
13198
13199         * modules/tempname (Depends-on): Add lstat.
13200
13201         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
13202
13203 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13204
13205         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
13206         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
13207         using idiom used elsewhere in gnulib.
13208
13209 2008-10-27  Jim Meyering  <meyering@redhat.com>
13210
13211         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
13212
13213 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13214
13215         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
13216         TESTS_ENVIRONMENT, for shell scripts that needs to call built
13217         programs.
13218         * tests/test-argp-2.sh: Use $EXEEXT when needed.
13219
13220 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13221
13222         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
13223
13224 2008-10-27  Bruno Haible  <bruno@clisp.org>
13225
13226         * tests/test-lstat.c: Include <stdio.h>.
13227
13228 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13229
13230         * modules/lstat-tests: New module.
13231         * tests/test-lstat.c: New file.
13232
13233 2008-10-26  Jim Meyering  <meyering@redhat.com>
13234
13235         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
13236
13237 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13238             Bruno Haible  <bruno@clisp.org>
13239
13240         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
13241         * modules/configmake (Include): Add a note that the include must come
13242         after all system headers.
13243         * lib/javaversion.c: Include configmake.h after all other includes.
13244
13245 2008-10-26  Bruno Haible  <bruno@clisp.org>
13246
13247         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
13248         HAVE_STRUCT_RANDOM_DATA to 1.
13249         (gl_STDLIB_H): Simplify.
13250
13251 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13252
13253         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
13254         substitute HAVE_STRUCT_RANDOM_DATA.
13255         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
13256         random_data.
13257         * modules/stdlib (Makefile.am): Substitute
13258         HAVE_STRUCT_RANDOM_DATA.
13259
13260 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13261
13262         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
13263         * doc/gnulib-intro.texi (Copyright): Likewise.
13264
13265 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13266
13267         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
13268         findings.
13269
13270 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
13271             Bruno Haible  <bruno@clisp.org>
13272
13273         * lib/unistd.in.h: Include <winsock2.h>.
13274         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
13275         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
13276         Provide dummy declarations.
13277         (gethostname): Override.
13278         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
13279         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
13280         gl_PREREQ_SYS_H_WINSOCK2.
13281         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
13282         * doc/posix-functions/gethostname.texi: More details.
13283
13284 2008-10-25  Bruno Haible  <bruno@clisp.org>
13285
13286         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
13287         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
13288         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
13289
13290         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
13291         here ...
13292         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
13293         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
13294         gl_UNISTD_H_DEFAULTS.
13295
13296 2008-10-25  Eric Blake  <ebb9@byu.net>
13297
13298         signbit: avoid spurious compiler failure
13299         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
13300         declarations inside function.
13301
13302 2008-10-24  Simon Josefsson  <simon@josefsson.org>
13303             Bruno Haible  <bruno@clisp.org>
13304
13305         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
13306         * modules/random_r (Depends-on): Add stdint.
13307
13308 2008-10-24  Bruno Haible  <bruno@clisp.org>
13309
13310         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
13311         Eggert.
13312         * modules/strerror (License): Likewise.
13313
13314 2008-10-24  Jim Meyering  <meyering@redhat.com>
13315
13316         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
13317         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
13318
13319 2008-10-24  Eric Blake  <ebb9@byu.net>
13320
13321         getgroups: fix compilation when getgroups is available
13322         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
13323         but with <config.h> override of getgroups disabled.
13324
13325 2008-10-24  Simon Josefsson  <simon@josefsson.org>
13326
13327         * doc/gnulib.texi (Header files): Add note about C++ problems.
13328         Explained by Bruno Haible <bruno@clisp.org>.
13329
13330 2008-10-23  Bruno Haible  <bruno@clisp.org>
13331
13332         Define a dummy SA_NODEFER macro on Interix.
13333         * lib/signal.in.h (SA_NODEFER): Define fallback.
13334         Reported by Aleksey Cheusov <cheusov@tut.by> via
13335         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
13336
13337 2008-10-23  Bruno Haible  <bruno@clisp.org>
13338
13339         * modules/freadahead (License): Change to LGPLv2+.
13340         Suggested by Simon Josefsson.
13341
13342 2008-10-23  Jim Meyering  <meyering@redhat.com>
13343
13344         random_r: new module
13345         * modules/random_r: New file.
13346         * m4/random_r.m4: New file.
13347         * lib/random_r.c: New file, from glibc.
13348         * modules/random_r-tests: New file.
13349         * tests/test-random_r.c: New file.
13350         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
13351          Declare.
13352         (RAND_MAX): Define.
13353         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
13354         * modules/stdlib: Substitute them, too.
13355         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
13356         * doc/glibc-functions/initstate_r.texi: Mention the new module.
13357         * doc/glibc-functions/random_r.texi: Likewise.
13358         * doc/glibc-functions/setstate_r.texi: Likewise.
13359         * doc/glibc-functions/srandom_r.texi: Likewise.
13360         * config/srclist.txt: Mention it.
13361
13362 2008-10-23  David Lutterkort  <lutter@redhat.com>
13363
13364         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
13365         link requirement
13366
13367 2008-10-23  Jim Meyering  <meyering@redhat.com>
13368
13369         selinux-h: mark parameters of stub functions as intentionally unused
13370         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
13371         * lib/se-context.in.h: Likewise.
13372
13373 2008-10-22  Simon Josefsson  <simon@josefsson.org>
13374
13375         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
13376
13377 2008-10-22  Simon Josefsson  <simon@josefsson.org>
13378
13379         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
13380
13381 2008-10-22  Eric Blake  <ebb9@byu.net>
13382
13383         glthread/thread: avoid compiler warning
13384         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
13385         Add unreachable abort to silence compiler.
13386
13387 2008-10-22  Eric Blake  <ebb9@byu.net>
13388
13389         netdb: also supply struct addrinfo for cygwin 1.5.x
13390         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
13391         older cygwin.
13392         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
13393         cygwin.
13394         * doc/posix-headers/netdb.texi (netdb.h): Document this.
13395
13396 2008-10-22  Bruno Haible  <bruno@clisp.org>
13397
13398         * users.txt: Update entry about pspp.
13399
13400 2008-10-21  Bruno Haible  <bruno@clisp.org>
13401
13402         Simplification.
13403         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
13404         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
13405
13406         Simplification.
13407         * lib/ioctl.c (ioctl): Don't undefine.
13408         * lib/socket.c (socket): Don't undefine.
13409
13410         Remove unused module indicator macros.
13411         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
13412         GNULIB_$1 as a C macro.
13413
13414         * doc/posix-functions/close.texi: Undo last change.
13415         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
13416         Windows platforms.
13417
13418 2008-10-21  Bruno Haible  <bruno@clisp.org>
13419
13420         Add gethostname() declaration to <unistd.h>.
13421         * lib/unistd.in.h (gethostname): New declaration.
13422         * lib/gethostname.c: Include <unistd.h>.
13423         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
13424         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
13425         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
13426         and HAVE_GETHOSTNAME.
13427         * modules/gethostname (Depends-on): Add unistd.
13428         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13429         (Include): Specify <unistd.h>.
13430         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
13431         HAVE_GETHOSTNAME.
13432         * tests/test-gethostname.c: Include <unistd.h> first.
13433
13434 2008-10-21  Bruno Haible  <bruno@clisp.org>
13435
13436         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
13437         * modules/select-tests (Depends-on): Likewise.
13438         Reported by Simon Josefsson.
13439
13440 2008-10-21  Simon Josefsson  <simon@josefsson.org>
13441
13442         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
13443         * lib/accept.c: New file, based on winsock.c.
13444         * lib/bind.c: New file, based on winsock.c.
13445         * lib/connect.c: New file, based on winsock.c.
13446         * lib/getpeername.c: New file, based on winsock.c.
13447         * lib/getsockname.c: New file, based on winsock.c.
13448         * lib/getsockopt.c: New file, based on winsock.c.
13449         * lib/ioctl.c: New file, based on winsock.c.
13450         * lib/listen.c: New file, based on winsock.c.
13451         * lib/recv.c: New file, based on winsock.c.
13452         * lib/recvfrom.c: New file, based on winsock.c.
13453         * lib/send.c: New file, based on winsock.c.
13454         * lib/sendto.c: New file, based on winsock.c.
13455         * lib/setsockopt.c: New file, based on winsock.c.
13456         * lib/shutdown.c: New file, based on winsock.c.
13457         * lib/socket.c: New file, based on winsock.c.
13458         * lib/w32sock.h: New file, based on winsock.c.
13459         * lib/winsock.c: Remove file.
13460         * modules/accept: Likewise.
13461         * modules/bind: Likewise.
13462         * modules/connect: Likewise.
13463         * modules/getpeername: Likewise.
13464         * modules/getsockname: Likewise.
13465         * modules/getsockopt: Likewise.
13466         * modules/ioctl: Likewise.
13467         * modules/listen: Likewise.
13468         * modules/recv: Likewise.
13469         * modules/recvfrom: Likewise.
13470         * modules/send: Likewise.
13471         * modules/sendto: Likewise.
13472         * modules/setsockopt: Likewise.
13473         * modules/shutdown: Likewise.
13474         * modules/socket: Use socket.c instead of winsock.c.
13475         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
13476         * doc/posix-functions/accept.texi: Doc fix.
13477         * doc/posix-functions/bind.texi: Doc fix.
13478         * doc/posix-functions/close.texi: Doc fix.
13479         * doc/posix-functions/connect.texi: Doc fix.
13480         * doc/posix-functions/getpeername.texi: Doc fix.
13481         * doc/posix-functions/getsockname.texi: Doc fix.
13482         * doc/posix-functions/getsockopt.texi: Doc fix.
13483         * doc/posix-functions/ioctl.texi: Doc fix.
13484         * doc/posix-functions/listen.texi: Doc fix.
13485         * doc/posix-functions/recv.texi: Doc fix.
13486         * doc/posix-functions/recvfrom.texi: Doc fix.
13487         * doc/posix-functions/send.texi: Doc fix.
13488         * doc/posix-functions/sendto.texi: Doc fix.
13489         * doc/posix-functions/setsockopt.texi: Doc fix.
13490         * doc/posix-functions/shutdown.texi: Doc fix.
13491         * doc/posix-functions/socket.texi: Doc fix.
13492
13493 2008-10-20  Bruno Haible  <bruno@clisp.org>
13494
13495         Take into account the role of SIGABRT_COMPAT on Windows 2008.
13496         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
13497         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
13498         as an alias for SIGABRT.
13499         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
13500         (sigaction): Map it to SIGABRT.
13501         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
13502
13503 2008-10-20  Bruno Haible  <bruno@clisp.org>
13504
13505         * lib/fts.c: Don't include lstat.h.
13506         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
13507
13508         Move the lstat() declaration to <sys/stat.h>.
13509         * lib/lstat.h: Remove file.
13510         * lib/sys_stat.in.h: Add special invocation convention.
13511         (lstat): New declaration.
13512         * lib/lstat.c (orig_lstat): New function.
13513         (rpl_lstat): Use orig_lstat instead of lstat.
13514         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
13515         AC_C_INLINE. Set REPLACE_LSTAT.
13516         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
13517         and REPLACE_LSTAT.
13518         * modules/lstat (Files): Remove lib/lstat.h.
13519         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
13520         (Include): Specify <sys/stat.h> instead of lstat.h.
13521         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
13522         REPLACE_LSTAT.
13523         * NEWS: Mention the change.
13524
13525 2008-10-20  Bruno Haible  <bruno@clisp.org>
13526
13527         * modules/posix_spawn-tests: New file.
13528         * tests/test-posix_spawn3.c: New file.
13529
13530 2008-10-20  Bruno Haible  <bruno@clisp.org>
13531
13532         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
13533         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
13534         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
13535         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
13536         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
13537
13538 2008-10-20  Bruno Haible  <bruno@clisp.org>
13539
13540         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
13541         of posix_spawn on AIX 5.3.
13542
13543 2008-10-20  Bruno Haible  <bruno@clisp.org>
13544
13545         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
13546
13547 2008-10-20  Bruno Haible  <bruno@clisp.org>
13548
13549         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
13550         of AC_LANG_PROGRAM.
13551
13552 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13553
13554         * lib/netdb.in.h: Don't define GNU specific constants until they
13555         are supported or needed.  Reported by Bruno Haible
13556         <bruno@clisp.org>.
13557
13558 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13559
13560         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
13561
13562 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13563
13564         * lib/getaddrinfo.h: Remove file.
13565         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
13566         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
13567         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
13568         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
13569         * modules/netdb: Substitute GNULIB_GETADDRINFO.
13570         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
13571         * tests/test-getaddrinfo.c: Likewise.
13572         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
13573         * NEWS: Mention change.
13574
13575 2008-10-19  Bruno Haible  <bruno@clisp.org>
13576
13577         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
13578
13579 2008-10-19  Bruno Haible  <bruno@clisp.org>
13580
13581         * lib/wait-process.c: Include simply <sys/wait.h>.
13582         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
13583         WIFSTOPPED): Remove fallback definitions.
13584         * modules/wait-process (Depends-on): Add sys_wait.
13585
13586         New module 'sys_wait'.
13587         * modules/sys_wait: New file.
13588         * lib/sys_wait.in.h: New file, partially copied from
13589         lib/wait-process.c.
13590         * m4/sys_wait_h.m4: New file.
13591         * doc/posix-headers/sys_wait.texi: Mention the new module.
13592
13593 2008-10-19  Bruno Haible  <bruno@clisp.org>
13594
13595         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
13596
13597 2008-10-19  Bruno Haible  <bruno@clisp.org>
13598
13599         Assume that waitpid() fills an 'int' status, not a 'union wait'.
13600         * lib/wait-process.c (WAIT_T): Remove type.
13601         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
13602         (wait_subprocess): Update.
13603
13604 2008-10-19  Bruno Haible  <bruno@clisp.org>
13605
13606         New module 'atoll'.
13607         * modules/atoll: New file.
13608         * lib/stdlib.in.h (atoll): New declaration.
13609         * lib/atoll.c: New file, from glibc with modifications.
13610         * m4/atoll.m4: New file.
13611         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
13612         HAVE_ATOLL.
13613         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
13614         * doc/posix-functions/atoll.texi: Mention the new module.
13615
13616 2008-10-19  Bruno Haible  <bruno@clisp.org>
13617
13618         Add strtoull() declaration to <stdlib.h>.
13619         * lib/stdlib.in.h (strtoull): New declaration.
13620         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
13621         Set HAVE_STRTOULL.
13622         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
13623         HAVE_STRTOULL.
13624         * modules/strtoull (Depends-on): Add stdlib.
13625         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13626         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
13627         HAVE_STRTOULL.
13628
13629 2008-10-19  Bruno Haible  <bruno@clisp.org>
13630
13631         Add strtoll() declaration to <stdlib.h>.
13632         * lib/stdlib.in.h (strtoll): New declaration.
13633         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
13634         Set HAVE_STRTOLL.
13635         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
13636         HAVE_STRTOLL.
13637         * modules/strtoll (Depends-on): Add stdlib.
13638         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13639         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
13640
13641 2008-10-19  Bruno Haible  <bruno@clisp.org>
13642
13643         * modules/bcopy (Depends-on): Add strings.
13644         (Include): Specify <strings.h>.
13645
13646 2008-10-19  Bruno Haible  <bruno@clisp.org>
13647
13648         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
13649
13650 2008-10-19  Bruno Haible  <bruno@clisp.org>
13651
13652         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
13653         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
13654         mingw.
13655
13656 2008-10-19  Bruno Haible  <bruno@clisp.org>
13657
13658         * lib/atanl.c: Don't include isnanl.h.
13659         * lib/cosl.c: Likewise.
13660         * lib/ldexpl.c: Likewise.
13661         * lib/logl.c: Likewise.
13662         * lib/sinl.c: Likewise.
13663         * lib/sqrtl.c: Likewise.
13664         * lib/tanl.c: Likewise.
13665
13666         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
13667         * lib/isnanf.h: Remove file.
13668         * lib/isnand.h: Remove file.
13669         * lib/isnanl.h: Remove file.
13670         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
13671         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
13672         macros.
13673         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
13674         HAVE_ISNANF, don't define it as a C macro.
13675         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
13676         HAVE_ISNAND, don't define it as a C macro.
13677         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
13678         HAVE_ISNANL, don't define it as a C macro.
13679         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
13680         HAVE_ISNAN[FDL].
13681         * modules/isnanf (Files): Remove lib/isnanf.h.
13682         (Depends-on): Add math.
13683         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13684         (Include): Specify <math.h> instead of isnanf.h.
13685         * modules/isnand (Files): Remove lib/isnand.h.
13686         (Depends-on): Add math.
13687         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13688         (Include): Specify <math.h> instead of isnand.h.
13689         * modules/isnanl (Files): Remove lib/isnanl.h.
13690         (Depends-on): Add math.
13691         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13692         (Include): Specify <math.h> instead of isnanl.h.
13693         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
13694         HAVE_ISNAN[FDL].
13695         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
13696         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
13697         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
13698         * NEWS: Mention the change.
13699
13700 2008-10-18  Bruno Haible  <bruno@clisp.org>
13701
13702         Add getusershell(), setusershell(), endusershell() declarations to
13703         <unistd.h>.
13704         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
13705         declarations.
13706         * lib/getusershell.c: Include unistd.h.
13707         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
13708         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
13709         HAVE_GETUSERSHELL.
13710         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
13711         and HAVE_GETUSERSHELL.
13712         * modules/getusershell (Depends-on): Add unistd, extensions.
13713         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13714         (Include): Specify <unistd.h>.
13715         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
13716         HAVE_GETUSERSHELL.
13717
13718 2008-10-18  Bruno Haible  <bruno@clisp.org>
13719
13720         Add a getloadavg() declaration to <stdlib.h>.
13721         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
13722         getloadavg declaration.
13723         (getloadavg): New declaration.
13724         * lib/getloadavg.c: Include <stdlib.h> first.
13725         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
13726         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
13727         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
13728         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
13729         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
13730         * modules/getloadavg (Depends-on): Add stdlib, extensions.
13731         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13732         (Include): Specify <stdlib.h>.
13733         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
13734         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
13735
13736 2008-10-18  Bruno Haible  <bruno@clisp.org>
13737
13738         * lib/dirchownmod.c: Don't include lchmod.h.
13739
13740         Move the lchmod() declaration to <sys/stat.h>.
13741         * lib/lchmod.h: Remove file.
13742         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
13743         (lchmod): New declaration, moved here from lib/lchown.h.
13744         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
13745         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
13746         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
13747         and HAVE_LCHMOD.
13748         * modules/lchmod (Files): Remove lib/lchmod.h.
13749         (Depends-on): Add sys_stat, extensions.
13750         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
13751         (Include): Specify <sys/stat.h> instead of lchmod.h.
13752         * modules/sys_stat (Depends-on): Add link-warning.
13753         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
13754         definition of GL_LINK_WARNING.
13755         * NEWS: Mention the change.
13756
13757 2008-10-18  Bruno Haible  <bruno@clisp.org>
13758
13759         * lib/fchdir.c: Don't include dirfd.h.
13760         * lib/fts.c: Likewise.
13761         * lib/getcwd.c: Likewise.
13762         * lib/glob.c: Likewise.
13763
13764         Move the dirfd() declaration to <dirent.h>.
13765         * lib/dirfd.h: Remove file.
13766         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
13767         (dirfd): New declaration.
13768         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
13769         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
13770         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
13771         HAVE_DECL_DIRFD.
13772         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
13773         HAVE_DECL_DIRFD.
13774         * modules/dirfd (Files): Remove lib/dirfd.h.
13775         (Depends-on): Add dirent, extensions.
13776         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
13777         (Include): Specify <dirent.h> instead of dirfd.h.
13778         * modules/dirent (Depends-on): Add link-warning.
13779         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
13780         definition of GL_LINK_WARNING.
13781         * NEWS: Mention the change.
13782
13783 2008-10-18  Bruno Haible  <bruno@clisp.org>
13784
13785         Move the euidaccess() declaration to <unistd.h>.
13786         * lib/euidaccess.h: Remove file.
13787         * lib/unistd.in.h (euidaccess): New declaration.
13788         * lib/euidaccess.c: Don't include euidaccess.h.
13789         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
13790         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
13791         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
13792         and HAVE_EUIDACCESS.
13793         * modules/euidaccess (Files): Remove lib/euidaccess.h.
13794         (Depends-on): Add unistd.
13795         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13796         (Include): Specify <unistd.h> instead of euidaccess.h.
13797         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
13798         HAVE_EUIDACCESS.
13799         * NEWS: Mention the change.
13800
13801 2008-10-18  Bruno Haible  <bruno@clisp.org>
13802
13803         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
13804
13805         Move the getdomainname() declaration to <unistd.h>.
13806         * lib/getdomainname.h: Remove file.
13807         * lib/unistd.in.h (getdomainname): New declaration.
13808         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
13809         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
13810         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
13811         HAVE_GETDOMAINNAME.
13812         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
13813         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
13814         * modules/getdomainname (Files): Remove lib/getdomainname.h.
13815         (Depends-on): Add unistd, extensions.
13816         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13817         (Includes): Specify <unistd.h> instead of getdomainname.h.
13818         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
13819         HAVE_GETDOMAINNAME.
13820         * NEWS: Mention the change.
13821
13822 2008-10-18  Bruno Haible  <bruno@clisp.org>
13823
13824         * modules/dirent: New file.
13825         * m4/dirent_h.m4: New file.
13826         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
13827         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
13828         * modules/fchdir (Files): Remove lib/dirent.in.h.
13829         (Depends-on): Add dirent.
13830         (Makefile.am): Move rules to modules/dirent.
13831         * doc/posix-headers/dirent.texi: Mention the new module.
13832
13833 2008-10-18  Bruno Haible  <bruno@clisp.org>
13834
13835         Avoid -Wunused-parameter warnings in public gnulib header files.
13836         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
13837         macro.
13838         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
13839
13840 2008-10-18  Bruno Haible  <bruno@clisp.org>
13841
13842         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
13843         * doc/glibc-functions/error.texi: Mention the module 'error'.
13844         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
13845         * doc/glibc-functions/getdomainname.texi: Mention the module
13846         'getdomainname'.
13847         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
13848         * doc/glibc-functions/getpagesize.texi: Mention the module
13849         'getpagesize'.
13850         * doc/glibc-functions/getusershell.texi: Mention the module
13851         'getusershell'.
13852         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
13853         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
13854         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
13855         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
13856         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
13857         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
13858         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
13859         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
13860         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
13861         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
13862         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
13863         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
13864         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
13865         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
13866
13867 2008-10-17  Bruno Haible  <bruno@clisp.org>
13868
13869         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
13870         HP-UX and IRIX, use -0.0L.
13871         * tests/test-ceill.c (minus_zero): Likewise.
13872         * tests/test-floorl.c (minus_zero): Likewise.
13873         * tests/test-frexpl.c (minus_zero): Likewise.
13874         * tests/test-isnan.c (minus_zerol): Likewise.
13875         * tests/test-isnanl.h (minus_zero): Likewise.
13876         * tests/test-ldexpl.c (minus_zero): Likewise.
13877         * tests/test-roundl.c (minus_zero): Likewise.
13878         * tests/test-signbit.c (minus_zerol): Likewise.
13879         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
13880         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
13881         * tests/test-truncl.c (minus_zero): Likewise.
13882         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
13883         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
13884         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
13885         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
13886
13887 2008-10-17  Bruno Haible  <bruno@clisp.org>
13888
13889         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
13890         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
13891         that it gets activated only for gcc >= 3.0.
13892         * lib/dirent.in.h: Likewise.
13893         * lib/errno.in.h: Likewise.
13894         * lib/fcntl.in.h: Likewise.
13895         * lib/float.in.h: Likewise.
13896         * lib/iconv.in.h: Likewise.
13897         * lib/inttypes.in.h: Likewise.
13898         * lib/locale.in.h: Likewise.
13899         * lib/math.in.h: Likewise.
13900         * lib/netdb.in.h: Likewise.
13901         * lib/netinet_in.in.h: Likewise.
13902         * lib/search.in.h: Likewise.
13903         * lib/signal.in.h: Likewise.
13904         * lib/spawn.in.h: Likewise.
13905         * lib/stdarg.in.h: Likewise.
13906         * lib/stdint.in.h: Likewise.
13907         * lib/stdio.in.h: Likewise.
13908         * lib/stdlib.in.h: Likewise.
13909         * lib/string.in.h: Likewise.
13910         * lib/strings.in.h: Likewise.
13911         * lib/sys_file.in.h: Likewise.
13912         * lib/sys_ioctl.in.h: Likewise.
13913         * lib/sys_select.in.h: Likewise.
13914         * lib/sys_socket.in.h: Likewise.
13915         * lib/sys_stat.in.h: Likewise.
13916         * lib/sys_time.in.h: Likewise.
13917         * lib/sysexits.in.h: Likewise.
13918         * lib/time.in.h: Likewise.
13919         * lib/unistd.in.h: Likewise.
13920         * lib/wchar.in.h: Likewise.
13921         * lib/wctype.in.h: Likewise.
13922         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
13923
13924 2008-10-17  Jim Meyering  <meyering@redhat.com>
13925
13926         ignore-value: don't depend on inline module
13927         * modules/ignore-value (Depends-on): Remove 'inline'.
13928         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
13929         Suggestion from Bruno Haible.
13930
13931 2008-10-17  Bruno Haible  <bruno@clisp.org>
13932
13933         New implementation of condition variables for Win32.
13934         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
13935         (gl_linked_waitqueue_t): New type.
13936         (gl_cond_t): Use it.
13937         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
13938         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
13939         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
13940         (glthread_cond_init_func, glthread_cond_wait_func,
13941         glthread_cond_timedwait_func, glthread_cond_signal_func,
13942         glthread_cond_broadcast_func, glthread_cond_destroy_func):
13943         Reimplemented on the basis of gl_linked_waitqueue_t.
13944         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
13945         gl_waitqueue_t.
13946         (gl_rwlock_t): Update.
13947         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
13948
13949 2008-10-17  Simon Josefsson  <simon@josefsson.org>
13950
13951         * modules/recvfrom (Depends-on): Add dependency on getpeername.
13952         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
13953
13954 2008-10-17  Jim Meyering  <meyering@redhat.com>
13955
13956         ignore-value: new module
13957         * modules/ignore-value: New file.
13958         * lib/ignore-value.h: New file.
13959         * MODULES.html.sh (Compiler warning management): New section,
13960         just for this module.  More to come.
13961
13962 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
13963
13964         open-safer.c: avoid 'signed and unsigned in conditional...' warning
13965         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
13966         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
13967
13968 2008-10-16  Jim Meyering  <meyering@redhat.com>
13969
13970         openat-die.c: avoid 'no previous prototype' warning
13971         * lib/openat-die.c: Include "openat.h".
13972         Reported by Reuben Thomas <rrt@sc3d.org>.
13973
13974 2008-10-16  Simon Josefsson  <simon@josefsson.org>
13975
13976         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
13977         * lib/netdb.in.h: Fix typo.
13978         Reported by Bruno Haible  <bruno@clisp.org>
13979
13980         * lib/netdb.in.h: Include sys/socket.h for platforms without
13981         netdb.h, to get structures like hostent on MinGW.
13982         * modules/netdb (Depends-on): Add sys_socket.
13983
13984 2008-10-15  Simon Josefsson  <simon@josefsson.org>
13985
13986         * modules/netdb, modules/netdb-tests: New file.
13987         * m4/netdb_h.m4: New file.
13988         * lib/netdb.in.h: Add, currently just an empty file pending
13989         definitions.
13990         * tests/test-netdb.c: New file.
13991         * doc/posix-headers/netdb.texi: Mention that we replace it if
13992         needed.
13993         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13994         netdb.
13995
13996 2008-10-15  Simon Josefsson  <simon@josefsson.org>
13997
13998         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
13999         with code.
14000
14001 2008-10-13  Bruno Haible  <bruno@clisp.org>
14002
14003         * lib/glthread/cond.c (glthread_cond_wait_func,
14004         glthread_cond_timedwait_func): Add a comment.
14005
14006 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14007
14008         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
14009         * tests/test-select.c: Likewise,
14010
14011 2008-10-13  Bruno Haible  <bruno@clisp.org>
14012
14013         * lib/glthread/cond.c (glthread_cond_wait_func,
14014         glthread_cond_timedwait_func): Fix variable name.
14015         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14016
14017 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
14018
14019         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
14020         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
14021         struct sockaddr.sa_len.
14022         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
14023
14024 2008-10-13  Simon Josefsson  <simon@josefsson.org>
14025
14026         * build-aux/pmccabe2html: Add css and css_url parameters.
14027
14028 2008-10-12  Bruno Haible  <bruno@clisp.org>
14029
14030         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
14031         calling aclx_get.
14032         Reported by Rainer Tammer <tammer@tammer.net>.
14033
14034 2008-10-12  Bruno Haible  <bruno@clisp.org>
14035
14036         Use msvcrt aware primitives for creation/termination of Win32 threads.
14037         * lib/glthread/thread.c: Include <process.h>.
14038         (glthread_create_func): Use _beginthreadex instead of CreateThread.
14039         (wrapper_func): Update signature.
14040         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
14041
14042 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14043             Bruno Haible  <bruno@clisp.org>
14044
14045         Provide a Win32 implementation of the 'cond' module.
14046         * lib/glthread/cond.h [USE_WIN32]: New implementation.
14047         * lib/glthread/cond.c (glthread_cond_init_func,
14048         glthread_cond_wait_func, glthread_cond_timedwait_func,
14049         glthread_cond_signal_func, glthread_cond_broadcast_func,
14050         glthread_cond_destroy_func) [USE_WIN32]: New functions.
14051         * modules/cond (Dependencies): Add gettimeofday.
14052
14053 2008-10-11  Bruno Haible  <bruno@clisp.org>
14054
14055         Make sleep work on older versions of mingw.
14056         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
14057         only whether it exists.
14058         * doc/posix-functions/sleep.texi: Mention the problem with older
14059         versions of mingw.
14060
14061 2008-10-11  Bruno Haible  <bruno@clisp.org>
14062
14063         New module 'shutdown'.
14064         * modules/shutdown: New file.
14065         * lib/sys_socket.in.h (shutdown): New declaration.
14066         * lib/winsock.c (shutdown): New function.
14067         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
14068         GNULIB_SHUTDOWN.
14069         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
14070         * doc/posix-functions/shutdown.texi: Document the new module.
14071
14072 2008-10-11  Jim Meyering  <meyering@redhat.com>
14073
14074         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
14075
14076 2008-10-11  Bruno Haible  <bruno@clisp.org>
14077
14078         New module 'fclose'.
14079         * modules/fclose: New file.
14080         * lib/stdio.in.h (fclose): New declaration.
14081         * lib/fclose.c: New file.
14082         * m4/fclose.m4: New file.
14083         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
14084         REPLACE_FCLOSE.
14085         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
14086         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
14087         REPLACE_FCLOSE.
14088         * modules/close (Depends-on): fclose.
14089         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
14090
14091 2008-10-11  Bruno Haible  <bruno@clisp.org>
14092
14093         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
14094         set errno and don't call _close.
14095
14096 2008-10-10  Bruno Haible  <bruno@clisp.org>
14097
14098         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
14099         ACL, not afterwards. Fixes test failure on Cygwin.
14100
14101 2008-10-09  Ben Pfaff  <blp@gnu.org>
14102
14103         * build-aux/announce-gen: Fix gnulib version related part of usage
14104         message.  Die with a useful error message if no tarballs are
14105         found.
14106
14107 2008-10-10  Jim Meyering  <meyering@redhat.com>
14108
14109         bootstrap: use git's --depth=N option only if it's supported
14110         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
14111         recognize the --depth option.  Reported by Pádraig Brady.
14112
14113 2008-10-09  Bruno Haible  <bruno@clisp.org>
14114
14115         New module 'ioctl'.
14116         * modules/ioctl: New file.
14117         * lib/sys_socket.in.h (ioctl): Remove declaration.
14118         * lib/winsock.c: Include <sys/ioctl.h>.
14119         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
14120         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
14121         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
14122         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
14123         * doc/posix-functions/ioctl.texi: Mention the new module.
14124
14125 2008-10-09  Bruno Haible  <bruno@clisp.org>
14126
14127         New module 'sys_ioctl'.
14128         * lib/sys_ioctl.in.h: New file.
14129         * m4/sys_ioctl_h.m4: New file.
14130         * modules/sys_ioctl: New file.
14131         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
14132
14133 2008-10-09  Bruno Haible  <bruno@clisp.org>
14134
14135         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
14136         * lib/winsock.c: Include <stdarg.h>.
14137         (rpl_ioctl): Change to second argument 'int' and then varargs.
14138
14139 2008-10-09  Bruno Haible  <bruno@clisp.org>
14140
14141         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
14142         when the sys_socket module is present and the system has <winsock2.h>.
14143
14144 2008-10-09  Bruno Haible  <bruno@clisp.org>
14145
14146         * doc/posix-functions/close.texi: Mention module 'close' instead of
14147         module 'sys_socket'.
14148
14149 2008-10-09  Bruno Haible  <bruno@clisp.org>
14150
14151         * doc/glibc-headers/sys_ioctl.texi: New file.
14152         * doc/gnulib.texi: Include it.
14153
14154 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14155             Bruno Haible  <bruno@clisp.org>
14156
14157         Combine the two replacements of 'close'.
14158         * lib/sys_socket.in.h (close): Define to a reminder to include
14159         <unistd.h>.
14160         (_gl_close_fd_maybe_socket): New declaration.
14161         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
14162         * lib/winsock.c (close): Remove undefinition.
14163         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
14164         needed for the gnulib module 'close'.
14165         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
14166         define to an error symbol or to a warning, if suitable.
14167         * lib/close.c: Include <sys/socket.h>.
14168         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
14169         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
14170         UNISTD_H_HAVE_WINSOCK2_H.
14171         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
14172         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14173         UNISTD_H_HAVE_WINSOCK2_H.
14174         * modules/sys_socket (Files): Add m4/unistd_h.m4.
14175         (configure.ac): Set a module indicator.
14176         (Makefile.am): Substitute GNULIB_CLOSE.
14177         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
14178         * modules/poll-tests (Depends-on): Add close.
14179         * modules/select-tests (Depends-on): Likewise.
14180
14181 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14182             Bruno Haible  <bruno@clisp.org>
14183
14184         New module 'close'.
14185         * modules/close: New file.
14186         * lib/unistd.in.h (close): Move declaration out of the
14187         FCHDIR_REPLACEMENT scope.
14188         (_gl_unregister_fd): New declaration.
14189         * lib/close.c: New file.
14190         * lib/fchdir.c (rpl_close): Remove function.
14191         * m4/close.m4: New file.
14192         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
14193         close.
14194         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
14195         REPLACE_CLOSE.
14196         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
14197         REPLACE_CLOSE.
14198         * modules/fchdir (Depends-on): Add close.
14199
14200 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14201             Bruno Haible  <bruno@clisp.org>
14202
14203         * lib/fcntl.in.h (open): Simplify conditionals.
14204         (_gl_register_fd): New declaration.
14205         * lib/fchdir.c (rpl_open): Remove function.
14206         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
14207         also.
14208         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
14209         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
14210         open.
14211
14212 2008-10-09  Jim Meyering  <meyering@redhat.com>
14213
14214         GNUmakefile: use the more name-space-friendly "_version"
14215         * top/GNUmakefile (_dummy): Update.
14216         (_version): Rename from "version".
14217
14218 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14219             Bruno Haible  <bruno@clisp.org>
14220
14221         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
14222         rpl_close.
14223         (_gl_register_fd): New function, extracted from rpl_open.
14224         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
14225         (rpl_open, rpl_opendir): Use _gl_register_fd.
14226
14227 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14228
14229         Fix organization of 'open' replacement.
14230         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
14231         (gl_FUNC_OPEN): Use it.
14232         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
14233
14234 2008-10-08  Bruno Haible  <bruno@clisp.org>
14235
14236         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
14237
14238 2008-10-08  Simon Josefsson  <simon@josefsson.org>
14239
14240         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
14241         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
14242         listen).
14243
14244 2008-10-08  Eric Blake  <ebb9@byu.net>
14245
14246         GNUmakefile: add 'make version' target
14247         * top/GNUmakefile (_curr-ver): Split version update rules...
14248         (version): ...into a target.
14249
14250 2008-10-07  Bruno Haible  <bruno@clisp.org>
14251
14252         Use a more portable replacement expression for -0.0L.
14253         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
14254         instead of -0.0L. Fix m4 quotation.
14255
14256         * tests/test-signbit.c: Include <float.h>.
14257         (minus_zero): New variable.
14258         (test_signbitl): Use minus_zero instead of -zero.
14259         * modules/signbit-tests (Depends-on): Add float.
14260
14261         * tests/test-ceill.c: Include <float.h>.
14262         (zero): Remove variable.
14263         (minus_zero): New variable.
14264         (main): Use minus_zero instead of -zero.
14265         * modules/ceill-tests (Depends-on): Add float.
14266
14267         * tests/test-floorl.c: Include <float.h>.
14268         (zero): Remove variable.
14269         (minus_zero): New variable.
14270         (main): Use minus_zero instead of -zero.
14271         * modules/floorl-tests (Depends-on): Add float.
14272
14273         * tests/test-roundl.c: Include <float.h>.
14274         (zero): Remove variable.
14275         (minus_zero): New variable.
14276         (main): Use minus_zero instead of -zero.
14277         * modules/roundl-tests (Depends-on): Add float.
14278
14279         * tests/test-truncl.c: Include <float.h>.
14280         (zero): Remove variable.
14281         (minus_zero): New variable.
14282         (main): Use minus_zero instead of -zero.
14283         * modules/truncl-tests (Depends-on): Add float.
14284
14285         * tests/test-frexpl.c (zero): Remove variable.
14286         (minus_zero): New variable.
14287         (main): Use minus_zero instead of -zero.
14288         * modules/frexpl-tests (Depends-on): Add float.
14289
14290         * tests/test-isnan.c (zerol): Remove variable.
14291         (minus_zerol): New variable.
14292         (test_long_double): Use minus_zerol instead of -zerol.
14293         * modules/isnan-tests (Depends-on): Add float.
14294
14295         * tests/test-isnanl.h (zero): Remove variable.
14296         (minus_zero): New variable.
14297         (main): Use minus_zero instead of -zero.
14298         * modules/isnanl-nolibm-tests (Depends-on): Add float.
14299         * modules/isnanl-tests (Depends-on): Add float.
14300
14301         * tests/test-ldexpl.c (zero): Remove variable.
14302         (minus_zero): New variable.
14303         (main): Use minus_zero instead of -zero.
14304         * modules/ldexpl-tests (Depends-on): Add float.
14305
14306         * tests/test-snprintf-posix.h (zerol): Remove variable.
14307         (minus_zerol): New variable.
14308         (test_function): Use minus_zerol instead of -zerol.
14309         * modules/snprintf-posix-tests (Depends-on): Add float.
14310         * modules/vsnprintf-posix-tests (Depends-on): Add float.
14311
14312         * tests/test-sprintf-posix.h (zerol): Remove variable.
14313         (minus_zerol): New variable.
14314         (test_function): Use minus_zerol instead of -zerol.
14315         * modules/sprintf-posix-tests (Depends-on): Add float.
14316         * modules/vsprintf-posix-tests (Depends-on): Add float.
14317
14318         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
14319         (minus_zerol): New variable.
14320         (test_function): Use minus_zerol instead of -zerol.
14321         * modules/vasnprintf-posix-tests (Depends-on): Add float.
14322
14323         * tests/test-vasprintf-posix.c (zerol): Remove variable.
14324         (minus_zerol): New variable.
14325         (test_function): Use minus_zerol instead of -zerol.
14326         * modules/vasprintf-posix-tests (Depends-on): Add float.
14327
14328 2008-10-07  Simon Josefsson  <simon@josefsson.org>
14329
14330         * MODULES.html.sh (Support for building documentation): Mention
14331         pmccabe2html.  Sort entries.
14332
14333         Add pmccabe2html module, from gnupdf.
14334         * build-aux/pmccabe.css: New file.
14335         * build-aux/pmccabe2html: New file.
14336         * m4/pmccabe2html.m4: New file.
14337         * modules/pmccabe2html: New file.
14338
14339 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
14340
14341         flock: new module
14342         * MODULES.html.sh: Add to list of modules.
14343         * lib/flock.c: flock implementation for Windows and Unix systems
14344         which have fcntl.
14345         * doc/glibc-functions/flock.texi: Update documentation.
14346         * lib/sys_file.in.h: <sys/file.h> header file.
14347         * m4/flock.m4: M4 macros.
14348         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
14349         * modules/flock: flock module.
14350         * modules/flock-tests: flock tests module.
14351         * modules/sys_file: sys/file.h module.
14352         * tests/test-flock.c: test suite for flock.
14353
14354 2008-10-06  Jim Meyering  <meyering@redhat.com>
14355
14356         bootstrap: check for LT_INIT more portably still ;-)
14357         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
14358         Spotted by Bruno Haible.
14359
14360 2008-10-06  Eric Blake  <ebb9@byu.net>
14361
14362         test-signbit: avoid tripping Irix cc bug on -0.0L
14363         * tests/test-signbit.c (minus_zerol): Delete, and replace with
14364         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
14365         entire testsuite consistent and avoids an Irix 6.2 bug.
14366
14367 2008-10-05  Bruno Haible  <bruno@clisp.org>
14368             Jim Meyering  <jim@meyering.net>
14369
14370         Add an option for ignoring EPIPE during close_stdout.
14371         * lib/closeout.h: Include <stdbool.h>.
14372         (close_stdout_set_ignore_EPIPE): New declaration.
14373         * lib/closeout.c: Include <stdbool.h>.
14374         (ignore_EPIPE): New variable.
14375         (close_stdout_set_ignore_EPIPE): New function.
14376         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
14377         * lib/close-stream.c (close_stream): Mention the possible EPIPE
14378         failure.
14379         * modules/closeout (Depends-on): Add stdbool.
14380
14381 2008-10-05  Bruno Haible  <bruno@clisp.org>
14382
14383         * modules/accept: New file.
14384         * modules/bind: New file.
14385         * modules/connect: New file.
14386         * modules/getpeername: New file.
14387         * modules/getsockname: New file.
14388         * modules/getsockopt: New file.
14389         * modules/listen: New file.
14390         * modules/recv: New file.
14391         * modules/recvfrom: New file.
14392         * modules/send: New file.
14393         * modules/sendto: New file.
14394         * modules/setsockopt: New file.
14395         * modules/socket: New file.
14396         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
14397         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
14398         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
14399         the particular module is requested. Add a link warning when the
14400         particular module is not requested.
14401         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
14402         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
14403         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
14404         the particular module is requested.
14405         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
14406         gl_SYS_SOCKET_H_DEFAULTS): New macros.
14407         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
14408         * modules/sys_socket (Depends-on): Add link-warning.
14409         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
14410         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
14411         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
14412         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
14413         GL_LINK_WARNING.
14414         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
14415         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
14416         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
14417         * doc/posix-functions/getpeername.texi: Mention the new module
14418         'getpeername'.
14419         * doc/posix-functions/getsockname.texi: Mention the new module
14420         'getsockname'.
14421         * doc/posix-functions/getsockopt.texi: Mention the new module
14422         'getsockopt'.
14423         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
14424         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
14425         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
14426         * doc/posix-functions/send.texi: Mention the new module 'send'.
14427         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
14428         * doc/posix-functions/setsockopt.texi: Mention the new module
14429         'setsockopt'.
14430         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
14431         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
14432         listen, connect, accept.
14433         * modules/select-tests (Depends-on): Likewise.
14434
14435 2008-10-05  Bruno Haible  <bruno@clisp.org>
14436
14437         * lib/winsock.c (strerror): Remove unused #undef.
14438         (rpl_close): Remove unused local variable.
14439
14440         * modules/sys_socket (Depends-on); Add errno.
14441
14442 2008-10-05  Bruno Haible  <bruno@clisp.org>
14443
14444         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
14445         (select): Add a link warning when the 'select' module is not used.
14446         * modules/sys_select (Depends-on): Add link-warning.
14447         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
14448         Suggested by Paolo Bonzini.
14449
14450 2008-10-05  Jim Meyering  <meyering@redhat.com>
14451
14452         bootstrap: check for LT_INIT more portably
14453         * build-aux/bootstrap: Avoid using grep -E, since it's not
14454         portable enough.  Suggestion from Bruno Haible.
14455
14456 2008-10-05  Bruno Haible  <bruno@clisp.org>
14457
14458         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
14459         as being fixed by gnulib.
14460
14461 2008-10-05  Bruno Haible  <bruno@clisp.org>
14462
14463         * modules/select-tests: New file, mostly copied from
14464         modules/sys_select-tests.
14465         * tests/test-select.c: New file, mostly copied from
14466         tests/test-sys_select.c.
14467         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
14468         * modules/sys_select-tests (Depends-on): Remove all dependencies.
14469         (Makefile.am): Remove test_sys_select_LDADD.
14470
14471         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
14472         to an undefined symbol, for an error message.
14473         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
14474         (gl_SYS_SELECT_H_DEFAULTS): New macro.
14475         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
14476         winsock-select.c here.
14477         * modules/sys_select (Files): Remove lib/winsock-select.c.
14478         (Depends-on): Remove alloca.
14479         (Makefile.am): Substitute GNULIB_SELECT.
14480         * modules/select: New file.
14481         * doc/posix-functions/select.texi: Update.
14482
14483 2008-10-05  Bruno Haible  <bruno@clisp.org>
14484
14485         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
14486         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
14487         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
14488         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
14489         getdtablesize.
14490         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
14491         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
14492
14493 2008-10-05  Bruno Haible  <bruno@clisp.org>
14494
14495         * modules/getdtablesize-tests: New file.
14496         * tests/test-getdtablesize.c: New file.
14497
14498         New module 'getdtablesize'.
14499         * lib/unistd.in.h (getdtablesize): New declaration.
14500         * lib/getdtablesize.c: New file.
14501         * m4/getdtablesize.m4: New file.
14502         * modules/getdtablesize: New file.
14503         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14504         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
14505         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
14506         HAVE_GETDTABLESIZE.
14507         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
14508
14509 2008-10-05  Bruno Haible  <bruno@clisp.org>
14510
14511         * modules/sched (Makefile.am): Fix typo.
14512         Reported by Simon Josefsson.
14513
14514 2008-10-05  Jim Meyering  <meyering@redhat.com>
14515
14516         bootstrap: check for LT_INIT, too
14517         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
14518         are deprecated.  Suggestion from Ralf Wildenhues.
14519
14520 2008-10-05  Bruno Haible  <bruno@clisp.org>
14521
14522         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
14523         overriding them by ours.
14524         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
14525
14526 2008-10-05  Jim Meyering  <meyering@redhat.com>
14527
14528         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
14529         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
14530         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
14531
14532 2008-10-04  Bruno Haible  <bruno@clisp.org>
14533
14534         * modules/dup2 (License): Change to LGPLv2+.
14535         * modules/sleep (License): Likewise.
14536         * modules/perror (License): Likewise.
14537         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
14538         Blake.
14539         * modules/signal (License): Likewise.
14540         * modules/sigprocmask (License): Likewise.
14541         * modules/raise (License): Change to LGPLv2+, with approval by Jim
14542         Meyering.
14543
14544 2008-10-04  Bruno Haible  <bruno@clisp.org>
14545
14546         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
14547         Reported by Rainer Tammer <tammer@tammer.net>.
14548
14549 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
14550             Bruno Haible  <bruno@clisp.org>
14551
14552         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
14553         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
14554         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
14555
14556 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
14557
14558         filevercmp: new module
14559         * lib/filevercmp.h: New function filevercmp comparing version strings.
14560         * lib/filevercmp.c: Implementation of filevercmp function.
14561         * modules/filevercmp: Module metadata.
14562         * tests/test-filevercmp.c: Unit test for new module.
14563         * modules/filevercmp-tests: Unit test metadata.
14564         * MODULES.html.sh: Add filevercmp module.
14565
14566 2008-10-03  Bruno Haible  <bruno@clisp.org>
14567
14568         * lib/c-ctype.h: Add comment.
14569         Reported by Jim Meyering.
14570
14571 2008-10-02  Bruno Haible  <bruno@clisp.org>
14572
14573         * modules/posix_spawn-internal (Depends-on): Add 'open'.
14574
14575 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14576
14577         * build-aux/bootstrap: Allow renaming bootstrap, and change the
14578         name of bootstrap.conf accordingly.
14579
14580 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14581
14582         * build-aux/bootstrap: Install git-merge-changelog configuration
14583         items into .gitconfig if needed.
14584
14585 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14586
14587         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
14588         git repository, and initialize/update it accordingly.
14589
14590 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
14591
14592         * modules/fsync-tests: New file.
14593         * tests/test-fsync.c: New file.
14594
14595         New module 'fsync'.
14596         * lib/fsync.c: New file.
14597         * m4/fsync.m4: New file.
14598         * modules/fsync: New file.
14599         * lib/unistd.in.h (fsync): New declaration.
14600         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
14601         GNULIB_FSYNC and HAVE_FSYNC.
14602         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
14603         * MODULES.html.sh (posix_functions): Add fsync.
14604         * doc/posix-functions/fsync.texi: Mention the new module.
14605
14606 2008-10-02  Jim Meyering  <meyering@redhat.com>
14607
14608         fts.c: sync with similar code from coreutils' remove.c
14609         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
14610         Guard also with "#if defined __linux__", since for now at least,
14611         this code is Linux-kernel-specific.
14612
14613 2008-10-02  Jim Meyering  <meyering@redhat.com>
14614
14615         fts: bug fixes
14616         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
14617         Include <sys/vfs.h>, not <sys/statfs.h>.
14618
14619         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
14620         Include <sys/vfs.h>, not <sys/statfs.h>.
14621
14622 2008-10-01  Bruno Haible  <bruno@clisp.org>
14623
14624         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
14625         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
14626         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
14627         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
14628         * doc/posix-functions/posix_spawnp.texi: Likewise.
14629         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
14630         whether posix_spawn actually works.
14631         * m4/pipe.m4 (gl_PIPE): Likewise.
14632         * modules/execute (Files): Add m4/posix_spawn.m4.
14633         * modules/pipe (Files): Add m4/posix_spawn.m4.
14634         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
14635
14636 2008-10-01  Jim Meyering  <meyering@redhat.com>
14637
14638         remove trailing spaces
14639         * NEWS: Likewise.
14640         * lib/poll.c (poll): Likewise.
14641         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
14642         * lib/winsock.c (rpl_close): Likewise.
14643         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
14644         * modules/yield: Likewise.
14645         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
14646         * tests/test-sys_select.c (connect_to_socket): Likewise.
14647
14648         fts.c: adjust a new interface to be more generally useful
14649         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
14650         (fts_build): Adjust caller.
14651
14652 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14653
14654         * modules/cond-tests: New file.
14655         * tests/test-cond.c: New file.
14656
14657 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14658             Bruno Haible  <bruno@clisp.org>
14659
14660         * modules/cond (Dependencies): Add errno, time.
14661         * lib/glthread/cond.h: Include <time.h>.
14662         (gl_cond_define, gl_cond_define_initialized): Use the same definition
14663         across platforms.
14664
14665 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14666             Bruno Haible  <bruno@clisp.org>
14667
14668         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
14669
14670 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14671             Bruno Haible  <bruno@clisp.org>
14672
14673         * modules/tls-tests (Depends-on): Add thread, yield.
14674         (configure.ac): Remove all checks.
14675         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
14676         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
14677         gl_thread_self): Remove definitions. Include glthread/thread.h and
14678         glthread/yield.h instead.
14679         (test_tls): Pass an additional NULL argument to gl_thread_join.
14680
14681 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14682             Bruno Haible  <bruno@clisp.org>
14683
14684         * modules/lock-tests (Depends-on): Add thread, yield.
14685         (configure.ac): Remove all checks.
14686         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
14687         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
14688         gl_thread_self): Remove definitions. Include glthread/thread.h and
14689         glthread/yield.h instead.
14690         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
14691         additional NULL argument to gl_thread_join.
14692
14693 2008-09-30  Bruno Haible  <bruno@clisp.org>
14694
14695         Fix the Win32 implementation of the 'thread' module.
14696         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
14697         pointer type.
14698         (gl_thread_self): Invoke gl_thread_self_func.
14699         (gl_thread_self_func): New declaration.
14700         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
14701         (do_init_self_key, init_self_key): New functions.
14702         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
14703         Remove some fields.
14704         (running_threads, running_lock): Remove variables.
14705         (get_current_thread_handle): New function.
14706         (gl_thread_self_func, wrapper_func, glthread_create_func,
14707         glthread_join_func, gl_thread_exit_func): Largely rewritten and
14708         simplified.
14709
14710 2008-09-30  Bruno Haible  <bruno@clisp.org>
14711
14712         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
14713         files.
14714
14715 2008-09-30  Jim Meyering  <meyering@redhat.com>
14716
14717         fts.m4: correct the test for statfs.f_type
14718         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
14719         when checking for statfs.f_type.
14720
14721 2008-09-15  Simon Josefsson  <simon@josefsson.org>
14722
14723         tests: avoid some compiler warnings
14724         * tests/test-memchr.c (main): Pass NULL indirectly.
14725         * tests/test-getdate.c (main): Remove unused variable 'ret'.
14726
14727 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
14728
14729         getdate.y: disallow countable dayshifts like "4 yesterday ago"
14730         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
14731         exactly specified dayshifts.
14732         (dayshift): New rule.
14733         (rel): Add dayshift.
14734         (relative_time_table) [tomorrow, yesterday, today, now]:
14735         Use tDAY_SHIFT in place of tDAY_UNIT.
14736         * tests/test-getdate.c: Add tests for now-disallowed countable
14737         dayshifts, e.g., "4 yesterday ago".
14738
14739 2008-09-29  Bruno Haible  <bruno@clisp.org>
14740
14741         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
14742         * tests/test-posix_spawn1.in.sh: Renamed from
14743         tests/test-posix_spawn.in.sh.
14744         * tests/test-posix_spawn2.c: New file.
14745         * tests/test-posix_spawn2.in.sh: New file.
14746         * modules/posix_spawnp-tests (Files): Update.
14747         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
14748
14749 2008-09-29  Bruno Haible  <bruno@clisp.org>
14750
14751         Propagate effects of putenv/setenv/unsetenv to child processes.
14752         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
14753         * lib/pipe.c (create_pipe): Likewise.
14754
14755 2008-09-29  Bruno Haible  <bruno@clisp.org>
14756
14757         Enable use of shell scripts as executables in mingw.
14758         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
14759         run the program as a shell script.
14760         * lib/pipe.c (create_pipe): Likewise.
14761         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
14762         resulting array.
14763
14764 2008-09-29  Eric Blake  <ebb9@byu.net>
14765
14766         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
14767
14768 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
14769
14770         * doc/posix-functions/accept.texi: Update mingw problems.
14771         * doc/posix-functions/bind.texi: Update mingw problems.
14772         * doc/posix-functions/close.texi: Update mingw problems.
14773         * doc/posix-functions/connect.texi: Update mingw problems.
14774         * doc/posix-functions/getpeername.texi: Update mingw problems.
14775         * doc/posix-functions/getsockname.texi: Update mingw problems.
14776         * doc/posix-functions/getsockopt.texi: Update mingw problems.
14777         * doc/posix-functions/ioctl.texi: Update mingw problems.
14778         * doc/posix-functions/listen.texi: Update mingw problems.
14779         * doc/posix-functions/recv.texi: Update mingw problems.
14780         * doc/posix-functions/recvfrom.texi: Update mingw problems.
14781         * doc/posix-functions/select.texi: Update mingw problems.
14782         * doc/posix-functions/send.texi: Update mingw problems.
14783         * doc/posix-functions/sendto.texi: Update mingw problems.
14784         * doc/posix-functions/setsockopt.texi: Update mingw problems.
14785         * doc/posix-functions/socket.texi: Update mingw problems.
14786
14787 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
14788             Bruno Haible  <bruno@clisp.org>
14789
14790         * lib/sys_select.in.h: Include sys/time.h.
14791         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
14792         * modules/sys_select: Depend on sys_time.
14793         * tests/test-sys_select.c: Test that sys/select.h defines struct
14794         timeval fully.
14795
14796 2008-09-29  Bruno Haible  <bruno@clisp.org>
14797
14798         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
14799         * lib/sys_select.in.h: Likewise.
14800
14801 2008-09-29  Bruno Haible  <bruno@clisp.org>
14802
14803         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
14804
14805 2008-09-29  Bruno Haible  <bruno@clisp.org>
14806
14807         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
14808         Set LIBSOCKET instead of augmenting LIBS.
14809         * modules/sockets (Link): New section.
14810         * modules/sockets-tests (test_sockets_LDADD): New variable.
14811         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
14812         * modules/poll-tests (test_poll_LDADD): New variable.
14813         * NEWS: Document the change.
14814
14815 2008-09-29  Bruno Haible  <bruno@clisp.org>
14816
14817         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
14818         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
14819         ARPA_INET_H directly.
14820         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
14821
14822 2008-09-28  Bruno Haible  <bruno@clisp.org>
14823
14824         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
14825         from gl_HEADER_SYS_SOCKET.
14826         (gl_HEADER_SYS_SOCKET): Invoke it.
14827         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
14828
14829 2008-09-28  Bruno Haible  <bruno@clisp.org>
14830
14831         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
14832         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
14833         Needed on OSF/1 4.0.
14834
14835 2008-09-28  Bruno Haible  <bruno@clisp.org>
14836
14837         Override open more carefully.
14838         * lib/open.c (orig_open): New function.
14839         (rpl_open): Use orig_open instead of open.
14840         * lib/fcntl.in.h: Add special invocation convention.
14841         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
14842         (gl_FUNC_OPEN): Invoke it.
14843
14844         Override freopen more carefully.
14845         * lib/freopen.c (orig_freopen): New function.
14846         (rpl_freopen): Use orig_freopen instead of freopen.
14847         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
14848         (gl_FUNC_FREOPEN): Invoke it.
14849
14850         Override fopen more carefully.
14851         * lib/fopen.c (orig_fopen): New function.
14852         (rpl_fopen): Use orig_fopen instead of fopen.
14853         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
14854         (gl_FUNC_FOPEN): Invoke it.
14855         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
14856
14857 2008-09-28  Bruno Haible  <bruno@clisp.org>
14858
14859         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
14860         SIGPIPE.
14861
14862 2008-09-28  Bruno Haible  <bruno@clisp.org>
14863
14864         * tests/test-sigaction.c (handler, main): Disable the check whether
14865         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
14866         glibc systems with LinuxThreads.
14867
14868 2008-09-28  Bruno Haible  <bruno@clisp.org>
14869
14870         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
14871
14872         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
14873         with AIX xlc.
14874         * lib/fcntl.in.h (open): Likewise.
14875         Reported by Rainer Tammer <tammer@tammer.net>.
14876
14877 2008-09-28  Bruno Haible  <bruno@clisp.org>
14878
14879         * modules/posix_spawnp-tests: New file.
14880         * tests/test-posix_spawn.c: New file.
14881         * tests/test-posix_spawn.in.sh: New file.
14882
14883         New module 'posix_spawnp'.
14884         * modules/posix_spawnp: New file.
14885         * lib/spawnp.c: New file, from GNU libc with modifications.
14886         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
14887
14888         New module 'posix_spawn'.
14889         * modules/posix_spawn: New file.
14890         * lib/spawn.c: New file, from GNU libc with modifications.
14891         * doc/posix-functions/posix_spawn.texi: Mention the new module.
14892
14893         New module 'posix_spawnattr_destroy'.
14894         * modules/posix_spawnattr_destroy: New file.
14895         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
14896         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
14897         module.
14898
14899         New module 'posix_spawnattr_setsigmask'.
14900         * modules/posix_spawnattr_setsigmask: New file.
14901         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
14902         modifications.
14903         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
14904         new module.
14905
14906         New module 'posix_spawnattr_getsigmask'.
14907         * modules/posix_spawnattr_getsigmask: New file.
14908         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
14909         modifications.
14910         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
14911         new module.
14912
14913         New module 'posix_spawnattr_setsigdefault'.
14914         * modules/posix_spawnattr_setsigdefault: New file.
14915         * lib/spawnattr_setdefault.c: New file, from GNU libc with
14916         modifications.
14917         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
14918         new module.
14919
14920         New module 'posix_spawnattr_getsigdefault'.
14921         * modules/posix_spawnattr_getsigdefault: New file.
14922         * lib/spawnattr_getdefault.c: New file, from GNU libc with
14923         modifications.
14924         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
14925         new module.
14926
14927         New module 'posix_spawnattr_setschedpolicy'.
14928         * modules/posix_spawnattr_setschedpolicy: New file.
14929         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
14930         modifications.
14931         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
14932         new module.
14933
14934         New module 'posix_spawnattr_getschedpolicy'.
14935         * modules/posix_spawnattr_getschedpolicy: New file.
14936         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
14937         modifications.
14938         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
14939         new module.
14940
14941         New module 'posix_spawnattr_setschedparam'.
14942         * modules/posix_spawnattr_setschedparam: New file.
14943         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
14944         modifications.
14945         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
14946         new module.
14947
14948         New module 'posix_spawnattr_getschedparam'.
14949         * modules/posix_spawnattr_getschedparam: New file.
14950         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
14951         modifications.
14952         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
14953         new module.
14954
14955         New module 'posix_spawnattr_setpgroup'.
14956         * modules/posix_spawnattr_setpgroup: New file.
14957         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
14958         modifications.
14959         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
14960         module.
14961
14962         New module 'posix_spawnattr_getpgroup'.
14963         * modules/posix_spawnattr_getpgroup: New file.
14964         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
14965         modifications.
14966         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
14967         module.
14968
14969         New module 'posix_spawnattr_setflags'.
14970         * modules/posix_spawnattr_setflags: New file.
14971         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
14972         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
14973         module.
14974
14975         New module 'posix_spawnattr_getflags'.
14976         * modules/posix_spawnattr_getflags: New file.
14977         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
14978         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
14979         module.
14980
14981         New module 'posix_spawnattr_init'.
14982         * modules/posix_spawnattr_init: New file.
14983         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
14984         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
14985         module.
14986
14987         New module 'posix_spawn_file_actions_destroy'.
14988         * modules/posix_spawn_file_actions_destroy: New file.
14989         * lib/spawn_faction_destroy.c: New file, from GNU libc with
14990         modifications.
14991         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
14992         the new module.
14993
14994         New module 'posix_spawn_file_actions_addopen'.
14995         * modules/posix_spawn_file_actions_addopen: New file.
14996         * lib/spawn_faction_addopen.c: New file, from GNU libc with
14997         modifications.
14998         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
14999         the new module.
15000
15001         New module 'posix_spawn_file_actions_adddup2'.
15002         * modules/posix_spawn_file_actions_adddup2: New file.
15003         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
15004         modifications.
15005         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
15006         the new module.
15007
15008         New module 'posix_spawn_file_actions_addclose'.
15009         * modules/posix_spawn_file_actions_addclose: New file.
15010         * lib/spawn_faction_addclose.c: New file, from GNU libc with
15011         modifications.
15012         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
15013         the new module.
15014
15015         New module 'posix_spawn_file_actions_init'.
15016         * modules/posix_spawn_file_actions_init: New file.
15017         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
15018         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
15019         new module.
15020
15021         New module 'posix_spawn-internal'.
15022         * modules/posix_spawn-internal: New file.
15023         * lib/spawn_int.h: New file, from GNU libc with modifications.
15024         * lib/spawni.c: New file, from GNU libc with modifications.
15025         * m4/posix_spawn.m4: New file.
15026
15027         New module 'spawn'.
15028         * modules/spawn: New file.
15029         * lib/spawn.in.h: New file, from GNU libc with modifications.
15030         * m4/spawn_h.m4: New file.
15031         * doc/posix-headers/spawn.texi: Mention the new module.
15032
15033 2008-09-28  Bruno Haible  <bruno@clisp.org>
15034
15035         * modules/sched-tests: New file.
15036         * tests/test-sched.c: New file.
15037
15038         New module 'sched'.
15039         * modules/sched: New file.
15040         * lib/sched.in.h: New file.
15041         * m4/sched_h.m4: New file.
15042         * doc/posix-headers/sched.texi: Mention the new module.
15043
15044 2008-09-27  Eric Blake  <ebb9@byu.net>
15045
15046         Fix previous patch, and tweak references to $0.
15047         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
15048         (func_version, func_gnulib_dir): Don't call this program
15049         gnulib-tool.
15050         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
15051         with using $0 in function.
15052         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
15053         (func_fatal_error): Reuse the name the user invoked us with.
15054
15055 2008-09-27  Bruno Haible  <bruno@clisp.org>
15056
15057         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
15058         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
15059         (gl_ICONV_H): Not here.
15060         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
15061         instead of assigning ICONV_H directly.
15062
15063         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
15064         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
15065         WCHAR_H directly.
15066
15067 2008-09-27  Bruno Haible  <bruno@clisp.org>
15068
15069         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
15070         * modules/arpa_inet (Depends-on): Add link-warning.
15071         (Makefile.am): Insert the definition of GL_LINK-WARNING.
15072         * modules/unistd (Makefile.am): Likewise.
15073
15074 2008-09-26  Bruno Haible  <bruno@clisp.org>
15075
15076         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
15077         variables.
15078         (func_version): Essentially copied from gnulib-tool.
15079         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
15080         func_readlink): Copied from gnulib-tool.
15081
15082 2008-09-26  Bruno Haible  <bruno@clisp.org>
15083
15084         * gnulib-tool (func_version): Change directory to $gnulib_dir before
15085         invoking git-version-gen.
15086
15087 2008-09-26  Bruno Haible  <bruno@clisp.org>
15088
15089         * posix-modules: Update to directory names changed on 2008-01-19.
15090         Remove commas in output before splitting into words. No more need to
15091         avoid 'ftruncate' since 2007-02-19.
15092
15093 2008-09-26  Bruno Haible  <bruno@clisp.org>
15094
15095         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
15096
15097 2008-09-26  Bruno Haible  <bruno@clisp.org>
15098
15099         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
15100         * modules/fwriteerror (Depends-on): Add errno.
15101
15102 2008-09-26  Bruno Haible  <bruno@clisp.org>
15103
15104         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
15105         * tests/test-vc-list-files-cvs.sh: Likewise.
15106
15107 2008-09-26  Bruno Haible  <bruno@clisp.org>
15108
15109         * doc/posix-headers/sys_resource.texi: Reorder items.
15110
15111 2008-09-26  Jim Meyering  <meyering@redhat.com>
15112
15113         fts: tweak inode comparison function
15114         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
15115         inode numbers, as documented.
15116
15117         fts: sort dirent entries on inode number before traversing
15118         This avoids a quadratic, seek-related performance penalty when
15119         operating on a directory containing many entries (measurable at 10k;
15120         3.5 hours at 2 million entries with a cold cache) on certain types
15121         of file systems, including ext3 and ext4, but not tmpfs.
15122         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
15123         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
15124         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
15125         (fs_handles_readdir_ordered_dirents_efficiently): New function.
15126         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
15127         (fts_build): Set the stat.st_ino member from D_INO.
15128         If it is likely to be useful, sort dirent entries on inode number.
15129
15130         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
15131         and the struct statfs.f_type member.
15132         * modules/fts (Depends-on): Add d-ino.
15133
15134 2008-09-26  Bruno Haible  <bruno@clisp.org>
15135
15136         * modules/sigpipe-die (Depends-on): Add sigpipe.
15137
15138         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
15139         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
15140         and GNULIB_STDIO_H_SIGPIPE are set.
15141         * lib/stdio-write.c: New file.
15142         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
15143         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15144         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15145         REPLACE_STDIO_WRITE_FUNCS.
15146         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
15147         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15148         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15149         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
15150         * modules/stdio (Files): Add lib/stdio-write.c.
15151         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
15152         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15153         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15154         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
15155         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
15156         REPLACE_FPRINTF_POSIX.
15157         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
15158         REPLACE_PRINTF_POSIX.
15159         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
15160         REPLACE_VFPRINTF_POSIX.
15161         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
15162         REPLACE_VPRINTF_POSIX.
15163         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
15164         SIGPIPE issue.
15165         * doc/posix-functions/fputc.texi: Likewise.
15166         * doc/posix-functions/fputs.texi: Likewise.
15167         * doc/posix-functions/fwrite.texi: Likewise.
15168         * doc/posix-functions/printf.texi: Likewise.
15169         * doc/posix-functions/putc.texi: Likewise.
15170         * doc/posix-functions/putchar.texi: Likewise.
15171         * doc/posix-functions/puts.texi: Likewise.
15172         * doc/posix-functions/vfprintf.texi: Likewise.
15173         * doc/posix-functions/vprintf.texi: Likewise.
15174
15175         * modules/safe-write (Depends-on): Add write.
15176
15177         * modules/sigpipe-tests: New file.
15178         * tests/test-sigpipe.c: New file.
15179         * tests/test-sigpipe.sh: New file.
15180
15181         * modules/write: New file.
15182         * lib/unistd.in.h: Include <sys/types.h>.
15183         (write): New declaration.
15184         * lib/write.c: New file.
15185         * m4/write.m4: New file.
15186         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
15187         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
15188         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
15189         GNULIB_WRITE, REPLACE_WRITE.
15190         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
15191         and the SIGPIPE issue.
15192
15193         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
15194         (raise): New declaration.
15195         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
15196         (ext_signal): New function.
15197         (rpl_raise): New function.
15198         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
15199         GNULIB_SIGNAL_H_SIGPIPE.
15200         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
15201         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
15202
15203         * modules/sigpipe: New file.
15204         * m4/sigpipe.m4: New file.
15205
15206 2008-09-25  Derek Price  <derek@ximbiot.com>
15207             Bruno Haible  <bruno@clisp.org>
15208
15209         * gnulib-tool (func_import): Report all license incompatibilities, not
15210         just the first one.
15211
15212 2008-09-25  Bruno Haible  <bruno@clisp.org>
15213
15214         * gnulib-tool (func_import): When computing the edits, consider not
15215         only the Makefile.ams that exist but also those that will be generated.
15216
15217 2008-09-25  Simon Josefsson  <simon@josefsson.org>
15218
15219         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
15220         fixes gnulib-tool --test warning about duplicate dependency.
15221
15222 2008-09-25  Bruno Haible  <bruno@clisp.org>
15223
15224         * gnulib-tool: Don't ask the user to perform edits in the generated
15225         Makefile.ams.
15226         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
15227         apply to the Makefile.am being generated.
15228         (func_emit_tests_Makefile_am): Execute edits that apply to the
15229         Makefile.am being generated.
15230         (func_import): Setup list of Makefile.am edits before emitting the
15231         Makefile.ams, not at the end.
15232         (func_create_testdir): Update.
15233         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15234
15235 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15236
15237         * gnulib-tool (func_import): Store the --tests-base option in the
15238         comment in gnulib-cache.m4.
15239
15240 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
15241
15242         * NEWS: Document increased portability that sys_select now provides.
15243
15244         * lib/sys_select.in.h: Install select wrapper.
15245         * lib/sys_socket.in.h: Use more descriptive name when there is no
15246         select wrapper.
15247         * lib/winsock-select.c: New.
15248         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
15249         Require gl_HEADER_SYS_SOCKET.
15250         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
15251         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
15252         * tests/test-sys_select.c: Add functional tests.
15253
15254 2008-09-24  Eric Blake  <ebb9@byu.net>
15255
15256         open, fopen: close fd leak in last patch
15257         * lib/open.c (rpl_open): Close fd before returning error.
15258         * lib/fopen.c (rpl_fopen): Close fd before returning error.
15259         * doc/posix-functions/open.texi (open): Document that Irix also
15260         has the bug.
15261         * doc/posix-functions/fopen.texi (fopen): Likewise.
15262         Reported by Paolo Bonzini.
15263
15264 2008-09-24  Bruno Haible  <bruno@clisp.org>
15265
15266         Ensure that a filename ending in a slash cannot be used to access a
15267         non-directory.
15268         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
15269         to check whether it's really a directory.
15270         * lib/fopen.c: Include fcntl.h, unistd.h.
15271         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
15272         and fdopen().
15273         * modules/fopen (Depends-on): Add unistd.
15274         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
15275         * tests/test-fopen.c (main): Likewise.
15276         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
15277         * doc/posix-functions/fopen.texi: Likewise.
15278         Reported by Eric Blake.
15279
15280 2008-09-23  Eric Blake  <ebb9@byu.net>
15281
15282         c-stack: avoid compiler optimizations when provoking overflow
15283         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
15284         recursion harder to optimize, to ensure a stack overflow occurs.
15285         * tests/test-c-stack.c (recurse): Likewise.
15286         Borrowed from libsigsegv.
15287
15288         c-stack: work around Irix sigaltstack bug
15289         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
15290         whether sigaltstack uses wrong end of stack_t (copied in part from
15291         libsigsegv).
15292         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
15293         Irix bug, without requiring an over-allocation.
15294         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
15295         bug.
15296
15297         fopen: document mingw bug on directories
15298         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
15299         not allowing a stream visiting a directory, even though reading
15300         from such a stream is not portable.
15301
15302 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15303
15304         * lib/poll.c: Rewrite.
15305         * modules/poll: Depend on alloca.
15306
15307 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15308
15309         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
15310         instead define prototypes for a full set of wrappers.  Ensure
15311         that Cygwin does not use the compatibility code, which is only
15312         for MinGW.
15313         * lib/winsock.c: New.
15314         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
15315         * modules/sys_socket: Add lib/winsock.c.
15316
15317         * modules/poll-tests: Add errno and perror.
15318         * tests/test-poll.c: Use ioctl, not ioctlsocket.
15319
15320 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15321
15322         * tests/test-poll.c: Downgrade minimum needed Winsock version.
15323
15324 2008-09-23  Bruno Haible  <bruno@clisp.org>
15325
15326         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
15327         * doc/glibc-functions/*: Likewise.
15328
15329 2008-09-23  Simon Josefsson  <simon@josefsson.org>
15330
15331         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
15332         success.
15333
15334 2008-09-22  Eric Blake  <ebb9@byu.net>
15335             Bruno Haible  <bruno@clisp.org>
15336
15337         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
15338         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
15339         supply %A but mishandle pseudo-NaN.
15340         Reported by Simon Josefsson.
15341
15342 2008-09-21  Bruno Haible  <bruno@clisp.org>
15343
15344         * tests/test-lock.c (main): Tweak skip message.
15345         * tests/test-tls.c (main): Likewise.
15346
15347 2008-09-21  Bruno Haible  <bruno@clisp.org>
15348
15349         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
15350         whether 'struct sigaction' has sa_sigaction here...
15351         (gl_PREREQ_SIG_HANDLER_H): ... not here.
15352         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
15353
15354 2008-09-21  Bruno Haible  <bruno@clisp.org>
15355
15356         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
15357         section.
15358         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
15359         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
15360         the new section.
15361         (Support for obsolete systems lacking POSIX:2001): New section.
15362         (String handling <string.h>): Move strdup to the new section.
15363         Suggested by Simon Josefsson and Paolo Bonzini.
15364
15365 2008-09-21  Bruno Haible  <bruno@clisp.org>
15366
15367         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
15368         exponents in %e and %g results on 'long double'. Needed for mingw's
15369         improved *printf functions.
15370         * tests/test-vasprintf-posix.c (test_function): Likewise.
15371         * tests/test-snprintf-posix.h (test_function): Likewise.
15372         * tests/test-sprintf-posix.h (test_function): Likewise.
15373         Reported by Eric Blake.
15374
15375 2008-09-21  Bruno Haible  <bruno@clisp.org>
15376
15377         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
15378         * tests/test-sprintf-posix.h (test_function): Likewise.
15379
15380 2008-09-21  Bruno Haible  <bruno@clisp.org>
15381
15382         * modules/getpass (Depends-on): Add strdup-posix.
15383
15384         New module 'strdup-posix'.
15385         * modules/strdup-posix: New file.
15386         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
15387         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
15388         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
15389         REPLACE_STRDUP.
15390         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
15391         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
15392         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15393         strdup-posix.
15394
15395         * modules/strdup (Depends-on): Remove malloc-posix.
15396
15397 2008-09-20  Bruno Haible  <bruno@clisp.org>
15398
15399         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
15400         Wildenhues.
15401
15402 2008-09-20  Bruno Haible  <bruno@clisp.org>
15403
15404         Ensure that wint_t gets defined on IRIX 5.3.
15405         * lib/wchar.in.h (wint_t): Define if not defined by the system.
15406         * lib/wctype.in.h (wint_t): Likewise.
15407         (__wctype_wint_t): Remove type.
15408         (isw*): Use wint_t instead of __wctype_wint_t.
15409         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
15410         * modules/wchar (Files): Add m4/wint_t.m4.
15411         (Makefile.am): Substitute HAVE_WINT_T.
15412         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
15413         * tests/test-wctype.c: Check that wint_t is defined.
15414         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
15415         * doc/posix-headers/wctype.texi: Likewise.
15416         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15417
15418 2008-09-18  Bruno Haible  <bruno@clisp.org>
15419
15420         * gnulib-tool (func_exit): Update comment.
15421
15422 2008-09-18  Simon Josefsson  <simon@josefsson.org>
15423
15424         * modules/getaddrinfo (Depends-on): Remove strdup, this module
15425         assumes strdup exists and does not depend on strdup to return
15426         ENOMEM on out of memory conditions.
15427
15428 2008-09-18  Bruno Haible  <bruno@clisp.org>
15429
15430         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
15431         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
15432         digits for the exponent.
15433
15434 2008-09-18  Jim Meyering  <meyering@redhat.com>
15435             Bruno Haible  <bruno@clisp.org>
15436
15437         * lib/vasnprintf.c (decimal_point_char): Define also if
15438         NEED_PRINTF_INFINITE_LONG_DOUBLE.
15439
15440 2008-09-16  Bruno Haible  <bruno@clisp.org>
15441         and Eric Blake  <ebb9@byu.net>
15442
15443         vasnprintf: support Irix 5.3
15444         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
15445         that mishandle long double infinity.
15446         Reported by Tom G. Christensen.
15447
15448 2008-09-16  Bruno Haible  <bruno@clisp.org>
15449
15450         * doc/glibc-functions/scandir.texi: Mention the function is missing on
15451         Solaris 9.
15452         * doc/glibc-functions/alphasort.texi: Likewise.
15453         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
15454
15455 2008-09-16  Jim Meyering  <meyering@redhat.com>
15456
15457         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
15458         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
15459         a umask modification leak out of a subshell.  Otherwise, the
15460         opensolaris /bin/sh would be accepted and thus cause unwarranted
15461         failures in the coreutils test suite.
15462
15463 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
15464
15465         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
15466         to succeed.
15467
15468 2008-09-16  Jim Meyering  <meyering@redhat.com>
15469
15470         avoid spurious test failure when library is built without ACL support
15471         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
15472         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
15473         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
15474         * tests/test-copy-acl.sh: Likewise.
15475
15476 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15477
15478         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
15479         based on character occurrence counts.
15480
15481 2008-09-15  Eric Blake  <ebb9@byu.net>
15482
15483         tests: avoid some compiler warnings
15484         * tests/test-memchr.c (main): Pass NULL indirectly.
15485         * tests/test-closein.c (main): Avoid unused variable.
15486
15487 2008-09-15  Bruno Haible  <bruno@clisp.org>
15488
15489         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
15490         are missing on OpenBSD 4.0 individually.
15491         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15492
15493 2008-09-15  Bruno Haible  <bruno@clisp.org>
15494
15495         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
15496         * doc/posix-functions/strerror.texi: Mention also Cygwin.
15497         * doc/posix-functions/perror.texi: Likewise.
15498         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
15499         is missing.
15500         Reported by Eric Blake.
15501
15502         * lib/errno.in.h: Use replacement values >= 2000.
15503         Reported by Eric Blake.
15504
15505 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15506
15507         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
15508         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
15509         limit.
15510         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
15511         compareseq was aborted.
15512
15513 2008-09-14  Bruno Haible  <bruno@clisp.org>
15514
15515         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
15516         yvec_edit_count.
15517         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
15518         (fstrcmp_bounded): Simplify result computation accordingly.
15519
15520 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15521
15522         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
15523         (fstrcmp): Define in terms of fstrcmp_bounded.
15524         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
15525         lower_bound argument.
15526         Return quickly if the result is certainly < lower_bound.
15527         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
15528
15529 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15530
15531         * lib/diffseq.h (EARLY_ABORT): New macro.
15532         (compareseq): Change return type to bool. Return true when EARLY_ABORT
15533         evaluates to true.
15534
15535 2008-09-14  Bruno Haible  <bruno@clisp.org>
15536
15537         * modules/perror-tests: New file.
15538         * tests/test-perror.sh: New file.
15539         * tests/test-perror.c: New file.
15540
15541         New module 'perror'.
15542         * lib/stdio.in.h (perror): New declaration.
15543         * lib/perror.c: New file.
15544         * m4/perror.m4: New file.
15545         * modules/perror: New file.
15546         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
15547         * doc/posix-functions/perror.texi: Mention the perror module.
15548         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
15549         REPLACE_PERROR.
15550         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
15551         REPLACE_PERROR.
15552
15553 2008-09-14  Bruno Haible  <bruno@clisp.org>
15554
15555         * modules/stdio (Makefile.am): Reorder to match the order in
15556         lib/stdio.in.h.
15557         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
15558
15559 2008-09-13  Bruno Haible  <bruno@clisp.org>
15560
15561         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
15562
15563 2008-09-13  Bruno Haible  <bruno@clisp.org>
15564
15565         Extend strerror to cover the added errno values.
15566         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
15567         (rpl_strerror): Provide error messages for the added errno values and
15568         for the WSA* values.
15569         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
15570         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
15571         strerror.
15572         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
15573         * modules/strerror (Depends-on): Add errno.
15574         * doc/posix-functions/strerror.texi: Document the change.
15575         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
15576         and EOVERFLOW.
15577
15578 2008-09-13  Bruno Haible  <bruno@clisp.org>
15579
15580         * modules/EOVERFLOW: Remove file.
15581         * m4/eoverflow.m4: Remove file.
15582         * modules/EOVERFLOW-tests: Remove file.
15583         * tests/test-EOVERFLOW.c: Remove file.
15584         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
15585         * modules/ftell (Depends-on): Likewise.
15586         * modules/getdelim (Depends-on): Likewise.
15587         * modules/getugroups (Depends-on): Likewise.
15588         * modules/poll (Depends-on): Likewise.
15589         * modules/snprintf (Depends-on): Likewise.
15590         * modules/sprintf-posix (Depends-on): Likewise.
15591         * modules/vasnprintf (Depends-on): Likewise.
15592         * modules/vasprintf (Depends-on): Likewise.
15593         * modules/vfprintf-posix (Depends-on): Likewise.
15594         * modules/vsnprintf (Depends-on): Likewise.
15595         * modules/vsprintf-posix (Depends-on): Likewise.
15596         * modules/xvasprintf (Depends-on): Likewise.
15597         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
15598         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
15599         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
15600         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
15601         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
15602         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
15603         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
15604         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
15605         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
15606         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
15607         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
15608         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
15609         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
15610         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
15611         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
15612         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
15613         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
15614         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
15615         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
15616         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
15617         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
15618         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
15619         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
15620         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
15621         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
15622         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
15623         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
15624         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
15625         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
15626         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
15627         * MODULES.html.sh: Remove EOVERFLOW.
15628         * NEWS: Mention the change.
15629
15630 2008-09-13  Bruno Haible  <bruno@clisp.org>
15631
15632         * modules/errno-tests: New file.
15633         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
15634
15635         * lib/errno.in.h: New file.
15636         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
15637         * modules/errno: New file.
15638         * doc/posix-headers/errno.texi: Update documentation.
15639         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
15640
15641 2008-09-13  Bruno Haible  <bruno@clisp.org>
15642
15643         * tests/test-poll.c: Use #if for native Windows, rather than testing
15644         __MSVCRT__.
15645
15646 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15647             Bruno Haible  <bruno@clisp.org>
15648
15649         * lib/glob.c: Don't include <pwd.h> on native Windows.
15650         (WINDOWS32): New macro.
15651         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
15652
15653 2008-09-13  Bruno Haible  <bruno@clisp.org>
15654
15655         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
15656         (ETIMEDOUT): Remove macro.
15657         (glthread_cond_timedwait_multithreaded): New declaration.
15658         (glthread_cond_timedwait): Use it.
15659         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
15660         (glthread_cond_timedwait_multithreaded): New function.
15661
15662 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15663
15664         * modules/poll-tests: Do not check for io.h.
15665         * tests/test-poll.c: Check for __MSVCRT__ instead.
15666
15667 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15668
15669         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
15670         * modules/poll-tests: Add inet_pton, stdbool, sockets.
15671         * tests/test-poll.c: Use them.  Use _pipe on Windows.
15672
15673 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15674
15675         * modules/poll-tests: New.
15676         * tests/test-poll.c: New.
15677
15678 2008-09-12  Eric Blake  <ebb9@byu.net>
15679
15680         frexp: test for NetBSD failure on -0.0
15681         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
15682         not all, bugs from NetBSD 3.0 have been fixed.
15683         * doc/posix-functions/frexp.texi (frexp): Document bug.
15684         Reported by Thomas Klausner.
15685
15686         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
15687         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
15688         literal -0.0.
15689         Reported by Jonathan C. Patschke <jp@centtech.com>.
15690
15691 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15692
15693         * lib/glthread/cond.h: Use dummy implementation also if
15694         USE_WIN32_THREADS.
15695
15696 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15697
15698         * modules/fnmatch-posix (License): Change to LGPLv2+.
15699         * modules/fnmatch-gnu (License): Likewise.
15700
15701 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15702
15703         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
15704
15705 2008-09-11  Jim Meyering  <meyering@redhat.com>
15706
15707         * users.txt: Add gtk-vnc.
15708
15709 2008-09-08  Simon Josefsson  <simon@josefsson.org>
15710
15711         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
15712         rotate amounts.
15713
15714         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
15715         required for 16-bit and 8-bit rotates.
15716         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
15717         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
15718         UINT8_MAX instead of hard-coded constants.
15719         Suggested by Paul Eggert.
15720
15721 2008-09-07  Bruno Haible  <bruno@clisp.org>
15722
15723         * tests/test-striconveh.c (main): Check behaviour when converting from
15724         UTF-7.
15725
15726         Make striconveh work better with stateful encodings.
15727         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
15728         that iconv does not increment the inptr when returning -1/EINVAL.
15729
15730 2008-09-07  Bruno Haible  <bruno@clisp.org>
15731
15732         * build-aux/config.rpath: Update according to libtool-2.2.6.
15733         * build-aux/config.libpath: Likewise.
15734
15735 2008-09-06  Bruno Haible  <bruno@clisp.org>
15736
15737         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
15738         * lib/freadptr.c (freadptr): Likewise.
15739         * lib/freadseek.c (freadptrinc): Likewise.
15740         Reported by Simon Josefsson.
15741
15742 2008-09-06  Bruno Haible  <bruno@clisp.org>
15743
15744         * modules/freadptr (License): Change to LGPLv2+.
15745         * modules/freadseek (License): Likewise.
15746         Suggested by Eric Blake.
15747
15748         * modules/memchr2 (License): Change to LGPLv2+.
15749         Approved by Eric Blake.
15750
15751 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15752             Bruno Haible  <bruno@clisp.org>
15753
15754         Make gnulib-tool work with native 'sed' on AIX.
15755         * gnulib-tool (sed_noop): New variable.
15756         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
15757         func_add_or_update, func_create_testdir): Use it to initialize sed
15758         script variables.
15759         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
15760
15761 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
15762             Bruno Haible  <bruno@clisp.org>
15763
15764         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
15765         also works after #include directives.
15766
15767 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
15768
15769         getdate.y: reject an out-of-range timezone value
15770         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
15771         the range [-24...+24].  When specified with only one or two digits,
15772         * tests/test-getdate.c: Tests for the fix.
15773         * doc/getdate.texi: Document this change.
15774
15775 2008-09-03  Bruno Haible  <bruno@clisp.org>
15776
15777         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
15778
15779 2008-09-02  Simon Josefsson  <simon@josefsson.org>
15780
15781         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
15782         <bruce.korb@gmail.com> with ideas from Ben Pfaff
15783         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
15784         Blake <ebb9@byu.net>.
15785
15786         * tests/test-bitrotate.c: Add more test vectors.
15787
15788 2008-09-02  Eric Blake  <ebb9@byu.net>
15789
15790         vasnprintf-posix: handle large precision via %.*d
15791         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
15792         when handling it ourselves.
15793         * tests/test-vasnprintf-posix.c (test_function): Add test.
15794         * tests/test-snprintf-posix.h (test_function): Likewise.
15795         * tests/test-sprintf-posix.h (test_function): Likewise.
15796         * tests/test-vasprintf-posix.c (test_function): Likewise.
15797         Reported by Alain Guibert.
15798
15799 2008-09-01  Eric Blake  <ebb9@byu.net>
15800
15801         c-stack: make configure-time check more robust
15802         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
15803         successful sigaction call.
15804         Reported by Tom G. Christensen.
15805
15806 2008-09-01  Bruno Haible  <bruno@clisp.org>
15807
15808         New module 'findprog-lgpl'.
15809         * modules/findprog-lgpl: New file.
15810         * lib/findprog-lgpl.c: New file.
15811         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
15812         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
15813         to decide whether to use strdup or xstrdup, concatenated_filename or
15814         xconcatenated_filename.
15815
15816 2008-09-01  Bruno Haible  <bruno@clisp.org>
15817
15818         Split module 'concat-filename' into 'concat-filename' (LGPL) and
15819         'xconcat-filename' (GPL).
15820         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
15821         (License): Change to LGPLv2+.
15822         * modules/xconcat-filename: New file.
15823         * lib/concat-filename.h (concatenated_filename): Change specification.
15824         (xconcatenated_filename): New declaration.
15825         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
15826         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
15827         memory situations.
15828         * lib/xconcat-filename.c: New file.
15829         * NEWS: Mention the change.
15830         * lib/findprog.c: Include concat-filename.h, not filename.h.
15831         (find_in_path): Use xconcatenated_filename instead of
15832         concatenated_filename.
15833         * lib/javacomp.c: Include concat-filename.h, not filename.h.
15834         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
15835         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
15836         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
15837         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
15838         instead of concatenated_filename.
15839         * lib/javaexec.c: Include concat-filename.h, not filename.h.
15840         (execute_java_class): Use xconcatenated_filename instead of
15841         concatenated_filename.
15842         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
15843         * modules/javacomp (Depends-on): Likewise.
15844         * modules/javaexec (Depends-on): Likewise.
15845
15846 2008-09-01  Bruno Haible  <bruno@clisp.org>
15847
15848         Split module 'filename' into 'filename' and 'concat-filename'.
15849         * modules/filename: Keep only lib/filename.h.
15850         (License): Change to LGPLv2+.
15851         * modules/concat-filename: New file, extracted from modules/filename.
15852         * lib/filename.h (concatenated_filename): Remove declaration.
15853         * lib/concat-filename.h: New file, extracted from lib/filename.h.
15854         * lib/concat-filename.c: Include concat-filename.h.
15855         * NEWS: Mention the change.
15856
15857 2008-09-01  Simon Josefsson  <simon@josefsson.org>
15858
15859         * lib/bitrotate.h (rotl8, rotr8): Add.
15860
15861         * modules/bitrotate (configure.ac): Need
15862         AC_REQUIRE([AC_C_INLINE]).
15863         (Description): Mention stdint.h.  Reported by Bruno Haible
15864         <bruno@clisp.org>.
15865
15866         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
15867         Paolo Bonzini <bonzini@gnu.org>.
15868
15869 2008-08-31  Bruno Haible  <bruno@clisp.org>
15870
15871         Assume Solaris specific bi-arch conventions on Solaris systems.
15872         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
15873         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
15874         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
15875         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
15876         like acl_libdirstem.
15877         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
15878         acl_libdirstem.
15879         * NEWS: Mention the change.
15880         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
15881
15882 2008-08-31  Jim Meyering  <meyering@redhat.com>
15883
15884         * lib/strftime.h: Add comments describing the two added arguments.
15885
15886         remove duplicate #include directives
15887         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
15888         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
15889
15890 2008-08-31  Bruno Haible  <bruno@clisp.org>
15891
15892         New module 'sigpipe-die'.
15893         * modules/sigpipe-die: New file.
15894         * lib/sigpipe-die.h: New file.
15895         * lib/sigpipe-die.c: New file.
15896         * MODULES.html.sh (Signal handling): Add sigpipe-die.
15897
15898 2008-08-31  Bruno Haible  <bruno@clisp.org>
15899
15900         Don't override previously installed signal handlers.
15901         * lib/fatal-signal.c (saved_sigactions): New variable.
15902         (uninstall_handlers): Reset the signal to the saved handler, not
15903         to SIG_DFL (except when ignored).
15904         (install_handlers): Save the previous handlers.
15905
15906 2008-08-30  Bruno Haible  <bruno@clisp.org>
15907
15908         * gnulib-tool (func_reset_sigpipe): New function.
15909         (func_get_automake_snippet, func_modules_transitive_closure,
15910         func_import): Invoke it before a join command that reads from stdin,
15911         to avoid "echo: write error: Broken pipe" error messages on stderr.
15912         Reported by Sam Steingold <sds@gnu.org>.
15913
15914 2008-08-30  Bruno Haible  <bruno@clisp.org>
15915
15916         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
15917         Code copied from m4/open.m4.
15918         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
15919         access and the filename ends in a slash. Code copied from lib/open.c.
15920         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
15921         * tests/test-fopen.c (main): Check against bug with trailing slash.
15922
15923 2008-08-29  Bruno Haible  <bruno@clisp.org>
15924
15925         Avoid some "gcc -pedantic" warnings.
15926         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
15927         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
15928         * lib/dirent.in.h: Likewise.
15929         * lib/fcntl.in.h: Likewise.
15930         * lib/float.in.h: Likewise.
15931         * lib/iconv.in.h: Likewise.
15932         * lib/inttypes.in.h: Likewise.
15933         * lib/locale.in.h: Likewise.
15934         * lib/math.in.h: Likewise.
15935         * lib/netinet_in.in.h: Likewise.
15936         * lib/search.in.h: Likewise.
15937         * lib/signal.in.h: Likewise.
15938         * lib/stdarg.in.h: Likewise.
15939         * lib/stdint.in.h: Likewise.
15940         * lib/stdio.in.h: Likewise.
15941         * lib/stdlib.in.h: Likewise.
15942         * lib/string.in.h: Likewise.
15943         * lib/strings.in.h: Likewise.
15944         * lib/sys_select.in.h: Likewise.
15945         * lib/sys_socket.in.h: Likewise.
15946         * lib/sys_stat.in.h: Likewise.
15947         * lib/sys_time.in.h: Likewise.
15948         * lib/sysexits.in.h: Likewise.
15949         * lib/time.in.h: Likewise.
15950         * lib/unistd.in.h: Likewise.
15951         * lib/wchar.in.h: Likewise.
15952         * lib/wctype.in.h: Likewise.
15953         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
15954         * modules/fchdir (Makefile.am): Likewise.
15955         * modules/fcntl (Makefile.am): Likewise.
15956         * modules/float (Makefile.am): Likewise.
15957         * modules/iconv_open (Makefile.am): Likewise.
15958         * modules/inttypes (Makefile.am): Likewise.
15959         * modules/locale (Makefile.am): Likewise.
15960         * modules/math (Makefile.am): Likewise.
15961         * modules/netinet_in (Makefile.am): Likewise.
15962         * modules/search (Makefile.am): Likewise.
15963         * modules/signal (Makefile.am): Likewise.
15964         * modules/stdarg (Makefile.am): Likewise.
15965         * modules/stdint (Makefile.am): Likewise.
15966         * modules/stdio (Makefile.am): Likewise.
15967         * modules/stdlib (Makefile.am): Likewise.
15968         * modules/string (Makefile.am): Likewise.
15969         * modules/strings (Makefile.am): Likewise.
15970         * modules/sys_select (Makefile.am): Likewise.
15971         * modules/sys_socket (Makefile.am): Likewise.
15972         * modules/sys_stat (Makefile.am): Likewise.
15973         * modules/sys_time (Makefile.am): Likewise.
15974         * modules/sysexits (Makefile.am): Likewise.
15975         * modules/time (Makefile.am): Likewise.
15976         * modules/unistd (Makefile.am): Likewise.
15977         * modules/wchar (Makefile.am): Likewise.
15978         * modules/wctype (Makefile.am): Likewise.
15979         Reported by Reuben Thomas <rrt@sc3d.org>.
15980
15981 2008-08-29  Bruno Haible  <bruno@clisp.org>
15982
15983         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
15984         any more.
15985
15986 2008-08-29  Simon Josefsson  <simon@josefsson.org>
15987
15988         * MODULES.html.sh (Misc): Add bitrotate.
15989
15990         * modules/bitrotate: New file.
15991
15992         * lib/bitrotate.h: New file.
15993
15994         * modules/bitrotate-tests: New file.
15995
15996         * tests/test-bitrotate.c: New file.
15997
15998         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
15999         on the bitrotate module.
16000
16001         * lib/arctwo.c: Use new bitrotate module.
16002
16003 2008-08-29  Jim Meyering  <meyering@redhat.com>
16004
16005         bootstrap: merge changes from coreutils
16006         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
16007         of copied files.  Remove a kludge, now that this is fixed.
16008         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
16009         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
16010         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
16011
16012 2008-08-29  Bruno Haible  <bruno@clisp.org>
16013
16014         * MODULES.html.sh: Remove --cvs-urls option.
16015
16016 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
16017
16018         maint.mk: adjust to file name change
16019         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
16020
16021 2008-08-28  Jim Meyering  <meyering@redhat.com>
16022
16023         * modules/getndelim2 (License): Relicense to LGPLv2+.
16024         Approved by Richard Stallman for the version of 1995, and by
16025         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
16026
16027 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
16028
16029         * lib/getdelim.c (flockfile, funlockfile): Make all of them
16030         dummy if one is not available.  Do not touch them if
16031         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
16032         (getc_maybe_unlocked): New.
16033         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
16034
16035 2008-08-26  Eric Blake  <ebb9@byu.net>
16036
16037         doc/INSTALL: resync from autoconf
16038         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
16039         (INSTALL_PRELUDE): Delete; this is done more efficiently by
16040         moving...
16041         * install.texi [!autoconf]: ...here.  Resync from autoconf.
16042         * INSTALL: Regenerate.
16043         * INSTALL.ISO: New file.
16044         * INSTALL.UTF-8: Likewise.
16045
16046 2008-08-26  Jim Meyering  <meyering@redhat.com>
16047
16048         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
16049         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
16050         these definitions conditional, so that they may be overridden, too.
16051
16052 2008-08-26  Bruno Haible  <bruno@clisp.org>
16053
16054         Generate INSTALL file variants with prettier quotes.
16055         * doc/Makefile (INSTALL_PRELUDE): New macro.
16056         (INSTALL): Use it.
16057         (INSTALL.ISO, INSTALL.UTF-8): New rules.
16058
16059 2008-08-26  Bruno Haible  <bruno@clisp.org>
16060
16061         Run makeinfo in an English locale.
16062         * doc/Makefile (MAKEINFO): New variable.
16063
16064 2008-08-26  Bruno Haible  <bruno@clisp.org>
16065
16066         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
16067         Suggested by Eric Blake.
16068
16069 2008-08-25  Bruno Haible  <bruno@clisp.org>
16070
16071         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
16072
16073 2008-08-25  Eric Blake  <ebb9@byu.net>
16074
16075         c-stack: test that stack overflow can be caught
16076         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
16077         that platform allows handling stack overflow; at least OS/2 EMX
16078         has sigaltstack, but crashes before transferring control to
16079         handler on stack overflow.
16080         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
16081         check for HAVE_STACK_OVERFLOW_HANDLING.
16082         Reported by Elbert Pol.
16083
16084 2008-08-25  Bruno Haible  <bruno@clisp.org>
16085
16086         * doc/posix-functions/strftime.texi: Fix description of strftime
16087         module.
16088
16089 2008-08-24  Bruno Haible  <bruno@clisp.org>
16090
16091         * tests/uniwidth/test-uc_width2.c: New file.
16092         * tests/uniwidth/test-uc_width2.sh: New file.
16093         * modules/uniwidth/width-tests (Files): Add the new files.
16094         (TESTS): Add uniwidth/test-uc_width2.sh.
16095         (TESTS_ENVIRONMENT): New variable.
16096         (check_PROGRAMS): Add test-uc_width2.
16097         (test_uc_width2_SOURCES): New variable.
16098
16099         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
16100         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
16101         not 0x00AB.
16102         Reported by Alexander V. Lukyanov <lav@netis.ru>.
16103
16104 2008-08-22  Eric Blake  <ebb9@byu.net>
16105
16106         test-lock, test-tls: mention why a test is skipped
16107         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
16108         skipped.
16109         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
16110
16111         count-one-bits: relax license
16112         * modules/count-one-bits (License): Relicense to LGPLv2+.
16113         Suggested by Ludovic Courtès, approved by Ben Pfaff.
16114
16115 2008-08-22  Andreas Schwab  <schwab@suse.de>
16116
16117         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
16118         Remove spurious space in assignment.
16119
16120 2008-08-21  Simon Josefsson  <simon@josefsson.org>
16121
16122         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
16123         Paul Eggert <eggert@CS.UCLA.EDU>.
16124
16125 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
16126
16127         * modules/gettext: Add m4/threadlib.m4.
16128
16129 2008-08-19  Eric Blake  <ebb9@byu.net>
16130
16131         test-c-stack: fix compilation failure on FreeBSD 5.0
16132         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
16133         headers before <sys/resource.h>.
16134         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
16135         the bug.
16136         Reported by Nelson H. F. Beebe.
16137
16138         strverscmp: migrate from "strverscmp.h" to <string.h>
16139         * modules/string (Makefile.am): Add new hooks.
16140         * modules/strverscmp (Files): Remove strverscmp.h.
16141         (Depends-on): Add string.
16142         (configure.ac): Add indicator.
16143         (Include): Mention new header.
16144         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
16145         defaults.
16146         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
16147         results.
16148         * lib/strverscmp.h: Delete.
16149         * lib/string.in.h (strverscmp): Provide declaration, when needed.
16150         * tests/test-strverscmp.c (includes): Adjust client.
16151         * lib/check-version.c (includes): Likewise.
16152         * NEWS: Document the change.
16153
16154         strverscmp: add unit test
16155         * modules/strverscmp-tests: New file.
16156         * tests/test-strverscmp.c: Likewise.
16157
16158 2008-08-19  Simon Josefsson  <simon@josefsson.org>
16159
16160         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
16161         regarding Windows crypto stuff, from Mono.
16162
16163 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
16164
16165         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
16166         if present, for intel RND.  Return error on failures.
16167
16168 2008-08-18  Ben Pfaff  <blp@gnu.org>
16169
16170         gitlog-to-changelog: give better diagnostic for failed pipe-open
16171         * build-aux/gitlog-to-changelog: Improve error message: suggest
16172         that the version of Git may be too old.
16173
16174 2008-08-18  Simon Josefsson  <simon@josefsson.org>
16175
16176         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
16177         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
16178
16179 2008-08-18  Bruno Haible  <bruno@clisp.org>
16180
16181         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
16182         pthread_in_use().
16183
16184 2008-08-18  Bruno Haible  <bruno@clisp.org>
16185
16186         * lib/glthread/threadlib.c: Include <pthread.h>.
16187
16188 2008-08-18  Bruno Haible  <bruno@clisp.org>
16189
16190         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
16191         glthread_recursive_lock_* macros.
16192         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
16193         Fix syntax error.
16194
16195 2008-08-18  Bruno Haible  <bruno@clisp.org>
16196
16197         * lib/glthread/thread.c: Avoid forcing a context switch right after
16198         thread creation.
16199
16200 2008-08-17  Bruno Haible  <bruno@clisp.org>
16201
16202         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
16203         * lib/glthread/thread.h: Provide Win32 specific implementation.
16204         * modules/thread (Files): Add lib/glthread/thread.c.
16205         (Depends-on): Add lock.
16206         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
16207
16208 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16209
16210         New module 'yield'.
16211         * modules/yield: New file.
16212         * lib/glthread/yield.h: New file.
16213         * m4/yield.m4: New file.
16214         * MODULES.html.sh (Multithreading): Add yield.
16215
16216 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16217
16218         New module 'thread'.
16219         * modules/thread: New file.
16220         * lib/glthread/thread.h: New file.
16221         * m4/thread.m4: New file.
16222         * MODULES.html.sh (Multithreading): Add thread.
16223
16224 2008-08-17  Bruno Haible  <bruno@clisp.org>
16225
16226         * lib/glthread/lock.h: Include <stdlib.h> always.
16227         * lib/glthread/tls.h: Likewise.
16228         * lib/glthread/cond.h: Likewise.
16229
16230 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16231
16232         New module 'cond'.
16233         * modules/cond: New file.
16234         * lib/glthread/cond.h: New file.
16235         * lib/glthread/cond.c: New file.
16236         * m4/cond.m4: New file.
16237         * MODULES.html.sh (Multithreading): Add cond.
16238
16239 2008-08-16  Eric Blake  <ebb9@byu.net>
16240
16241         c-stack: fix regression on Irix 5.3 from 2008-06-21
16242         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
16243         sa_sigaction...
16244         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
16245         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
16246         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
16247         * modules/signal (Makefile.am): Use the value.
16248         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
16249         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
16250         * doc/posix-headers/signal.texi (signal.h): Document this
16251         portability issue.
16252         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
16253         Reported by Tom G. Christensen.
16254
16255 2008-08-17  Bruno Haible  <bruno@clisp.org>
16256
16257         New module 'threadlib'.
16258         * modules/threadlib: New file.
16259         * lib/glthread/threadlib.c: New file, extracted from
16260         lib/glthread/lock.c.
16261         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
16262         functions.
16263         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
16264         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
16265         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
16266         macros.
16267         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
16268         (gl_DISABLE_THREADS): Remove macro.
16269         * modules/lock (Files): Remove build-aux/config.rpath.
16270         (Depends-on): Remove havelib. Add threadlib.
16271         (configure.ac-early): Remove section.
16272         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
16273         * modules/tls (Depends-on): Remove lock. Add threadlib.
16274         (Link): New section, copied from threadlib.
16275         * MODULES.html.sh (Multithreading): Add threadlib.
16276
16277 2008-08-14  Bruno Haible  <bruno@clisp.org>
16278
16279         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
16280         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
16281         glthread_rwlock_unlock, glthread_rwlock_destroy,
16282         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
16283         glthread_recursive_lock_destroy): Define as macros always.
16284         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
16285         glthread_lock_lock.
16286         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
16287         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
16288         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
16289         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
16290         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
16291         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
16292         (glthread_recursive_lock_lock_func): Renamed from
16293         glthread_recursive_lock_lock.
16294         (glthread_recursive_lock_unlock_func): Renamed from
16295         glthread_recursive_lock_unlock.
16296         (glthread_recursive_lock_destroy_func): Renamed from
16297         glthread_recursive_lock_destroy.
16298
16299 2008-08-14  Bruno Haible  <bruno@clisp.org>
16300
16301         * lib/glthread/lock.h: Renamed from lib/lock.h.
16302         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
16303         * lib/glthread/tls.h: Renamed from lib/tls.h.
16304         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
16305         * lib/fstrcmp.c: Update includes.
16306         * lib/strsignal.c: Update includes.
16307         * modules/lock (Files, Makefile.am): Update.
16308         (Include): Change to "glthread/lock.h".
16309         * modules/tls (Files, Makefile.am): Update.
16310         (Include): Change to "glthread/tls.h".
16311         * tests/test-lock.c: Update includes.
16312         * tests/test-tls.c: Update includes.
16313         * NEWS: Mention the renamed header files.
16314
16315 2008-08-11  Jim Meyering  <meyering@redhat.com>
16316
16317         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
16318
16319 2008-08-11  Eric Blake  <ebb9@byu.net>
16320
16321         test-c-stack: avoid C99-ism
16322         * tests/test-c-stack.c (main): Fix whitespace, move declaration
16323         before statement.
16324         Reported by Alain Guibert.
16325
16326 2008-08-10  Jim Meyering  <meyering@redhat.com>
16327
16328         ensure that return value of uinttostr et al are not ignored
16329         * lib/inttostr.h (__GNUC_PREREQ): Define.
16330         (__attribute_warn_unused_result__): Define.
16331         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
16332
16333 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
16334
16335         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
16336         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
16337
16338 2008-08-07  Jim Meyering  <meyering@redhat.com>
16339
16340         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
16341
16342         * modules/mkstemp (License): Relicense under LGPLv2+.
16343         * modules/tempname (License): Likewise.
16344
16345 2008-08-06  Bruno Haible  <bruno@clisp.org>
16346
16347         * lib/poll.c (poll): Further micro-optimization.
16348
16349 2008-08-06  Jim Meyering  <meyering@redhat.com>
16350
16351         inet_pton.c: use locale-independent tolower
16352         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
16353         (inet_pton6): Use c_tolower rather than tolower.
16354         * modules/inet_pton (Depends-on): Add c-ctype.
16355
16356 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
16357
16358         * lib/poll.c (poll): Avoid division when timeout is 0, cache
16359         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
16360
16361 2008-08-06  Jim Meyering  <meyering@redhat.com>
16362
16363         * modules/inet_pton (License): Relicense under LGPLv2+.
16364
16365 2008-08-03  Bruno Haible  <bruno@clisp.org>
16366
16367         Additional non-aborting API for lock and tls.
16368         * lib/lock.h: Include <errno.h>.
16369         (glthread_lock_init): New macro/function.
16370         (gl_lock_init): Define as wrapper around glthread_lock_init.
16371         (glthread_lock_lock): New macro/function.
16372         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
16373         (glthread_lock_unlock): New macro/function.
16374         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
16375         (glthread_lock_destroy): New macro/function.
16376         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
16377         (glthread_rwlock_init): New macro/function.
16378         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
16379         (glthread_rwlock_rdlock): New macro/function.
16380         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
16381         (glthread_rwlock_wrlock): New macro/function.
16382         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
16383         (glthread_rwlock_unlock): New macro/function.
16384         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
16385         (glthread_rwlock_destroy): New macro/function.
16386         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
16387         (glthread_recursive_lock_init): New macro/function.
16388         (gl_recursive_lock_init): Define as wrapper around
16389         glthread_recursive_lock_init.
16390         (glthread_recursive_lock_lock): New macro/function.
16391         (gl_recursive_lock_lock): Define as wrapper around
16392         glthread_recursive_lock_lock.
16393         (glthread_recursive_lock_unlock): New macro/function.
16394         (gl_recursive_lock_unlock): Define as wrapper around
16395         glthread_recursive_lock_unlock.
16396         (glthread_recursive_lock_destroy): New macro/function.
16397         (gl_recursive_lock_destroy): Define as wrapper around
16398         glthread_recursive_lock_destroy.
16399         (glthread_once): New macro/function.
16400         (gl_once): Define as wrapper around glthread_once.
16401         Update function declarations.
16402         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
16403         glthread_rwlock_init. Return error code.
16404         (glthread_rwlock_rdlock_multithreaded): Renamed from
16405         glthread_rwlock_rdlock. Return error code.
16406         (glthread_rwlock_wrlock_multithreaded): Renamed from
16407         glthread_rwlock_wrlock. Return error code.
16408         (glthread_rwlock_unlock_multithreaded): Renamed from
16409         glthread_rwlock_unlock. Return error code.
16410         (glthread_rwlock_destroy_multithreaded): Renamed from
16411         glthread_rwlock_destroy. Return error code.
16412         (glthread_recursive_lock_init_multithreaded): Renamed from
16413         glthread_recursive_lock_init. Return error code.
16414         (glthread_recursive_lock_lock_multithreaded): Renamed from
16415         glthread_recursive_lock_lock. Return error code.
16416         (glthread_recursive_lock_unlock_multithreaded): Renamed from
16417         glthread_recursive_lock_unlock. Return error code.
16418         (glthread_recursive_lock_destroy_multithreaded): Renamed from
16419         glthread_recursive_lock_destroy. Return error code.
16420         (glthread_once_call): Make static.
16421         (glthread_once_multithreaded): Renamed from glthread_once.
16422         * lib/tls.h: Include <errno.h>.
16423         (glthread_tls_key_init): New macro/function.
16424         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
16425         (glthread_tls_set): New macro/function.
16426         (gl_tls_set): Define as wrapper around glthread_tls_set.
16427         (glthread_tls_key_destroy): New macro/function.
16428         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
16429         Update function declarations.
16430         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
16431         glthread_tls_get.
16432         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
16433
16434 2008-08-04  Eric Blake  <ebb9@byu.net>
16435
16436         gnumakefile: use space, not TAB, outside of targets
16437         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
16438
16439 2008-08-02  Jim Meyering  <meyering@redhat.com>
16440
16441         getdate.y: avoid locale-dependent date parsing failure
16442         In Turkish locales, getdate would fail to recognize keywords
16443         containing a lowercase "i".  The solution is not to rely on
16444         locale-sensitive case-conversion.
16445         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
16446         (lookup_word): Use c_toupper in place of toupper.
16447         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
16448         Reported by Vefa Bicakci <bicave@superonline.com> in
16449         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
16450         * modules/getdate (Depends-on): Add c-ctype.
16451
16452 2008-08-02  Bruno Haible  <bruno@clisp.org>
16453
16454         * gnulib-tool (func_import): When updating or creating a .gitignore
16455         file, prepend each added line with a slash, and ignore leading slashes
16456         from the existing lines.
16457         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
16458
16459 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16460
16461         Portability fix for GNU make 3.79.1.
16462         * top/GNUmakefile: Avoid 'else COND', which older GNU make
16463         versions do not understand.
16464
16465 2008-08-01  Bruno Haible  <bruno@clisp.org>
16466
16467         Work around bug of HP-UX 10.20 cc with -0.0 literal.
16468         * tests/test-isnanf.h (zero): New variable.
16469         (main): Avoid literal -0.0f.
16470         * tests/test-isnand.h (zero): New variable.
16471         (main): Avoid literal -0.0.
16472         * tests/test-isnanl.h (zero): New variable.
16473         (main): Avoid literal -0.0L.
16474         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
16475         (test_float, test_double, test_long_double): Avoid literals -0.0f,
16476         -0.0, -0.0L.
16477         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
16478         (test_signbitd): Avoid literal -0.0.
16479         (test_signbitl): Avoid literal -0.0L.
16480         * tests/test-ceilf1.c (zero): New variable.
16481         (main): Avoid literal -0.0f.
16482         * tests/test-ceill.c (zero): New variable.
16483         (main): Avoid literal -0.0L.
16484         * tests/test-floorf1.c (zero): New variable.
16485         (main): Avoid literal -0.0f.
16486         * tests/test-floorl.c (zero): New variable.
16487         (main): Avoid literal -0.0L.
16488         * tests/test-roundf1.c (zero): New variable.
16489         (main): Avoid literal -0.0f.
16490         * tests/test-round1.c (zero): New variable.
16491         (main): Avoid literal -0.0.
16492         * tests/test-roundl.c (zero): New variable.
16493         (main): Avoid literal -0.0L.
16494         * tests/test-truncf1.c (zero): New variable.
16495         (main): Avoid literal -0.0f.
16496         * tests/test-trunc1.c (zero): New variable.
16497         (main): Avoid literal -0.0.
16498         * tests/test-truncl.c (zero): New variable.
16499         (main): Avoid literal -0.0L.
16500         * tests/test-frexp.c (zero): New variable.
16501         (main): Avoid literal -0.0.
16502         * tests/test-frexpl.c (zero): New variable.
16503         (main): Avoid literal -0.0L.
16504         * tests/test-ldexpl.c (zero): New variable.
16505         (main): Avoid literal -0.0L.
16506         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
16507         (zerod, zerol): New variables.
16508         (test_function): Avoid literals -0.0, -0.0L.
16509         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
16510         (zerod, zerol): New variables.
16511         (test_function): Avoid literals -0.0, -0.0L.
16512         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
16513         (zerod, zerol): New variables.
16514         (test_function): Avoid literals -0.0, -0.0L.
16515         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
16516         (zerod, zerol): New variables.
16517         (test_function): Avoid literals -0.0, -0.0L.
16518         * tests/test-strtod.c (zero): New variable.
16519         (main): Avoid literal -0.0.
16520         Reported by Jonathan C. Patschke <jp@centtech.com>.
16521
16522 2008-07-31  Jim Meyering  <meyering@redhat.com>
16523
16524         sha256.h: correct definition of SHA224_DIGEST_SIZE
16525         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
16526         Reported by Paulie Pena IV <paulie4@gmail.com>.
16527         Define as 224 / 8, rather than as a literal.
16528         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
16529         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
16530         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
16531
16532 2008-07-31  Bruno Haible  <bruno@clisp.org>
16533
16534         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
16535         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
16536         Reported by Jonathan Patschke <jp@centtech.com>.
16537
16538 2008-07-31  Bruno Haible  <bruno@clisp.org>
16539
16540         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
16541         Reported by Paolo Bonzini <bonzini@gnu.org>.
16542
16543 2008-07-30  Eric Blake  <ebb9@byu.net>
16544
16545         test-strtod: allow compilation without -lm
16546         * tests/test-strtod.c (main): Avoid link dependence on fabs.
16547         Reported by Dennis Clarke <blastwave@gmail.com>.
16548
16549 2008-07-28  Jim Meyering  <meyering@redhat.com>
16550
16551         bootstrap: work also when there are no .po files in po/
16552         * build-aux/bootstrap (update_po_files): Complete the change
16553         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
16554
16555 2008-07-27  Jim Meyering  <meyering@redhat.com>
16556
16557         * users.txt: Add zile.
16558
16559 2008-07-26  Ben Pfaff  <blp@gnu.org>
16560
16561         Add missing dependencies on new m4/exponent[fdl].m4 files.
16562         * modules/isnanf-nolibm: Add m4/exponentf.m4.
16563         * modules/isnand-nolibm: Add m4/exponentd.m4.
16564         * modules/isnanl-nolibm: Add m4/exponentl.m4.
16565         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
16566         m4/isnan[fdl].m4, because the macros actually used moved.
16567         Reported by Jim Meyering.
16568
16569 2008-07-14  Ben Pfaff  <blp@gnu.org>
16570
16571         Add isinf module.
16572         * lib/isinf.c: New file.
16573         * lib/math.in.h: Define isinf macro if we have decided to replace
16574         it.
16575         * m4/isinf.m4: New file.
16576         * m4/math_h.m4: Initialize and substitute variables for isinf
16577         module.
16578         * modules/isinf: New file.
16579         * modules/isinf-tests: New file.
16580         * modules/math: Add substitutions for new module.
16581         * tests/test-isinf.c: New file.
16582         * doc/posix-functions/isinf.texi: Mention new module.
16583         * MODULES.html.sh: Mention new module.
16584
16585 2008-07-14  Ben Pfaff  <blp@gnu.org>
16586
16587         Factor out some macros for use by additional modules.
16588         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
16589         exponentf.m4.
16590         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
16591         exponentd.m4.
16592         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
16593         file exponentl.m4.
16594         * m4/exponentf.m4: New file.
16595         * m4/exponentd.m4: New file.
16596         * m4/exponentl.m4: New file.
16597         * modules/isnanf: Use new file m4/exponentf.m4.
16598         * modules/isnand: Use new file m4/exponentd.m4.
16599         * modules/isnanl: Use new file m4/exponentl.m4.
16600
16601 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
16602
16603         mktime.c: normalize tp->tm_isdst value to -1/0/1.
16604         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
16605         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
16606         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
16607
16608         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
16609         readlink on platforms without PATH_MAX.
16610
16611 2008-07-21  Eric Blake  <ebb9@byu.net>
16612
16613         Warn, not fail, on stale version.
16614         * top/GNUmakefile (_curr-ver): Tone down previous patch.
16615
16616         Don't allow installation with stale devel version number.
16617         * top/GNUmakefile (_is-install-target): New macro.
16618         (_curr-ver): Forbid installation with stale version number.
16619
16620 2008-07-20  Bruno Haible  <bruno@clisp.org>
16621
16622         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
16623         TESTS_ENVIRONMENT.
16624         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
16625
16626 2008-07-20  Bruno Haible  <bruno@clisp.org>
16627
16628         * lib/c-stack.h (c_stack_action): Add documentation.
16629         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
16630
16631 2008-07-20  Bruno Haible  <bruno@clisp.org>
16632
16633         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
16634         * modules/readlink (License): Likewise.
16635
16636 2008-07-17  Eric Blake  <ebb9@byu.net>
16637
16638         * modules/c-stack (Link): Fix typo.
16639
16640         Make c-stack use libsigsegv, when available.
16641         * modules/c-stack (Depends-on): Add libsigsegv.
16642         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
16643         needed.
16644         * lib/c-stack.c (SIGSTKSZ): Define fallback.
16645         (segv_handler, overflow_handler, c_stack_action)
16646         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
16647         implementation when libsigsegv is available, but only when using
16648         the library is necessary.
16649         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
16650         comment, explaining why XSI check fails on Linux.
16651         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
16652         * tests/test-c-stack2.sh: Tweak skip message.
16653         * NEWS: Document new link-time requirements.
16654
16655 2008-07-16  Eric Blake  <ebb9@byu.net>
16656
16657         c-stack: Expose false positives when not using libsigsegv.
16658         * modules/c-stack-tests (Files): Expand test.
16659         * tests/test-c-stack.c (main): Add means to conditionally trigger
16660         non-overflow SIGSEGV.
16661         * tests/test-c-stack2.sh: New file.
16662
16663 2008-07-14  Bruno Haible  <bruno@clisp.org>
16664
16665         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
16666         Reported by Eric Blake.
16667
16668 2008-07-14  Sam Steingold  <sds@gnu.org>
16669             Bruno Haible  <bruno@clisp.org>
16670
16671         New module libsigsegv.
16672         * modules/libsigsegv: New file.
16673         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
16674         modifications.
16675         * MODULES.html.sh (Signal handling): New section.
16676
16677 2008-07-14  Bruno Haible  <bruno@clisp.org>
16678
16679         * modules/unictype/ctype-* (Description): Add the word "function".
16680         Improves the resulting doc in MODULES.html.
16681
16682 2008-07-12  Ben Pfaff  <blp@gnu.org>
16683
16684         Add longlong module.
16685         * modules/longlong: New file.
16686
16687 2008-07-12  Bruno Haible  <bruno@clisp.org>
16688
16689         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
16690         to empty.
16691
16692 2008-07-10  Ben Pfaff  <blp@gnu.org>
16693
16694         Add isnan module.
16695         * doc/posix-functions/isnan.texi: Mention new module.
16696         * lib/math.in.h: Define isnan macro if we have decided to replace
16697         it.
16698         * m4/isnan.m4: New file.
16699         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
16700         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
16701         also.
16702         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
16703         redundancy.
16704         * m4/math_h.m4: Initialize and substitute variables for isnan
16705         module.
16706         * modules/isnan: New file.
16707         * modules/isnan-tests: New file.
16708         * modules/math: Add substitutions for new module.
16709         * tests/test-isnan.c: New file.
16710         * MODULES.html.sh: Mention new module.
16711
16712 2008-07-10  Ben Pfaff  <blp@gnu.org>
16713
16714         Add isnanf module.
16715         * lib/isnanf.m4: New file.
16716         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
16717         (gl_HAVE_ISNANF_IN_LIBM): New macro.
16718         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
16719         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
16720         * modules/isnanf: New file.
16721         * modules/isnanf-tests: New file.
16722         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
16723         files.
16724         * tests/test-isnanf-nolibm.c: factored most of its contents into
16725         new file tests/test-isnanf.h.
16726         * tests/test-isnanf.h: New file.
16727         * tests/test-isnanf.c: New file.
16728         * MODULES.html.sh: Mention new module.
16729         * doc/glibc-functions/isnanf.texi: Mention new module.
16730
16731 2008-07-10  Ben Pfaff  <blp@gnu.org>
16732
16733         Add isnand module.
16734         * lib/isnand.h: New file.
16735         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
16736         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
16737         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
16738         functionality also.
16739         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
16740         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
16741         (gl_HAVE_ISNAND_IN_LIBM): New macro.
16742         * modules/isnand: New file.
16743         * modules/isnand-tests: New file.
16744         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
16745         files.
16746         * tests/test-isnand-nolibm.c: factored most of its contents into
16747         new file tests/test-isnand.h.
16748         * tests/test-isnand.h: New file.
16749         * tests/test-isnand.c: New file.
16750         * MODULES.html.sh: Mention new module.
16751
16752 2008-07-10  Ben Pfaff  <blp@gnu.org>
16753
16754         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
16755         * lib/isnand.h: Rename lib/isnand-nolibm.h.
16756         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
16757         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
16758         * modules/isnanf-nolibm: Update references to renamed files.
16759         * modules/isnand-nolibm: Likewise.
16760         * modules/isnanf-nolibm-tests: Likewise.
16761         * modules/isnand-nolibm-tests: Likewise.
16762         * lib/frexp.c: Likewise.
16763         * lib/isfinite.c: Likewise.
16764         * lib/signbitd.c: Likewise.
16765         * lib/signbitf.c: Likewise.
16766         * lib/vasnprintf.c: Likewise.
16767         * tests/test-ceilf1.c: Likewise.
16768         * tests/test-ceilf2.c: Likewise.
16769         * tests/test-floorf1.c: Likewise.
16770         * tests/test-floorf2.c: Likewise.
16771         * tests/test-frexp.c: Likewise.
16772         * tests/test-round1.c: Likewise.
16773         * tests/test-round2.c: Likewise.
16774         * tests/test-roundf1.c: Likewise.
16775         * tests/test-strtod.c: Likewise.
16776         * tests/test-trunc1.c: Likewise.
16777         * tests/test-trunc2.c: Likewise.
16778         * tests/test-truncf1.c: Likewise.
16779         * tests/test-truncf2.c: Likewise.
16780         * NEWS: Mention the renamed header files.
16781
16782 2008-07-11  Jim Meyering  <meyering@redhat.com>
16783
16784         vc-list-files: make the last-resort awk code more portable
16785         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
16786         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
16787         does not support it.
16788
16789 2008-07-10  Eric Blake  <ebb9@byu.net>
16790
16791         Work with tar's bootstrap.
16792         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
16793         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
16794         an m4 comment.
16795
16796 2008-07-09  Jim Meyering  <meyering@redhat.com>
16797
16798         posix-shell.m4: fix typo that made this test malfunction
16799         * m4/posix-shell.m4: Remove capitalization in variable name.
16800
16801 2008-07-08  Bruno Haible  <bruno@clisp.org>
16802
16803         * m4/onceonly.m4: Update comments.
16804         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16805
16806 2008-07-04  Jim Meyering  <meyering@redhat.com>
16807
16808         * users.txt: Add vc-dwim.
16809         (bison, coreutils): Use the gitweb URL.
16810
16811 2008-07-03  Jim Meyering  <meyering@redhat.com>
16812
16813         * users.txt: Add libffcall.  From Sam Steingold.
16814
16815 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
16816
16817         getdate.y: do not ignore TZ with relative day, month or year offset
16818         * lib/getdate.y (get_date): Move the tz-handling block to follow the
16819         relative-date-handling, since otherwise, the latter would clobber the
16820         sole output (an updated Start value) of the tz-handling block.
16821         * tests/test-getdate.c: Tests for the fix
16822
16823 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16824
16825         Recognize 'foo_LIBRARIES += libgnu.a'.
16826         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
16827         makefile snippet has already specified an installation location,
16828         also using '+='.
16829
16830 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
16831
16832         getdate.y: factor out common actions
16833         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
16834         Use them in place of open-coded actions.
16835
16836 2008-07-01  Simon Josefsson  <simon@josefsson.org>
16837
16838         Add self-test for getdate module.
16839         * modules/getdate-tests: New file.
16840         * tests/test-getdate.c: New file.
16841
16842 2008-06-29  Bruno Haible  <bruno@clisp.org>
16843
16844         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
16845         .gitignore.
16846         Reported by Sylvain Beucler <beuc@beuc.net>.
16847
16848 2008-06-29  Bruno Haible  <bruno@clisp.org>
16849
16850         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
16851         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
16852
16853 2008-06-29  Bruno Haible  <bruno@clisp.org>
16854
16855         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
16856         EXTRA_DIST.
16857         Reported by Sylvain Beucler <beuc@beuc.net>.
16858
16859 2008-06-26  Jim Meyering  <meyering@redhat.com>
16860
16861         make several modules depend on the "open" module
16862         This provides slightly increased consistency when opening-for-write
16863         the name of a non-directory spelled with a trailing slash.
16864         * modules/chdir-safer: Likewise.
16865         * modules/chown: Likewise.
16866         * modules/clean-temp: Likewise.
16867         * modules/copy-file: Likewise.
16868         * modules/fchdir: Likewise.
16869         * modules/fcntl-safer: Likewise.
16870         * modules/pipe: Likewise.
16871         * modules/utime: Likewise.
16872         Prompted by Eric Blake and Bruno Haible.
16873
16874 2008-06-24  Andreas Schwab  <schwab@suse.de>
16875
16876         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
16877         literals can be used as initializers for global variables.
16878
16879 2008-06-23  Eric Blake  <ebb9@byu.net>
16880
16881         Make gnulib-cache.m4 easier to diff.
16882         * gnulib-tool (func_import): Allow newlines when reading cached
16883         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
16884
16885 2008-06-23  Bruno Haible  <bruno@clisp.org>
16886
16887         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
16888         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
16889         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
16890         m4/signalblocking.m4.
16891         (gl_PREREQ_SIGACTION): Don't invoke it.
16892         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
16893         gl_PREREQ_SIG_HANDLER_H.
16894         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
16895         Don't check for sigaction here.
16896
16897 2008-06-23  Bruno Haible  <bruno@clisp.org>
16898
16899         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
16900         (install_handlers): Don't set the SA_RESETHAND flag.
16901
16902 2008-06-23  Bruno Haible  <bruno@clisp.org>
16903
16904         * m4/sigaction.m4: Comment fixes.
16905         * lib/signal.in.h: Likewise.
16906
16907 2008-06-23  Eric Blake  <ebb9@byu.net>
16908
16909         Fix typo.
16910         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
16911
16912         Avoid SA_ namespace.
16913         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
16914         Reported by Ralf Wildenhues.
16915
16916         Avoid test failure due to SA_RESTORER.
16917         * tests/test-sigaction.c (SA_MASK): New macro.
16918         (main): Avoid failing due to extension flags being set.
16919         Reported by Jim Meyering.
16920
16921         Revert use of sig-handler.h in sigprocmask.c.
16922         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
16923         it requires the existence of struct sigaction.
16924         * lib/sigprocmask.c (handler_t): Restore typedef.
16925         (rpl_signal, old_handlers): Use local type.
16926
16927 2008-06-22  Bruno Haible  <bruno@clisp.org>
16928
16929         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
16930         conditionally.
16931         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
16932
16933 2008-06-22  Bruno Haible  <bruno@clisp.org>
16934
16935         * doc/posix-functions/siginterrupt.texi: Move note.
16936
16937         * lib/signal.in.h (SA_RESTART): New macro.
16938         * lib/sigaction.c: Update comment.
16939
16940         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
16941
16942         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
16943         (gl_PREREQ_SIGPROCMASK): Invoke it.
16944         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
16945
16946         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
16947
16948         * lib/sigprocmask.c: Update a comment.
16949
16950 2008-06-21  Eric Blake  <ebb9@byu.net>
16951
16952         Use sigaction module rather than signal().
16953         * modules/c-stack (Depends-on): Add sigaction.
16954         * modules/fatal-signal (Depends-on): Likewise.
16955         * modules/nanosleep (Depends-on): Likewise.
16956         * modules/sigprocmask (Files): Add sig-handler.h.
16957         * modules/sigaction (Files): Likewise.
16958         * lib/sig-handler.h (get_handler): New file, suggested by Paul
16959         Eggert.
16960         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
16961         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
16962         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
16963         (init_fatal_signals): Likewise.
16964         * lib/nanosleep.c (rpl_nanosleep): Likewise.
16965         (siginterrupt): Delete fallback.
16966         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
16967         instead.
16968         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
16969         siginterrupt.
16970
16971         New module sigaction, for mingw.
16972         * modules/sigaction: New module...
16973         * modules/sigaction-tests: ...and its test.
16974         * m4/sigaction.m4: New file.
16975         * lib/sigaction.c: Likewise.
16976         * tests/test-sigaction.c: Likewise.
16977         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
16978         * modules/signal (Makefile.am): Likewise.
16979         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
16980         needed.
16981         * doc/posix-headers/signal.texi (signal.h): Mention provided
16982         types.
16983         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
16984         that sigaction is preferable.
16985         * doc/posix-functions/sigaction.texi (sigaction): Mention new
16986         module.
16987         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16988         sigaction.
16989
16990         Improve robustness of sigprocmask by overriding signal.
16991         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
16992         is in use.
16993         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
16994         (SIGKILL, SIGSTOP): Provide fallbacks.
16995         (rpl_signal): Implement.
16996         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
16997         signal can be called inside handlers.
16998
16999         Fix nanosleep module on mingw.
17000         * modules/nanosleep (Depends-on): Add sys_select.
17001         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
17002
17003         Fix licensing of sigprocmask.
17004         * modules/raise (License): Relicense as LGPL.
17005
17006 2008-06-21  Bruno Haible  <bruno@clisp.org>
17007
17008         * lib/propername.c (proper_name_utf8): Don't use the transliterated
17009         result if it contains question marks.
17010         Reported by Michael Geng <linux@michaelgeng.de>.
17011
17012 2008-06-19  Bruno Haible  <bruno@clisp.org>
17013
17014         Fix CVS-ism.
17015         * doc/gnulib.texi: Include updated-stamp.texi.
17016         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
17017         (updated-stamp.texi): New rule.
17018         (gnulib.info): Depend on it.
17019         * doc/.gitignore: Add updated-stamp.texi.
17020         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
17021
17022 2008-06-19  Bruno Haible  <bruno@clisp.org>
17023
17024         * doc/Makefile (gnulib.info): Update and simplify dependencies.
17025         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
17026
17027 2008-06-19  Eric Blake  <ebb9@byu.net>
17028
17029         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
17030         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
17031         Reported by Stepan Kasal.
17032
17033 2008-06-18  Bruno Haible  <bruno@clisp.org>
17034
17035         * lib/fatal-signal.c (init_fatal_signals): Add comment.
17036         Reported by Eric Blake.
17037
17038 2008-06-18  Eric Blake  <ebb9@byu.net>
17039
17040         Work around cygwin 1.5.25 strsignal bug.
17041         * tests/test-strsignal.c: Allow for const char *.
17042         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
17043
17044 2008-06-18  Simon Josefsson  <simon@josefsson.org>
17045
17046         * users.txt: Update URL to article and add author/date
17047         information.
17048
17049 2008-06-17  Bruno Haible  <bruno@clisp.org>
17050
17051         New macro gl_DISABLE_THREADS.
17052         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
17053         if the user did not pass --enable-threads or --disable-threads option.
17054         (gl_DISABLE_THREADS): New macro.
17055         Reported by Eric Blake <ebb9@byu.net>.
17056
17057 2008-06-17  Bruno Haible  <bruno@clisp.org>
17058
17059         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
17060         when the macro ignores it.
17061         Based on a patch by Eric Blake <ebb9@byu.net>.
17062
17063 2008-06-17  Bruno Haible  <bruno@clisp.org>
17064
17065         * modules/tls (License): Change to LGPLv2+.
17066         Reported by Eric Blake.
17067
17068 2008-06-17  Eric Blake  <ebb9@byu.net>
17069
17070         Simplify c-stack prerequisites.
17071         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
17072         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
17073         no longer requires <ucontext.h> to exist.  Optimize setrlimit
17074         check.
17075         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
17076         <sys/resource.h>.
17077
17078         Move c-stack test into testsuite.
17079         * modules/c-stack-tests: New file.
17080         * lib/c-stack.c [DEBUG]: Move test program...
17081         * tests/test-c-stack.c: ...into this new file.  Skip rather than
17082         fail test if sigaltstack is lacking.
17083         * tests/test-c-stack.sh: New driver file.
17084
17085 2008-06-16  Eric Blake  <ebb9@byu.net>
17086
17087         Use raise module consistently.
17088         * modules/fatal-signal (Depends-on): Add raise.
17089         * modules/sigprocmask (Depends-on): Likewise.
17090         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
17091         * lib/sigprocmask.c (sigprocmask): Likewise.
17092         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
17093         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
17094
17095         Fix compliance bug in sigpending.
17096         * lib/sigprocmask.c (sigpending): Return pending array via
17097         parameter, not return value.
17098
17099 2008-06-14  Eric Blake  <ebb9@byu.net>
17100
17101         Improve obstack-printf test code.
17102         * tests/test-obstack-printf.c (test_function): Fix comment, and
17103         simplify usage of obstack_* in macros.  Add a test for coverage.
17104         Reported by Bruno Haible.
17105
17106 2008-06-14  Bruno Haible  <bruno@clisp.org>
17107
17108         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
17109         array size as a constant, not as a const variable.
17110         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
17111         AC_USE_SYSTEM_EXTENSIONS.
17112         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
17113         Test whether the obstack_printf function actually exists.
17114         * modules/obstack-printf (Depends-on): Add extensions.
17115         (Include): Remove obstack.h.
17116         * modules/obstack-printf-posix (Depends-on): Add extensions.
17117         (Include): Remove obstack.h.
17118
17119 2008-06-13  Eric Blake  <ebb9@byu.net>
17120
17121         Add obstack-printf and obstack-printf-posix modules.
17122         * modules/obstack-printf: New file.
17123         * modules/obstack-printf-posix: Likewise.
17124         * MODULES.html.sh (Misc): Mention them.
17125         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
17126         Likewise.
17127         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
17128         Likewise.
17129         * modules/stdio (Makefile.am): Accomodate new modules.
17130         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
17131         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
17132         Declare.
17133         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
17134         functions.
17135         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
17136         (gl_REPLACE_OBSTACK_PRINTF): New macros
17137         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
17138         * tests/test-obstack-printf.c: New file.
17139         * modules/obstack-printf-tests: Likewise.
17140         * modules/obstack-printf-posix-tests: Likewise.
17141
17142 2008-06-11  Bruno Haible  <bruno@clisp.org>
17143
17144         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
17145         * lib/open.c: Include errno.h.
17146         (open): Fail when attempting to write to a file that has a trailing
17147         slash.
17148         * tests/test-open.c (main): Test against trailing slash bug.
17149         * doc/posix-functions/open.texi: Mention the trailing slash bug.
17150
17151 2008-06-10  Bruno Haible  <bruno@clisp.org>
17152
17153         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
17154         for $? to work inside the trap command, with various /bin/sh-s.
17155         * tests/test-vc-list-files-cvs.sh: Likewise.
17156
17157 2008-06-10  Bruno Haible  <bruno@clisp.org>
17158
17159         * lib/acl-internal.h: Don't include gettext.h here.
17160         * lib/set-mode-acl.c: Include gettext.h here.
17161         * lib/copy-acl.c: Likewise.
17162
17163 2008-06-10  Bruno Haible  <bruno@clisp.org>
17164
17165         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
17166         * lib/wait-process.c (wait_subprocess): Likewise.
17167         * lib/execute.h (execute): Add termsigp argument.
17168         * lib/execute.c (execute): Likewise.
17169         * lib/csharpcomp.c (compile_csharp_using_pnet,
17170         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
17171         * lib/csharpexec.c (execute_csharp_using_pnet,
17172         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
17173         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
17174         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
17175         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
17176         is_jikes_present): Update.
17177         * lib/javaexec.c (execute_java_class): Update.
17178         * lib/javaversion.c (execute_and_read_line): Update.
17179         * NEWS: Document the changes.
17180         Reported by Eric Blake.
17181
17182 2008-06-10  Eric Blake  <ebb9@byu.net>
17183
17184         Add missing include.
17185         * tests/test-strstr.c (includes): Add <signal.h>.
17186         * tests/test-strcasestr.c (includes): Likewise.
17187         * tests/test-memmem.c (includes): Likewise.
17188
17189 2008-06-10  Bruno Haible  <bruno@clisp.org>
17190
17191         * lib/wait-process.c (wait_subprocess): Add an assertion.
17192
17193 2008-06-10  Bruno Haible  <bruno@clisp.org>
17194
17195         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
17196
17197 2008-06-10  Bruno Haible  <bruno@clisp.org>
17198
17199         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
17200         using alarm().
17201         * tests/test-strcasestr.c (main): Likewise.
17202         * tests/test-strstr.c (main): Likewise.
17203
17204 2008-06-09  Bruno Haible  <bruno@clisp.org>
17205
17206         Work around the Solaris 10 ACE ACLs ABI change.
17207         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
17208         declare if ACL_NO_TRIVIAL is present.
17209         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
17210         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
17211         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
17212         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
17213         define if ACL_NO_TRIVIAL is present.
17214         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
17215         and use the current ABI.
17216         (file_has_acl): Use same #if condition as elsewhere.
17217         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
17218         in use, and use the current ABI.
17219         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
17220         Reported by Jim Meyering.
17221
17222 2008-06-09  Eric Blake  <ebb9@byu.net>
17223
17224         Work around environments that (stupidly) ignore SIGALRM.
17225         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
17226         before using alarm().
17227         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17228         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
17229         Reported by Ian Beckwith <ianb@erislabs.net>.
17230
17231         Produce autobuild blurb earlier in log.
17232         * modules/autobuild (configure.ac-early): Move AB_INIT here.
17233
17234 2008-06-09  Jim Meyering  <meyering@redhat.com>
17235         and OndÅ™ej Vašík  <ovasik@redhat.com>
17236
17237         utimens.c: correct kernel bug work-around
17238         OndÅ™ej Vašík found that the invalid return value of 280 indicates
17239         failure, not success, and the kernel bug we're trying to work
17240         around affects not just the utimensat call, but also the fallback
17241         futimens call.
17242         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
17243         not success.
17244         [HAVE_FUTIMENS]: Use the same work-around, here.
17245
17246 2008-06-09  Jim Meyering  <meyering@redhat.com>
17247
17248         add more guards around definition of ACE_-related code
17249         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
17250         ALLOW and ACE_OWNER are also defined.
17251
17252 2008-06-08  Bruno Haible  <bruno@clisp.org>
17253
17254         * lib/acl-internal.h: Add me as co-author.
17255         * lib/file-has-acl.c: Likewise.
17256         * lib/set-mode-acl.c: Likewise.
17257         * lib/copy-acl.c: Likewise.
17258
17259 2008-06-08  Bruno Haible  <bruno@clisp.org>
17260
17261         Add support for AIX ACLs.
17262         * lib/acl-internal.h (acl_nontrivial): New declaration.
17263         * lib/file-has-acl.c (acl_nontrivial): New function.
17264         (file_has_acl): Add implementation using AIX 4 ACL API.
17265         * lib/set-mode-acl.c (qset_acl): Likewise.
17266         * lib/copy-acl.c (qcopy_acl): Likewise.
17267
17268 2008-06-08  Bruno Haible  <bruno@clisp.org>
17269
17270         Add support for HP-UX ACLs.
17271         * lib/acl-internal.h (acl_nontrivial): New declaration.
17272         * lib/file-has-acl.c (acl_nontrivial): New function.
17273         (file_has_acl): Add implementation using HP-UX 11 ACL API.
17274         * lib/set-mode-acl.c (qset_acl): Likewise.
17275         * lib/copy-acl.c (qcopy_acl): Likewise.
17276
17277 2008-06-08  Bruno Haible  <bruno@clisp.org>
17278
17279         Add support for Cygwin ACLs.
17280         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
17281         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
17282         the chmod_or_fchmod call.
17283         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
17284
17285 2008-06-08  Bruno Haible  <bruno@clisp.org>
17286
17287         Fix bug with setuid modes in Solaris 10+ code.
17288         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
17289         succeeded, when the mode contains some special bits.
17290
17291 2008-06-08  Bruno Haible  <bruno@clisp.org>
17292
17293         Add support for Solaris 7..10 ACLs.
17294         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
17295         declarations.
17296         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
17297         functions.
17298         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
17299         * lib/set-mode-acl.c (qset_acl): Likewise.
17300         * lib/copy-acl.c (qcopy_acl): Likewise.
17301
17302 2008-06-08  Bruno Haible  <bruno@clisp.org>
17303
17304         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
17305         declaration.
17306         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
17307         (acl_access_nontrivial): Remove MacOS X case.
17308         (file_has_acl): Use acl_extended_nontrivial.
17309         * lib/copy-acl.c (qcopy_acl): Likewise.
17310
17311 2008-06-08  Bruno Haible  <bruno@clisp.org>
17312
17313         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
17314
17315 2008-06-08  Jim Meyering  <meyering@redhat.com>
17316
17317         * modules/acl (Maintainer): Add Bruno Haible.
17318
17319 2008-06-07  Bruno Haible  <bruno@clisp.org>
17320
17321         Improve support for Tru64 ACLs.
17322         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
17323         ACL on OSF/1.
17324
17325 2008-06-07  Bruno Haible  <bruno@clisp.org>
17326
17327         Add support for MacOS X ACLs.
17328         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
17329         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
17330         * lib/set-mode-acl.c (qset_acl): Likewise.
17331         * lib/copy-acl.c (qcopy_acl): Likewise.
17332
17333 2008-06-07  Bruno Haible  <bruno@clisp.org>
17334
17335         Fix memory leak introduced on 2008-05-22.
17336         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
17337         use.
17338
17339 2008-06-07  Bruno Haible  <bruno@clisp.org>
17340
17341         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
17342         to construct an empty ACL.
17343
17344 2008-06-07  Bruno Haible  <bruno@clisp.org>
17345
17346         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
17347         precisely.
17348         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
17349
17350 2008-06-07  Bruno Haible  <bruno@clisp.org>
17351
17352         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
17353         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
17354
17355 2008-06-07  Bruno Haible  <bruno@clisp.org>
17356
17357         * doc/posix-functions/_setjmp.texi: Explain the use of this function
17358         regardless of POSIX.
17359         * doc/posix-functions/_longjmp.texi: Likewise.
17360         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
17361         SystemV platform in this case.
17362
17363 2008-06-06  Eric Blake  <ebb9@byu.net>
17364
17365         Document abort() bugs.
17366         * doc/posix-functions/abort.texi (abort): Mention anomalies.
17367
17368         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
17369         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
17370         sigsetjmp.
17371         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
17372         siglongjmp, but only as a macro.
17373         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
17374         is obsolete.
17375         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
17376
17377         Tweak documentation to cover cygwin argz bugs.
17378         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
17379         argz bug fix; no code change needed since no cygwin releases
17380         occurred between the last fix and the bug being tested.
17381         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
17382         module and recently fixed cygwin bugs.
17383         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
17384         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
17385         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
17386         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
17387         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
17388         Likewise.
17389         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
17390         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
17391         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
17392         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
17393         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
17394         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
17395         Likewise.
17396
17397         Avoid gcc warning on cygwin.
17398         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
17399         !ACL_NO_TRIVIAL]: Avoid unused variable.
17400
17401 2008-06-05  Eric Blake  <ebb9@byu.net>
17402
17403         Be tolerant of UNKNOWN version in gnulib-tool test dir.
17404         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
17405         git-version-gen fails to come up with a version.
17406         Reported by Simon Josefsson.
17407
17408 2008-06-05  Jim Meyering  <meyering@redhat.com>
17409             Paul Eggert  <eggert@cs.ucla.edu>
17410
17411         utimens.c: work around a probable Linux kernel bug
17412         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
17413         appears to be a kernel bug that causes utimensat to return 280
17414         instead of 0, indicating success.
17415
17416 2008-06-04  Bruno Haible  <bruno@clisp.org>
17417
17418         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
17419         2008-06-01 commit.
17420
17421 2008-06-04  Bruno Haible  <bruno@clisp.org>
17422
17423         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
17424         * lib/file-has-acl.c (acl_access_nontrivial): New function.
17425         (file_has_acl): Use it. Save errno afterwards.
17426         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
17427
17428 2008-06-03  Bruno Haible  <bruno@clisp.org>
17429
17430         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
17431         draft code. Simplify #ifs.
17432         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
17433         Put Solaris code after POSIX-draft code. Fix comments regarding
17434         Solaris 10, HP-UX. Mention Cygwin.
17435         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
17436
17437 2008-06-03  Eric Blake  <ebb9@byu.net>
17438
17439         Provide fallback for older kernels.
17440         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
17441         Provide runtime fallback if kernel lacks support.
17442         Reported by Mike Frysinger.
17443
17444 2008-06-02  Bruno Haible  <bruno@clisp.org>
17445
17446         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
17447         it exists.
17448
17449 2008-06-02  Bruno Haible  <bruno@clisp.org>
17450
17451         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
17452         * lib/copy-acl.c (qcopy_acl): Update comment.
17453
17454 2008-06-02  Bruno Haible  <bruno@clisp.org>
17455
17456         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
17457         like ACL APIs.
17458
17459 2008-06-02  Bruno Haible  <bruno@clisp.org>
17460
17461         * tests/test-file-has-acl.sh: Use different code for Cygwin.
17462         * tests/test-set-mode-acl.sh: Likewise.
17463         * tests/test-copy-acl.sh: Likewise.
17464         * tests/test-copy-file.sh: Likewise.
17465
17466 2008-06-02  Bruno Haible  <bruno@clisp.org>
17467
17468         * tests/test-file-has-acl.sh: Remove unused code.
17469
17470 2008-06-01  Bruno Haible  <bruno@clisp.org>
17471
17472         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
17473         (copy_acl): Just a wrapper around qcopy_acl that emits the error
17474         messages.
17475         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
17476
17477 2008-06-01  Bruno Haible  <bruno@clisp.org>
17478
17479         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
17480         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
17481         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
17482         APIs.
17483         * modules/acl-tests (configure.ac): Remove tests now contained in
17484         m4/acl.m4.
17485
17486 2008-06-02  Jim Meyering  <meyering@redhat.com>
17487
17488         announce-gen: use a better key-server host name
17489         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
17490         it may be more consistently reliable.  Suggested by Werner Koch
17491         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
17492
17493 2008-06-01  Bruno Haible  <bruno@clisp.org>
17494
17495         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
17496         Reported by Voroskoi Andras <voroskoi@gmail.com>.
17497
17498 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
17499
17500         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
17501
17502 2008-06-01  Bruno Haible  <bruno@clisp.org>
17503
17504         New ACL tests.
17505         * tests/test-file-has-acl.sh: New file.
17506         * tests/test-file-has-acl.c: New file.
17507         * tests/test-set-mode-acl.sh: New file.
17508         * tests/test-set-mode-acl.c: New file.
17509         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
17510         * tests/test-copy-acl.c: New file.
17511         * modules/acl-tests: New file, based on modules/copy-file-tests.
17512         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
17513         (Depends-on): Add acl-tests.
17514         (configure.ac): Remove checks.
17515         (Makefile.am): Don't create test-sameacls program here any more.
17516
17517 2008-06-01  Bruno Haible  <bruno@clisp.org>
17518
17519         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
17520         * tests/test-sameacls.c: Include progname.h.
17521         (main): Invoke set_program_name. Portability fixes for MacOS X,
17522         Solaris, HP-UX.
17523
17524 2008-06-01  Bruno Haible  <bruno@clisp.org>
17525
17526         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
17527         function.
17528         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
17529
17530 2008-06-01  Bruno Haible  <bruno@clisp.org>
17531
17532         * modules/rpmatch (Depends-on): Add strdup.
17533
17534 2008-06-01  Bruno Haible  <bruno@clisp.org>
17535
17536         * lib/pipe.c: Include unistd-safer.h.
17537         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
17538         * modules/pipe (Depends-on): Add unistd-safer.
17539
17540 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17541
17542         * modules/autobuild (configure.ac): Call AB_INIT.
17543
17544 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17545
17546         * tests/test-getaddrinfo.c: Don't print debug messages by default.
17547         Suggested by Bruno Haible <bruno@clisp.org>.
17548
17549 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17550
17551         * tests/test-base64.c: Cast size_t to unsigned long when invoking
17552         printf.  Use %lu instead of %d.  Reported by Bruno Haible
17553         <bruno@clisp.org>.
17554
17555 2008-05-29  Eric Blake  <ebb9@byu.net>
17556
17557         Prefer new POSIX 200x interfaces over futimesat.
17558         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
17559         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
17560         when available.
17561         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
17562
17563 2008-05-28  Bruno Haible  <bruno@clisp.org>
17564
17565         * modules/stpcpy (License): Change to LGPLv2+.
17566         Requested by David Lutterkort <dlutter@redhat.com>.
17567
17568 2008-05-27  Bruno Haible  <bruno@clisp.org>
17569
17570         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
17571         current mingw.
17572         Reported by Jose E. Marchesi <jemarch@gnu.org>.
17573
17574 2008-05-27  Bruno Haible  <bruno@clisp.org>
17575
17576         * modules/iconv_open (Link): New section, from module 'iconv'.
17577         * modules/striconv (Link): Likewise.
17578         * modules/striconveh (Link): Likewise.
17579         * modules/xstriconv (Link): Likewise.
17580         * modules/unicodeio (Link): Likewise.
17581         * modules/propername (Link): Likewise.
17582         Reported by Jim Meyering.
17583
17584 2008-05-26  Jim Meyering  <meyering@redhat.com>
17585
17586         sha256: do not artificially restrict buffer length to be < 2^32
17587         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
17588         uint32_t to size_t.
17589         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
17590         to match.
17591
17592         avoid unaligned access errors, e.g., on sparc
17593         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
17594         direct access through a possibly-unaligned uint64* pointer.
17595         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
17596         direct access through a possibly-unaligned uint32* pointer.
17597         Prompted by this patch from Tom "spot" Callaway:
17598         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
17599
17600         sha512.c: fix typo in comment
17601         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
17602
17603 2008-05-25  Bruno Haible  <bruno@clisp.org>
17604
17605         * lib/set-mode-acl.c: Renamed from lib/acl.c.
17606         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
17607         (Makefile.am): Update lib_SOURCES.
17608
17609 2008-05-25  Bruno Haible  <bruno@clisp.org>
17610
17611         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
17612
17613 2008-05-25  Jim Meyering  <meyering@redhat.com>
17614
17615         useless-if-before-free: freed expr may have white-space differences
17616         * build-aux/useless-if-before-free: Recognize cases in which the
17617         freed expression differs from the tested one in embedded white
17618         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
17619         $1 was used, so we can't make any regexp shy.  Improved tests now
17620         detect this.
17621
17622         useless-if-before-free: accept white space in the expression.
17623         * build-aux/useless-if-before-free: For now, any white space
17624         in the expression must be identical in the free argument.
17625
17626         useless-if-before-free: efficiency tweak
17627         * build-aux/useless-if-before-free: Make the expression-matching
17628         regexp "shy".
17629         Make the *outer* regexp shy, not the expr-matching one.
17630
17631         update code-in-comment to accept cast of free arg
17632         * build-aux/useless-if-before-free: Update regexp.
17633
17634 2008-05-25  Bruno Haible  <bruno@clisp.org>
17635
17636         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
17637         * modules/copy-file-tests (Files, Makefile.am): Update.
17638         * tests/test-copy-file.c (func_test_copy): Update.
17639
17640 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
17641
17642         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
17643
17644 2008-05-23  Bruno Haible  <bruno@clisp.org>
17645
17646         Improve support for ACLs on OSF/1.
17647         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
17648         Remove fallback for unknown flavors of ACLs.
17649
17650 2008-05-22  Bruno Haible  <bruno@clisp.org>
17651
17652         Add support for ACLs on OSF/1.
17653         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
17654         replacements.
17655         (acl_free_text): New macro fallback.
17656         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
17657         acl_free.
17658         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
17659         acl_free_text function. Require AC_C_INLINE.
17660
17661 2008-05-22  Bruno Haible  <bruno@clisp.org>
17662
17663         Make copy_acl work on MacOS X 10.5.
17664         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
17665         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
17666         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
17667         If MODE_INSIDE_ACL, don't assume that every system has the same text
17668         representation for ACLs as FreeBSD.
17669         * lib/copy-acl.c (copy_acl): Add support for platforms with
17670         !MODE_INSIDE_ACL.
17671         * lib/file-has-acl.c (file_has_acl): Likewise.
17672         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
17673         FreeBSD, MacOS X, or IRIX, respectively.
17674
17675 2008-05-22  Bruno Haible  <bruno@clisp.org>
17676
17677         * lib/acl.h: Don't include <sys/acl.h>.
17678         (GETACLCNT): Move fallback to lib/acl-internal.h.
17679         * lib/acl-internal.h: Include <sys/acl.h> here.
17680         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
17681
17682 2008-05-22  Bruno Haible  <bruno@clisp.org>
17683
17684         Split off copy_acl function to separate file.
17685         * lib/copy-acl.c: New file, extracted from lib/acl.c.
17686         * lib/acl.c (copy_acl): Moved function to separate file.
17687         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
17688         * modules/acl (Files): Add lib/copy-acl.c.
17689         (Makefiles.am): Augment lib_SOURCES.
17690
17691 2008-05-22  Bruno Haible  <bruno@clisp.org>
17692
17693         * modules/copy-file-tests: New file.
17694         * tests/test-copy-file.sh: New file.
17695         * tests/test-copy-file.c: New file.
17696         * tests/test-copy-file-sameacls.c: New file.
17697
17698 2008-05-22  Eric Blake  <ebb9@byu.net>
17699
17700         Avoid gcc warning.
17701         * tests/test-memcmp.c (main): Pass NULL indirectly.
17702
17703 2008-05-21  Bruno Haible  <bruno@clisp.org>
17704
17705         Add reference doc about ACLs.
17706         * doc/acl-resources.txt: New file.
17707         * doc/acl-cygwin.txt: New file.
17708
17709 2008-05-21  Bruno Haible  <bruno@clisp.org>
17710
17711         Avoid one more warning from gcc.
17712         * lib/vasnprintf.c (IF_LINT): Update comments.
17713         (VASNPRINTF): Use it also for the 'prefix' array initializer.
17714
17715 2008-05-21  Jim Meyering  <meyering@redhat.com>
17716
17717         avoid a warning from gcc
17718         * lib/vasnprintf.c (IF_LINT): Define.
17719         (scale10_round_decimal_long_double):
17720         Use it to avoid a "may be used uninitialized" warning.
17721         (scale10_round_decimal_double): Likewise.
17722
17723 2008-05-21  Simon Josefsson  <simon@josefsson.org>
17724
17725         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
17726         declared.
17727
17728 2008-05-20  Bruno Haible  <bruno@clisp.org>
17729
17730         * tests/test-memcmp.c (main): Test also the sign of the result. Test
17731         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
17732
17733 2008-05-20  Simon Josefsson  <simon@josefsson.org>
17734
17735         * modules/memcmp-tests: New file.
17736         * tests/test-memcmp.c: New file.
17737
17738 2008-05-19  Bruno Haible  <bruno@clisp.org>
17739
17740         * modules/propername (Notice, configure.ac): Put quoted "..." into
17741         --keyword option.
17742         * lib/propername.h: Update comments accordingly.
17743         Reported by Eric Blake.
17744
17745 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
17746
17747         * modules/getpass-gnu (Depends-on): Add fseeko.
17748
17749 2008-05-19  Simon Josefsson  <simon@josefsson.org>
17750
17751         * modules/base64-tests: New file.
17752
17753 2008-05-19  Bo Borgerson <gigabo@gmail.com>
17754
17755         * lib/base64.c (base64_decode_ctx): If a decode context structure
17756         was passed in use it to ignore newlines.  If a context structure
17757         was _not_ passed in, continue to treat newlines as garbage (this
17758         is the historical behavior).  Formerly base64_decode.
17759         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
17760         takes a decode context structure.
17761         * lib/base64.h (base64_decode): Macro for four-argument calls.
17762         (base64_decode_alloc): Likewise.
17763         * lib/base64.c (base64_decode_ctx): If a decode context structure
17764         was passed in use it to ignore newlines.  If a context structure
17765         was _not_ passed in, continue to treat newlines as garbage (this
17766         is the historical behavior).  Formerly base64_decode.
17767         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
17768         takes a decode context structure.
17769         * lib/base64.h (base64_decode): Macro for four-argument calls.
17770         (base64_decode_alloc): Likewise.
17771
17772 2008-05-19  Jim Meyering  <meyering@redhat.com>
17773
17774         avoid a warning from gcc
17775         * lib/trim.c (IF_LINT): Define.
17776         (trim2): Use it to avoid a "may be used uninitialized" warning.
17777
17778         Fix doc typo.
17779         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
17780
17781 2008-05-19  Bruno Haible  <bruno@clisp.org>
17782
17783         * doc/glibc-functions/getpass.texi: Document limits of other
17784         implementations.
17785
17786 2008-05-19  Simon Josefsson  <simon@josefsson.org>
17787             Bruno Haible <bruno@clisp.org>
17788
17789         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
17790
17791 2008-05-18  Bruno Haible  <bruno@clisp.org>
17792
17793         * modules/propername: New file, from GNU gettext.
17794         * lib/propername.h: New file, from GNU gettext.
17795         * lib/propername.c: New file, from GNU gettext.
17796         * MODULES.html.sh (Internationalization functions): Add propername.
17797
17798 2008-05-16  Jim Meyering  <meyering@redhat.com>
17799             Bruno Haible  <bruno@clisp.org>
17800
17801         Avoid some warnings from "gcc -Wshadow".
17802         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
17803
17804 2008-05-15  Eric Blake  <ebb9@byu.net>
17805
17806         Extend previous patch to cygwin 1.7.0.
17807         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
17808         fast implementation in cygwin >= 1.7.0.
17809         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17810         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17811
17812 2008-05-15  Bruno Haible  <bruno@clisp.org>
17813
17814         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
17815         implementation in glibc >= 2.9.
17816         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17817         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17818
17819 2008-05-15  Bruno Haible  <bruno@clisp.org>
17820
17821         * MODULES.html.sh (Internationalization functions): Remove linebreak.
17822         (Unicode string functions): Add unilbrk/*.
17823         Reported by Karl Berry.
17824
17825 2008-05-15  Eric Blake  <ebb9@byu.net>
17826
17827         Fix violation of <stdbool.h> replacement in regex.
17828         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
17829         * lib/regexec.c (re_search_internal): Likewise.
17830         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
17831
17832 2008-05-15  Jim Meyering  <meyering@redhat.com>
17833
17834         avoid distracting test output when git or cvs is not found
17835         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
17836         * tests/test-vc-list-files-git.sh: Likewise.
17837
17838 2008-05-15  Eric Blake  <ebb9@byu.net>
17839
17840         Glibc finally accepted the memmem speedup code, bugzilla #5514.
17841         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
17842         glibc version.
17843         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
17844         * doc/posix-functions/strstr.texi (strstr): Likewise.
17845         * lib/str-two-way.h (MAX): Sychronize with glibc.
17846
17847 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
17848
17849         * lib/regcomp.c (optimize_utf8): Add a note on why we test
17850         opr.ctx_type.
17851         (calc_first): Initialize constraint field.
17852         (duplicate_node_closure): Use it instead of special casing ANCHORS.
17853         Fix grammar.
17854         (duplicate_node): Merge constraint field for all node types.
17855         (calc_eclosure_iter): Look at constraint field for all node types.
17856         * lib/regex_internal.c (create_cd_newstate): Don't look at
17857         opr.ctx_type.
17858
17859 2008-05-14  Bruno Haible  <bruno@clisp.org>
17860
17861         Help GCC to do better code generation.
17862         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
17863         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
17864         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
17865         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
17866         Declare with attribute 'malloc' if supported.
17867
17868 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
17869
17870         use "echo STR|wc -c" rather than unportable "expr length STR"
17871         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
17872         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
17873
17874 2008-05-14  Jim Meyering  <meyering@redhat.com>
17875
17876         use dd ibs=$n count=1 ... rather than less-portable head -c$n
17877         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
17878         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
17879         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
17880         via Collin Lasse.
17881
17882 2008-05-14  Eric Blake  <ebb9@byu.net>
17883
17884         Avoid quadratic growth in gl_LIBSOURCES.
17885         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
17886         Suggested by Bruno Haible.
17887
17888         Test xmemdup0.
17889         * modules/xmemdup0-tests: New file.
17890         * tests/test-xmemdup0.c: Likewise.
17891
17892 2008-05-13  Eric Blake  <ebb9@byu.net>
17893
17894         Split xmemdup0 into its own module.
17895         * modules/xmemdup0: New file.
17896         * lib/xmemdup0.h: Likewise.
17897         * lib/xmemdup0.c: Likewise.
17898         * MODULES.html.sh (Memory management functions): Add xmemdup0.
17899         * lib/xalloc.h (xmemdup0): Remove.
17900         * lib/xmalloc.c (xmemdup0): Likewise.
17901
17902 2008-05-13  Eric Blake  <ebb9@byu.net>
17903             Bruno Haible  <bruno@clisp.org>
17904
17905         Reduce number of forks required during autoconf.
17906         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
17907         and gl_LIBSOURCES_DIR.
17908         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
17909         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
17910         m4_syscmd per file.
17911         <m4_foreach_w>: Move...
17912         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
17913
17914 2008-05-13  Eric Blake  <ebb9@byu.net>
17915
17916         * gnulib-tool: Fix various comment typos.
17917
17918 2008-05-12  Bruno Haible  <bruno@clisp.org>
17919
17920         Tailor the linebreaking algorithm.
17921         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
17922
17923 2008-05-12  Bruno Haible  <bruno@clisp.org>
17924
17925         Update to Unicode 5.0.0.
17926         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
17927         LBP_JV, LBP_JT. Redistribute values.
17928         (unilbrk_table): Change size.
17929         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
17930         Unicode TR#14 rev. 22.
17931         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
17932         LBP_JV, LBP_JT. Redistribute values.
17933         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
17934         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
17935         Update.
17936         * lib/unilbrk/lbrkprop1.h: Regenerated.
17937         * lib/unilbrk/lbrkprop2.h: Regenerated.
17938         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
17939         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
17940         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
17941         Likewise.
17942         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
17943         Likewise.
17944         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
17945         result.
17946         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
17947         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
17948         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
17949         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
17950         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
17951         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
17952
17953 2008-05-11  Bruno Haible  <bruno@clisp.org>
17954
17955         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
17956
17957 2008-05-11  Bruno Haible  <bruno@clisp.org>
17958
17959         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
17960         * modules/unilbrk/gen-lbrk: New file.
17961
17962 2008-05-11  Bruno Haible  <bruno@clisp.org>
17963
17964         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
17965         * m4/sha512.m4 (gl_SHA512): Likewise.
17966
17967 2008-05-11  Jim Meyering  <meyering@redhat.com>
17968
17969         New modules: crypto/sha256, crypto/sha512 (from coreutils)
17970         * modules/crypto/sha256: New file.
17971         * modules/crypto/sha512: Likewise.
17972         * lib/sha256.c: Likewise.
17973         * lib/sha256.h: Likewise.
17974         * lib/sha512.c: Likewise.
17975         * lib/sha512.h: Likewise.
17976         * lib/u64.h: Likewise.
17977         * m4/sha256.m4: Likewise.
17978         * m4/sha512.m4: Likewise.
17979         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
17980
17981 2008-05-10  Bruno Haible  <bruno@clisp.org>
17982
17983         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
17984         (Input/Output <stdio.h>): Add xprintf.
17985         (Signal handling <signal.h>): Add strsignal.
17986         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
17987         (Core language properties): Add func.
17988         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
17989         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
17990         strings.
17991         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
17992         (Input/output): New section.
17993         (File system functions): Add openat-die, stat-macros.
17994         (Networking functions): Add sockets.
17995         (Unicode string functions): Add unictype/*.
17996         (Support for building libraries and executables): Add gperf.
17997         (Support for building documentation): Add agpl-3.0.
17998         (Misc): Add nocrash.
17999
18000 2008-05-10  Bruno Haible  <bruno@clisp.org>
18001
18002         * modules/unictype/gen-ctype: New file.
18003
18004 2008-05-10  Jim Meyering  <meyering@redhat.com>
18005
18006         Make chdir-safer.c more efficient on a system with no symlinks.
18007         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
18008         also if ELOOP is zero.  Suggested by Bruno Haible.
18009
18010         Make chdir-safer.c slightly safer.
18011         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
18012         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
18013
18014         Avoid compile failure on systems without ELOOP (like mingw).
18015         * lib/chdir-safer.c (ELOOP): Define if not already defined.
18016         Reported by Bruno Haible.
18017
18018 2008-05-10  Bruno Haible  <bruno@clisp.org>
18019
18020         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
18021         (is_utf8_encoding): Use a case-insensitive comparison.
18022         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
18023         streq.
18024
18025 2008-05-10  Bruno Haible  <bruno@clisp.org>
18026
18027         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
18028         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
18029         * lib/unilbrk/ulc-common.h (iconv_string_length,
18030         iconv_string_keeping_offsets): Remove declarations.
18031         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
18032         Don't include <iconv.h>, streq.h, xsize.h.
18033         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
18034         conversion.
18035         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
18036         <iconv.h>, streq.h, xsize.h.
18037         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
18038         conversion.
18039         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
18040         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
18041         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
18042         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
18043
18044 2008-05-10  Bruno Haible  <bruno@clisp.org>
18045
18046         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
18047         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
18048
18049         * modules/unilbrk/u32-width-linebreaks-tests: New file.
18050         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
18051
18052         * modules/unilbrk/u16-width-linebreaks-tests: New file.
18053         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
18054
18055         * modules/unilbrk/u8-width-linebreaks-tests: New file.
18056         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
18057
18058         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
18059         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
18060
18061         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
18062         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
18063
18064         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
18065         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
18066
18067         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
18068         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
18069
18070 2008-05-10  Bruno Haible  <bruno@clisp.org>
18071
18072         Split up 'linebreak' module.
18073         * lib/unilbrk.h: New file, based on lib/linebreak.h.
18074         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
18075         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
18076         modifications.
18077         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
18078         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
18079         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
18080         lib/linebreak.c.
18081         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
18082         lib/linebreak.c.
18083         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
18084         lib/linebreak.c.
18085         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
18086         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
18087         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
18088         lib/linebreak.c.
18089         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
18090         lib/linebreak.c.
18091         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
18092         lib/linebreak.c.
18093         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
18094         lib/linebreak.c.
18095         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
18096         lib/linebreak.c.
18097         * modules/unilbrk/base: New file.
18098         * modules/unilbrk/tables: New file.
18099         * modules/unilbrk/u8-possible-linebreaks: New file.
18100         * modules/unilbrk/u16-possible-linebreaks: New file.
18101         * modules/unilbrk/u32-possible-linebreaks: New file.
18102         * modules/unilbrk/ulc-common: New file.
18103         * modules/unilbrk/ulc-possible-linebreaks: New file.
18104         * modules/unilbrk/u8-width-linebreaks: New file.
18105         * modules/unilbrk/u16-width-linebreaks: New file.
18106         * modules/unilbrk/u32-width-linebreaks: New file.
18107         * modules/unilbrk/ulc-width-linebreaks: New file.
18108         * lib/linebreak.h: Remove file.
18109         * lib/linebreak.c: Remove file.
18110         * m4/linebreak.m4: Remove file.
18111         * modules/linebreak: Remove file.
18112         * NEWS: Mention the changes.
18113
18114 2008-05-09  Eric Blake  <ebb9@byu.net>
18115
18116         Add xmemdup0.
18117         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
18118         implementation.
18119         * lib/xmalloc.c (xmemdup0): New C implementation.
18120
18121 2008-05-08  Bruno Haible  <bruno@clisp.org>
18122
18123         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
18124
18125 2008-05-07  Eric Blake  <ebb9@byu.net>
18126
18127         Support cross-compilation of <wctype.h>.
18128         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
18129         AC_CACHE_CHECK.
18130
18131 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
18132
18133         * build-aux/vc-list-files: Add support for bzr.
18134
18135 2008-05-03  Jim Meyering  <meyering@redhat.com>
18136
18137         avoid failed assertion with tight malloc
18138         * tests/test-getndelim2.c: Correct an off-by-one assertion.
18139
18140 2008-05-03  Simon Josefsson  <simon@josefsson.org>
18141
18142         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
18143         are needed from arpa/inet.h.
18144         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
18145         Reported by Bruno Haible.
18146
18147 2008-05-02  Jim Meyering  <meyering@redhat.com>
18148
18149         avoid compilation error on FreeBSD 6
18150         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
18151
18152 2008-05-01  Jim Meyering  <meyering@redhat.com>
18153
18154         useless-if-before-free: correct --help's exit status description
18155         * build-aux/useless-if-before-free (usage): Like grep, exit 0
18156         for one or more matches, etc.  Reported by Bruno Haible.
18157
18158         vc-list-files: make the stand-alone gnulib test work
18159         * modules/vc-list-files-tests (configure.ac):
18160         Define and AC_SUBST abs_aux_dir.
18161         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
18162         $(abs_top_srcdir) to each script and having each of them
18163         duplicate the work of setting PATH, set PATH here, using
18164         the new variable, abs_aux_dir instead.
18165         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
18166         * tests/test-vc-list-files-git.sh: Likewise.
18167         Reported by Bruno Haible.
18168
18169 2008-05-01  Bruno Haible  <bruno@clisp.org>
18170
18171         * lib/getndelim2.c (getndelim2): Fix newsize computation during
18172         reallocation. Rename 'done' to 'found_delimiter'.
18173
18174 2008-05-01  Jim Meyering  <meyering@redhat.com>
18175
18176         vc-list-files: accommodate /bin/sh like the one from Solaris 10
18177         * build-aux/vc-list-files: Use `...`, not $(...).
18178
18179 2008-04-30  Jim Meyering  <meyering@redhat.com>
18180
18181         add tests for vc-list-files
18182         * modules/vc-list-files-tests: New module.
18183         * tests/test-vc-list-files-cvs.sh: New file.
18184         * tests/test-vc-list-files-git.sh: New file.
18185
18186         avoid a warning from gcc
18187         * lib/getndelim2.c (IF_LINT): Define.
18188         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
18189
18190         vc-list-files: work properly with build-aux/cvsu, too
18191         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
18192         to all cvs-based clauses.
18193
18194         vc-list-files: work properly in the CVS+awk case, too
18195         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
18196
18197         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
18198         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
18199         take more than one file argument, so .  Add quotes, just in case $dir
18200         ever contains a shell meta-character.  Prompted by Soren Hansen in
18201         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
18202
18203 2008-04-29  Eric Blake  <ebb9@byu.net>
18204
18205         Optimize getndelim2 to use block operations when possible.
18206         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
18207         freadseek, and memchr2.
18208         * lib/getndelim2.c (getndelim2): Use them for block reads.
18209
18210 2008-04-29  Bruno Haible  <bruno@clisp.org>
18211
18212         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
18213         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
18214         * modules/inet_ntop (Depends-on): Add extensions.
18215         * modules/inet_pton (Depends-on): Likewise.
18216         Reported by Simon Josefsson.
18217
18218 2008-04-29  Jim Meyering  <meyering@redhat.com>
18219
18220         When the is more than one match in a block, match all of them.
18221         * build-aux/useless-if-before-free: Iterate through each block
18222         until there are no more matches.
18223
18224         Fix broken useless-if-before-free script.
18225         * build-aux/useless-if-before-free: Fix typo: missing "?" after
18226         the expression to match cast of argument to free-like function.
18227
18228 2008-04-29  Eric Blake  <ebb9@byu.net>
18229
18230         Use new header.
18231         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
18232
18233 2008-04-29  Jim Meyering  <meyering@redhat.com>
18234
18235         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
18236         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
18237         by gnulib to exist and to declare e.g., inet_ntop.
18238         Don't include "inet_ntop.h", now removed.
18239
18240         * m4/arpa_inet_h.m4: Remove trailing blanks.
18241
18242 2008-04-29  Eric Blake  <ebb9@byu.net>
18243
18244         Silence valgrind on safe reads beyond potential array bounds.
18245         * lib/rawmemchr.valgrind: New file.
18246         * lib/strchrnul.valgrind: Likewise.
18247         * modules/rawmemchr (Files): Distribute new file.
18248         * modules/strchrnul (Files): Likewise.
18249         Suggested by Bruno Haible.
18250
18251 2008-04-29  Bruno Haible  <bruno@clisp.org>
18252
18253         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
18254         (inet_ntop, inet_pton): Change portability warning's wording.
18255         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
18256         Invoke gl_CHECK_NEXT_HEADERS.
18257         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
18258         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
18259         set ARPA_INET_H.
18260         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
18261         * modules/arpa_inet (Description): No longer only for systems that
18262         lack it.
18263         (Depends-on): Add include_next.
18264         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
18265         HAVE_ARPA_INET_H.
18266
18267 2008-04-29  Jim Meyering  <meyering@redhat.com>
18268
18269         * modules/mkdir (License): Re-license as LGPLv2+.
18270
18271 2008-04-29  Bruno Haible  <bruno@clisp.org>
18272
18273         * modules/rawmemchr (Maintainer): Set to Eric.
18274         * modules/strchrnul (Maintainer): Likewise.
18275
18276 2008-04-29  Simon Josefsson  <simon@josefsson.org>
18277
18278         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
18279         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
18280
18281         * modules/arpa_inet (arpa/inet.h): Use them.
18282
18283 2008-04-28  Eric Blake  <ebb9@byu.net>
18284
18285         Test getndelim2.
18286         * modules/getndelim2-tests: New file.
18287         * tests/test-getndelim2.c: Likewise.
18288         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
18289         stream.
18290         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
18291
18292         * MODULES.html.sh: Document new module.
18293
18294 2008-04-20  Bruno Haible  <bruno@clisp.org>
18295
18296         * lib/c-stack.c (die): Use raise.
18297         * modules/c-stack (Depends-on): Add raise.
18298
18299 2008-04-28  Bruno Haible  <bruno@clisp.org>
18300
18301         Expect rpmatch to be declared.
18302         * lib/yesno.c (rpmatch): Remove declaration.
18303
18304         Declare rpmatch.
18305         * lib/stdlib.in.h (rpmatch): New declaration.
18306         * lib/rpmatch.c: Include <stdlib.h> first.
18307         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
18308         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
18309         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
18310         HAVE_RPMATCH.
18311         * modules/rpmatch (Depends-on): Add stdlib, extensions.
18312         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
18313         (Include): Set to <stdlib.h>.
18314         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
18315         HAVE_RPMATCH.
18316         * NEWS: Document the change.
18317
18318 2008-04-28  Bruno Haible  <bruno@clisp.org>
18319
18320         Change rpmatch to use nl_langinfo when appropriate.
18321         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
18322         (N_): New macro.
18323         (localized_pattern): New function/macro.
18324         (try): Remove match, nomatch arguments. Copy the pattern into safe
18325         memory before caching it.
18326         (rpmatch): Use localized_pattern. Add translator comments.
18327         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
18328         Suggested by Eric Blake.
18329         * modules/rpmatch (Depends-on): Add stdbool.
18330
18331 2008-04-28  Eric Blake  <ebb9@byu.net>
18332
18333         Add rawmemchr module, matching glibc.
18334         * modules/string (Makefile.am): New indicator.
18335         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
18336         * lib/string.in.h (rawmemchr): Declare when appropriate.
18337         * modules/rawmemchr: New file.
18338         * m4/rawmemchr.m4: Likewise.
18339         * lib/rawmemchr.c: Likewise.
18340         * modules/rawmemchr-tests: Likewise.
18341         * tests/test-rawmemchr.c: Likewise.
18342         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
18343         module.
18344         * modules/strchrnul (Depends-on): Add rawmemchr.
18345         * lib/strchrnul.c (strchrnul): Optimize a corner case.
18346
18347         Whitespace cleanup.
18348         * tests/test-strchrnul.c: Reindent.
18349         * lib/strchrnul.c: Likewise.
18350
18351         Optimize and test strchrnul.
18352         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
18353         * modules/strchrnul-tests: New file.
18354         * tests/test-strchrnul.c: Likewise.
18355
18356         Remove intprops dependency.
18357         * modules/memchr (Depends-on): Remove intprops.
18358         * modules/memrchr (Depends-on): Likewise.
18359         * modules/memchr2 (Depends-on): Likewise.
18360         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
18361         * lib/memrchr.c (__memrchr): Likewise.
18362         * lib/memrchr2.c (memchr2): Likewise.
18363         Reported by Simon Josefsson.
18364
18365 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18366
18367         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
18368         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18369
18370 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18371
18372         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
18373
18374         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
18375
18376         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
18377
18378         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
18379         declarations.
18380         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
18381
18382         * m4/inet_pton.m4: Don't check for header files.
18383
18384         * m4/inet_ntop.m4: Don't check for header files.
18385
18386 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18387
18388         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
18389         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
18390         trigger for cygwin).
18391         Reported by Bruno Haible  <bruno@clisp.org>.
18392
18393 2008-04-28  Bruno Haible  <bruno@clisp.org>
18394
18395         * doc/posix-functions/strdup.texi: Mention mingw problem.
18396
18397 2008-04-27  Bruno Haible  <bruno@clisp.org>
18398
18399         * modules/stat-time-tests (Depends-on): Add sleep.
18400         * tests/test-stat-time.c (force_unlink): New function.
18401         (cleanup): Use it.
18402         (test_mtime): Remove the ctime related tests.
18403         (test_ctime): New function, containing the ctime related tests.
18404         (main): Call test_ctime, except on native Windows platforms.
18405
18406 2008-04-27  Bruno Haible  <bruno@clisp.org>
18407
18408         * lib/rpmatch.c (rpmatch): Add some comments.
18409         Reported by James Youngman <jay@gnu.org>.
18410
18411 2008-04-27  Bruno Haible  <bruno@clisp.org>
18412
18413         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
18414         quiet NaNs.
18415
18416 2008-04-27  Bruno Haible  <bruno@clisp.org>
18417
18418         Make test-yesno.sh work on mingw.
18419         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
18420         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
18421         (main): Set stdin to binary mode.
18422         * modules/yesno-tests (Depends-on): Add binary-io.
18423
18424 2008-04-27  Bruno Haible  <bruno@clisp.org>
18425
18426         Fix 'isfinite' on x86, x86_64, ia64 platforms.
18427         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
18428         argument that lie outside the IEEE 854 domain.
18429         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
18430         (gl_ISFINITE): Use it.
18431         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
18432
18433 2008-04-27  Bruno Haible  <bruno@clisp.org>
18434
18435         Allow local renaming in config.h.
18436         * lib/memrchr.c (memrchr): Don't undefine outside libc.
18437
18438 2008-04-27  Bruno Haible  <bruno@clisp.org>
18439
18440         * lib/memchr.c (__memchr): Change type of 'i'.
18441         * lib/memchr2.c (memchr2): Likewise.
18442
18443 2008-04-26  Eric Blake  <ebb9@byu.net>
18444         and Bruno Haible  <bruno@clisp.org>
18445
18446         Optimize and test memrchr.
18447         * modules/memrchr (Depends-on): Add intprops.
18448         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
18449         * modules/memrchr-tests: New file.
18450         * tests/test-memrchr.c: New file.
18451
18452 2008-04-26  Bruno Haible  <bruno@clisp.org>
18453
18454         Add tentative support for DragonFly BSD.
18455         * lib/stdio-impl.h: Add macros for DragonFly BSD.
18456         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
18457         fp.
18458         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
18459         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
18460         * lib/fpurge.c (fpurge): Likewise.
18461         * lib/freadable.c (freaadable): Likewise.
18462         * lib/freadahead.c (freadahead): Likewise.
18463         * lib/freading.c (freading): Likewise.
18464         * lib/freadptr.c (freadptr): Likewise.
18465         * lib/freadseek.c (freadptrinc): Likewise.
18466         * lib/fseeko.c (fseeko): Likewise.
18467         * lib/fseterr.c (fseterr): Likewise.
18468         * lib/fwritable.c (fwritable): Likewise.
18469         * lib/fwriting.c (fwriting): Likewise.
18470
18471 2008-04-26  Bruno Haible  <bruno@clisp.org>
18472
18473         * lib/stdio-impl.h: New file.
18474         * lib/fbufmode.c: Include stdio-impl.h.
18475         (fbufmode): Use fp_, remove redundant #defines.
18476         * lib/fflush.c: Include stdio-impl.h.
18477         (clear_ungetc_buffer): Remove redundant #defines.
18478         * lib/fpurge.c: Include stdio-impl.h.
18479         (fpurge): Remove redundant #defines.
18480         * lib/freadable.c: Include stdio-impl.h.
18481         (freadable): Remove redundant #defines.
18482         * lib/freadahead.c: Include stdio-impl.h.
18483         (freadahead): Remove redundant #defines.
18484         * lib/freading.c: Include stdio-impl.h.
18485         (freading): Remove redundant #defines.
18486         * lib/freadptr.c: Include stdio-impl.h.
18487         (freadptr): Remove redundant #defines.
18488         * lib/freadseek.c: Include stdio-impl.h.
18489         (freadptrinc): Remove redundant #defines.
18490         * lib/fseeko.c: Include stdio-impl.h.
18491         (rpl_fseeko): Remove redundant #defines.
18492         * lib/fseterr.c: Include stdio-impl.h.
18493         (fseterr): Remove redundant #defines.
18494         * lib/fwritable.c: Include stdio-impl.h.
18495         (fwritable: Remove redundant #defines.
18496         * lib/fwriting.c: Include stdio-impl.h.
18497         (fwriting): Remove redundant #defines.
18498         * modules/fbufmode (Files): Add lib/stdio-impl.h.
18499         * modules/fflush (Files): Likewise.
18500         * modules/fpurge (Files): Likewise.
18501         * modules/freadable (Files): Likewise.
18502         * modules/freadahead (Files): Likewise.
18503         * modules/freading (Files): Likewise.
18504         * modules/freadptr (Files): Likewise.
18505         * modules/freadseek (Files): Likewise.
18506         * modules/fseeko (Files): Likewise.
18507         * modules/fseterr (Files): Likewise.
18508         * modules/fwritable (Files): Likewise.
18509         * modules/fwriting (Files): Likewise.
18510
18511 2008-04-26  Bruno Haible  <bruno@clisp.org>
18512
18513         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
18514         restore_seek_optimization, update_fpos_cache): New functions, extracted
18515         from rpl_fflush.
18516         (rpl_fflush): Use them.
18517         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
18518         (gl_REPLACE_FFLUSH): Use it.
18519
18520 2008-04-26  Bruno Haible  <bruno@clisp.org>
18521
18522         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
18523         on Solaris.
18524         * tests/test-xstrtoimax.sh: Likewise.
18525         * tests/test-xstrtoumax.sh: Likewise.
18526         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18527
18528 2008-04-26  Bruno Haible  <bruno@clisp.org>
18529
18530         * modules/memchr-tests: New file.
18531         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
18532
18533 2008-04-26  Eric Blake  <ebb9@byu.net>
18534             Bruno Haible  <bruno@clisp.org>
18535
18536         * lib/memchr.c: Include intprops.h.
18537         (__memchr): Optimize parallel detection of matching bytes. Rename local
18538         variables. Add explanatory comments.
18539
18540 2008-04-26  Bruno Haible  <bruno@clisp.org>
18541
18542         Fix module 'memchr', broken since 2000-10-28.
18543         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
18544
18545 2008-04-26  Bruno Haible  <bruno@clisp.org>
18546
18547         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
18548         comments.
18549
18550 2008-04-25  Eric Blake  <ebb9@byu.net>
18551
18552         Use native fstatat on cygwin 1.7.0.
18553         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
18554         first.
18555
18556 2008-04-23  Eric Blake  <ebb9@byu.net>
18557
18558         Improve memchr2 performance.
18559         * lib/memchr2.c (memchr2): Further optimize parallel detection of
18560         NUL bytes.
18561         * modules/memchr2 (Depends-on): Use intprops.h.
18562
18563 2008-04-23  Simon Josefsson  <simon@josefsson.org>
18564
18565         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
18566         an inline function instead of a CPP macro.  Patch by Ben Pfaff
18567         <blp@cs.stanford.edu>.
18568
18569 2008-04-23  Simon Josefsson  <simon@josefsson.org>
18570
18571         * lib/arpa_inet.in.h: New file.
18572
18573         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
18574         (Makefile.am): Sed in substitute header file.
18575
18576         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
18577         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
18578
18579         * modules/inet_ntop (configure.ac): Use
18580         gl_ARPA_INET_MODULE_INDICATOR.
18581
18582         * modules/inet_pton (configure.ac): Use
18583         gl_ARPA_INET_MODULE_INDICATOR.
18584
18585 2008-04-22  Jim Meyering  <meyering@redhat.com>
18586
18587         * modules/verify (License): Re-license as LGPLv2+.
18588
18589 2008-04-22  Simon Josefsson  <simon@josefsson.org>
18590
18591         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
18592         parameter to void* as per POSIX standard (MinGW uses char*).
18593
18594 2008-04-21  Bruno Haible  <bruno@clisp.org>
18595
18596         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
18597         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
18598         Define to replacements if REPLACE_ISWCNTRL is 1.
18599         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
18600         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
18601         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
18602         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
18603         what it fixes.
18604         * doc/posix-functions/iswalpha.texi: Likewise.
18605         * doc/posix-functions/iswblank.texi: Likewise.
18606         * doc/posix-functions/iswcntrl.texi: Likewise.
18607         * doc/posix-functions/iswdigit.texi: Likewise.
18608         * doc/posix-functions/iswgraph.texi: Likewise.
18609         * doc/posix-functions/iswlower.texi: Likewise.
18610         * doc/posix-functions/iswprint.texi: Likewise.
18611         * doc/posix-functions/iswpunct.texi: Likewise.
18612         * doc/posix-functions/iswspace.texi: Likewise.
18613         * doc/posix-functions/iswupper.texi: Likewise.
18614         * doc/posix-functions/iswxdigit.texi: Likewise.
18615         Reported by Alain Guibert.
18616
18617 2008-04-21  Bruno Haible  <bruno@clisp.org>
18618
18619         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
18620         Patch by Alain Guibert.
18621
18622 2008-04-21  Bruno Haible  <bruno@clisp.org>
18623
18624         Fix test failures on mingw.
18625         * tests/test-xstrtol.c (print_no_progname): New function.
18626         (main): Install it in error_print_progname hook.
18627         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
18628         * tests/test-xstrtoimax.sh: Likewise.
18629         * tests/test-xstrtoumax.sh: Likewise.
18630
18631 2008-04-21  Bruno Haible  <bruno@clisp.org>
18632
18633         Fix test failure on mingw.
18634         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
18635
18636 2008-04-21  Bruno Haible  <bruno@clisp.org>
18637
18638         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
18639         Actually assign a value.
18640
18641 2008-04-20  Bruno Haible  <bruno@clisp.org>
18642
18643         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
18644         take 2.
18645         * lib/canonicalize.c (canonicalize_file_name): Elide if the
18646         'canonicalize-lgpl' module is also used.
18647         * lib/canonicalize-lgpl.c: Undo last change.
18648         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
18649
18650 2008-04-20  Bruno Haible  <bruno@clisp.org>
18651
18652         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
18653         config.h. Provide _mkdir based fallback for mingw.
18654         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
18655         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
18656         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
18657         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
18658         rather than defining mkdir in config.h.
18659         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
18660         (gl_SYS_STAT_H_DEFAULTS): New macro.
18661         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
18662         HAVE_IO_H any more.
18663         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
18664         HAVE_DECL_MKDIR and HAVE_IO_H.
18665
18666 2008-04-20  Bruno Haible  <bruno@clisp.org>
18667
18668         * lib/isapipe.c: Port to native Windows platforms.
18669
18670 2008-04-20  Bruno Haible  <bruno@clisp.org>
18671
18672         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
18673
18674 2008-04-21  Eric Blake  <ebb9@byu.net>
18675
18676         Work around preprocessors that don't handle UINTMAX_MAX.
18677         * lib/memchr2.c (memchr2): Avoid embedded #if.
18678         Reported by Alain Guibert, fix suggested by Bruno Haible.
18679
18680 2008-04-21  Simon Josefsson  <simon@josefsson.org>
18681
18682         * doc/posix-functions/strftime.texi (strftime): Explain better
18683         Windows incompatibility.  Suggested by Micah Cowan
18684         <micah@cowan.name>.
18685
18686 2008-04-20  Bruno Haible  <bruno@clisp.org>
18687
18688         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
18689         unistr/u8-mblen.
18690
18691 2008-04-20  Bruno Haible  <bruno@clisp.org>
18692
18693         Fix test failure on platforms with non-GNU iconv.
18694         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
18695         (U_TO_U8): Use it, rather than u16_to_u8.
18696         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
18697         units at the end of the input string.
18698         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
18699
18700 2008-04-20  Bruno Haible  <bruno@clisp.org>
18701
18702         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
18703         when the resulting length is 0.
18704         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
18705
18706 2008-04-20  Bruno Haible  <bruno@clisp.org>
18707
18708         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
18709         works.
18710         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
18711
18712 2008-04-20  Bruno Haible  <bruno@clisp.org>
18713
18714         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
18715         * modules/tsearch-tests (configure.ac): Test for initstate function.
18716
18717 2008-04-20  Bruno Haible  <bruno@clisp.org>
18718
18719         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
18720         for nlink_t if missing.
18721         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
18722
18723 2008-04-19  Bruno Haible  <bruno@clisp.org>
18724
18725         Work around snprintf bug on Linux libc5.
18726         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
18727         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
18728         gl_SNPRINTF_SIZE1.
18729         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
18730         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
18731         that test failed.
18732         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
18733         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
18734         * modules/snprintf (Files): Add m4/printf.m4.
18735         * modules/vsnprintf (Files): Likewise.
18736         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
18737         * doc/posix-functions/vsnprintf.texi: Likewise.
18738
18739 2008-04-19  Bruno Haible  <bruno@clisp.org>
18740
18741         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
18742         from 0.0058 to less than 10^-7.
18743
18744 2008-04-19  Bruno Haible  <bruno@clisp.org>
18745
18746         Fix rounding when a precision is given.
18747         * lib/vasnprintf.c (is_borderline): New function.
18748         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
18749         9...9x.
18750         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
18751         %e, %g.
18752         * tests/test-vasprintf-posix.c (test_function): Likewise.
18753         * tests/test-snprintf-posix.h (test_function): Likewise.
18754         * tests/test-sprintf-posix.h (test_function): Likewise.
18755         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
18756         * tests/test-printf-posix.h (test_function): Likewise.
18757         * tests/test-printf-posix.output: Update.
18758         Reported by John Darrington <john@darrington.wattle.id.au> via
18759         Ben Pfaff <blp@cs.stanford.edu>.
18760
18761 2008-04-18  Simon Josefsson  <simon@josefsson.org>
18762
18763         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
18764         Suggested by Bruno Haible <bruno@clisp.org>.
18765
18766 2008-04-17  Bruno Haible  <bruno@clisp.org>
18767
18768         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
18769         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
18770         implementation.
18771         Patch by Bruce Merry <bmerry@gmail.com>.
18772
18773 2008-04-17  Simon Josefsson  <simon@josefsson.org>
18774
18775         * doc/posix-functions/strftime.texi (strftime): Mention that %e
18776         doesn't work under Windows.
18777
18778 2008-04-16  Bruno Haible  <bruno@clisp.org>
18779
18780         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
18781         New macros.
18782         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
18783         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
18784         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
18785         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
18786         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
18787         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
18788         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
18789         macros.
18790         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
18791         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
18792         Northern Sotho, Uighur.
18793
18794 2008-04-16  Bruno Haible  <bruno@clisp.org>
18795
18796         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
18797         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
18798         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
18799         Reported by Daniel Bergström <daniel@octocode.com>.
18800
18801 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
18802             Bruno Haible  <bruno@clisp.org>
18803
18804         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
18805         function.
18806         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
18807         New functions, mostly extracted from gl_locale_name_default.
18808         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
18809
18810 2008-04-16  Eric Blake  <ebb9@byu.net>
18811
18812         Adjust strtod detection to catch glibc 2.7 bug.
18813         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
18814         Reported by John Gatewood Ham.
18815
18816 2008-04-16  Bruno Haible  <bruno@clisp.org>
18817
18818         Add tentative support for Linux libc5.
18819         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
18820         * lib/fpurge.c (fpurge): Likewise.
18821         * lib/freadable.c (freadable): Likewise.
18822         * lib/freadahead.c (freadahead): Likewise.
18823         * lib/freading.c (freading): Likewise.
18824         * lib/freadptr.c (freadptr): Likewise.
18825         * lib/freadseek.c (freadptrinc): Likewise.
18826         * lib/fseeko.c (rpl_fseeko): Likewise.
18827         * lib/fseterr.c (fseterr): Likewise.
18828         * lib/fwritable.c (fwritable): Likewise.
18829         * lib/fwriting.c (fwriting): Likewise.
18830         Reported by Alain Guibert <alguibert+bts@free.fr>.
18831
18832 2008-04-15  Bruno Haible  <bruno@clisp.org>
18833
18834         * modules/mathl (configure.ac): Define module indicator.
18835
18836 2008-04-15  Bruno Haible  <bruno@clisp.org>
18837
18838         * lib/logl.c (logl): Remove unused variables.
18839
18840 2008-04-15  Bruno Haible  <bruno@clisp.org>
18841
18842         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
18843         fails.
18844
18845 2008-04-15  Bruno Haible  <bruno@clisp.org>
18846
18847         * lib/trim.c (trim2): Fix argument of isspace() macro.
18848
18849 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
18850
18851         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
18852         to 0.
18853         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
18854
18855 2008-04-14  Bruno Haible  <bruno@clisp.org>
18856
18857         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
18858         AC_LANG_PROGRAM argument.
18859         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
18860         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
18861         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
18862         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
18863         * m4/math_h.m4 (gl_MATH_H): Likewise.
18864         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
18865         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
18866         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
18867         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
18868         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
18869         * m4/regex.m4 (gl_REGEX): Likewise.
18870         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
18871         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
18872         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
18873         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
18874         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
18875         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
18876         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
18877         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
18878
18879 2008-04-14  Jim Meyering  <meyering@redhat.com>
18880
18881         test-strtod: fix typos: s/abs/fabs/
18882         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
18883
18884 2008-04-13  Bruno Haible  <bruno@clisp.org>
18885
18886         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
18887         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
18888         module is also used and while not building the reloc-wrapper.
18889
18890 2008-04-13  Bruno Haible  <bruno@clisp.org>
18891
18892         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
18893
18894 2008-04-13  Bruno Haible  <bruno@clisp.org>
18895
18896         Fix AIX compilation failure introduced on 2008-04-02.
18897         * tests/test-frexp.c (exp): Undefine before redefining.
18898         * tests/test-frexpl.c (exp): Likewise.
18899
18900 2008-04-13  Bruno Haible  <bruno@clisp.org>
18901
18902         Work around a HP-UX stdio bug.
18903         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
18904         * tests/test-ftello.c (main): Likewise.
18905         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
18906         * doc/posix-functions/ftello.texi: Likewise.
18907
18908 2008-04-13  Bruno Haible  <bruno@clisp.org>
18909
18910         Make test-signbit pass on HP-UX/hppa.
18911         * tests/test-signbit.c (minus_zerol): New variable.
18912         (test_signbitl): Use it.
18913
18914 2008-04-13  Bruno Haible  <bruno@clisp.org>
18915
18916         Make truncl work on OSF/1 4.0.
18917         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
18918         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
18919         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
18920         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
18921         HAVE_DECL_TRUNCL.
18922         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
18923         HAVE_DECL_TRUNCL.
18924         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
18925
18926 2008-04-13  Bruno Haible  <bruno@clisp.org>
18927
18928         * lib/unictype.h: Remove trailing comma from enumeration definitions.
18929
18930 2008-04-13  Bruno Haible  <bruno@clisp.org>
18931
18932         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
18933         expression, so as to avoid HP-UX 11 cc compiler bug.
18934
18935 2008-04-13  Bruno Haible  <bruno@clisp.org>
18936
18937         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
18938
18939 2008-04-13  Bruno Haible  <bruno@clisp.org>
18940
18941         * lib/git-merge-changelog.c: Remove empty declaration outside of
18942         functions.
18943
18944 2008-04-13  Bruno Haible  <bruno@clisp.org>
18945
18946         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
18947
18948 2008-04-13  Bruno Haible  <bruno@clisp.org>
18949
18950         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
18951         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
18952         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
18953         also if it exists but lacks definitions of the SHUT_* macros.
18954         * modules/sys_socket (Description): Update.
18955         Reported by Elbert Pol <e.pol@chello.nl>.
18956
18957 2008-04-13  Bruno Haible  <bruno@clisp.org>
18958
18959         * lib/localcharset.c (OS2): Don't redefine if already defined.
18960         Reported by Elbert Pol <e.pol@chello.nl>.
18961
18962 2008-04-13  Bruno Haible  <bruno@clisp.org>
18963
18964         * lib/binary-io.h [__EMX__]: Include <io.h>.
18965         Reported by Elbert Pol <e.pol@chello.nl>.
18966
18967 2008-04-12  Bruno Haible  <bruno@clisp.org>
18968
18969         * lib/fpucw.h: Enable the definitions also for x86_64.
18970         Needed for NetBSD/x86_64.
18971         Reported by Thomas Klausner <tk@giga.or.at>.
18972
18973 2008-04-12  Bruno Haible  <bruno@clisp.org>
18974
18975         * tests/test-strtod.c: Include isnand.h.
18976         (main): Use isnand instead of isnan.
18977         Reported by Jim Meyering.
18978
18979 2008-04-12  Bruno Haible  <bruno@clisp.org>
18980
18981         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
18982         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
18983
18984 2008-04-12  Jim Meyering  <meyering@redhat.com>
18985
18986         * m4/math_h.m4 (gl_MATH_H): Fix typos.
18987
18988 2008-04-12  Bruno Haible  <bruno@clisp.org>
18989
18990         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
18991         Reported by Elbert Pol <e.pol@chello.nl>.
18992
18993 2008-04-12  Eric Blake  <ebb9@byu.net>
18994
18995         Work around Solaris 10 math.h bug.
18996         * m4/math_h.m4 (gl_MATH_H): Check for bug.
18997         (gl_MATH_H_DEFAULTS): Set up default.
18998         * modules/math (Makefile.am): Replace new indicators.
18999         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
19000         * tests/test-math.c (main): Test this.
19001         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
19002         * doc/posix-headers/math.texi (math.h): Mention bug.
19003         Reported by Nelson H. F. Beebe and Jim Meyering.
19004
19005 2008-04-11  Bruno Haible  <bruno@clisp.org>
19006
19007         Adapt to future versions of Apple GCC.
19008         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
19009         Reported by Peter O'Gorman <peter@pogma.com>.
19010
19011 2008-04-11  Bruno Haible  <bruno@clisp.org>
19012
19013         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
19014
19015 2008-04-11  Bruno Haible  <bruno@clisp.org>
19016
19017         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
19018
19019         * modules/getaddrinfo-tests (Makefile.am): Define
19020         test_getaddrinfo_LDADD.
19021
19022 2008-04-11  Bruno Haible  <bruno@clisp.org>
19023
19024         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
19025         (init): Fix syntax error.
19026         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
19027         is declared.
19028
19029 2008-04-11  Bruno Haible  <bruno@clisp.org>
19030
19031         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
19032         * modules/glob (Depends-on): Add stdbool.
19033
19034 2008-04-11  Bruno Haible  <bruno@clisp.org>
19035
19036         * lib/trim.c: Include <string.h>.
19037
19038 2008-04-11  Eric Blake  <ebb9@byu.net>
19039
19040         Avoid compile failure on OS/2.
19041         * lib/regex_internal.h (internal_function): Disable optimization
19042         on OS/2 (__EMX__), where it caused compiler error.
19043         Reported by Elbert Pol.
19044
19045 2008-04-11  Bruno Haible  <bruno@clisp.org>
19046
19047         Flush the standard error stream before aborting. Needed on mingw.
19048         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
19049         * tests/test-array_list.c (ASSERT): Likewise.
19050         * tests/test-array_oset.c (ASSERT): Likewise.
19051         * tests/test-avltree_list.c (ASSERT): Likewise.
19052         * tests/test-avltree_oset.c (ASSERT): Likewise.
19053         * tests/test-avltreehash_list.c (ASSERT): Likewise.
19054         * tests/test-binary-io.c (ASSERT): Likewise.
19055         * tests/test-byteswap.c (ASSERT): Likewise.
19056         * tests/test-c-ctype.c (ASSERT): Likewise.
19057         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
19058         * tests/test-c-strcasestr.c (ASSERT): Likewise.
19059         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
19060         * tests/test-c-strstr.c (ASSERT): Likewise.
19061         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
19062         * tests/test-canonicalize.c (ASSERT): Likewise.
19063         * tests/test-carray_list.c (ASSERT): Likewise.
19064         * tests/test-ceilf1.c (ASSERT): Likewise.
19065         * tests/test-ceilf2.c (ASSERT): Likewise.
19066         * tests/test-ceill.c (ASSERT): Likewise.
19067         * tests/test-count-one-bits.c (ASSERT): Likewise.
19068         * tests/test-fbufmode.c (ASSERT): Likewise.
19069         * tests/test-fflush2.c (ASSERT): Likewise.
19070         * tests/test-floorf1.c (ASSERT): Likewise.
19071         * tests/test-floorf2.c (ASSERT): Likewise.
19072         * tests/test-floorl.c (ASSERT): Likewise.
19073         * tests/test-fopen.c (ASSERT): Likewise.
19074         * tests/test-fpending.c (ASSERT): Likewise.
19075         * tests/test-fprintf-posix.c (ASSERT): Likewise.
19076         * tests/test-fpurge.c (ASSERT): Likewise.
19077         * tests/test-freadable.c (ASSERT): Likewise.
19078         * tests/test-freadahead.c (ASSERT): Likewise.
19079         * tests/test-freading.c (ASSERT): Likewise.
19080         * tests/test-freadptr.c (ASSERT): Likewise.
19081         * tests/test-freadptr2.c (ASSERT): Likewise.
19082         * tests/test-freadseek.c (ASSERT): Likewise.
19083         * tests/test-freopen.c (ASSERT): Likewise.
19084         * tests/test-frexp.c (ASSERT): Likewise.
19085         * tests/test-frexpl.c (ASSERT): Likewise.
19086         * tests/test-fseek.c (ASSERT): Likewise.
19087         * tests/test-fseeko.c (ASSERT): Likewise.
19088         * tests/test-fstrcmp.c (ASSERT): Likewise.
19089         * tests/test-ftell.c (ASSERT): Likewise.
19090         * tests/test-ftello.c (ASSERT): Likewise.
19091         * tests/test-func.c (ASSERT): Likewise.
19092         * tests/test-fwritable.c (ASSERT): Likewise.
19093         * tests/test-fwriting.c (ASSERT): Likewise.
19094         * tests/test-getdelim.c (ASSERT): Likewise.
19095         * tests/test-getline.c (ASSERT): Likewise.
19096         * tests/test-i-ring.c (ASSERT): Likewise.
19097         * tests/test-iconv-utf.c (ASSERT): Likewise.
19098         * tests/test-iconv.c (ASSERT): Likewise.
19099         * tests/test-isfinite.c (ASSERT): Likewise.
19100         * tests/test-isnand.c (ASSERT): Likewise.
19101         * tests/test-isnanf.c (ASSERT): Likewise.
19102         * tests/test-isnanl.h (ASSERT): Likewise.
19103         * tests/test-ldexpl.c (ASSERT): Likewise.
19104         * tests/test-linked_list.c (ASSERT): Likewise.
19105         * tests/test-linkedhash_list.c (ASSERT): Likewise.
19106         * tests/test-localename.c (ASSERT): Likewise.
19107         * tests/test-lseek.c (ASSERT): Likewise.
19108         * tests/test-mbscasecmp.c (ASSERT): Likewise.
19109         * tests/test-mbscasestr1.c (ASSERT): Likewise.
19110         * tests/test-mbscasestr2.c (ASSERT): Likewise.
19111         * tests/test-mbscasestr3.c (ASSERT): Likewise.
19112         * tests/test-mbscasestr4.c (ASSERT): Likewise.
19113         * tests/test-mbschr.c (ASSERT): Likewise.
19114         * tests/test-mbscspn.c (ASSERT): Likewise.
19115         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
19116         * tests/test-mbspbrk.c (ASSERT): Likewise.
19117         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
19118         * tests/test-mbsrchr.c (ASSERT): Likewise.
19119         * tests/test-mbsspn.c (ASSERT): Likewise.
19120         * tests/test-mbsstr1.c (ASSERT): Likewise.
19121         * tests/test-mbsstr2.c (ASSERT): Likewise.
19122         * tests/test-mbsstr3.c (ASSERT): Likewise.
19123         * tests/test-memchr2.c (ASSERT): Likewise.
19124         * tests/test-memmem.c (ASSERT): Likewise.
19125         * tests/test-open.c (ASSERT): Likewise.
19126         * tests/test-printf-frexp.c (ASSERT): Likewise.
19127         * tests/test-printf-frexpl.c (ASSERT): Likewise.
19128         * tests/test-printf-posix.c (ASSERT): Likewise.
19129         * tests/test-quotearg.c (ASSERT): Likewise.
19130         * tests/test-rbtree_list.c (ASSERT): Likewise.
19131         * tests/test-rbtree_oset.c (ASSERT): Likewise.
19132         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
19133         * tests/test-round1.c (ASSERT): Likewise.
19134         * tests/test-roundf1.c (ASSERT): Likewise.
19135         * tests/test-roundl.c (ASSERT): Likewise.
19136         * tests/test-signbit.c (ASSERT): Likewise.
19137         * tests/test-sleep.c (ASSERT): Likewise.
19138         * tests/test-snprintf-posix.c (ASSERT): Likewise.
19139         * tests/test-snprintf.c (ASSERT): Likewise.
19140         * tests/test-sprintf-posix.c (ASSERT): Likewise.
19141         * tests/test-stat-time.c (ASSERT): Likewise.
19142         * tests/test-strcasestr.c (ASSERT): Likewise.
19143         * tests/test-strerror.c (ASSERT): Likewise.
19144         * tests/test-striconv.c (ASSERT): Likewise.
19145         * tests/test-striconveh.c (ASSERT): Likewise.
19146         * tests/test-striconveha.c (ASSERT): Likewise.
19147         * tests/test-strsignal.c (ASSERT): Likewise.
19148         * tests/test-strstr.c (ASSERT): Likewise.
19149         * tests/test-strtod.c (ASSERT): Likewise.
19150         * tests/test-trunc1.c (ASSERT): Likewise.
19151         * tests/test-trunc2.c (ASSERT): Likewise.
19152         * tests/test-truncf1.c (ASSERT): Likewise.
19153         * tests/test-truncf2.c (ASSERT): Likewise.
19154         * tests/test-truncl.c (ASSERT): Likewise.
19155         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
19156         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
19157         * tests/test-vasnprintf.c (ASSERT): Likewise.
19158         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
19159         * tests/test-vasprintf.c (ASSERT): Likewise.
19160         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
19161         * tests/test-vprintf-posix.c (ASSERT): Likewise.
19162         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
19163         * tests/test-vsnprintf.c (ASSERT): Likewise.
19164         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
19165         * tests/test-wcwidth.c (ASSERT): Likewise.
19166         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
19167         * tests/test-xprintf-posix.c (ASSERT): Likewise.
19168         * tests/test-xvasprintf.c (ASSERT): Likewise.
19169         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
19170         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
19171         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
19172         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
19173         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
19174         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
19175         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
19176         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
19177         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
19178         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
19179         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
19180         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
19181         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
19182         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
19183         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
19184         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
19185         * tests/unictype/test-block_list.c (ASSERT): Likewise.
19186         * tests/unictype/test-block_of.c (ASSERT): Likewise.
19187         * tests/unictype/test-block_test.c (ASSERT): Likewise.
19188         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
19189         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
19190         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
19191         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
19192         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
19193         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
19194         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
19195         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
19196         * tests/unictype/test-combining.c (ASSERT): Likewise.
19197         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
19198         * tests/unictype/test-digit.c (ASSERT): Likewise.
19199         * tests/unictype/test-mirror.c (ASSERT): Likewise.
19200         * tests/unictype/test-numeric.c (ASSERT): Likewise.
19201         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
19202         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
19203         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
19204         * tests/unictype/test-scripts.c (ASSERT): Likewise.
19205         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
19206         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
19207         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
19208         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
19209         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
19210         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
19211         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
19212         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
19213         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
19214         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
19215         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
19216         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
19217         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
19218         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
19219         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
19220         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
19221         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
19222         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
19223         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
19224         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
19225         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
19226         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
19227         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
19228         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
19229         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
19230         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
19231         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
19232         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
19233         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
19234         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
19235         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
19236         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
19237         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
19238         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
19239         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
19240         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
19241         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
19242         Reported by Eric Blake.
19243
19244 2008-04-11  Bruno Haible  <bruno@clisp.org>
19245
19246         * lib/wchar.in.h: Tweak comment.
19247
19248 2008-04-11  Bruno Haible  <bruno@clisp.org>
19249
19250         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
19251         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
19252         gl_COMMON.
19253         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
19254
19255 2008-04-11  Bruno Haible  <bruno@clisp.org>
19256
19257         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
19258
19259 2008-04-11  Simon Josefsson  <simon@josefsson.org>
19260
19261         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
19262         of attempting to use non-existing /dev/*random.  Based on patch
19263         from Adam Strzelecki <ono@java.pl> in
19264         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
19265
19266 2008-04-08  Bruno Haible  <bruno@clisp.org>
19267
19268         Add tentative support for emx+gcc.
19269         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
19270         * lib/fpurge.c (fpurge): Likewise.
19271         * lib/freadable.c (freadable): Likewise.
19272         * lib/freadahead.c (freadahead): Likewise.
19273         * lib/freading.c (freading): Likewise.
19274         * lib/freadptr.c (freadptr): Likewise.
19275         * lib/freadseek.c (freadptrinc): Likewise.
19276         * lib/fseeko.c (rpl_fseeko): Likewise.
19277         * lib/fseterr.c (fseterr): Likewise.
19278         * lib/fwritable.c (fwritable): Likewise.
19279         * lib/fwriting.c (fwriting): Likewise.
19280         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
19281
19282 2008-04-09  Eric Blake  <ebb9@byu.net>
19283
19284         Avoid some autoconf warnings.
19285         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
19286         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
19287         * m4/afs.m4 (gl_AFS): Likewise.
19288         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
19289         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
19290         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19291         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
19292         (gl_INTEGER_TYPE_SUFFIX): Likewise.
19293         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
19294         (AC_CHECK_DECLS_ONCE): Likewise.
19295         Rename file...
19296         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
19297         gnulib-tool requires autoconf 2.59 or better.
19298         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
19299
19300 2008-04-08  Eric Blake  <ebb9@byu.net>
19301
19302         Use 'git describe --match' if present (added in git 1.5.5).
19303         * build-aux/git-version-gen: Limit result to tags that match 'v*'
19304         if possible.
19305
19306 2008-04-08  Bruno Haible  <bruno@clisp.org>
19307
19308         Add tentative support for OpenServer.
19309         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
19310         _ptr, _cnt.
19311         * lib/fpurge.c (fpurge): Likewise.
19312         * lib/freadable.c (freadable): Likewise.
19313         * lib/freadahead.c (freadahead): Likewise.
19314         * lib/freading.c (freading): Likewise.
19315         * lib/freadptr.c (freadptr): Likewise.
19316         * lib/freadseek.c (freadptrinc): Likewise.
19317         * lib/fseeko.c (rpl_fseeko): Likewise.
19318         * lib/fseterr.c (fseterr): Likewise.
19319         * lib/fwritable.c (fwritable): Likewise.
19320         * lib/fwriting.c (fwriting): Likewise.
19321         Reported by Roger Cornelius <rac@tenzing.org> and
19322         Brian K. White <brian@aljex.com>.
19323
19324 2008-04-06  Jim Meyering  <meyering@redhat.com>
19325
19326         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
19327
19328 2008-04-06  Bruno Haible  <bruno@clisp.org>
19329
19330         Avoid possible error with non-ASCII bytes in UTF-8 locales.
19331         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
19332         * tests/test-printf-posix.sh: Likewise.
19333         * tests/test-vfprintf-posix.sh: Likewise.
19334         * tests/test-vprintf-posix.sh: Likewise.
19335         * tests/test-xprintf-posix.sh: Likewise.
19336
19337 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19338
19339         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
19340         hide error from 'ls', needed on OS/2.
19341         Report by Elbert Pol <elbert.pol@gmail.com>.
19342
19343 2008-04-04  Eric Blake  <ebb9@byu.net>
19344
19345         Make test-fseeko.c failures meaningful.
19346         * tests/test-fseeko.c: Print line number on failure.
19347         * tests/test-fseek.c: Likewise.
19348         Reported by Nelson H. F. Beebe.
19349
19350         Improve strtod bug detection check.
19351         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
19352         required for Solaris 10.
19353         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
19354
19355 2008-04-04  Bruno Haible  <bruno@clisp.org>
19356
19357         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
19358         by m4/setenv.m4.
19359
19360 2008-04-03  Eric Blake  <ebb9@byu.net>
19361
19362         Ensure sane .version contents.
19363         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
19364         version string.
19365         * build-aux/git-version-gen: Improve documentation.
19366
19367         Make GNU make output nicer.
19368         * top/GNUmakefile [!_have-Makefile]: Add dependency on
19369         MAKECMDGOALS to enforce message for all command line targets.  Set
19370         srcdir for use in maint.mk.
19371
19372         Another maintainer tweak.
19373         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
19374         a target that regenerates version.
19375
19376 2008-04-03  Jim Meyering  <meyering@redhat.com>
19377
19378         vc-list-files: don't cause coreutils "make po-check" failure
19379         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
19380
19381 2008-04-03  Eric Blake  <ebb9@byu.net>
19382
19383         Allow VPATH usage of vc-list-files.
19384         * build-aux/vc-list-files (scriptversion): Add timestamp.
19385         (options): Add --help, --version, -C.
19386         (CVS): Support installed cvsu.
19387
19388 2008-04-02  Bruno Haible  <bruno@clisp.org>
19389
19390         Avoid some "statement with no effect" warnings from gcc.
19391         * tests/test-wctype.c (main): Explicitly ignore unused values.
19392         Reported by Jim Meyering.
19393
19394 2008-04-02  Jim Meyering  <meyering@redhat.com>
19395
19396         Avoid some warnings from "gcc -Wshadow".
19397         * tests/test-frexp.c (exp): Define to a different identifier.
19398         * tests/test-frexpl.c (exp): Likewise.
19399
19400 2008-04-03  Jim Meyering  <meyering@redhat.com>
19401
19402         bootstrap: remove dangling *.[ch] symlinks from lib
19403         * build-aux/bootstrap [dangling symlink removal]: Move find's
19404         -depth option to precede all others, to avoid a warning.
19405         Remove *.[ch] files too, and from "$source_base" (usually lib/).
19406
19407 2008-04-02  Bruno Haible  <bruno@clisp.org>
19408
19409         Avoid some warnings from "gcc -Wshadow".
19410         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
19411         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
19412         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
19413         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
19414         Reported by Jim Meyering.
19415
19416 2008-04-01  Bruno Haible  <bruno@clisp.org>
19417
19418         Fix test to work on IRIX 6.5 with cc.
19419         * tests/test-math.c (numeric_equal): New function.
19420         (main): Use it.
19421
19422 2008-04-01  Bruno Haible  <bruno@clisp.org>
19423
19424         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
19425
19426 2008-04-01  Bruno Haible  <bruno@clisp.org>
19427
19428         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
19429         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19430         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
19431         (Depends-on): Remove math.
19432
19433         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
19434         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19435         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
19436         (Depends-on): Remove math.
19437
19438         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
19439         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19440         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
19441         (Depends-on): Remove math.
19442         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
19443         (Depends-on): Remove math.
19444
19445         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
19446         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19447         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
19448         (Depends-on): Remove math.
19449         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
19450         (Depends-on): Remove math.
19451
19452         * tests/test-round1.c: Include nan.h.
19453         (main): Use NaNd instead of NAN.
19454         * modules/round-tests (Files): Add tests/nan.h.
19455
19456         * tests/test-trunc1.c: Include nan.h.
19457         (main): Use NaNd instead of NAN.
19458         * modules/trunc-tests (Files): Add tests/nan.h.
19459
19460         * tests/test-roundf1.c: Include nan.h.
19461         (main): Use NaNf instead of NAN.
19462         * modules/roundf-tests (Files): Add tests/nan.h.
19463
19464         * tests/test-truncf1.c: Include nan.h.
19465         (main): Use NaNf instead of NAN.
19466         * modules/truncf-tests (Files): Add tests/nan.h.
19467
19468         * tests/test-ceilf1.c: Include nan.h.
19469         (main): Use NaNf instead of NAN.
19470         * modules/ceilf-tests (Files): Add tests/nan.h.
19471
19472         * tests/test-floorf1.c: Include nan.h.
19473         (main): Use NaNf instead of NAN.
19474         * modules/floorf-tests (Files): Add tests/nan.h.
19475
19476         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
19477         (main): Use NaNf instead of NAN.
19478         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
19479
19480         * tests/test-isnand.c: Include nan.h instead of <math.h>.
19481         (main): Use NaNd instead of NAN.
19482         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
19483
19484         * tests/test-frexp.c: Include nan.h.
19485         (main): Use NaNd instead of NAN.
19486         * modules/frexp-tests (Files): Add tests/nan.h.
19487
19488         * lib/isnan.c: Don't include <math.h>.
19489         (FUNC): Don't use NAN macro.
19490         * modules/isnand-nolibm (Depends-on): Remove math.
19491         * modules/isnanf-nolibm (Depends-on): Remove math.
19492         * modules/isnanl (Depends-on): Remove math.
19493         * modules/isnanl-nolibm (Depends-on): Remove math.
19494
19495         * tests/nan.h: New file.
19496
19497 2008-04-01  Eric Blake  <ebb9@byu.net>
19498
19499         Fix typos.
19500         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
19501         values to be the right type.
19502
19503         For now, cater to gnulib strtod inaccuracies.
19504         * tests/test-strtod.c (main): Allow 1-ulp error on expected
19505         fractional results.  While not as nice from a QoI perspective, it
19506         is a quicker patch than correctly implementing decimal to binary
19507         rounding.
19508
19509 2008-03-31  Eric Blake  <ebb9@byu.net>
19510
19511         Guarantee a definition of NAN.
19512         * lib/math.in.h (NAN): Define if missing.
19513         * tests/test-math.c (main): Test it.
19514         * doc/posix-headers/math.texi (math.h): Document this.
19515         * lib/isnan.c (rpl_isnand): Use it.
19516         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
19517         * tests/test-floorf1.c (NaN): Likewise.
19518         * tests/test-frexp.c (NaN): Likewise.
19519         * tests/test-isnand.c (NaN): Likewise.
19520         * tests/test-isnanf.c (NaN): Likewise.
19521         * tests/test-round1.c (NaN): Likewise.
19522         * tests/test-roundf1.c (NaN): Likewise.
19523         * tests/test-snprintf-posix.h (NaN): Likewise.
19524         * tests/test-sprintf-posix.h (NaN): Likewise.
19525         * tests/test-trunc1.c (NaN): Likewise.
19526         * tests/test-truncf1.c (NaN): Likewise.
19527         * tests/test-vasnprintf-posix.c (NaN): Likewise.
19528         * tests/test-vasprintf-posix.c (NaN): Likewise.
19529         * modules/isnand-nolibm (Depends-on): Add math.
19530         * modules/isnanf-nolibm (Depends-on): Likewise.
19531         * modules/isnanl (Depends-on): Likewise.
19532         * modules/isnanl-nolibm (Depends-on): Likewise.
19533         * modules/snprintf-posix-tests (Depends-on): Likewise.
19534         * modules/sprintf-posix-tests (Depends-on): Likewise.
19535         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
19536         * modules/vsprintf-posix-tests (Depends-on): Likewise.
19537         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
19538         * modules/vasprintf-posix-tests (Depends-on): Likewise.
19539
19540 2008-03-31  Bruno Haible  <bruno@clisp.org>
19541
19542         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
19543         * doc/posix-functions/strtod.texi: Likewise.
19544
19545 2008-03-31  Bruno Haible  <bruno@clisp.org>
19546
19547         * tests/test-strtod.c (main): Don't use C99 syntax.
19548
19549 2008-03-31  Bruno Haible  <bruno@clisp.org>
19550
19551         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
19552         Reported by Eric Blake.
19553
19554 2008-03-31  Jim Meyering  <meyering@redhat.com>
19555
19556         Don't compare actual signbit return values.
19557         * tests/test-strtod.c (main): Rather, compare only their
19558         zero/non-zero nature.
19559
19560 2008-03-31  Eric Blake  <ebb9@byu.net>
19561
19562         More strtod documentation.
19563         * doc/posix-functions/strtod.texi (strtod): Interpret more test
19564         failures as distinct bugs.
19565
19566 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
19567
19568         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
19569         Problem reported by Erik Benada in
19570         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
19571
19572 2008-03-30  Bruno Haible  <bruno@clisp.org>
19573
19574         * tests/test-strtod.c: Add comments about which assertion fails on which
19575         platform.
19576         * doc/posix-functions/strtod.texi: Add info about many more platforms.
19577
19578 2008-03-30  Eric Blake  <ebb9@byu.net>
19579
19580         Test signbit behavior on zeros.
19581         * tests/test-signbit.c (test_signbitf): Add tests for zero.
19582         (test_signbitd, test_signbitl): Likewise.
19583
19584         More strtod touchups.
19585         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
19586         sign of negative underflow, for now.  Use .5, not .1.
19587         * doc/posix-functions/strtod.texi (strtod): Mention these
19588         limitations.
19589         Reported by Jim Meyering.
19590
19591 2008-03-30  Bruno Haible  <bruno@clisp.org>
19592
19593         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
19594         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
19595
19596 2008-03-30  Bruno Haible  <bruno@clisp.org>
19597
19598         Avoid failure when attempting to return empty iconv results on some
19599         platforms.
19600         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
19601         allocation, don't report ENOMEM when the resulting string is empty.
19602
19603 2008-03-30  Bruno Haible  <bruno@clisp.org>
19604
19605         Fix buffer overrun.
19606         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
19607         Don't consider the width for tmp_length. Check count against tmp_length
19608         before doing the padding. Ensure enough allocation during padding.
19609
19610 2008-03-30  Eric Blake  <ebb9@byu.net>
19611
19612         strtod touchups.
19613         * lib/strtod.c (strtod): Avoid compiler warnings.
19614         Reported by Jim Meyering.
19615
19616 2008-03-30  Bruno Haible  <bruno@clisp.org>
19617
19618         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
19619         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
19620         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
19621         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
19622         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
19623         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
19624         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
19625         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
19626
19627         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
19628         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
19629         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
19630         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
19631         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
19632         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
19633         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
19634         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
19635
19636         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
19637         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
19638         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
19639         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
19640         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
19641         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
19642         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
19643         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
19644
19645         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
19646         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
19647
19648         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
19649         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
19650
19651         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
19652         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
19653
19654         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
19655         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
19656         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
19657
19658         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
19659         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
19660         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
19661
19662         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
19663         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
19664         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
19665
19666         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
19667         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
19668         * modules/vasprintf (Depends-on): Add EOVERFLOW.
19669
19670         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
19671         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
19672         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
19673         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
19674         (Depends-on): Add EOVERFLOW.
19675         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
19676         (Depends-on): Add EOVERFLOW.
19677         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
19678         (Depends-on): Add EOVERFLOW.
19679         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
19680         (Depends-on): Add EOVERFLOW.
19681         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
19682         (Depends-on): Add EOVERFLOW.
19683         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
19684         (Depends-on): Add EOVERFLOW.
19685         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
19686         (Depends-on): Add EOVERFLOW.
19687         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
19688         (Depends-on): Add EOVERFLOW.
19689
19690         * lib/sprintf.c (EOVERFLOW): Remove fallback.
19691         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
19692         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
19693
19694         * lib/snprintf.c (EOVERFLOW): Remove fallback.
19695         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
19696         * modules/snprintf (Depends-on): Add EOVERFLOW.
19697
19698         * lib/poll.c (EOVERFLOW): Remove fallback.
19699         * modules/poll (Depends-on): Add EOVERFLOW.
19700
19701         * lib/getugroups.c (EOVERFLOW): Remove fallback.
19702         * modules/getugroups (Depends-on): Add EOVERFLOW.
19703
19704         * lib/getdelim.c (EOVERFLOW): Remove fallback.
19705         * modules/getdelim (Depends-on): Add EOVERFLOW.
19706
19707         * lib/ftell.c (EOVERFLOW): Remove fallback.
19708         * modules/ftell (Depends-on): Add EOVERFLOW.
19709
19710         * lib/fprintf.c (EOVERFLOW): Remove fallback.
19711         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
19712         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
19713
19714         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
19715
19716         * modules/EOVERFLOW-tests: New file.
19717         * tests/test-EOVERFLOW.c: New file.
19718
19719         * modules/EOVERFLOW: New file.
19720         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
19721
19722 2008-03-30  Bruno Haible  <bruno@clisp.org>
19723
19724         Fix bug introduced on 2007-06-10.
19725         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
19726         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
19727
19728 2008-03-30  Bruno Haible  <bruno@clisp.org>
19729
19730         Improve freadseek's efficiency after ungetc.
19731         * lib/freadseek.c: Include freadahead.h.
19732         (freadptrinc): New function, extracted from freadseek.
19733         (freadseek): Use it in a loop. Use freadahead to determine the number
19734         of loop iterations.
19735         * modules/freadseek (Depends-on): Add freadahead.
19736         (configure.ac): Require AC_C_INLINE.
19737
19738 2008-03-30  Bruno Haible  <bruno@clisp.org>
19739
19740         * lib/freadseek.c (freadseek): Don't ignore the return value of
19741         freadptr.
19742
19743 2008-03-29  Eric Blake  <ebb9@byu.net>
19744
19745         Add hex float support.
19746         * modules/strtod (Depends-on): Add c-ctype.
19747         (Link): Mention POW_LIB.
19748         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
19749         whitespace between 'e' and exponent.
19750         * tests/test-strtod.c (main): Enable hex float tests.
19751         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
19752         now provides.
19753
19754         Document various strtod bugs, with some fixes.
19755         * doc/posix-functions/strtod.texi (strtod): Document bugs with
19756         "-0x", "inf", "nan", and hex constants.
19757         * doc/posix-functions/atof.texi (atof): Likewise.
19758         * modules/stdlib (Makefile.am): Support strtod.
19759         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
19760         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
19761         detect additional strtod bugs.
19762         * lib/stdlib.in.h (rpl_strtod): Add declarations.
19763         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
19764         bool where appropriate.  Parse 'inf' and 'nan'.
19765         * tests/test-strtod.c: New file.
19766         * modules/strtod (Depends-on): Add stdbool, stdlib.
19767         (configure.ac): Turn on module indicator.
19768         * modules/strtod-tests: New module.
19769
19770 2008-03-29  Eric Blake  <ebb9@byu.net>
19771
19772         Fix ftell on mingw.
19773         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
19774         * modules/ftell-tests (Depends-on): Add binary-io.
19775         * modules/ftello-tests (Depends-on): Likewise.
19776         * tests/test-ftell.c (main): Enhance test to cover behavior after
19777         ungetc.  Enforce binary mode.
19778         * tests/test-ftello.c (main): Likewise.
19779
19780         Pass test-freadseek on cygwin.
19781         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
19782         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
19783         ungetc buffer.
19784
19785         * tests/test-fflush2.c (main): Fix typo.
19786
19787 2008-03-29  Bruno Haible  <bruno@clisp.org>
19788
19789         * tests/test-fflush2.c (main): Temporarily disable the contents of
19790         this test.
19791         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
19792         Reported by Eric Blake.
19793
19794 2008-03-28  Simon Josefsson  <simon@josefsson.org>
19795
19796         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
19797         (GC_SHA224_DIGEST_SIZE): Add.
19798
19799         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
19800         (gc_hash_digest_length): Likewise.
19801         (gc_hash_buffer): Likewise.
19802
19803 2008-03-25  Bruno Haible  <bruno@clisp.org>
19804
19805         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
19806         detail which gettext release to use.
19807         Reported by Simon Josefsson.
19808
19809 2008-03-26  Jim Meyering  <meyering@redhat.com>
19810
19811         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
19812         * modules/gnumakefile (clean-GNUmakefile): Also, use
19813         test ... && ... || : syntax rather than if-then ... fi.
19814
19815         gnumakefile: Don't double-quote-expand $(VPATH) value.
19816         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
19817
19818 2008-03-24  Eric Blake  <ebb9@byu.net>
19819
19820         Alter GNUmakefile to install into top directory.
19821         * modules/maintainer-makefile: Split, and add dependency...
19822         * modules/gnumakefile: to this new module.
19823         * build-aux/GNUmakefile: Move...
19824         * top/GNUmakefile: ...here.
19825         * build-aux/maint.mk: Move...
19826         * top/maint.mk: ...here.
19827         * MODULES.html.sh (Support for maintaining...): Document new
19828         module.
19829
19830 2008-03-23  Bruno Haible  <bruno@clisp.org>
19831
19832         * gnulib-tool: New options --vc-files, --no-vc-files.
19833         (func_usage): Document them.
19834         (vc_files): New variable.
19835         (func_import): Consider vc_files.
19836         (func_create_testdir): Set vc_files to empty.
19837         Suggested by Jim Meyering and Karl Berry.
19838
19839 2008-03-23  Bruno Haible  <bruno@clisp.org>
19840
19841         Fix regex compilation error on HP-UX 11.
19842         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
19843         * modules/regex (Files): Add m4/mbstate_t.m4.
19844         Reported by Ton Voon <ton.voon@altinity.com>.
19845
19846 2008-03-23  Bruno Haible  <bruno@clisp.org>
19847
19848         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
19849
19850 2008-03-23  Eric Blake  <ebb9@byu.net>
19851             Bruno Haible  <bruno@clisp.org>
19852
19853         Install files from top/ in the destination directory.
19854         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
19855         augmentation also for the files from top/.
19856         (func_import, func_create_testdir): Rewrite file names:
19857         top/filename -> filename.
19858
19859 2008-03-23  Bruno Haible  <bruno@clisp.org>
19860
19861         Tweak "gnulib --version" output.
19862         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
19863
19864 2008-03-23  Bruno Haible  <bruno@clisp.org>
19865
19866         Tweak "gnulib --version" output.
19867         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
19868         rather than contents of ChangeLog, when possible.
19869
19870 2008-03-21  Eric Blake  <ebb9@byu.net>
19871
19872         More --version tweaks.
19873         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
19874         date of last ChangeLog entry.
19875
19876 2008-03-21  Jim Meyering  <meyering@redhat.com>
19877
19878         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
19879
19880 2008-03-20  Eric Blake  <ebb9@byu.net>
19881
19882         VPATH fix.
19883         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
19884
19885 2008-03-20  Simon Josefsson  <simon@josefsson.org>
19886
19887         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
19888         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
19889
19890 2008-03-20  Eric Blake  <ebb9@byu.net>
19891
19892         Sync GNUmakefile with coreutils.
19893         * build-aux/GNUmakefile (have-Makefile): Rename...
19894         (_have-Makefile): ...to this, for namespace consideration.
19895         (GNUmakefile.cfg): Include, if present.
19896         (_autoreconf): Define a default.
19897         (_is-dist-target): New rule for rebuilds to pick up intra-release
19898         version.
19899         (maint-cfg.mk): Rename...
19900         (cfg.mk): ...to this.
19901
19902 2008-03-18  Jim Meyering  <meyering@redhat.com>
19903
19904         New script and module: mktempd
19905         * MODULES.html.sh (maint+release support): Add mktempd.
19906         * build-aux/mktempd: New file.
19907         * modules/mktempd: New file.
19908
19909 2008-03-15  Jim Meyering  <meyering@redhat.com>
19910
19911         Undo last change.
19912         * lib/sha1.c, lib/md5.c: 63 != ~63.
19913         Reported by Andreas Schwab.
19914
19915         sha1.c, md5.c: Hoist a redundant expression.
19916         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
19917         "ctx->buflen" only once, before calling *_process_block.
19918         * lib/md5.c (md5_process_bytes): Likewise.
19919
19920 2008-03-14  Eric Blake  <ebb9@byu.net>
19921
19922         Bump copyright year in files generated by gnulib-tool.
19923         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
19924         gnulib-tool, rather than hard-coding it.
19925
19926         Fix 'gnulib-tool --version' output to work with git.
19927         * gnulib-tool (func_gnulib_dir): New function, extracted from...
19928         (startup): ...here.
19929         (func_version): Use it to invoke git-version-gen, rather than
19930         relying on CVS keyword expansion.  Modernize wording.
19931         (cvsdatestamp, last_checkin_date, version): Kill unused
19932         variables.
19933
19934 2008-03-12  Jim Meyering  <meyering@redhat.com>
19935
19936         Recognize optional cast of the argument to free.
19937         * build-aux/useless-if-before-free: Update regexps.
19938
19939         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
19940
19941 2008-03-11  Bruno Haible  <bruno@clisp.org>
19942
19943         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
19944         by a single package.
19945         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
19946         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
19947         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
19948         Reported by Sam Steingold <sds@gnu.org>.
19949
19950 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
19951
19952         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
19953         repositories.
19954
19955 2008-03-11  Bruno Haible  <bruno@clisp.org>
19956
19957         Avoid conflicts between local macro definitions.
19958         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
19959         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
19960
19961 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
19962             Bruno Haible  <bruno@clisp.org>
19963
19964         Make va_copy work with some version of xlc on AIX 5.1.
19965         * lib/stdarg.in.h: New file.
19966         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
19967         On AIX, use a <stdarg.h> file substitute.
19968         * modules/stdarg (Files): Add lib/stdarg.in.h.
19969         (Depends-on): Add include_next.
19970         (Makefile.am): Build a stdarg.h substitute if requested.
19971         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
19972
19973 2008-03-10  Bruno Haible  <bruno@clisp.org>
19974
19975         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
19976         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19977         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
19978
19979 2008-03-10  Bruno Haible  <bruno@clisp.org>
19980
19981         * modules/stdlib (Depends-on): Add include_next, remove
19982         absolute-header.
19983
19984 2008-03-09  Bruno Haible  <bruno@clisp.org>
19985
19986         * lib/freadahead.h (freadahead): Document more precisely.
19987         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
19988         the sum of both buffer sizes.
19989         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
19990         * NEWS: Document the change.
19991
19992 2008-03-09  Bruno Haible  <bruno@clisp.org>
19993
19994         Extend freadptr to return also the buffer size.
19995         * lib/freadptr.h (freadptr): Add sizep argument.
19996         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
19997         (freadptr): Add sizep argument. Determine buffer size like freadahead
19998         does.
19999         * tests/test-freadptr.c: Don't include freadahead.h.
20000         (main): Adapt for new calling convention of freadptr.
20001         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
20002         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
20003         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
20004         tests/test-freadptr2.sh.
20005         (Depends): Remove freadahead.
20006         (TESTS): Add test-freadptr2.sh.
20007         (check_PROGRAMS): Add test-freadptr2.
20008
20009 2008-03-09  Bruno Haible  <bruno@clisp.org>
20010
20011         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
20012         Report and solution by Simon Josefsson.
20013
20014 2008-03-06  Bruno Haible  <bruno@clisp.org>
20015
20016         Make fflush after ungetc work on BSD platforms.
20017         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
20018         * tests/test-fflush2.c: New file.
20019         * tests/test-fflush2.sh: New file.
20020         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
20021         tests/test-fflush2.c.
20022         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
20023         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
20024
20025 2008-03-06  Eric Blake  <ebb9@byu.net>
20026
20027         Likewise for ftello.
20028         * modules/ftello (Dependencies): Add extensions.
20029         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
20030
20031 2008-03-06  Bruno Haible  <bruno@clisp.org>
20032
20033         * modules/fseeko (Dependencies): Add extensions.
20034         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
20035         Needed on glibc systems.
20036
20037 2008-03-06  Bruno Haible  <bruno@clisp.org>
20038
20039         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
20040         email address.
20041         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
20042
20043 2008-03-06  Bruno Haible  <bruno@clisp.org>
20044
20045         * users.txt: Add libgnupdf.
20046
20047 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
20048
20049         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
20050         (Header File Substitutes, Function Substitutes,
20051         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
20052         (Build robot for gnulib): Fix typo.
20053
20054 2008-03-06  Bruno Haible  <bruno@clisp.org>
20055
20056         * doc/gnulib-tool.texi (VCS Issues): Small updates.
20057         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
20058
20059 2008-03-06  Bruno Haible  <bruno@clisp.org>
20060
20061         * doc/func.texi: New file, extracted from doc/gnulib.texi.
20062         * doc/gnulib.texi: Include it.
20063
20064 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20065
20066         * modules/func (License): Change license to unlimited; there was
20067         no LGPL parts in the module anyway.
20068
20069 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20070
20071         * modules/__func__: Renamed to modules/func.
20072         * modules/__func__-tests: Renamed to modules/func-tests.
20073         * tests/test-__func__.c: Renamed to tests/test-func.c.
20074         * m4/__func__.m4: Renamed to m4/func.m4.
20075         * doc/gnulib.texi (__func__): Section renamed to func.
20076         Suggested by Eric Blake <ebb9@byu.net>.
20077
20078 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20079
20080         * doc/gnulib.texi (__func__): Use C99 terminology when talking
20081         about __func__.  Make example self-contained.  Suggested by Eric
20082         Blake <ebb9@byu.net>.
20083
20084         * tests/test-__func__.c (main): Avoid extraneous () around __func.
20085         Suggested by Eric Blake <ebb9@byu.net>.
20086
20087 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20088
20089         * modules/__func__: New file.
20090         * modules/__func__-tests: New file.
20091         * tests/test-__func__.c: New file.
20092         * m4/__func__.m4: New file.
20093         * doc/gnulib.texi (__func__): Document __func__ module.
20094
20095 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20096
20097         * modules/byteswap (License): Re-license as LGPLv2+.
20098
20099 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20100
20101         * doc/Makefile: Add pdf target.
20102
20103 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20104
20105         * modules/inline (License): Use 'unlimited', since there are only
20106         *.m4 files in this module.
20107
20108 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
20109             Bruno Haible  <bruno@clisp.org>
20110
20111         Add support for HP C 7.1 on OpenVMS 8.3.
20112         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
20113
20114 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
20115
20116         Update VMS specifics.
20117         * lib/getopt.c [VMS]: Remove include of unixlib.h.
20118
20119 2008-03-02  Jim Meyering  <meyering@redhat.com>
20120
20121         Remove the last dependency on the "free" module.
20122         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
20123         Reported by Bob Proulx.
20124
20125         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
20126
20127         Remove useless "if" tests before free.  Deprecate "free" module.
20128         * doc/posix-functions/free.texi: Mention that this
20129         module is no longer useful.
20130         * modules/free (Notice): Say this module is obsolete.
20131         * modules/readutmp (Depends-on): Remove free.
20132         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
20133         * lib/putenv.c (putenv): Likewise.
20134         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
20135         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
20136         * tests/test-c-strcasestr.c (main): Likewise.
20137         * tests/test-c-strstr.c (main): Likewise.
20138         * tests/test-mbscasestr1.c (main): Likewise.
20139         * tests/test-mbscasestr2.c (main): Likewise.
20140         * tests/test-mbsstr1.c (main): Likewise.
20141         * tests/test-mbsstr2.c (main): Likewise.
20142         * tests/test-memmem.c (main): Likewise.
20143         * tests/test-strcasestr.c (main): Likewise.
20144         * tests/test-striconv.c (main): Likewise.
20145         * tests/test-striconveh.c (main): Likewise.
20146         * tests/test-striconveha.c (main): Likewise.
20147         * tests/test-strstr.c (main): Likewise.
20148
20149         * build-aux/git-version-gen: Adjust a comment and the Usage string.
20150
20151         bootstrap: sync from coreutils again
20152         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
20153
20154 2008-03-01  Jim Meyering  <meyering@redhat.com>
20155
20156         bootstrap: sync from coreutils
20157         * build-aux/bootstrap (update_po_files): Copy a .po file into place
20158         also when the target doesn't exist.
20159
20160 2008-03-01  Eric Blake  <ebb9@byu.net>
20161
20162         Fix bugs in last patch.
20163         * lib/memchr2.c (memchr2): Fix typo.
20164         * tests/test-memchr2.c: Test previous bug, and don't use GNU
20165         extension.
20166         Reported by Bruce Korb.
20167
20168         New module 'memchr2'.
20169         * modules/memchr2: New file.
20170         * modules/memchr2-tests: Likewise.
20171         * lib/memchr2.h: Likewise.
20172         * lib/memchr2.c: Likewise, based on memchr.c.
20173         * tests/test-memchr2.c: New test.
20174         * MODULES.html.sh (String handling): Add memchr2.
20175
20176 2008-02-29  Bruno Haible  <bruno@clisp.org>
20177
20178         * modules/freadseek-tests: New file.
20179         * tests/test-freadseek.sh: New file.
20180         * tests/test-freadseek.c: New file.
20181
20182         New module 'freadseek'.
20183         * modules/freadseek: New file.
20184         * lib/freadseek.h: New file.
20185         * lib/freadseek.c: New file.
20186         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
20187
20188 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
20189
20190         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
20191         wydawca.
20192
20193         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
20194         program_invocation_name and program_invocation_short_name are
20195         present.
20196
20197 2008-02-28  Bruno Haible  <bruno@clisp.org>
20198
20199         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
20200         * tests/test-freadptr.sh: Also test non-seekable stdin.
20201
20202 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
20203
20204         * build-aux/bootstrap (source_base, m4_base)
20205         (doc_base, tests_base): New variables.
20206         (gnulib_tool_options): Do not hardcode base directories, use
20207         the above variables instead.
20208
20209 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
20210
20211         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
20212
20213 2008-02-28  Bruno Haible  <bruno@clisp.org>
20214
20215         * modules/freadptr-tests: New file.
20216         * tests/test-freadptr.sh: New file.
20217         * tests/test-freadptr.c: New file.
20218
20219         New module 'freadptr'.
20220         * modules/freadptr: New file.
20221         * lib/freadptr.h: New file.
20222         * lib/freadptr.c: New file.
20223         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
20224
20225 2008-02-26  Karl Berry  <karl@freefriends.org>
20226
20227         Sync from Libtool:
20228         * libltdl/argz.c (argz_add, argz_count): New functions.
20229         * libltdl/argz.in.h: Declare them.
20230         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
20231
20232 2008-02-22  Bruno Haible  <bruno@clisp.org>
20233
20234         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
20235         is a pointer type.  Needed for HP-UX 10.
20236         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
20237         * doc/posix-functions/gmtime_r.texi: Likewise.
20238         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
20239
20240 2008-02-24  Bruno Haible  <bruno@clisp.org>
20241
20242         * modules/environ-tests: New file.
20243         * tests/test-environ.c: New file.
20244
20245         New module 'environ'.
20246         * modules/environ: New file.
20247         * lib/unistd.in.h (environ): New declaration.
20248         * m4/environ.m4: New file.
20249         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
20250         after use.
20251         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
20252         HAVE_DECL_ENVIRON.
20253         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
20254         HAVE_DECL_ENVIRON.
20255         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
20256         wrong claim that 'environ' is missing on some systems.
20257         * modules/execute (Depends-on): Add environ.
20258         * lib/execute.c (environ): Remove fallback declaration.
20259         * modules/pipe (Depends-on): Add environ.
20260         * lib/pipe.c (environ): Remove fallback declaration.
20261         * modules/setenv (Depends-on): Add environ.
20262         * lib/setenv.c (environ): Remove fallback declaration.
20263         * modules/unsetenv (Depends-on): Add environ.
20264         * lib/unsetenv.c (environ): Remove fallback declaration.
20265         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
20266         m4/environ.m4.
20267         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
20268         (gl_PREREQ_UNSETENV): Likewise.
20269
20270 2008-02-24  Bruno Haible  <bruno@clisp.org>
20271
20272         * doc/posix-functions/environ.texi: Document the MacOS X problem.
20273
20274 2008-02-20  Bob Proulx  <bob@proulx.com>
20275
20276         Enable use of older two part flavor 'git describe'.
20277         * build-aux/git-version-gen: If using the older two part flavor of
20278         git version then recreate the third part now present in the
20279         newer three part flavor of git describe.
20280
20281 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
20282
20283         * lib/fts.c (fts_build): Typo correction to comment.
20284
20285 2008-02-17  Bruno Haible  <bruno@clisp.org>
20286
20287         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
20288         generating no-op conflicts.
20289
20290 2008-02-17  Bruno Haible  <bruno@clisp.org>
20291
20292         Speed up by 10%.
20293         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
20294         result_entries, rather than an index-based loop.
20295
20296 2008-02-17  Bruno Haible  <bruno@clisp.org>
20297
20298         Speed up by 25%.
20299         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
20300         'hashcode_cached'.
20301         (entry_create): New function.
20302         (entry_hashcode): Use the cached hashcode if possible.
20303         (read_changelog_file, try_split_merged_entry): Use entry_create.
20304
20305 2008-02-17  Bruno Haible  <bruno@clisp.org>
20306
20307         Speed up from O(n^2) to O(n) for long ChangeLog files.
20308         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
20309         (read_changelog_file): Change implementation of entries_reversed list
20310         to rbtreehash.
20311         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
20312
20313 2008-02-17  Bruno Haible  <bruno@clisp.org>
20314
20315         New option --split-merged-entry.
20316         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
20317         (find_paragraph_end, try_split_merged_entry): New functions.
20318         (long_options): Add option --split-merged-entry.
20319         (usage): Document option --split-merged-entry.
20320         (main): Implement option --split-merged-entry.
20321         Reported by Eric Blake.
20322
20323 2008-02-17  Bruno Haible  <bruno@clisp.org>
20324
20325         * lib/git-merge-changelog.c: Include c-strstr.h.
20326         (main): Support the "git pull --rebase" situation.
20327         * modules/git-merge-changelog (Depends-on): Add c-strstr.
20328         Reported by Eric Blake.
20329
20330 2008-02-16  Eric Blake  <ebb9@byu.net>
20331
20332         Avoid doubling \ in common case of "c-maybe" quoting style.
20333         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
20334         eliding outer quotes.
20335         * lib/quotearg.h: Document this.
20336         * tests/test-quotearg.c (result_strings, inputs, results_g)
20337         (flag_results, locale_results): Test it by adding a new string to
20338         each test group.
20339         (compare_strings): Test new string.
20340
20341 2008-02-13  Eric Blake  <ebb9@byu.net>
20342
20343         Avoid trigraph quoting in default output.
20344         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
20345         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
20346         unless explicitly requested.
20347         * tests/test-quotearg.c (flag_results, main): Add additional tests.
20348
20349 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
20350
20351         Don't rely on signed integer overflowing to negative value.
20352         * lib/getugroups.c (getugroups): Include <limits.h>.
20353         Instead, compare against INT_MAX, and increment only if the test passes.
20354
20355 2008-02-13  Jim Meyering  <meyering@redhat.com>
20356         and Eric Blake  <ebb9@byu.net>
20357
20358         Avoid shadowing warning and compile errors on Linux.
20359         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
20360         forwarding macros on Linux.
20361         (dcgettext): Define a stub, for Linux.
20362         (results_g, main): Avoid warnings.
20363
20364 2008-02-12  Eric Blake  <ebb9@byu.net>
20365
20366         Silence warning in last patch.
20367         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
20368
20369         Quotearg part 4: add tests, fix c-maybe colon quoting.
20370         * lib/quotearg.h: Improve documentation.
20371         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
20372         escapes when adding outer quotes.  When quoting trigraphs, use
20373         valid C notation.  When quoting NUL, omit extra characters if next
20374         character is not digit.  Alter prototype.
20375         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
20376         callers.
20377         * modules/quotearg-tests: New module.
20378         * tests/test-quotearg.c: New test.
20379
20380 2008-02-07  Eric Blake  <ebb9@byu.net>
20381
20382         Quotearg part 3: add flag to control outer quote elision.
20383         * lib/quotearg.h (c_maybe_quoting_style): New style.
20384         (enum quoting_flags): Better documentation of flags.
20385         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
20386         c-maybe style.
20387         (quotearg_buffer_restyled): Handle new flag to elide outer
20388         quotes.
20389
20390         Quotearg part 2: add flag that can control NUL elision.
20391         * lib/quotearg.h (set_quoting_flags): New prototype.
20392         * lib/quotearg.c (struct quoting_options): Add flag field.
20393         (set_quoting_flags): New function.
20394         (quotearg_buffer_restyled): Add flags parameter.
20395         (quotearg_alloc_mem): Set the flag if length cannot be returned.
20396         (quotearg_n_options): Set the flag, since length cannot be
20397         returned.
20398         (quoting_options_from_style): Default flags correctly.
20399
20400         Quotearg part 1: more wrappers, restore quotearg_char state.
20401         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
20402         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
20403         (quotearg_colon_mem): New wrappers.
20404         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
20405         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
20406         functions.
20407         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
20408         (quotearg_colon_mem): New functions.
20409
20410 2008-02-11  Bruno Haible  <bruno@clisp.org>
20411
20412         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
20413         library in the current directory: it does not work with parallel make.
20414         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20415
20416 2008-02-11  Bruno Haible  <bruno@clisp.org>
20417
20418         * .gitattributes: New file.
20419
20420 2008-02-11  Jim Meyering  <meyering@redhat.com>
20421
20422         useless-if-before-free: Fix reversed exit values.
20423         * build-aux/useless-if-before-free: Use correct values
20424         for EXIT_MATCH and EXIT_NO_MATCH.
20425
20426         * build-aux/useless-if-before-free: Close stdout carefully.
20427
20428 2008-02-10  Bruno Haible  <bruno@clisp.org>
20429
20430         New module 'git-merge-changelog'.
20431         * modules/git-merge-changelog: New file.
20432         * lib/git-merge-changelog.c: New file.
20433
20434 2008-02-10  Jim Meyering  <meyering@redhat.com>
20435
20436         useless-if-before-free: New option: --list (-l).
20437
20438         useless-if-before-free: Don't exit immediately upon open failure.
20439         * build-aux/useless-if-before-free: Exit 2 for errors.
20440         Upon failure to open a file, don't exit immediately.
20441         Rather, just warn and continue with any remaining files.
20442
20443 2008-02-10  Bruno Haible  <bruno@clisp.org>
20444
20445         New abstract list operation 'node_set_value'.
20446         * lib/gl_list.h (gl_list_node_set_value): New function.
20447         (struct gl_list_implementation): New field node_set_value.
20448         * lib/gl_list.c (gl_list_node_set_value): New function.
20449         * lib/gl_array_list.c (gl_array_node_set_value): New function.
20450         (gl_array_list_implementation): Update.
20451         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
20452         (gl_carray_list_implementation): Update.
20453         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
20454         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
20455         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
20456         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
20457         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
20458         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
20459         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
20460         Update.
20461         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
20462         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
20463         (gl_sublist_list_implementation): Update.
20464
20465 2008-02-10  Bruno Haible  <bruno@clisp.org>
20466
20467         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
20468         Needed when ELEMENT is #defined to 'some_type *'.
20469
20470 2008-02-10  Jim Meyering  <meyering@redhat.com>
20471
20472         New script and module: useless-if-before-free
20473         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
20474         * build-aux/useless-if-before-free: New file.
20475         * modules/useless-if-before-free: New file.
20476
20477         * build-aux/gitlog-to-changelog: Use committer date, not author date.
20478
20479         xstrtol_error: Fix typo.
20480         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
20481         s/exit_failure/exit_status/.
20482
20483 2008-02-09  Jim Meyering  <meyering@redhat.com>
20484
20485         New script and module: gitlog-to-changelog
20486         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
20487         * modules/gitlog-to-changelog: New file.
20488         * build-aux/gitlog-to-changelog: New file.
20489
20490 2008-02-08  Jim Meyering  <meyering@redhat.com>
20491
20492         Avoid two "parameter unused" warnings.
20493         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
20494         Mark "st" as used.
20495
20496         Use "git COMMAND", not "git-COMMAND".
20497         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
20498         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
20499         * build-aux/git-version-gen: Use "git status", not "git-status".
20500
20501 2008-02-07  Bruno Haible  <bruno@clisp.org>
20502
20503         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
20504         Avoids a crash on Windows Vista.
20505         Reported by Adam Strzelecki <ono@java.pl> via
20506         Simon Josefsson <simon@josefsson.org>.
20507
20508 2008-02-06  Bruno Haible  <bruno@clisp.org>
20509
20510         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
20511         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
20512         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
20513         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
20514         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
20515         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
20516         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
20517         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
20518         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
20519         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20520         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20521         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20522         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20523         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20524         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20525         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
20526         left-adjust flag.
20527         * tests/test-snprintf-posix.h (test_function): Likewise.
20528         * tests/test-sprintf-posix.h (test_function): Likewise.
20529         * tests/test-vasprintf-posix.c (test_function): Likewise.
20530         * doc/posix-functions/fprintf.texi: Update.
20531         * doc/posix-functions/printf.texi: Update.
20532         * doc/posix-functions/snprintf.texi: Update.
20533         * doc/posix-functions/sprintf.texi: Update.
20534         * doc/posix-functions/vfprintf.texi: Update.
20535         * doc/posix-functions/vprintf.texi: Update.
20536         * doc/posix-functions/vsnprintf.texi: Update.
20537         * doc/posix-functions/vsprintf.texi: Update.
20538         Reported by Peter Fales <psfales@alcatel-lucent.com>.
20539
20540 2008-02-06  Bruno Haible  <bruno@clisp.org>
20541
20542         Fix bug introduced on 2008-01-26.
20543         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
20544
20545 2008-02-06  Bruno Haible  <bruno@clisp.org>
20546
20547         Fix bug introduced on 2007-06-10.
20548         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
20549         !NEED_PRINTF_FLAG_ZERO.
20550
20551 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
20552
20553         getloadavg: use libperfstat on AIX5
20554         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
20555
20556 2008-02-03  Bruno Haible  <bruno@clisp.org>
20557
20558         * lib/diffseq.h: Add comments about required #includes.
20559         Reported by Michael Biggs <gnulib@doubleplum.net>.
20560
20561 2008-02-01  Bruno Haible  <bruno@clisp.org>
20562
20563         * users.txt: Add gnuit.
20564
20565 2008-01-31  Bruno Haible  <bruno@clisp.org>
20566
20567         * lib/md4.c (set_uint32): Mark as inline.
20568         * lib/md5.c (set_uint32): Likewise.
20569         * lib/sha1.c (set_uint32): Likewise.
20570         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
20571         * m4/md5.m4 (gl_MD5): Likewise.
20572         * m4/sha1.m4 (gl_SHA1): Likewise.
20573
20574 2008-01-31  Jim Meyering  <meyering@redhat.com>
20575
20576         Use "sizeof VAR", rather than a literal "4".
20577         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
20578         * lib/md4.c (md4_read_ctx): Likewise.
20579         * lib/sha1.c (sha1_read_ctx): Likewise.
20580
20581 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20582
20583         * tests/test-sha1.c: New file, based on test-md5.c.
20584
20585         * modules/crypto/sha1-tests: New file.
20586
20587 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20588
20589         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
20590
20591 2008-01-31  Jim Meyering  <meyering@redhat.com>
20592
20593         Prefer "sizeof v" over the equivalent "4".
20594         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
20595         * lib/md5.c (set_uint32): Likewise.
20596         * lib/sha1.c (set_uint32): Likewise.
20597
20598 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20599
20600         * lib/sha1.c (set_uint32): Mark function as static.
20601
20602 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20603
20604         md2: clarify comments to say that alignment is not required.
20605         * lib/md2.h: Remove warning about alignment in comment.
20606         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
20607         never been required.
20608
20609 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20610
20611         md4: adapt alignment constraint fix from sha1.
20612         * lib/md4.c (set_uint32): New function, from sha1.c
20613         (md4_read_ctx): Use it.
20614         (md4_finish_ctx): Doc fix.
20615         * lib/md4.h: Doc fix.
20616
20617 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20618
20619         md5: adapt alignment constraint fix from sha1.
20620         * lib/md5.c (set_uint32): New function, from sha1.c
20621         (md5_read_ctx): Use it.
20622         (md5_finish_ctx): Doc fix.
20623         * lib/md5.h: Doc fix.
20624
20625 2008-01-30  Peter Palfrader  <weasel@debian.org>
20626
20627         sha1: remove the result buffer alignment constraint
20628         * lib/sha1.c (set_uint32): New function.
20629         (sha1_read_ctx): Rewrite to remove the result buffer alignment
20630         constraint.
20631         (sha1_finish_ctx): Remove comment warning about alignment constraint.
20632         * lib/sha1.h: Likewise.
20633
20634 2008-01-30  Andreas Schwab  <schwab@suse.de>
20635             Bruno Haible  <bruno@clisp.org>
20636
20637         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
20638         correct definition of LDBL_MIN_EXP.
20639
20640 2008-01-30  Karl Berry  <karl@gnu.org>
20641
20642         * config/srclist-update: try to preserve x bit on updates.
20643         * config/srclistvars.sh: update for karl.
20644
20645 2008-01-29  Jim Meyering  <meyering@redhat.com>
20646
20647         vasnprintf.c: Avoid warning about unused label
20648         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
20649         "overflow" label definition and associated code with the
20650         same cpp condition that guards the sole use of that label.
20651
20652 2008-01-26  Bruno Haible  <bruno@clisp.org>
20653
20654         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
20655         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
20656         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
20657         * lib/isnanl-nolibm.h (isnanl): Likewise.
20658         Reported by Paul Eggert <eggert@cs.ucla.edu>.
20659
20660 2008-01-26  Bruno Haible  <bruno@clisp.org>
20661
20662         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
20663         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
20664
20665 2008-01-26  Bruno Haible  <bruno@clisp.org>
20666
20667         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
20668         GCC >= 4.0 built-in.
20669         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
20670
20671 2008-01-26  Bruno Haible  <bruno@clisp.org>
20672
20673         Rename isnan, applicable to 'double' only, to isnand.
20674         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
20675         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
20676         (configure.ac): Update.
20677         (Include): Replace "isnan.h" with "isnand.h".
20678         * m4/isnand.m4: Renamed from m4/isnan.m4.
20679         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
20680         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
20681         instead of isnan.c.
20682         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
20683         instead of HAVE_ISNAN_IN_LIBC.
20684         (isnand): Renamed from isnan.
20685         * lib/isnand.c: New file.
20686         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
20687         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
20688         (Makefile.am): Update.
20689         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
20690         Include isnand.h instead of isnan.h.
20691         (main): Test isnand instead of isnan.
20692         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
20693         isnan-nolibm.
20694         * modules/frexp (Depends-on): Likewise.
20695         * modules/frexp-tests (Depends-on): Likewise.
20696         * modules/frexp-nolibm (Depends-on): Likewise.
20697         * modules/frexp-nolibm-tests (Depends-on): Likewise.
20698         * modules/isfinite (Depends-on): Likewise.
20699         * modules/round-tests (Depends-on): Likewise.
20700         * modules/signbit (Depends-on): Likewise.
20701         * modules/signbit-tests (Depends-on): Likewise.
20702         * modules/snprintf-posix (Depends-on): Likewise.
20703         * modules/sprintf-posix (Depends-on): Likewise.
20704         * modules/trunc-tests (Depends-on): Likewise.
20705         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
20706         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
20707         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
20708         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
20709         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
20710         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
20711         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
20712         * modules/vasnprintf-posix (Depends-on): Likewise.
20713         * modules/vasprintf-posix (Depends-on): Likewise.
20714         * modules/vfprintf-posix (Depends-on): Likewise.
20715         * modules/vsnprintf-posix (Depends-on): Likewise.
20716         * modules/vsprintf-posix (Depends-on): Likewise.
20717         * lib/frexp.c: Include isnand.h instead of isnan.h.
20718         (ISNAN): Set to isnand instead of isnan.
20719         * lib/isfinite.c: Include isnand.h instead of isnan.h.
20720         (gl_isfinited): Use isnand instead of isnan.
20721         * lib/signbitd.c: Include isnand.h instead of isnan.h.
20722         (gl_signbitd): Use isnand instead of isnan.
20723         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
20724         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
20725         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
20726         (main): Use isnand instead of isnan.
20727         * tests/test-round1.c: Include isnand.h.
20728         (main): Use isnand instead of isnan.
20729         * tests/test-round2.c: Include isnand.h instead of isnan.h.
20730         (ISNAN): Set to isnand instead of isnan.
20731         * tests/test-trunc1.c: Include isnand.h.
20732         (main): Use isnand instead of isnan.
20733         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
20734         (equal): Use isnand instead of isnan.
20735         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
20736         isnand-nolibm.
20737         * NEWS: Mention the change.
20738
20739 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
20740             Bruno Haible  <bruno@clisp.org>
20741
20742         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
20743         the GCC builtins for signbits are present and set
20744         REPLACE_SIGNBIT_USING_GCC if so.
20745         * lib/math.in.h (signbit): Define using GCC builtins if
20746         REPLACE_SIGNBIT_USING_GCC is set.
20747         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
20748         REPLACE_SIGNBIT_USING_GCC.
20749         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
20750
20751 2008-01-25  Jim Meyering  <meyering@redhat.com>
20752
20753         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
20754         * lib/poll.c: Include <config.h>, not "config.h".
20755         * tests/test-getaddrinfo.c: Likewise.
20756
20757 2008-01-25  Simon Josefsson  <simon@josefsson.org>
20758
20759         * modules/sockets-tests: New file.
20760
20761 2008-01-24  Simon Josefsson  <simon@josefsson.org>
20762
20763         * modules/sockets: New module, can be used to call WSA_Startup and
20764         WSA_Cleanup when needed.
20765
20766         * lib/sockets.h, lib/sockets.c: New files.
20767
20768         * m4/sockets.m4: New file.
20769
20770         * tests/test-sockets.c: New file.
20771
20772 2008-01-19  Bruno Haible  <bruno@clisp.org>
20773
20774         * doc/posix-headers: Renamed from doc/headers.
20775         * doc/posix-functions: Renamed from doc/functions.
20776         * doc/gnulib.texi: Update.
20777
20778 2008-01-19  Bruno Haible  <bruno@clisp.org>
20779
20780         * doc/glibc-functions/strcasestr.texi: Include contents of
20781         doc/functions/strcasestr.texi, fixing the list of platforms.
20782         * doc/functions/strcasestr.texi: Remove file.
20783
20784 2008-01-19  Bruno Haible  <bruno@clisp.org>
20785
20786         * doc/glibc-functions/memmem.texi: Include contents of
20787         doc/functions/memmem.texi.
20788         * doc/functions/memmem.texi: Remove file.
20789
20790 2008-01-18  Bruno Haible  <bruno@clisp.org>
20791
20792         * doc/glibc-functions/*.texi: New files.
20793         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
20794         to use the new files.
20795
20796 2008-01-17  Bruno Haible  <bruno@clisp.org>
20797
20798         * tests/test-gethostname.c (main): Fix printf statement.
20799
20800 2008-01-17  Simon Josefsson  <simon@josefsson.org>
20801
20802         * modules/gethostname-tests: New file.
20803
20804         * tests/test-gethostname.c: New file.
20805
20806 2008-01-17  Simon Josefsson  <simon@josefsson.org>
20807
20808         * lib/gethostname.c: Include string.h unconditionally, strncpy is
20809         used by the UNAME case.  Reported by Bruno Haible
20810         <bruno@clisp.org>.
20811
20812 2008-01-17  Eric Blake  <ebb9@byu.net>
20813
20814         Convert c-strcasestr to be more efficient.
20815         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
20816         (Depends-on): Add c-strcase, remove malloca, strnlen.
20817         * tests/test-c-strcasestr.c (main): Enhance test.
20818         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
20819
20820 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
20821
20822         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
20823         Use it in creating po/Makevars.
20824
20825 2008-01-15  Simon Josefsson  <simon@josefsson.org>
20826
20827         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
20828         Applications that requires it should initialize libgcrypt
20829         manually.
20830
20831 2008-01-16  Simon Josefsson  <simon@josefsson.org>
20832
20833         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
20834
20835 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
20836
20837         Fix problem with getdate on mingw32 reported by Simon Josefsson
20838         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
20839         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
20840         tzname", when deciding whether to declare tzname.
20841         * lib/strftime.c (tzname): Likewise.
20842
20843 2008-01-15  Bruno Haible  <bruno@clisp.org>
20844
20845         Work around a MacOS X 10.5 bug in frexpl().
20846         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
20847         * doc/functions/frexpl.texi: Document the bug.
20848         Reported by Elias Pipping <pipping@gentoo.org>.
20849
20850 2008-01-14  Eric Blake  <ebb9@byu.net>
20851
20852         Touch up previous patch.
20853         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
20854         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
20855
20856         Convert strcasestr module to use Two-Way algorithm.
20857         * modules/strcasestr-simple: New module, based on the old
20858         strcasestr, but with Two-Way rather than KMP.
20859         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
20860         * lib/string.in.h (rpl_strcasestr): Declare.
20861         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
20862         performance.
20863         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
20864         * modules/string (Makefile.am): Support strcasestr.
20865         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
20866         * modules/strcasestr-tests (Depends-on): Check for alarm.
20867         * tests/test-strcasestr.c: Augment test.
20868         * lib/str-two-way.h: Clean up stray macro.
20869         * NEWS: Document new module.
20870         * MODULES.html.sh (string handling): Likewise.
20871         * doc/functions/strcasestr.texi: New file.
20872         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
20873         here, since it is not a POSIX function.
20874
20875 2008-01-14  Colin Watson  <cjwatson@debian.org>
20876             Bruno Haible  <bruno@clisp.org>
20877
20878         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
20879         works fine; if not, set REPLACE_STRSIGNAL.
20880         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
20881         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
20882         REPLACE_STRSIGNAL.
20883         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
20884         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
20885         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
20886
20887 2008-01-14  Bruno Haible  <bruno@clisp.org>
20888
20889         * modules/strsignal (Include): Change to <string.h>.
20890
20891 2008-01-14  Colin Watson  <cjwatson@debian.org>
20892
20893         * modules/argp (Notice): Add a notice recommending to change
20894         XGETTEXT_OPTIONS.
20895         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
20896
20897 2008-01-13  Colin Watson  <cjwatson@debian.org>
20898
20899         * modules/strsignal-tests: New file.
20900         * tests/test-strsignal.c: New file.
20901
20902         * lib/strsignal.c: New file, from glibc with modifications.
20903         * lib/siglist.h: New file, from glibc with modifications.
20904         * lib/string.in.h (strsignal): New declaration.
20905         * m4/strsignal.m4: New file.
20906         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
20907         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
20908         * modules/strsignal: New file.
20909         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
20910         HAVE_DECL_STRSIGNAL.
20911
20912 2008-01-13  Bruno Haible  <bruno@clisp.org>
20913
20914         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
20915         locale encoding is not ASCII. Needed for OpenBSD 4.0.
20916         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
20917         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
20918
20919 2008-01-13  Bruno Haible  <bruno@clisp.org>
20920
20921         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
20922         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
20923         * lib/argp.h (__attribute__): Likewise.
20924         * lib/c-stack.c (__attribute__): Likewise.
20925         * lib/error.h (__attribute__): Likewise.
20926         * lib/fts.c (__attribute__): Likewise.
20927         * lib/openat.h (__attribute__): Likewise.
20928         * lib/stdio.in.h (__attribute__): Likewise.
20929         * lib/string.in.h (__attribute__): Likewise.
20930         * lib/utimens.c (__attribute__): Likewise.
20931         * lib/vasnprintf.h (__attribute__): Likewise.
20932         * lib/xalloc.h (__attribute__): Likewise.
20933         * lib/xprintf.h (__attribute__): Likewise.
20934         * lib/xstrtol.h (__attribute__): Likewise.
20935         * lib/xvasprintf.h (__attribute__): Likewise.
20936
20937 2008-01-12  Bruno Haible  <bruno@clisp.org>
20938
20939         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
20940         * doc/glibc-headers/a.out.texi: New file.
20941         * doc/glibc-headers/aliases.texi: New file.
20942         * doc/glibc-headers/alloca.texi: New file.
20943         * doc/glibc-headers/ar.texi: New file.
20944         * doc/glibc-headers/argp.texi: New file.
20945         * doc/glibc-headers/argz.texi: New file.
20946         * doc/glibc-headers/byteswap.texi: New file.
20947         * doc/glibc-headers/crypt.texi: New file.
20948         * doc/glibc-headers/endian.texi: New file.
20949         * doc/glibc-headers/envz.texi: New file.
20950         * doc/glibc-headers/err.texi: New file.
20951         * doc/glibc-headers/error.texi: New file.
20952         * doc/glibc-headers/execinfo.texi: New file.
20953         * doc/glibc-headers/fpu_control.texi: New file.
20954         * doc/glibc-headers/fstab.texi: New file.
20955         * doc/glibc-headers/fts.texi: New file.
20956         * doc/glibc-headers/getopt.texi: New file.
20957         * doc/glibc-headers/ieee754.texi: New file.
20958         * doc/glibc-headers/ifaddrs.texi: New file.
20959         * doc/glibc-headers/libintl.texi: New file.
20960         * doc/glibc-headers/mcheck.texi: New file.
20961         * doc/glibc-headers/mntent.texi: New file.
20962         * doc/glibc-headers/obstack.texi: New file.
20963         * doc/glibc-headers/paths.texi: New file.
20964         * doc/glibc-headers/printf.texi: New file.
20965         * doc/glibc-headers/pty.texi: New file.
20966         * doc/glibc-headers/resolv.texi: New file.
20967         * doc/glibc-headers/shadow.texi: New file.
20968         * doc/glibc-headers/sysexits.texi: New file.
20969         * doc/glibc-headers/ttyent.texi: New file.
20970
20971 2008-01-12  Jim Meyering  <meyering@redhat.com>
20972
20973         announce-gen: emit Gnulib's git-based version string.
20974         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
20975         New option --gnulib-version=V, where V is expected to be
20976         the output of running git describe in the gnulib directory.
20977         (get_tool_versions): Request feedback on xdelta.  I suspect it's
20978         not useful, and plan to stop publishing an xdelta file with each
20979         coreutils release.
20980
20981         * build-aux/announce-gen: Also check for lzma-compressed files.
20982
20983 2008-01-11  Bruno Haible  <bruno@clisp.org>
20984
20985         * tests/test-memmem.c (main): Increase maximum allowed time.
20986         * tests/test-strstr.c (main): Likewise.
20987
20988 2008-01-11  Bruno Haible  <bruno@clisp.org>
20989
20990         * doc/functions/memmem.texi: Add more precisions about platforms.
20991         * doc/functions/strstr.texi: Likewise.
20992
20993 2008-01-10  Eric Blake  <ebb9@byu.net>
20994
20995         * m4/strstr.m4: Delete cruft from copy-n-paste.
20996         Reported by Bruno Haible.
20997
20998 2008-01-10  Bruno Haible  <bruno@clisp.org>
20999
21000         Make c-strstr rely on strstr.
21001         * lib/c-strstr.c: Don't include str-kmp.h.
21002         (c_strstr): Define in terms of strstr.
21003         * modules/c-strstr (Files): Remove lib/str-kmp.h.
21004         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
21005
21006 2008-01-10  Bruno Haible  <bruno@clisp.org>
21007
21008         * doc/gnulib.texi (String Functions in C Locale): New section.
21009         * doc/c-ctype.texi: New file.
21010         * doc/c-strcase.texi: New file.
21011         * doc/c-strcaseeq.texi: New file.
21012         * doc/c-strcasestr.texi: New file.
21013         * doc/c-strstr.texi: New file.
21014         * doc/c-strtod.texi: New file.
21015         * doc/c-strtold.texi: New file.
21016
21017 2008-01-10  Eric Blake  <ebb9@byu.net>
21018
21019         * lib/relocatable.h: Fix a comment.
21020
21021 2008-01-10  Eric Blake  <ebb9@byu.net>
21022
21023         Share two-way algorithm.
21024         * lib/str-two-way.h: New file, merged from...
21025         * lib/memmem.c: ...here...
21026         * lib/strstr.c: ...and here.
21027         * modules/memmem (Files): Use it.
21028         * modules/strstr (Files): Likewise.
21029
21030         Avoid quadratic strstr implementations.
21031         * lib/strstr.c: New file.
21032         * m4/strstr.m4: Likewise.
21033         * modules/strstr: Likewise.
21034         * modules/strstr-tests: Likewise.
21035         * tests/test-strstr.c: Likewise.
21036         * lib/string.in.h (rpl_strstr): Declare.
21037         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
21038         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
21039         * modules/string (Makefile.am): Likewise.
21040         * MODULES.html.sh (string handling): Mention new module.
21041         * doc/functions/strstr.texi (strstr): Document the bug.
21042
21043 2008-01-10  Bruno Haible  <bruno@clisp.org>
21044
21045         * lib/relocatable.h (relocate): State whether result is freshly
21046         allocated or not.
21047         * lib/relocatable.c (relocate): Return a freshly allocated string
21048         instead of a pointer to a privately held string.
21049         Reported by Sylvain Beucler <beuc@gnu.org>.
21050
21051 2008-01-10  Colin Watson  <cjwatson@debian.org>
21052
21053         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
21054         s/S_ISNLK/S_ISLNK/.
21055
21056 2008-01-09  Bruno Haible  <bruno@clisp.org>
21057
21058         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
21059         and other files.
21060         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
21061         if it's only a guess.
21062         * modules/memmem: Simplify by depending on memmem-simple.
21063
21064 2008-01-09  Bruno Haible  <bruno@clisp.org>
21065
21066         Work around OpenBSD 4.0 tdelete() bug.
21067         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
21068         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
21069         macros and don't redefine the enum values.
21070         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
21071         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
21072         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
21073
21074 2008-01-09  Bruno Haible  <bruno@clisp.org>
21075
21076         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
21077         (main): Don't perform the tests if setlocale did not install a UTF-8
21078         locale. Needed on OpenBSD 4.0.
21079         * modules/wcwidth-tests (Depends-on): Add localcharset.
21080
21081 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
21082
21083         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
21084         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
21085         * NEWS: announce this.
21086         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
21087
21088 2008-01-09  Simon Josefsson  <simon@josefsson.org>
21089         and Eric Blake  <ebb9@byu.net>
21090
21091         Add memmem-simple module.
21092         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
21093         (gl_FUNC_MEMMEM): Separate performance from presence checks.
21094         * modules/memmem-simple: New file.
21095         * modules/memmem (Description): Tweak.
21096         * MODULES.html.sh (string handling): Mention new module.
21097         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
21098         addressed by memmem-simple.
21099         * NEWS: Document the difference.
21100
21101 2008-01-09  Eric Blake  <ebb9@byu.net>
21102
21103         Give gcc some memmem optimization hints.
21104         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
21105         (strcasestr): Declare as pure.
21106         * modules/memmem (Maintainer): Claim my implementation.
21107
21108 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21109
21110         Support AIX 6.1 and higher.
21111         * build-aux/config.libpath: Likewise.
21112         * build-aux/config.rpath: Likewise.
21113
21114 2008-01-08  Jim Meyering  <meyering@redhat.com>
21115             Bruno Haible  <bruno@clisp.org>
21116
21117         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
21118         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
21119         Reported by Peter Fales in
21120         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
21121
21122 2008-01-08  Bruno Haible  <bruno@clisp.org>
21123
21124         * modules/unictype/category-of (Depends-on): Add
21125         unictype/category-none.
21126         * modules/unictype/category-and-tests (Depends-on): Add
21127         unictype/category-{L,N,Lu,Nd}.
21128         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
21129         * modules/unictype/category-or-tests (Depends-on): Add
21130         unictype/category-{L,N}.
21131         * modules/unictype/category-name-tests (Depends-on): Add
21132         unictype/category-{Z,Nl}.
21133         Reported by Simon Josefsson.
21134
21135 2008-01-08  Bruno Haible  <bruno@clisp.org>
21136
21137         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
21138         convention better.
21139         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
21140         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
21141         Reported by Peter Miller <millerp@canb.auug.org.au>.
21142
21143 2008-01-08  Eric Blake  <ebb9@byu.net>
21144
21145         Rewrite memmem to guarantee linear complexity without malloc.
21146         * lib/memmem.c (memmem): Use Two-Way rather than
21147         Knuth-Morris-Pratt, to allow O(1) space usage.
21148         (critical_factorization, two_way_short_needle)
21149         (two_way_long_needle): New functions.
21150         (knuth_morris_pratt): Delete.
21151         * modules/memmem (Depends-on): No longer need malloca or stdbool.
21152         Add stdint.
21153         * tests/test-memmem.c (main): Add tests for periodic needle and
21154         sublinear performance.
21155         * doc/functions/memmem.texi (memmem): Document other deficiencies
21156         in cygwin and older glibc.
21157
21158 2008-01-08  Bruno Haible  <bruno@clisp.org>
21159
21160         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
21161         augmentation.
21162
21163 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
21164
21165         Add a configure time option: --disable-acl.
21166         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
21167         AC_ARG_ENABLE(acl).
21168
21169 2008-01-06  Simon Josefsson  <simon@josefsson.org>
21170
21171         * tests/test-localename.c: Don't include obsolete "setenv.h".
21172
21173         * modules/localename-tests (Depends-on): Need unsetenv.
21174
21175 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21176
21177         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
21178
21179 2008-01-06  Colin Watson  <cjwatson@debian.org>
21180
21181         * users.txt: Add man-db.
21182
21183 2008-01-07  Bruno Haible  <bruno@clisp.org>
21184
21185         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
21186         previous section name.
21187
21188 2008-01-07  Bruno Haible  <bruno@clisp.org>
21189
21190         * lib/progname.c (set_program_name): Don't strip off a leading
21191         "lt-" prefix outside a .libs directory.
21192         Suggested by Paul Eggert.
21193
21194 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
21195             Bruno Haible  <bruno@clisp.org>
21196
21197         Improve memory cleanup in 'relocatable' module.
21198         * lib/relocatable.h (compute_curr_prefix): Change return type to
21199         'char *'.
21200         * lib/relocatable.c (compute_curr_prefix): Change return type to
21201         'char *'. Free curr_installdir after use.
21202         (relocate): Free curr_prefix_better after use.
21203         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
21204
21205 2008-01-01  Bruno Haible  <bruno@clisp.org>
21206
21207         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
21208         failure on older glibc systems.
21209         Reported by Peter Fales <psfales@alcatel-lucent.com>.
21210
21211 2008-01-05  Eric Blake  <ebb9@byu.net>
21212
21213         Avoid quadratic system memmem.
21214         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
21215         Reported by Ralf Wildenhues.
21216
21217         Fix memmem test for mingw.
21218         * modules/memmem-tests (configure.ac): Check for alarm.
21219         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
21220         it.
21221         * doc/functions/memmem.texi: New file.
21222         * doc/gnulib.texi (Function Substitutes): Add memmem.
21223         Reported by Bruno Haible.
21224
21225 2008-01-04  Bruno Haible  <bruno@clisp.org>
21226
21227         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
21228         Require gl_HEADER_STRINGS_H_DEFAULTS, not
21229         gl_HEADER_STRING_H_DEFAULTS.
21230
21231 2008-01-04  Eric Blake  <ebb9@byu.net>
21232
21233         Shorten duration of memmem test.
21234         * tests/test-memmem.c (main): Use alarm to declare failure if test
21235         is taking too long.
21236         Reported by Ralf Wildenhues.
21237
21238 2007-12-21  Simon Josefsson  <simon@josefsson.org>
21239
21240         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
21241         string, needed by strerror.
21242
21243 2008-01-03  Colin Watson  <cjwatson@debian.org>
21244             Bruno Haible  <bruno@clisp.org>
21245
21246         * doc/gnulib-tool.texi (Localization): New section.
21247
21248 2008-01-02  Bruno Haible  <bruno@clisp.org>
21249
21250         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
21251         variables to 'unsigned char *' type.
21252         Reported by Paul Eggert.
21253
21254 2008-01-02  Jim Meyering  <jim@meyering.net>
21255
21256         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
21257
21258 2007-12-31  Jim Meyering  <jim@meyering.net>
21259
21260         Avoid use of private FTS type name.
21261         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
21262
21263 2007-12-30  Karl Berry  <karl@gnu.org>
21264
21265         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
21266         work around defect in Texinfo and/or the standalone Info browser.
21267
21268 2007-12-30  Bruno Haible  <bruno@clisp.org>
21269
21270         Unify 5 copies of the KMP code.
21271         * lib/str-kmp.h: New file.
21272         * lib/c-strcasestr.c: Include str-kmp.h.
21273         (knuth_morris_pratt): Remove function.
21274         (c_strcasestr): Update.
21275         * lib/c-strstr.c: Include str-kmp.h.
21276         (knuth_morris_pratt): Remove function.
21277         (c_strcasestr): Update.
21278         * lib/mbscasestr.c: Include str-kmp.h.
21279         (knuth_morris_pratt_unibyte): Remove function.
21280         * lib/mbsstr.c: Include str-kmp.h.
21281         (knuth_morris_pratt_unibyte): Remove function.
21282         * lib/strcasestr.c: Include str-kmp.h.
21283         (knuth_morris_pratt): Remove function.
21284         (strcasestr): Update.
21285         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
21286         * modules/c-strstr (Files): Likewise.
21287         * modules/mbscasestr (Files): Likewise.
21288         * modules/mbsstr (Files): Likewise.
21289         * modules/strcasestr (Files): Likewise.
21290         Suggested by Paul Eggert.
21291
21292 2007-12-30  Bruno Haible  <bruno@clisp.org>
21293
21294         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
21295         defined.
21296
21297 2007-12-30  Bruno Haible  <bruno@clisp.org>
21298
21299         * lib/xmalloca.h: Include xalloc.h.
21300         (xnmalloca): New macro.
21301
21302 2007-12-30  Bruno Haible  <bruno@clisp.org>
21303
21304         * lib/malloca.h (nmalloca): New macro.
21305         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
21306         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
21307         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
21308         knuth_morris_pratt_multibyte): Likewise.
21309         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
21310         knuth_morris_pratt_multibyte): Likewise.
21311         * lib/memmem.c (knuth_morris_pratt): Likewise.
21312         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
21313
21314 2007-12-25  Bruno Haible  <bruno@clisp.org>
21315
21316         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
21317         * lib/glob.c: Don't include openat.h.
21318         (link_exists2_p): Add back the code that deals with the
21319         !GLOB_ALTDIRFUNC case.
21320         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
21321         let it do the filename concatenation.
21322         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
21323         * modules/glob (Depends-on): Remove openat.
21324
21325 2007-12-31  Bruno Haible  <bruno@clisp.org>
21326
21327         * modules/dirfd (License): Change to LGPLv2+.
21328         Approved by Jim Meyering.
21329
21330 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
21331
21332         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
21333         when multiplying M by sizeof (size_t).
21334
21335 2007-12-10  Martin Lambers  <marlam@marlam.de>
21336
21337         Override getpagesize on mingw.
21338         * lib/getpagesize.c: New file.
21339         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
21340         * modules/getpagesize (Files): Add lib/getpagesize.c.
21341         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
21342         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21343         REPLACE_GETPAGESIZE.
21344         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
21345
21346 2007-12-25  Bruno Haible  <bruno@clisp.org>
21347
21348         * modules/localcharset (Notice): New field.
21349         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
21350         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
21351
21352 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
21353             Bruno Haible  <bruno@clisp.org>
21354
21355         Avoid using the syntax symbol() in formatted documentation.
21356         * MODULES.html.sh (func_module): When replacing symbol() with a
21357         hyperlink, remove the parentheses. Show an error if some remain.
21358         Recognize and render the '...' syntax.
21359         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
21360         Rework. Add paragraph about GCC's inlining.
21361         * doc/alloca.texi: Likewise.
21362         * doc/error.texi: Remove parentheses from symbol reference.
21363         * doc/gnulib-intro.texi: Likewise.
21364         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
21365         * modules/fnmatch (Description): Reword to say "the ... function".
21366         * modules/full-read (Description): Likewise.
21367         * modules/full-write (Description): Likewise.
21368         * modules/safe-read (Description): Likewise.
21369         * modules/safe-write (Description): Likewise.
21370         * modules/strchrnul (Description): Likewise.
21371         * modules/trim (Description): Likewise.
21372         * modules/error (Description): Remove parentheses from symbol
21373         references.
21374         * modules/verror (Description): Likewise.
21375         Reported by Karl Berry.
21376
21377 2007-12-25  Bruno Haible  <bruno@clisp.org>
21378
21379         Fixup after 2007-10-16 commit.
21380         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
21381
21382 2007-12-24  Bruno Haible  <bruno@clisp.org>
21383
21384         Make --enable-relocatable work with DESTDIR.
21385         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
21386         to compute installdir from destprog.
21387         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
21388         also set the RELOC_DESTDIR variable.
21389         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
21390
21391 2007-12-24  Bruno Haible  <bruno@clisp.org>
21392
21393         Fix link error due to xalloc_die().
21394         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
21395         of xreadlink.
21396         * lib/relocwrapper.c: Update comments.
21397         * build-aux/install-reloc: Remove xreadlink.c from file list.
21398         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
21399         xreadlink.c.
21400         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
21401
21402 2007-12-24  Bruno Haible  <bruno@clisp.org>
21403
21404         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
21405         * lib/setenv.h: Remove file.
21406         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
21407         lib/setenv.h.
21408         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
21409         (Depends-on): Add stdlib.
21410         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
21411         gl_FUNC_UNSETENV.
21412         (Include): Replace setenv.h with <stdlib.h>.
21413         * modules/unsetenv: New file.
21414         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
21415         * lib/unsetenv.c: Include <stdlib.h> first.
21416         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
21417         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
21418         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
21419         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
21420         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
21421         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
21422         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
21423         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
21424         * doc/functions/unsetenv.texi: Update.
21425         * modules/xsetenv (Depends-on): Add unsetenv.
21426         * modules/getdate (Depends-on): Likewise.
21427         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
21428         * lib/xsetenv.c: Don't include setenv.h.
21429         * lib/getdate.y: Likewise.
21430         * lib/relocwrapper.c: Likewise.
21431         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
21432         (Depends-on): Add stdlib.
21433         * NEWS: Mention the changes.
21434         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
21435
21436 2007-12-23  Bruno Haible  <bruno@clisp.org>
21437
21438         * lib/memmem.c (memmem): Use lowercase variable names. Tab
21439         indentation.
21440
21441 2007-12-23  Bruno Haible  <bruno@clisp.org>
21442
21443         * lib/c-strcasestr.c: Add more comments.
21444         * lib/c-strstr.c: Likewise.
21445         * lib/mbscasestr.c: Likewise.
21446         * lib/mbsstr.c: Likewise.
21447         * lib/strcasestr.c: Likewise.
21448         * lib/memmem.c: Likewise.
21449
21450 2007-12-23  Bruno Haible  <bruno@clisp.org>
21451
21452         * tests/test-memmem.c: Include <string.h> first.
21453
21454 2007-12-22  Bruno Haible  <bruno@clisp.org>
21455
21456         * gnulib-tool (func_create_testdir): Change $auxdir while generating
21457         the contents of $testsbase.
21458         Reported by Ralf Wildenhues.
21459
21460 2007-12-22  Bruno Haible  <bruno@clisp.org>
21461
21462         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
21463         two variables local_ldadd_before, local_ldadd_last.
21464
21465 2007-12-20  Eric Blake  <ebb9@byu.net>
21466
21467         Work around circular library issue when cross-compiling.
21468         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
21469         that progname.o does not need to pull in rpl_memcmp.
21470
21471 2007-12-19  Eric Blake  <ebb9@byu.net>
21472
21473         Fix memmem to avoid O(n^2) worst-case complexity.
21474         * lib/memmem.c (knuth_morris_pratt): New function.
21475         (memmem): Use it if first few naive iterations fail.
21476         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
21477         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
21478         * modules/memchr (License): Likewise.
21479         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
21480         malloca.
21481         * tests/test-memmem.c: Rewrite, borrowing ideas from
21482         test-mbsstr1.c; the old version wouldn't even compile!
21483         * modules/memmem-tests: New file.
21484         * lib/string.in.h (rpl_memmem): Add declaration.
21485         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
21486         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
21487         REPLACE_MEMMEM.
21488
21489 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
21490
21491         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
21492         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
21493         before any system include files, and undef after them all.  This
21494         should fix a problem on VMS reported by John E. Malmberg in
21495         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
21496
21497 2007-12-17  Eric Blake  <ebb9@byu.net>
21498
21499         Revert addition of verify, for BSD/OS.
21500         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
21501         can't handle large files, for the sake of obsolete platforms.
21502         * modules/fseeko (Depends-on): Remove verify.
21503         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
21504         * doc/functions/ftello.texi (ftello): Likewise.
21505         * doc/functions/fgetpos.texi (fgetpos): Likewise.
21506         Reported by Larry Jones.
21507
21508 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
21509
21510         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
21511         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
21512
21513 2007-12-17  Jim Meyering  <meyering@redhat.com>
21514
21515         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
21516         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
21517         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
21518         * modules/getcwd (Depends-on): Add openat.
21519         Reported by Petr Salinger.
21520
21521 2007-12-17  Bruno Haible  <bruno@clisp.org>
21522
21523         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
21524         avoid a segmentation fault of the configure test on x86_64 systems.
21525
21526 2007-12-15  Jim Meyering  <meyering@redhat.com>
21527
21528         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
21529
21530 2007-12-13  Eric Blake  <ebb9@byu.net>
21531
21532         Another fseek test.
21533         * tests/test-fseek.c (main): Also test ungetc handling.
21534         * tests/test-fseeko.c (main): Likewise.
21535         * modules/fseeko (Depends-on): Add verify.
21536         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
21537         large.
21538         Reported by Larry Jones.
21539
21540         Fix fseeko on mingw.
21541         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
21542         seek.
21543
21544         Beef up fseek tests.
21545         * tests/test-fseek.c (main): Also test eof handling.
21546         * tests/test-fseeko.c (main): Likewise.
21547         Reported by Larry Jones.
21548
21549 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
21550
21551         Fix fseeko on BSD-based platforms.
21552         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
21553         successful seek.
21554
21555 2007-12-12  Eric Blake  <ebb9@byu.net>
21556
21557         Allow circular dependency of separate libtests.a
21558         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
21559         when use_libtests.
21560
21561 2007-12-11  Eric Blake  <ebb9@byu.net>
21562
21563         Fix bug with -0.0L in previous patch.
21564         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
21565         * tests/test-isnan.c (main): Also test on zeroes.
21566         * tests/test-isnanf.c (main): Likewise.
21567         * tests/test-isnanl.h (main): Likewise.
21568
21569         Detect pseudo-denormals on x86 even when cross-compiling.
21570         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
21571         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
21572         invalid bit patterns that happen to satisfy ==.
21573
21574         Avoid link failures with separate libtests.a.
21575         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
21576         last, to satisfy circular dependencies.
21577
21578 2007-12-11  Eric Blake  <ebb9@byu.net>
21579         and Bruno Haible  <bruno@clisp.org>
21580
21581         Fix OpenBSD 4.0 <float.h> handling of long double.
21582         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
21583         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
21584         * doc/headers/float.texi (float.h): Document OpenBSD bug.
21585
21586 2007-12-11  Jim Meyering  <meyering@redhat.com>
21587
21588         * users.txt: Add libvirt.
21589
21590         Support versions of autoconf prior to 2.59c.
21591         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
21592         if it is not already defined.
21593
21594 2007-12-09  Bruno Haible  <bruno@clisp.org>
21595
21596         Let 'gnulib-tool --import' collect sources needed for the tests in
21597         tests/ rather than in lib/.
21598         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
21599         argument. If true, add rules to generate libtests.a, and put libtests.a
21600         into $(LDADD). Consider source files in subdirectories and set
21601         uses_subdirs.
21602         (func_emit_initmacro_start, func_emit_initmacro_end,
21603         func_emit_initmacro_done): Pass all arguments explicitly.
21604         (func_import): Determine two module lists main_modules,
21605         testsrelated_modules. Determine use_libtests. Determine two variables
21606         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
21607         instead of just sed_transform_lib_file. Determine two variables
21608         main_files and testsrelated_files. Compute 'files' as the union of
21609         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
21610         func_add_or_update. In the generated gnulib-comp.m4, collect the
21611         object files for tests/ in different variables than those for lib/.
21612         Substitute LIBTESTS_LIBDEPS.
21613         (func_create_testdir): Combine the uses_subdirs results from
21614         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
21615
21616 2007-12-09  Bruno Haible  <bruno@clisp.org>
21617
21618         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
21619         the build-aux directory.
21620
21621 2007-12-09  Bruno Haible  <bruno@clisp.org>
21622
21623         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
21624         introduced on 2006-09-09.
21625
21626 2007-12-07  Jim Meyering  <meyering@redhat.com>
21627
21628         Let these macros work also with autoconf-2.59.
21629         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
21630         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
21631         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
21632
21633 2007-12-06  Jim Meyering  <meyering@redhat.com>
21634
21635         Avoid a configure-time syntax error in gl_FUNC_ACL.
21636         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
21637         function in each branch, before testing the cache variable.
21638
21639 2007-12-04  Eric Blake  <ebb9@byu.net>
21640
21641         Make scripts executable.
21642         * build-aux/config.guess: Add execute permissions.
21643         * build-aux/config.sub: Likewise.
21644         * build-aux/gendocs.sh: Likewise.
21645
21646         Fix frexp on mingw.
21647         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
21648         cross-compiling.
21649         * doc/functions/frexp.texi (frexp): Document the bug.
21650
21651         Make cygwin fseeko check more reliable.
21652         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
21653         version numbers, rather than unrelated feature check.
21654         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
21655         * doc/functions/ftello.texi (ftello): Likewise.
21656         Reported by Bruno Haible.
21657
21658         * m4/strerror.m4: Bump version number.
21659
21660 2007-12-03  Bruno Haible  <bruno@clisp.org>
21661
21662         * doc/functions/mprotect.texi: Mention the mingw problem.
21663
21664 2007-12-03  Eric Blake  <ebb9@byu.net>
21665
21666         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
21667         REPLACE_STRERROR is initialized before this macro.
21668
21669 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
21670
21671         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
21672         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
21673         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
21674         put -lsec in even for programs other than 'ls'.  This fixes a problem
21675         for gettext reported by Bruno Haible in
21676         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
21677         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
21678         Add support for Solaris 10.  This isn't efficient, but should get the
21679         job done for now.
21680
21681 2007-12-03  James Youngman  <jay@gnu.org>
21682
21683         * doc/regexprops-generic.texi: change "an close-group" to "a
21684         close-group" and "illegal" to "not allowed".
21685
21686 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21687
21688         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
21689         pr_byname.h. Needed for the rare case when the maintainer has done
21690         "make maintainer-clean" in the source directory and then attempts a
21691         build outside the source directory.
21692         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
21693         scripts_byname.h.
21694
21695 2007-12-02  Martin Lambers <marlam@marlam.de>
21696             Bruno Haible  <bruno@clisp.org>
21697
21698         * lib/getpagesize.h: Remove file.
21699         * lib/unistd.in.h: Include declaration of getpagesize here.
21700         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
21701         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
21702         HAVE_SYS_PARAM_H.
21703         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
21704         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
21705         * modules/getpagesize (Files): Remove lib/getpagesize.h.
21706         (Depends-on): Add unistd.
21707         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21708         (Include): Use <unistd.h> instead of getpagesize.h.
21709         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
21710         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
21711         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
21712         gl_GETPAGESIZE invocation, already handled by module dependency.
21713         * lib/pagealign_alloc.c: Don't include getpagesize.h.
21714
21715 2007-12-02  Bruno Haible  <bruno@clisp.org>
21716
21717         * modules/strings-tests: New file.
21718         * tests/test-strings.c: New file.
21719
21720         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
21721         * lib/strings.in.h: New file.
21722         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
21723         * m4/strings_h.m4: New file.
21724         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
21725         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
21726         * modules/strings: New file.
21727         * modules/string (Makefile.am): Update.
21728         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
21729         Reported by Karl Berry.
21730
21731 2007-12-01  Eric Blake  <ebb9@byu.net>
21732
21733         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
21734         accomodate fix in cygwin 1.5.25.
21735
21736 2007-12-01  Jim Meyering  <meyering@redhat.com>
21737
21738         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
21739         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
21740         that would inhibit utf8-optimization of a regexp containing line-
21741         or buffer-anchors, e.g., `^', `$'.
21742
21743 2007-11-30  Bruno Haible  <bruno@clisp.org>
21744
21745         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
21746         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
21747         glthread_recursive_lock_init.
21748         * lib/lock.c (glthread_recursive_lock_init)
21749         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
21750         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21751
21752 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
21753
21754         New function qset_acl, like set_acl but with syscall semantics.
21755         * lib/acl.h (qset_acl): New decl.
21756         * lib/acl.c (qset_acl): New function.
21757         (set_acl): Use new function.  Use more-consistent diagnostics.
21758
21759 2007-11-28  Jim Meyering  <meyering@redhat.com>
21760
21761         * modules/physmem (License): Change from GPL to LGPLv2+.
21762
21763 2007-11-26  Bruno Haible  <bruno@clisp.org>
21764
21765         * lib/vasnprintf.c (decode_long_double): Don't abort if the
21766         'long double' type has excess precision.
21767         Reported by Jim Meyering in
21768         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
21769
21770 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21771
21772         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
21773         Sync from <http://gnu.org/licenses>.
21774         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
21775         with license text from same location.
21776         * doc/maintain.texi, doc/standards.texi:  Sync from
21777         <http://savannah.gnu.org/projects/gnustandards>.
21778
21779 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
21780         and Jim Meyering  <meyering@redhat.com>
21781
21782         Adjust getdate' grammar to accept a slightly more regular language.
21783         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
21784         Before, the former was rejected.
21785         * lib/getdate.y (digits_to_date_time): New function, factored
21786         out of ...
21787         (number): ...here.  Just call digits_to_date_time.
21788         (hybrid): New non-terminal to handle an <unsigned number,
21789         signed relative offset> sequence consistently.
21790
21791 2007-11-18  Jim Meyering  <meyering@redhat.com>
21792
21793         Pull my changes from coreutils:
21794         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
21795         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
21796         use of $gnulib_tool_option_extras, so that it's separated from the
21797         preceding argument.
21798
21799         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
21800         * build-aux/bootstrap (cp_mark_as_generated): Create any required
21801         parent destination directories before copying a file into place.
21802
21803 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
21804
21805         bootstrap: work also with 4-argument variant of AC_INIT
21806         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
21807
21808 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21809
21810         Port test-getaddrinfo to Solaris.
21811         Problem reported by Bruno Haible in
21812         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
21813         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
21814         explanation of setting 'hints'.
21815         Don't reject an implementation merely because it returns EAI_SERVICE.
21816         (EAI_SERVICE): Define to 0 if not defined.
21817
21818 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
21819
21820         The license of gnu-make and posix-shell is now "GPLed build tool".
21821         * modules/gnu-make (License): Likewise.
21822         * modules/posix-shell (License): Likewise.
21823
21824         New module posix-shell, for determining a POSIX shell
21825         or perhaps something that is close enough to a POSIX shell.
21826         * m4/posix-shell.m4: New file.
21827         * modules/posix-shell: New file.
21828
21829         * MODULES.html.sh: Mention new module.
21830
21831         New module gnu-make, for determining whether we're using GNU Make.
21832         * m4/gnu-make.m4: New file.
21833         * modules/gnu-make: New file.
21834         * MODULES.html.sh: Mention new module.
21835
21836 2007-11-14  Jim Meyering  <meyering@redhat.com>
21837
21838         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
21839         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
21840         use this macro to create a function _definition_.
21841         Remove useless "#undef ARGMATCH_DIE".
21842
21843 2007-11-14  Bruno Haible  <bruno@clisp.org>
21844
21845         * lib/config.charset: Update for OpenBSD 4.1.
21846         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
21847
21848 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
21849
21850         Document 64-bit #if problems in stdint.texi.
21851         * doc/headers/stdint.texi (stdint.h): Mention problems with
21852         64-bit-#if, and how to work around them.
21853
21854         Don't insist on 'long long int' support in the preprocessor.  It
21855         breaks too many things.  For example, PRIdMAX still uses a 'long
21856         long int' format with the latest Sun compiler, even though
21857         HAVE_LONG_LONG_INT isn't defined due to that compiler's
21858         preprocessor problem.  This causes the latest coreutils to dump
21859         core on Solaris 10 sparc with the Sun C compiler.
21860         Instead, fix the 2007-10-16 problem in a different way, by evaluating
21861         the troublesome expressions at configure-time, not at #if-time.
21862         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
21863         preprocessor.
21864         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
21865         compile-time C checks, done at 'configure'-time.
21866         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
21867         * modules/inttypes (Makefile): Substitute the new symbols that
21868         gl_INTTYPES_H now generates.
21869         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
21870
21871 2007-11-12  Bruno Haible  <bruno@clisp.org>
21872
21873         Tests for Unicode character classification functions.
21874
21875         * modules/unictype/bidicategory-byname-tests: New file.
21876         * modules/unictype/bidicategory-name-tests: New file.
21877         * modules/unictype/bidicategory-of-tests: New file.
21878         * modules/unictype/bidicategory-test-tests: New file.
21879         * modules/unictype/block-list-tests: New file.
21880         * modules/unictype/block-of-tests: New file.
21881         * modules/unictype/block-test-tests: New file.
21882         * modules/unictype/category-C-tests: New file.
21883         * modules/unictype/category-Cc-tests: New file.
21884         * modules/unictype/category-Cf-tests: New file.
21885         * modules/unictype/category-Cn-tests: New file.
21886         * modules/unictype/category-Co-tests: New file.
21887         * modules/unictype/category-Cs-tests: New file.
21888         * modules/unictype/category-L-tests: New file.
21889         * modules/unictype/category-Ll-tests: New file.
21890         * modules/unictype/category-Lm-tests: New file.
21891         * modules/unictype/category-Lo-tests: New file.
21892         * modules/unictype/category-Lt-tests: New file.
21893         * modules/unictype/category-Lu-tests: New file.
21894         * modules/unictype/category-M-tests: New file.
21895         * modules/unictype/category-Mc-tests: New file.
21896         * modules/unictype/category-Me-tests: New file.
21897         * modules/unictype/category-Mn-tests: New file.
21898         * modules/unictype/category-N-tests: New file.
21899         * modules/unictype/category-Nd-tests: New file.
21900         * modules/unictype/category-Nl-tests: New file.
21901         * modules/unictype/category-No-tests: New file.
21902         * modules/unictype/category-P-tests: New file.
21903         * modules/unictype/category-Pc-tests: New file.
21904         * modules/unictype/category-Pd-tests: New file.
21905         * modules/unictype/category-Pe-tests: New file.
21906         * modules/unictype/category-Pf-tests: New file.
21907         * modules/unictype/category-Pi-tests: New file.
21908         * modules/unictype/category-Po-tests: New file.
21909         * modules/unictype/category-Ps-tests: New file.
21910         * modules/unictype/category-S-tests: New file.
21911         * modules/unictype/category-Sc-tests: New file.
21912         * modules/unictype/category-Sk-tests: New file.
21913         * modules/unictype/category-Sm-tests: New file.
21914         * modules/unictype/category-So-tests: New file.
21915         * modules/unictype/category-Z-tests: New file.
21916         * modules/unictype/category-Zl-tests: New file.
21917         * modules/unictype/category-Zp-tests: New file.
21918         * modules/unictype/category-Zs-tests: New file.
21919         * modules/unictype/category-and-not-tests: New file.
21920         * modules/unictype/category-and-tests: New file.
21921         * modules/unictype/category-byname-tests: New file.
21922         * modules/unictype/category-name-tests: New file.
21923         * modules/unictype/category-none-tests: New file.
21924         * modules/unictype/category-of-tests: New file.
21925         * modules/unictype/category-or-tests: New file.
21926         * modules/unictype/category-test-withtable-tests: New file.
21927         * modules/unictype/combining-class-tests: New file.
21928         * modules/unictype/ctype-alnum-tests: New file.
21929         * modules/unictype/ctype-alpha-tests: New file.
21930         * modules/unictype/ctype-blank-tests: New file.
21931         * modules/unictype/ctype-cntrl-tests: New file.
21932         * modules/unictype/ctype-digit-tests: New file.
21933         * modules/unictype/ctype-graph-tests: New file.
21934         * modules/unictype/ctype-lower-tests: New file.
21935         * modules/unictype/ctype-print-tests: New file.
21936         * modules/unictype/ctype-punct-tests: New file.
21937         * modules/unictype/ctype-space-tests: New file.
21938         * modules/unictype/ctype-upper-tests: New file.
21939         * modules/unictype/ctype-xdigit-tests: New file.
21940         * modules/unictype/decimal-digit-tests: New file.
21941         * modules/unictype/digit-tests: New file.
21942         * modules/unictype/mirror-tests: New file.
21943         * modules/unictype/numeric-tests: New file.
21944         * modules/unictype/property-alphabetic-tests: New file.
21945         * modules/unictype/property-ascii-hex-digit-tests: New file.
21946         * modules/unictype/property-bidi-arabic-digit-tests: New file.
21947         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
21948         * modules/unictype/property-bidi-block-separator-tests: New file.
21949         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
21950         * modules/unictype/property-bidi-common-separator-tests: New file.
21951         * modules/unictype/property-bidi-control-tests: New file.
21952         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
21953         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
21954         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
21955         * modules/unictype/property-bidi-european-digit-tests: New file.
21956         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
21957         * modules/unictype/property-bidi-left-to-right-tests: New file.
21958         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
21959         * modules/unictype/property-bidi-other-neutral-tests: New file.
21960         * modules/unictype/property-bidi-pdf-tests: New file.
21961         * modules/unictype/property-bidi-segment-separator-tests: New file.
21962         * modules/unictype/property-bidi-whitespace-tests: New file.
21963         * modules/unictype/property-byname-tests: New file.
21964         * modules/unictype/property-combining-tests: New file.
21965         * modules/unictype/property-composite-tests: New file.
21966         * modules/unictype/property-currency-symbol-tests: New file.
21967         * modules/unictype/property-dash-tests: New file.
21968         * modules/unictype/property-decimal-digit-tests: New file.
21969         * modules/unictype/property-default-ignorable-code-point-tests: New file.
21970         * modules/unictype/property-deprecated-tests: New file.
21971         * modules/unictype/property-diacritic-tests: New file.
21972         * modules/unictype/property-extender-tests: New file.
21973         * modules/unictype/property-format-control-tests: New file.
21974         * modules/unictype/property-grapheme-base-tests: New file.
21975         * modules/unictype/property-grapheme-extend-tests: New file.
21976         * modules/unictype/property-grapheme-link-tests: New file.
21977         * modules/unictype/property-hex-digit-tests: New file.
21978         * modules/unictype/property-hyphen-tests: New file.
21979         * modules/unictype/property-id-continue-tests: New file.
21980         * modules/unictype/property-id-start-tests: New file.
21981         * modules/unictype/property-ideographic-tests: New file.
21982         * modules/unictype/property-ids-binary-operator-tests: New file.
21983         * modules/unictype/property-ids-trinary-operator-tests: New file.
21984         * modules/unictype/property-ignorable-control-tests: New file.
21985         * modules/unictype/property-iso-control-tests: New file.
21986         * modules/unictype/property-join-control-tests: New file.
21987         * modules/unictype/property-left-of-pair-tests: New file.
21988         * modules/unictype/property-line-separator-tests: New file.
21989         * modules/unictype/property-logical-order-exception-tests: New file.
21990         * modules/unictype/property-lowercase-tests: New file.
21991         * modules/unictype/property-math-tests: New file.
21992         * modules/unictype/property-non-break-tests: New file.
21993         * modules/unictype/property-not-a-character-tests: New file.
21994         * modules/unictype/property-numeric-tests: New file.
21995         * modules/unictype/property-other-alphabetic-tests: New file.
21996         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
21997         * modules/unictype/property-other-grapheme-extend-tests: New file.
21998         * modules/unictype/property-other-id-continue-tests: New file.
21999         * modules/unictype/property-other-id-start-tests: New file.
22000         * modules/unictype/property-other-lowercase-tests: New file.
22001         * modules/unictype/property-other-math-tests: New file.
22002         * modules/unictype/property-other-uppercase-tests: New file.
22003         * modules/unictype/property-paired-punctuation-tests: New file.
22004         * modules/unictype/property-paragraph-separator-tests: New file.
22005         * modules/unictype/property-pattern-syntax-tests: New file.
22006         * modules/unictype/property-pattern-white-space-tests: New file.
22007         * modules/unictype/property-private-use-tests: New file.
22008         * modules/unictype/property-punctuation-tests: New file.
22009         * modules/unictype/property-quotation-mark-tests: New file.
22010         * modules/unictype/property-radical-tests: New file.
22011         * modules/unictype/property-sentence-terminal-tests: New file.
22012         * modules/unictype/property-soft-dotted-tests: New file.
22013         * modules/unictype/property-space-tests: New file.
22014         * modules/unictype/property-terminal-punctuation-tests: New file.
22015         * modules/unictype/property-test-tests: New file.
22016         * modules/unictype/property-titlecase-tests: New file.
22017         * modules/unictype/property-unassigned-code-value-tests: New file.
22018         * modules/unictype/property-unified-ideograph-tests: New file.
22019         * modules/unictype/property-uppercase-tests: New file.
22020         * modules/unictype/property-variation-selector-tests: New file.
22021         * modules/unictype/property-white-space-tests: New file.
22022         * modules/unictype/property-xid-continue-tests: New file.
22023         * modules/unictype/property-xid-start-tests: New file.
22024         * modules/unictype/property-zero-width-tests: New file.
22025         * modules/unictype/scripts-tests: New file.
22026         * modules/unictype/syntax-c-ident-tests: New file.
22027         * modules/unictype/syntax-c-whitespace-tests: New file.
22028         * modules/unictype/syntax-java-ident-tests: New file.
22029         * modules/unictype/syntax-java-whitespace-tests: New file.
22030         * tests/unictype/test-bidi_byname.c: New file.
22031         * tests/unictype/test-bidi_name.c: New file.
22032         * tests/unictype/test-bidi_of.c: New file.
22033         * tests/unictype/test-bidi_test.c: New file.
22034         * tests/unictype/test-block_list.c: New file.
22035         * tests/unictype/test-block_of.c: New file.
22036         * tests/unictype/test-block_test.c: New file.
22037         * tests/unictype/test-categ_and.c: New file.
22038         * tests/unictype/test-categ_and_not.c: New file.
22039         * tests/unictype/test-categ_byname.c: New file.
22040         * tests/unictype/test-categ_name.c: New file.
22041         * tests/unictype/test-categ_none.c: New file.
22042         * tests/unictype/test-categ_of.c: New file.
22043         * tests/unictype/test-categ_or.c: New file.
22044         * tests/unictype/test-categ_test_withtable.c: New file.
22045         * tests/unictype/test-combining.c: New file.
22046         * tests/unictype/test-decdigit.c: New file.
22047         * tests/unictype/test-digit.c: New file.
22048         * tests/unictype/test-mirror.c: New file.
22049         * tests/unictype/test-numeric.c: New file.
22050         * tests/unictype/test-pr_byname.c: New file.
22051         * tests/unictype/test-pr_test.c: New file.
22052         * tests/unictype/test-predicate-part1.h: New file.
22053         * tests/unictype/test-predicate-part2.h: New file.
22054         * tests/unictype/test-scripts.c: New file.
22055         * tests/unictype/test-sy_c_ident.c: New file.
22056         * tests/unictype/test-sy_java_ident.c: New file.
22057
22058         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
22059         for Unicode 5.0.0.
22060         * tests/unictype/test-categ_Cc.c: Likewise.
22061         * tests/unictype/test-categ_Cf.c: Likewise.
22062         * tests/unictype/test-categ_Cn.c: Likewise.
22063         * tests/unictype/test-categ_Co.c: Likewise.
22064         * tests/unictype/test-categ_Cs.c: Likewise.
22065         * tests/unictype/test-categ_L.c: Likewise.
22066         * tests/unictype/test-categ_Ll.c: Likewise.
22067         * tests/unictype/test-categ_Lm.c: Likewise.
22068         * tests/unictype/test-categ_Lo.c: Likewise.
22069         * tests/unictype/test-categ_Lt.c: Likewise.
22070         * tests/unictype/test-categ_Lu.c: Likewise.
22071         * tests/unictype/test-categ_M.c: Likewise.
22072         * tests/unictype/test-categ_Mc.c: Likewise.
22073         * tests/unictype/test-categ_Me.c: Likewise.
22074         * tests/unictype/test-categ_Mn.c: Likewise.
22075         * tests/unictype/test-categ_N.c: Likewise.
22076         * tests/unictype/test-categ_Nd.c: Likewise.
22077         * tests/unictype/test-categ_Nl.c: Likewise.
22078         * tests/unictype/test-categ_No.c: Likewise.
22079         * tests/unictype/test-categ_P.c: Likewise.
22080         * tests/unictype/test-categ_Pc.c: Likewise.
22081         * tests/unictype/test-categ_Pd.c: Likewise.
22082         * tests/unictype/test-categ_Pe.c: Likewise.
22083         * tests/unictype/test-categ_Pf.c: Likewise.
22084         * tests/unictype/test-categ_Pi.c: Likewise.
22085         * tests/unictype/test-categ_Po.c: Likewise.
22086         * tests/unictype/test-categ_Ps.c: Likewise.
22087         * tests/unictype/test-categ_S.c: Likewise.
22088         * tests/unictype/test-categ_Sc.c: Likewise.
22089         * tests/unictype/test-categ_Sk.c: Likewise.
22090         * tests/unictype/test-categ_Sm.c: Likewise.
22091         * tests/unictype/test-categ_So.c: Likewise.
22092         * tests/unictype/test-categ_Z.c: Likewise.
22093         * tests/unictype/test-categ_Zl.c: Likewise.
22094         * tests/unictype/test-categ_Zp.c: Likewise.
22095         * tests/unictype/test-categ_Zs.c: Likewise.
22096         * tests/unictype/test-ctype_alnum.c: Likewise.
22097         * tests/unictype/test-ctype_alpha.c: Likewise.
22098         * tests/unictype/test-ctype_blank.c: Likewise.
22099         * tests/unictype/test-ctype_cntrl.c: Likewise.
22100         * tests/unictype/test-ctype_digit.c: Likewise.
22101         * tests/unictype/test-ctype_graph.c: Likewise.
22102         * tests/unictype/test-ctype_lower.c: Likewise.
22103         * tests/unictype/test-ctype_print.c: Likewise.
22104         * tests/unictype/test-ctype_punct.c: Likewise.
22105         * tests/unictype/test-ctype_space.c: Likewise.
22106         * tests/unictype/test-ctype_upper.c: Likewise.
22107         * tests/unictype/test-ctype_xdigit.c: Likewise.
22108         * tests/unictype/test-decdigit.h: Likewise.
22109         * tests/unictype/test-digit.h: Likewise.
22110         * tests/unictype/test-numeric.h: Likewise.
22111         * tests/unictype/test-pr_alphabetic.c: Likewise.
22112         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
22113         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
22114         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
22115         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
22116         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
22117         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
22118         * tests/unictype/test-pr_bidi_control.c: Likewise.
22119         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
22120         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
22121         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
22122         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
22123         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
22124         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
22125         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
22126         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
22127         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
22128         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
22129         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
22130         * tests/unictype/test-pr_combining.c: Likewise.
22131         * tests/unictype/test-pr_composite.c: Likewise.
22132         * tests/unictype/test-pr_currency_symbol.c: Likewise.
22133         * tests/unictype/test-pr_dash.c: Likewise.
22134         * tests/unictype/test-pr_decimal_digit.c: Likewise.
22135         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
22136         * tests/unictype/test-pr_deprecated.c: Likewise.
22137         * tests/unictype/test-pr_diacritic.c: Likewise.
22138         * tests/unictype/test-pr_extender.c: Likewise.
22139         * tests/unictype/test-pr_format_control.c: Likewise.
22140         * tests/unictype/test-pr_grapheme_base.c: Likewise.
22141         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
22142         * tests/unictype/test-pr_grapheme_link.c: Likewise.
22143         * tests/unictype/test-pr_hex_digit.c: Likewise.
22144         * tests/unictype/test-pr_hyphen.c: Likewise.
22145         * tests/unictype/test-pr_id_continue.c: Likewise.
22146         * tests/unictype/test-pr_id_start.c: Likewise.
22147         * tests/unictype/test-pr_ideographic.c: Likewise.
22148         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
22149         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
22150         * tests/unictype/test-pr_ignorable_control.c: Likewise.
22151         * tests/unictype/test-pr_iso_control.c: Likewise.
22152         * tests/unictype/test-pr_join_control.c: Likewise.
22153         * tests/unictype/test-pr_left_of_pair.c: Likewise.
22154         * tests/unictype/test-pr_line_separator.c: Likewise.
22155         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
22156         * tests/unictype/test-pr_lowercase.c: Likewise.
22157         * tests/unictype/test-pr_math.c: Likewise.
22158         * tests/unictype/test-pr_non_break.c: Likewise.
22159         * tests/unictype/test-pr_not_a_character.c: Likewise.
22160         * tests/unictype/test-pr_numeric.c: Likewise.
22161         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
22162         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
22163         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
22164         * tests/unictype/test-pr_other_id_continue.c: Likewise.
22165         * tests/unictype/test-pr_other_id_start.c: Likewise.
22166         * tests/unictype/test-pr_other_lowercase.c: Likewise.
22167         * tests/unictype/test-pr_other_math.c: Likewise.
22168         * tests/unictype/test-pr_other_uppercase.c: Likewise.
22169         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
22170         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
22171         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
22172         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
22173         * tests/unictype/test-pr_private_use.c: Likewise.
22174         * tests/unictype/test-pr_punctuation.c: Likewise.
22175         * tests/unictype/test-pr_quotation_mark.c: Likewise.
22176         * tests/unictype/test-pr_radical.c: Likewise.
22177         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
22178         * tests/unictype/test-pr_soft_dotted.c: Likewise.
22179         * tests/unictype/test-pr_space.c: Likewise.
22180         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
22181         * tests/unictype/test-pr_titlecase.c: Likewise.
22182         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
22183         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
22184         * tests/unictype/test-pr_uppercase.c: Likewise.
22185         * tests/unictype/test-pr_variation_selector.c: Likewise.
22186         * tests/unictype/test-pr_white_space.c: Likewise.
22187         * tests/unictype/test-pr_xid_continue.c: Likewise.
22188         * tests/unictype/test-pr_xid_start.c: Likewise.
22189         * tests/unictype/test-pr_zero_width.c: Likewise.
22190         * tests/unictype/test-sy_c_whitespace.c: Likewise.
22191         * tests/unictype/test-sy_java_whitespace.c: Likewise.
22192
22193 2007-11-12  Bruno Haible  <bruno@clisp.org>
22194
22195         Unicode character classification functions.
22196         * lib/unictype.h: New file.
22197         * modules/unictype/base: New file.
22198         * modules/unictype/category-L: New file.
22199         * modules/unictype/category-Lu: New file.
22200         * modules/unictype/category-Ll: New file.
22201         * modules/unictype/category-Lt: New file.
22202         * modules/unictype/category-Lm: New file.
22203         * modules/unictype/category-Lo: New file.
22204         * modules/unictype/category-M: New file.
22205         * modules/unictype/category-Mn: New file.
22206         * modules/unictype/category-Mc: New file.
22207         * modules/unictype/category-Me: New file.
22208         * modules/unictype/category-N: New file.
22209         * modules/unictype/category-Nd: New file.
22210         * modules/unictype/category-Nl: New file.
22211         * modules/unictype/category-No: New file.
22212         * modules/unictype/category-P: New file.
22213         * modules/unictype/category-Pc: New file.
22214         * modules/unictype/category-Pd: New file.
22215         * modules/unictype/category-Ps: New file.
22216         * modules/unictype/category-Pe: New file.
22217         * modules/unictype/category-Pi: New file.
22218         * modules/unictype/category-Pf: New file.
22219         * modules/unictype/category-Po: New file.
22220         * modules/unictype/category-S: New file.
22221         * modules/unictype/category-Sm: New file.
22222         * modules/unictype/category-Sc: New file.
22223         * modules/unictype/category-Sk: New file.
22224         * modules/unictype/category-So: New file.
22225         * modules/unictype/category-Z: New file.
22226         * modules/unictype/category-Zs: New file.
22227         * modules/unictype/category-Zl: New file.
22228         * modules/unictype/category-Zp: New file.
22229         * modules/unictype/category-C: New file.
22230         * modules/unictype/category-Cc: New file.
22231         * modules/unictype/category-Cf: New file.
22232         * modules/unictype/category-Cs: New file.
22233         * modules/unictype/category-Co: New file.
22234         * modules/unictype/category-Cn: New file.
22235         * modules/unictype/category-or: New file.
22236         * modules/unictype/category-of: New file.
22237         * modules/unictype/category-test: New file.
22238         * modules/unictype/category-test-withtable: New file.
22239         * modules/unictype/category-byname: New file.
22240         * modules/unictype/category-none: New file.
22241         * modules/unictype/category-and: New file.
22242         * modules/unictype/category-and-not: New file.
22243         * modules/unictype/category-name: New file.
22244         * modules/unictype/combining-class: New file.
22245         * modules/unictype/category-all: New file.
22246         * modules/unictype/bidicategory-all: New file.
22247         * modules/unictype/bidicategory-byname: New file.
22248         * modules/unictype/bidicategory-name: New file.
22249         * modules/unictype/bidicategory-of: New file.
22250         * modules/unictype/bidicategory-test: New file.
22251         * modules/unictype/decimal-digit: New file.
22252         * modules/unictype/digit: New file.
22253         * modules/unictype/numeric: New file.
22254         * modules/unictype/mirror: New file.
22255         * modules/unictype/property-white-space: New file.
22256         * modules/unictype/property-alphabetic: New file.
22257         * modules/unictype/property-other-alphabetic: New file.
22258         * modules/unictype/property-not-a-character: New file.
22259         * modules/unictype/property-default-ignorable-code-point: New file.
22260         * modules/unictype/property-other-default-ignorable-code-point: New
22261         file.
22262         * modules/unictype/property-deprecated: New file.
22263         * modules/unictype/property-logical-order-exception: New file.
22264         * modules/unictype/property-variation-selector: New file.
22265         * modules/unictype/property-private-use: New file.
22266         * modules/unictype/property-unassigned-code-value: New file.
22267         * modules/unictype/property-uppercase: New file.
22268         * modules/unictype/property-other-uppercase: New file.
22269         * modules/unictype/property-lowercase: New file.
22270         * modules/unictype/property-other-lowercase: New file.
22271         * modules/unictype/property-titlecase: New file.
22272         * modules/unictype/property-soft-dotted: New file.
22273         * modules/unictype/property-id-start: New file.
22274         * modules/unictype/property-other-id-start: New file.
22275         * modules/unictype/property-id-continue: New file.
22276         * modules/unictype/property-other-id-continue: New file.
22277         * modules/unictype/property-xid-start: New file.
22278         * modules/unictype/property-xid-continue: New file.
22279         * modules/unictype/property-pattern-white-space: New file.
22280         * modules/unictype/property-pattern-syntax: New file.
22281         * modules/unictype/property-join-control: New file.
22282         * modules/unictype/property-grapheme-base: New file.
22283         * modules/unictype/property-grapheme-extend: New file.
22284         * modules/unictype/property-other-grapheme-extend: New file.
22285         * modules/unictype/property-grapheme-link: New file.
22286         * modules/unictype/property-bidi-control: New file.
22287         * modules/unictype/property-bidi-left-to-right: New file.
22288         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
22289         * modules/unictype/property-bidi-arabic-right-to-left: New file.
22290         * modules/unictype/property-bidi-european-digit: New file.
22291         * modules/unictype/property-bidi-eur-num-separator: New file.
22292         * modules/unictype/property-bidi-eur-num-terminator: New file.
22293         * modules/unictype/property-bidi-arabic-digit: New file.
22294         * modules/unictype/property-bidi-common-separator: New file.
22295         * modules/unictype/property-bidi-block-separator: New file.
22296         * modules/unictype/property-bidi-segment-separator: New file.
22297         * modules/unictype/property-bidi-whitespace: New file.
22298         * modules/unictype/property-bidi-non-spacing-mark: New file.
22299         * modules/unictype/property-bidi-boundary-neutral: New file.
22300         * modules/unictype/property-bidi-pdf: New file.
22301         * modules/unictype/property-bidi-embedding-or-override: New file.
22302         * modules/unictype/property-bidi-other-neutral: New file.
22303         * modules/unictype/property-hex-digit: New file.
22304         * modules/unictype/property-ascii-hex-digit: New file.
22305         * modules/unictype/property-ideographic: New file.
22306         * modules/unictype/property-unified-ideograph: New file.
22307         * modules/unictype/property-radical: New file.
22308         * modules/unictype/property-ids-binary-operator: New file.
22309         * modules/unictype/property-ids-trinary-operator: New file.
22310         * modules/unictype/property-zero-width: New file.
22311         * modules/unictype/property-space: New file.
22312         * modules/unictype/property-non-break: New file.
22313         * modules/unictype/property-iso-control: New file.
22314         * modules/unictype/property-format-control: New file.
22315         * modules/unictype/property-dash: New file.
22316         * modules/unictype/property-hyphen: New file.
22317         * modules/unictype/property-punctuation: New file.
22318         * modules/unictype/property-line-separator: New file.
22319         * modules/unictype/property-paragraph-separator: New file.
22320         * modules/unictype/property-quotation-mark: New file.
22321         * modules/unictype/property-sentence-terminal: New file.
22322         * modules/unictype/property-terminal-punctuation: New file.
22323         * modules/unictype/property-currency-symbol: New file.
22324         * modules/unictype/property-math: New file.
22325         * modules/unictype/property-other-math: New file.
22326         * modules/unictype/property-paired-punctuation: New file.
22327         * modules/unictype/property-left-of-pair: New file.
22328         * modules/unictype/property-combining: New file.
22329         * modules/unictype/property-composite: New file.
22330         * modules/unictype/property-decimal-digit: New file.
22331         * modules/unictype/property-numeric: New file.
22332         * modules/unictype/property-diacritic: New file.
22333         * modules/unictype/property-extender: New file.
22334         * modules/unictype/property-ignorable-control: New file.
22335         * modules/unictype/property-test: New file.
22336         * modules/unictype/property-byname: New file.
22337         * modules/unictype/property-all: New file.
22338         * modules/unictype/scripts: New file.
22339         * modules/unictype/scripts-all: New file.
22340         * modules/unictype/block-of: New file.
22341         * modules/unictype/block-test: New file.
22342         * modules/unictype/block-list: New file.
22343         * modules/unictype/block-all: New file.
22344         * modules/unictype/syntax-c-whitespace: New file.
22345         * modules/unictype/syntax-java-whitespace: New file.
22346         * modules/unictype/syntax-c-ident: New file.
22347         * modules/unictype/syntax-java-ident: New file.
22348         * modules/unictype/ctype-alnum: New file.
22349         * modules/unictype/ctype-alpha: New file.
22350         * modules/unictype/ctype-cntrl: New file.
22351         * modules/unictype/ctype-digit: New file.
22352         * modules/unictype/ctype-graph: New file.
22353         * modules/unictype/ctype-lower: New file.
22354         * modules/unictype/ctype-print: New file.
22355         * modules/unictype/ctype-punct: New file.
22356         * modules/unictype/ctype-space: New file.
22357         * modules/unictype/ctype-upper: New file.
22358         * modules/unictype/ctype-xdigit: New file.
22359         * modules/unictype/ctype-blank: New file.
22360         * lib/unictype/bidi_byname.c: New file.
22361         * lib/unictype/bidi_name.c: New file.
22362         * lib/unictype/bidi_of.c: New file.
22363         * lib/unictype/bidi_test.c: New file.
22364         * lib/unictype/bitmap.h: New file.
22365         * lib/unictype/block_test.c: New file.
22366         * lib/unictype/blocks.c: New file.
22367         * lib/unictype/categ_C.c: New file.
22368         * lib/unictype/categ_Cc.c: New file.
22369         * lib/unictype/categ_Cf.c: New file.
22370         * lib/unictype/categ_Cn.c: New file.
22371         * lib/unictype/categ_Co.c: New file.
22372         * lib/unictype/categ_Cs.c: New file.
22373         * lib/unictype/categ_L.c: New file.
22374         * lib/unictype/categ_Ll.c: New file.
22375         * lib/unictype/categ_Lm.c: New file.
22376         * lib/unictype/categ_Lo.c: New file.
22377         * lib/unictype/categ_Lt.c: New file.
22378         * lib/unictype/categ_Lu.c: New file.
22379         * lib/unictype/categ_M.c: New file.
22380         * lib/unictype/categ_Mc.c: New file.
22381         * lib/unictype/categ_Me.c: New file.
22382         * lib/unictype/categ_Mn.c: New file.
22383         * lib/unictype/categ_N.c: New file.
22384         * lib/unictype/categ_Nd.c: New file.
22385         * lib/unictype/categ_Nl.c: New file.
22386         * lib/unictype/categ_No.c: New file.
22387         * lib/unictype/categ_P.c: New file.
22388         * lib/unictype/categ_Pc.c: New file.
22389         * lib/unictype/categ_Pd.c: New file.
22390         * lib/unictype/categ_Pe.c: New file.
22391         * lib/unictype/categ_Pf.c: New file.
22392         * lib/unictype/categ_Pi.c: New file.
22393         * lib/unictype/categ_Po.c: New file.
22394         * lib/unictype/categ_Ps.c: New file.
22395         * lib/unictype/categ_S.c: New file.
22396         * lib/unictype/categ_Sc.c: New file.
22397         * lib/unictype/categ_Sk.c: New file.
22398         * lib/unictype/categ_Sm.c: New file.
22399         * lib/unictype/categ_So.c: New file.
22400         * lib/unictype/categ_Z.c: New file.
22401         * lib/unictype/categ_Zl.c: New file.
22402         * lib/unictype/categ_Zp.c: New file.
22403         * lib/unictype/categ_Zs.c: New file.
22404         * lib/unictype/categ_and.c: New file.
22405         * lib/unictype/categ_and_not.c: New file.
22406         * lib/unictype/categ_byname.c: New file.
22407         * lib/unictype/categ_name.c: New file.
22408         * lib/unictype/categ_none.c: New file.
22409         * lib/unictype/categ_of.c: New file.
22410         * lib/unictype/categ_or.c: New file.
22411         * lib/unictype/categ_test.c: New file.
22412         * lib/unictype/combining.c: New file.
22413         * lib/unictype/ctype_alnum.c: New file.
22414         * lib/unictype/ctype_alpha.c: New file.
22415         * lib/unictype/ctype_blank.c: New file.
22416         * lib/unictype/ctype_cntrl.c: New file.
22417         * lib/unictype/ctype_digit.c: New file.
22418         * lib/unictype/ctype_graph.c: New file.
22419         * lib/unictype/ctype_lower.c: New file.
22420         * lib/unictype/ctype_print.c: New file.
22421         * lib/unictype/ctype_punct.c: New file.
22422         * lib/unictype/ctype_space.c: New file.
22423         * lib/unictype/ctype_upper.c: New file.
22424         * lib/unictype/ctype_xdigit.c: New file.
22425         * lib/unictype/decdigit.c: New file.
22426         * lib/unictype/digit.c: New file.
22427         * lib/unictype/identsyntaxmap.h: New file.
22428         * lib/unictype/mirror.c: New file.
22429         * lib/unictype/numeric.c: New file.
22430         * lib/unictype/pr_alphabetic.c: New file.
22431         * lib/unictype/pr_ascii_hex_digit.c: New file.
22432         * lib/unictype/pr_bidi_arabic_digit.c: New file.
22433         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
22434         * lib/unictype/pr_bidi_block_separator.c: New file.
22435         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
22436         * lib/unictype/pr_bidi_common_separator.c: New file.
22437         * lib/unictype/pr_bidi_control.c: New file.
22438         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
22439         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
22440         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
22441         * lib/unictype/pr_bidi_european_digit.c: New file.
22442         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
22443         * lib/unictype/pr_bidi_left_to_right.c: New file.
22444         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
22445         * lib/unictype/pr_bidi_other_neutral.c: New file.
22446         * lib/unictype/pr_bidi_pdf.c: New file.
22447         * lib/unictype/pr_bidi_segment_separator.c: New file.
22448         * lib/unictype/pr_bidi_whitespace.c: New file.
22449         * lib/unictype/pr_byname.c: New file.
22450         * lib/unictype/pr_byname.gperf: New file.
22451         * lib/unictype/pr_combining.c: New file.
22452         * lib/unictype/pr_composite.c: New file.
22453         * lib/unictype/pr_currency_symbol.c: New file.
22454         * lib/unictype/pr_dash.c: New file.
22455         * lib/unictype/pr_decimal_digit.c: New file.
22456         * lib/unictype/pr_default_ignorable_code_point.c: New file.
22457         * lib/unictype/pr_deprecated.c: New file.
22458         * lib/unictype/pr_diacritic.c: New file.
22459         * lib/unictype/pr_extender.c: New file.
22460         * lib/unictype/pr_format_control.c: New file.
22461         * lib/unictype/pr_grapheme_base.c: New file.
22462         * lib/unictype/pr_grapheme_extend.c: New file.
22463         * lib/unictype/pr_grapheme_link.c: New file.
22464         * lib/unictype/pr_hex_digit.c: New file.
22465         * lib/unictype/pr_hyphen.c: New file.
22466         * lib/unictype/pr_id_continue.c: New file.
22467         * lib/unictype/pr_id_start.c: New file.
22468         * lib/unictype/pr_ideographic.c: New file.
22469         * lib/unictype/pr_ids_binary_operator.c: New file.
22470         * lib/unictype/pr_ids_trinary_operator.c: New file.
22471         * lib/unictype/pr_ignorable_control.c: New file.
22472         * lib/unictype/pr_iso_control.c: New file.
22473         * lib/unictype/pr_join_control.c: New file.
22474         * lib/unictype/pr_left_of_pair.c: New file.
22475         * lib/unictype/pr_line_separator.c: New file.
22476         * lib/unictype/pr_logical_order_exception.c: New file.
22477         * lib/unictype/pr_lowercase.c: New file.
22478         * lib/unictype/pr_math.c: New file.
22479         * lib/unictype/pr_non_break.c: New file.
22480         * lib/unictype/pr_not_a_character.c: New file.
22481         * lib/unictype/pr_numeric.c: New file.
22482         * lib/unictype/pr_other_alphabetic.c: New file.
22483         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
22484         * lib/unictype/pr_other_grapheme_extend.c: New file.
22485         * lib/unictype/pr_other_id_continue.c: New file.
22486         * lib/unictype/pr_other_id_start.c: New file.
22487         * lib/unictype/pr_other_lowercase.c: New file.
22488         * lib/unictype/pr_other_math.c: New file.
22489         * lib/unictype/pr_other_uppercase.c: New file.
22490         * lib/unictype/pr_paired_punctuation.c: New file.
22491         * lib/unictype/pr_paragraph_separator.c: New file.
22492         * lib/unictype/pr_pattern_syntax.c: New file.
22493         * lib/unictype/pr_pattern_white_space.c: New file.
22494         * lib/unictype/pr_private_use.c: New file.
22495         * lib/unictype/pr_punctuation.c: New file.
22496         * lib/unictype/pr_quotation_mark.c: New file.
22497         * lib/unictype/pr_radical.c: New file.
22498         * lib/unictype/pr_sentence_terminal.c: New file.
22499         * lib/unictype/pr_soft_dotted.c: New file.
22500         * lib/unictype/pr_space.c: New file.
22501         * lib/unictype/pr_terminal_punctuation.c: New file.
22502         * lib/unictype/pr_test.c: New file.
22503         * lib/unictype/pr_titlecase.c: New file.
22504         * lib/unictype/pr_unassigned_code_value.c: New file.
22505         * lib/unictype/pr_unified_ideograph.c: New file.
22506         * lib/unictype/pr_uppercase.c: New file.
22507         * lib/unictype/pr_variation_selector.c: New file.
22508         * lib/unictype/pr_white_space.c: New file.
22509         * lib/unictype/pr_xid_continue.c: New file.
22510         * lib/unictype/pr_xid_start.c: New file.
22511         * lib/unictype/pr_zero_width.c: New file.
22512         * lib/unictype/scripts.c: New file.
22513         * lib/unictype/sy_c_ident.c: New file.
22514         * lib/unictype/sy_c_whitespace.c: New file.
22515         * lib/unictype/sy_java_ident.c: New file.
22516         * lib/unictype/sy_java_whitespace.c: New file.
22517
22518         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
22519         Unicode 5.0.0.
22520         * lib/unictype/blocks.h: Likewise.
22521         * lib/unictype/categ_C.h: Likewise.
22522         * lib/unictype/categ_Cc.h: Likewise.
22523         * lib/unictype/categ_Cf.h: Likewise.
22524         * lib/unictype/categ_Cn.h: Likewise.
22525         * lib/unictype/categ_Co.h: Likewise.
22526         * lib/unictype/categ_Cs.h: Likewise.
22527         * lib/unictype/categ_L.h: Likewise.
22528         * lib/unictype/categ_Ll.h: Likewise.
22529         * lib/unictype/categ_Lm.h: Likewise.
22530         * lib/unictype/categ_Lo.h: Likewise.
22531         * lib/unictype/categ_Lt.h: Likewise.
22532         * lib/unictype/categ_Lu.h: Likewise.
22533         * lib/unictype/categ_M.h: Likewise.
22534         * lib/unictype/categ_Mc.h: Likewise.
22535         * lib/unictype/categ_Me.h: Likewise.
22536         * lib/unictype/categ_Mn.h: Likewise.
22537         * lib/unictype/categ_N.h: Likewise.
22538         * lib/unictype/categ_Nd.h: Likewise.
22539         * lib/unictype/categ_Nl.h: Likewise.
22540         * lib/unictype/categ_No.h: Likewise.
22541         * lib/unictype/categ_P.h: Likewise.
22542         * lib/unictype/categ_Pc.h: Likewise.
22543         * lib/unictype/categ_Pd.h: Likewise.
22544         * lib/unictype/categ_Pe.h: Likewise.
22545         * lib/unictype/categ_Pf.h: Likewise.
22546         * lib/unictype/categ_Pi.h: Likewise.
22547         * lib/unictype/categ_Po.h: Likewise.
22548         * lib/unictype/categ_Ps.h: Likewise.
22549         * lib/unictype/categ_S.h: Likewise.
22550         * lib/unictype/categ_Sc.h: Likewise.
22551         * lib/unictype/categ_Sk.h: Likewise.
22552         * lib/unictype/categ_Sm.h: Likewise.
22553         * lib/unictype/categ_So.h: Likewise.
22554         * lib/unictype/categ_Z.h: Likewise.
22555         * lib/unictype/categ_Zl.h: Likewise.
22556         * lib/unictype/categ_Zp.h: Likewise.
22557         * lib/unictype/categ_Zs.h: Likewise.
22558         * lib/unictype/categ_of.h: Likewise.
22559         * lib/unictype/combining.h: Likewise.
22560         * lib/unictype/ctype_alnum.h: Likewise.
22561         * lib/unictype/ctype_alpha.h: Likewise.
22562         * lib/unictype/ctype_blank.h: Likewise.
22563         * lib/unictype/ctype_cntrl.h: Likewise.
22564         * lib/unictype/ctype_digit.h: Likewise.
22565         * lib/unictype/ctype_graph.h: Likewise.
22566         * lib/unictype/ctype_lower.h: Likewise.
22567         * lib/unictype/ctype_print.h: Likewise.
22568         * lib/unictype/ctype_punct.h: Likewise.
22569         * lib/unictype/ctype_space.h: Likewise.
22570         * lib/unictype/ctype_upper.h: Likewise.
22571         * lib/unictype/ctype_xdigit.h: Likewise.
22572         * lib/unictype/decdigit.h: Likewise.
22573         * lib/unictype/digit.h: Likewise.
22574         * lib/unictype/mirror.h: Likewise.
22575         * lib/unictype/numeric.h: Likewise.
22576         * lib/unictype/pr_alphabetic.h: Likewise.
22577         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
22578         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
22579         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
22580         * lib/unictype/pr_bidi_block_separator.h: Likewise.
22581         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
22582         * lib/unictype/pr_bidi_common_separator.h: Likewise.
22583         * lib/unictype/pr_bidi_control.h: Likewise.
22584         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
22585         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
22586         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
22587         * lib/unictype/pr_bidi_european_digit.h: Likewise.
22588         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
22589         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
22590         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
22591         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
22592         * lib/unictype/pr_bidi_pdf.h: Likewise.
22593         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
22594         * lib/unictype/pr_bidi_whitespace.h: Likewise.
22595         * lib/unictype/pr_combining.h: Likewise.
22596         * lib/unictype/pr_composite.h: Likewise.
22597         * lib/unictype/pr_currency_symbol.h: Likewise.
22598         * lib/unictype/pr_dash.h: Likewise.
22599         * lib/unictype/pr_decimal_digit.h: Likewise.
22600         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
22601         * lib/unictype/pr_deprecated.h: Likewise.
22602         * lib/unictype/pr_diacritic.h: Likewise.
22603         * lib/unictype/pr_extender.h: Likewise.
22604         * lib/unictype/pr_format_control.h: Likewise.
22605         * lib/unictype/pr_grapheme_base.h: Likewise.
22606         * lib/unictype/pr_grapheme_extend.h: Likewise.
22607         * lib/unictype/pr_grapheme_link.h: Likewise.
22608         * lib/unictype/pr_hex_digit.h: Likewise.
22609         * lib/unictype/pr_hyphen.h: Likewise.
22610         * lib/unictype/pr_id_continue.h: Likewise.
22611         * lib/unictype/pr_id_start.h: Likewise.
22612         * lib/unictype/pr_ideographic.h: Likewise.
22613         * lib/unictype/pr_ids_binary_operator.h: Likewise.
22614         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
22615         * lib/unictype/pr_ignorable_control.h: Likewise.
22616         * lib/unictype/pr_iso_control.h: Likewise.
22617         * lib/unictype/pr_join_control.h: Likewise.
22618         * lib/unictype/pr_left_of_pair.h: Likewise.
22619         * lib/unictype/pr_line_separator.h: Likewise.
22620         * lib/unictype/pr_logical_order_exception.h: Likewise.
22621         * lib/unictype/pr_lowercase.h: Likewise.
22622         * lib/unictype/pr_math.h: Likewise.
22623         * lib/unictype/pr_non_break.h: Likewise.
22624         * lib/unictype/pr_not_a_character.h: Likewise.
22625         * lib/unictype/pr_numeric.h: Likewise.
22626         * lib/unictype/pr_other_alphabetic.h: Likewise.
22627         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
22628         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
22629         * lib/unictype/pr_other_id_continue.h: Likewise.
22630         * lib/unictype/pr_other_id_start.h: Likewise.
22631         * lib/unictype/pr_other_lowercase.h: Likewise.
22632         * lib/unictype/pr_other_math.h: Likewise.
22633         * lib/unictype/pr_other_uppercase.h: Likewise.
22634         * lib/unictype/pr_paired_punctuation.h: Likewise.
22635         * lib/unictype/pr_paragraph_separator.h: Likewise.
22636         * lib/unictype/pr_pattern_syntax.h: Likewise.
22637         * lib/unictype/pr_pattern_white_space.h: Likewise.
22638         * lib/unictype/pr_private_use.h: Likewise.
22639         * lib/unictype/pr_punctuation.h: Likewise.
22640         * lib/unictype/pr_quotation_mark.h: Likewise.
22641         * lib/unictype/pr_radical.h: Likewise.
22642         * lib/unictype/pr_sentence_terminal.h: Likewise.
22643         * lib/unictype/pr_soft_dotted.h: Likewise.
22644         * lib/unictype/pr_space.h: Likewise.
22645         * lib/unictype/pr_terminal_punctuation.h: Likewise.
22646         * lib/unictype/pr_titlecase.h: Likewise.
22647         * lib/unictype/pr_unassigned_code_value.h: Likewise.
22648         * lib/unictype/pr_unified_ideograph.h: Likewise.
22649         * lib/unictype/pr_uppercase.h: Likewise.
22650         * lib/unictype/pr_variation_selector.h: Likewise.
22651         * lib/unictype/pr_white_space.h: Likewise.
22652         * lib/unictype/pr_xid_continue.h: Likewise.
22653         * lib/unictype/pr_xid_start.h: Likewise.
22654         * lib/unictype/pr_zero_width.h: Likewise.
22655         * lib/unictype/scripts.h: Likewise.
22656         * lib/unictype/scripts_byname.gperf: Likewise.
22657         * lib/unictype/sy_c_ident.h: Likewise.
22658         * lib/unictype/sy_c_whitespace.h: Likewise.
22659         * lib/unictype/sy_java_ident.h: Likewise.
22660         * lib/unictype/sy_java_whitespace.h: Likewise.
22661
22662         * lib/unictype/Makefile: New file.
22663         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
22664         glibc.
22665         * lib/unictype/3level.h: New file, copied from glibc.
22666         * lib/unictype/3levelbit.h: New file.
22667
22668 2007-11-11  Bruno Haible  <bruno@clisp.org>
22669
22670         * modules/gperf: New file.
22671         * modules/iconv_open (Depends-on): Add it.
22672         (Makefile.am): Remove the GPERF definition.
22673
22674 2007-11-11  Bruno Haible  <bruno@clisp.org>
22675
22676         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
22677         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
22678
22679 2007-11-11  Bruno Haible  <bruno@clisp.org>
22680
22681         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
22682         (usage): Remove function.
22683
22684 2007-11-11  Bruno Haible  <bruno@clisp.org>
22685
22686         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
22687         gl_FUNC_CEILF_LIBS.
22688         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
22689         gl_FUNC_CEIL_LIBS.
22690         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
22691         gl_FUNC_CEILL_LIBS.
22692         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
22693         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
22694         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
22695
22696 2007-11-11  Bruno Haible  <bruno@clisp.org>
22697
22698         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
22699         roundf were declared but do not exist on functions.
22700         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
22701         roundl were declared but do not exist on functions.
22702         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
22703         HAVE_FLOORL_AND_CEILL, respectively.
22704         Needed for Sun C on Solaris 10.
22705
22706 2007-11-11  Bruno Haible  <bruno@clisp.org>
22707
22708         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
22709         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
22710         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
22711         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
22712         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
22713         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
22714         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
22715         HAVE_DECL_ROUNDF.
22716         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
22717         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
22718         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
22719         of HAVE_DECL_ROUND*.
22720         * modules/math (Makefile.am): Update.
22721
22722 2007-11-10  Bruno Haible  <bruno@clisp.org>
22723
22724         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
22725         ptrdiff_t as m4/intl.m4.
22726
22727 2007-11-10  Jim Meyering  <meyering@redhat.com>
22728
22729         Avoid link failure for the argmatch test.
22730         * tests/test-argmatch.c (usage): Define function to avoid a link
22731         failure: argmatch_die requires a usage function.
22732
22733 2007-11-09  Bruno Haible  <bruno@clisp.org>
22734
22735         * doc/functions/snprintf.texi: Mention BeOS deficiency.
22736         * doc/functions/vsnprintf.texi: Likewise.
22737         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
22738         with a size argument < 2.
22739
22740 2007-11-09  Bruno Haible  <bruno@clisp.org>
22741
22742         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
22743         buffer. Fixes an inefficiency introduced on 2007-11-03.
22744
22745 2007-11-09  Bruno Haible  <bruno@clisp.org>
22746
22747         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
22748         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
22749
22750 2007-11-08  Jim Meyering  <meyering@redhat.com>
22751
22752         Change cache variable name prefix "jm_" to "gl_" everywhere.
22753         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
22754         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
22755         * m4/uptime.m4: s/gl_/jm_/
22756
22757 2007-11-07  Bruno Haible  <bruno@clisp.org>
22758
22759         Update to GNU gettext 0.17.
22760         * m4/intl.m4: Update to GNU gettext 0.17.
22761         * m4/po.m4: Likewise.
22762         * modules/gettext (Files): Remove m4/ulonglong.m4.
22763         (configure.ac): Require gettext infrastructure from version 0.17.
22764
22765 2007-11-06  Bruno Haible  <bruno@clisp.org>
22766
22767         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
22768         symbolic values are not defined in a public header.
22769         * lib/freadable.c (freadable) [QNX]: Likewise.
22770         * lib/freadahead.c (freadahead) [QNX]: Likewise.
22771         * lib/freading.c (freading) [QNX]: Likewise.
22772         * lib/fseterr.c (fseterr) [QNX]: Likewise.
22773         * lib/fwritable.c (fwritable) [QNX]: Likewise.
22774         * lib/fwriting.c (fwriting) [QNX]: Likewise.
22775         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
22776         Reported by Alain Magloire.
22777
22778         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
22779
22780 2007-11-05  Bruno Haible  <bruno@clisp.org>
22781
22782         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
22783         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
22784         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
22785         Reported by Eric Blake.
22786
22787 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22788             Bruno Haible  <bruno@clisp.org>
22789
22790         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
22791         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
22792         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
22793         (malloc): Undefine also before including <stdlib.h>.
22794         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
22795         Needed on OSF/1 4.0.
22796
22797 2007-11-05  Jim Meyering  <meyering@redhat.com>
22798
22799         git-version-gen: sync from coreutils.
22800         * build-aux/git-version-gen: Add comments.
22801         Change the first '-' to '.' in the snapshot version string,
22802         e.g., 6.9-377-08144 -> 6.9.377-08144
22803         Remove first parameter.
22804         Don't declare a version "-dirty" merely because a time
22805         stamp has changed.
22806
22807 2007-11-04  Bruno Haible  <bruno@clisp.org>
22808
22809         * lib/lock.h: Protect all macro definitions containing an 'if'
22810         statement through a "do { ... } while (0)".
22811         * lib/tls.h: Likewise.
22812
22813 2007-11-04  Bruno Haible  <bruno@clisp.org>
22814
22815         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
22816
22817 2007-11-04  Bruno Haible  <bruno@clisp.org>
22818
22819         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
22820         * modules/fprintf-posix (Depends-on): Add nocrash.
22821         * modules/snprintf-posix (Depends-on): Likewise.
22822         * modules/sprintf-posix (Depends-on): Likewise.
22823         * modules/vasnprintf-posix (Depends-on): Likewise.
22824         * modules/vasprintf-posix (Depends-on): Likewise.
22825         * modules/vfprintf-posix (Depends-on): Likewise.
22826         * modules/vsnprintf-posix (Depends-on): Likewise.
22827         * modules/vsprintf-posix (Depends-on): Likewise.
22828         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
22829         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
22830         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
22831         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
22832         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
22833         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
22834         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
22835
22836 2007-11-04  Bruno Haible  <bruno@clisp.org>
22837
22838         * modules/nocrash: New file.
22839         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
22840         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
22841
22842 2007-11-04  Bruno Haible  <bruno@clisp.org>
22843
22844         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
22845         precision handling.
22846         * tests/test-vasprintf-posix.c (test_function): Likewise.
22847         * tests/test-snprintf-posix.h (test_function): Likewise.
22848         * tests/test-sprintf-posix.h (test_function): Likewise.
22849
22850         Fix *printf behaviour for large precisions on mingw and BeOS.
22851         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
22852         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
22853         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
22854         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
22855         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
22856         gl_PRINTF_PRECISION and test its result. Invoke
22857         gl_PREREQ_VASNPRINTF_PRECISION.
22858         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
22859         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22860         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22861         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22862         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22863         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22864         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22865         * doc/functions/fprintf.texi: Update.
22866         * doc/functions/printf.texi: Update.
22867         * doc/functions/snprintf.texi: Update.
22868         * doc/functions/sprintf.texi: Update.
22869         * doc/functions/vfprintf.texi: Update.
22870         * doc/functions/vprintf.texi: Update.
22871         * doc/functions/vsnprintf.texi: Update.
22872         * doc/functions/vsprintf.texi: Update.
22873
22874 2007-11-04  Bruno Haible  <bruno@clisp.org>
22875
22876         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
22877
22878 2007-11-04  Bruno Haible  <bruno@clisp.org>
22879
22880         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
22881         Reported by Sylvain Beucler <beuc@gnu.org>.
22882
22883 2007-11-03  Bruno Haible  <bruno@clisp.org>
22884
22885         * tests/test-fprintf-posix2.sh: New file.
22886         * tests/test-fprintf-posix2.c: New file.
22887         * modules/fprintf-posix-tests (Files): Add them.
22888         (TESTS): Add test-fprintf-posix2.sh.
22889         (configure.ac): Check for getrlimit and setrlimit.
22890         (check_PROGRAMS): Add test-fprintf-posix2.
22891
22892         * tests/test-printf-posix2.sh: New file.
22893         * tests/test-printf-posix2.c: New file.
22894         * modules/printf-posix-tests (Files): Add them.
22895         (TESTS): Add test-printf-posix2.sh.
22896         (configure.ac): Check for getrlimit and setrlimit.
22897         (check_PROGRAMS): Add test-printf-posix2.
22898
22899         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
22900         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
22901         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
22902         (decode_double): New function, copied from decode_long_double.
22903         (scale10_round_decimal_decoded): New function, extracted from
22904         scale10_round_decimal_long_double.
22905         (scale10_round_decimal_long_double): Use it.
22906         (scale10_round_decimal_double): New function.
22907         (floorlog10): New function.
22908         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
22909         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
22910         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
22911         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
22912         gl_PRINTF_ENOMEM and test its result. Invoke
22913         gl_PREREQ_VASNPRINTF_ENOMEM.
22914         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
22915         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22916         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22917         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22918         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22919         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22920         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22921         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
22922         * modules/snprintf-posix (Depends-on): Likewise.
22923         * modules/sprintf-posix (Depends-on): Likewise.
22924         * modules/vasnprintf-posix (Depends-on): Likewise.
22925         * modules/vasprintf-posix (Depends-on): Likewise.
22926         * modules/vfprintf-posix (Depends-on): Likewise.
22927         * modules/vsnprintf-posix (Depends-on): Likewise.
22928         * modules/vsprintf-posix (Depends-on): Likewise.
22929         * doc/functions/fprintf.texi: Update.
22930         * doc/functions/printf.texi: Update.
22931         * doc/functions/snprintf.texi: Update.
22932         * doc/functions/sprintf.texi: Update.
22933         * doc/functions/vfprintf.texi: Update.
22934         * doc/functions/vprintf.texi: Update.
22935         * doc/functions/vsnprintf.texi: Update.
22936         * doc/functions/vsprintf.texi: Update.
22937
22938 2007-11-03  Bruno Haible  <bruno@clisp.org>
22939
22940         * modules/frexp-nolibm-tests: New file.
22941
22942         * modules/frexp-nolibm: New file.
22943         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
22944
22945 2007-11-03  Bruno Haible  <bruno@clisp.org>
22946
22947         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
22948         value is C99 compliant.
22949         Needed for OSF/1 5.1.
22950
22951 2007-11-03  Bruno Haible  <bruno@clisp.org>
22952
22953         Fix out-of-memory handling of vasnprintf.
22954         * lib/printf-parse.c: Include <errno.h>.
22955         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
22956         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
22957         is already set.
22958
22959 2007-11-02  Eric Blake  <ebb9@byu.net>
22960
22961         Fix tests on cygwin.
22962         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
22963
22964 2007-11-01  Bruno Haible  <bruno@clisp.org>
22965
22966         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
22967         warning.
22968         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
22969         needed for POSIX compatibility.
22970
22971 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
22972
22973         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
22974         for compatibility with GNU.
22975
22976 2007-11-01  Bruno Haible  <bruno@clisp.org>
22977
22978         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
22979         (putenv): Renamed from rpl_putenv. Change argument type from
22980         'const char *' to 'char *'.
22981         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
22982         of defining putenv in config.h, just set REPLACE_PUTENV.
22983         * modules/putenv (Depends-on): Add stdlib.
22984         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
22985         (Include): Use <stdlib.h>.
22986         * lib/stdlib.in.h (putenv): New declaration.
22987         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
22988         REPLACE_PUTENV.
22989         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
22990         REPLACE_PUTENV.
22991         Needed for MacOS X 10.5.0.
22992         Reported by Peter O'Gorman <peter@pogma.com>.
22993
22994 2007-11-01  Jim Meyering  <meyering@redhat.com>
22995
22996         Treat an empty date string exactly like "0".
22997         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
22998         if the remaining date string (to be parsed) is empty, use "0".
22999         Reported by Mischa Molhoek and discussed in this thread:
23000         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
23001
23002 2007-10-31  Bruno Haible  <bruno@clisp.org>
23003
23004         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
23005         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
23006         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
23007         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
23008         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
23009         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
23010
23011 2007-10-31  Bruno Haible  <bruno@clisp.org>
23012
23013         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
23014         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
23015         (AC_TYPE_LONG_LONG_INT): Use it.
23016         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
23017         it as well.
23018         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
23019         to m4/longlong.m4.
23020         * modules/stdint (Files): Remove m4/ulonglong.m4.
23021         * modules/strtoull (Files): Use m4/longlong.m4 instead of
23022         m4/ulonglong.m4.
23023         * modules/strtoumax (Files): Likewise.
23024
23025 2007-10-30  Bruno Haible  <bruno@clisp.org>
23026
23027         * modules/xvasprintf-posix: New file.
23028         Suggested by Eric Blake.
23029
23030 2007-10-30  Bruno Haible  <bruno@clisp.org>
23031
23032         * modules/xprintf-posix-tests: New file.
23033         * tests/test-xprintf-posix.sh: New file.
23034         * tests/test-xprintf-posix.c: New file.
23035         * tests/test-xfprintf-posix.c: New file.
23036
23037         * modules/xprintf-posix: New file.
23038
23039 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23040
23041         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
23042         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
23043         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
23044
23045 2007-10-29  Bruno Haible  <bruno@clisp.org>
23046
23047         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
23048         contain the special marker '_cv_'.
23049         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
23050         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
23051         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
23052         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
23053         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
23054         Reported by Ralf Wildenhues.
23055
23056 2007-10-29  Bruno Haible  <bruno@clisp.org>
23057
23058         * gnulib-tool (func_import): When --lgpl is not specified, set
23059         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
23060         GPLv3.
23061         Reported by Simon Josefsson.
23062
23063 2007-10-28  Bruno Haible  <bruno@clisp.org>
23064
23065         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
23066         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
23067         HAVE_DECL_ISFINITE.
23068         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
23069         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
23070         HAVE_DECL_ISFINITE.
23071
23072 2007-10-28  Bruno Haible  <bruno@clisp.org>
23073
23074         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
23075         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
23076
23077 2007-10-28  Bruno Haible  <bruno@clisp.org>
23078
23079         Fix link errors with Sun C 5.0 on Solaris 10.
23080         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
23081         function is declared but not present in the compiler's libm.
23082         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
23083         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
23084         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
23085         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
23086         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
23087         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
23088         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
23089         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
23090         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
23091         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
23092         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
23093         HAVE_DECL_FLOORL.
23094
23095 2007-10-28  Bruno Haible  <bruno@clisp.org>
23096
23097         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
23098         gl_FUNC_FLOORL. Cache the result.
23099         (gl_FUNC_FLOORL): Use it.
23100         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
23101         gl_FUNC_CEILL. Cache the result.
23102         (gl_FUNC_CEILL): Use it.
23103
23104         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
23105         gl_FUNC_FLOOR. Cache the result.
23106         (gl_FUNC_FLOOR): Use it.
23107         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
23108         gl_FUNC_CEIL. Cache the result.
23109         (gl_FUNC_CEIL): Use it.
23110
23111         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
23112         gl_FUNC_FLOORF. Cache the result.
23113         (gl_FUNC_FLOORF): Use it.
23114         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
23115         gl_FUNC_CEILF. Cache the result.
23116         (gl_FUNC_CEILF): Use it.
23117
23118 2007-10-28  Bruno Haible  <bruno@clisp.org>
23119
23120         * gnulib-tool: Allow specifying the LGPL version number through
23121         --lgpl=2 or --lgpl=3.
23122         (func_usage): Document --lgpl with argument.
23123         Handle --lgpl=... arguments.
23124         (func_import): Recognize also gl_LGPL calls with an argument. When
23125         --lgpl=2 is used and the module's license is just LGPL, report an
23126         error. Set sed_transform_lib_file according to the lgpl variable. In
23127         the generated files, use --lgpl or gl_LGPL invocations with argument,
23128         if necessary.
23129         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
23130         an LGPv2+ license.
23131         * doc/gnulib-tool.texi (Modified imports): Update explanation of
23132         gl_LGPL macro.
23133
23134 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23135             Bruno Haible  <bruno@clisp.org>
23136
23137         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
23138         (u16_uctomb_aux): Likewise.
23139         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
23140         !HAVE_INLINE.
23141         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
23142
23143 2007-10-28  Bruno Haible  <bruno@clisp.org>
23144
23145         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
23146         Invoke AM_GETTEXT_OPTION if it exists.
23147         * modules/vasprintf: Likewise.
23148         * modules/verror: Likewise.
23149         * modules/xprintf: Likewise.
23150         * modules/xvasprintf: Likewise.
23151
23152 2007-10-27  Ben Pfaff  <blp@gnu.org>
23153
23154         * lib/math.in.h: Define isfinite macro and prototypes for
23155         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
23156         implementations.
23157         * m4/math_h.m4: New substitutions for isfinite module.
23158         * lib/isfinite.c: New file.
23159         * m4/isfinite.m4: New file.
23160         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
23161         * modules/isfinite: New file.
23162         * modules/isfinite-tests: New file.
23163         * tests/tests-isfinite.c: New file.
23164         * doc/functions/isfinite.texi: Mention isfinite module.
23165         * MODULES.html.sh: Mention new module.
23166
23167 2007-10-27  Ben Pfaff  <blp@gnu.org>
23168
23169         Ralf Wildenhues reported that Tru64 4.0D declares the round
23170         functions but does not have definitions.
23171         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
23172         cannot be found in any library, set the output variable to
23173         "missing" instead of "".
23174         * m4/round.m4: Also use our substitute if we cannot find round in
23175         any library, even if it is declared.
23176         * m4/roundf.m4: Likewise for roundf.
23177         * m4/roundl.m4: Likewise for roundl.
23178         * lib/math.in.h: Undefine roundf, round, roundl before defining
23179         their replacements, to allow for hypothetical systems where these
23180         may be defined as macros but not available in libraries.
23181
23182 2007-10-27  Bruno Haible  <bruno@clisp.org>
23183
23184         * doc/gnulib.texi: Invoke @firstparagraphindent.
23185         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
23186         changes in gnulib.
23187         (Source changes): New section.
23188
23189 2007-10-26  Bruno Haible  <bruno@clisp.org>
23190
23191         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
23192         borrowed from autoconf.
23193
23194 2007-10-26  Bruno Haible  <bruno@clisp.org>
23195
23196         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
23197         strerror returned the empty string. Needed on HP-UX 11.00.
23198
23199 2007-10-24  Micah Cowan  <micah@cowan.name>
23200
23201         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
23202         * build-aux/bootstrap: Remove support for now-unnecessary option,
23203         --cvs-user, and envvars CVS_USER, CVS_RSH.
23204
23205 2007-10-24  Jim Meyering  <meyering@redhat.com>
23206
23207         Avoid diagnostics from sha1sum when there is no cached checksum.
23208         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
23209         if the po.s1 file hasn't been created yet.
23210
23211         * build-aux/bootstrap: Sync from coreutils:
23212         2007-10-24  Jim Meyering  <meyering@redhat.com>
23213         Get gnulib from the git repository, not from an obsolete cvs one.
23214         * build-aux/bootstrap: Suggestion from Micah Cowan.
23215         2007-10-04  Jim Meyering  <jim@meyering.net>
23216         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
23217         (update_po_files): Work also when there are no .po files in po/.
23218
23219 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
23220
23221         * README: Append ".git" to git and cg examples.
23222         Problem reported by Benoit Sigoure.
23223
23224 2007-10-23  Micah Cowan  <micah@cowan.name>
23225
23226         * users.txt: Add wget.
23227
23228 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23229
23230         Fix linking of some unistdio tests on FreeBSD.
23231         * modules/unistdio/u16-vsnprintf-tests
23232         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
23233         * modules/unistdio/u16-vsprintf-tests
23234         (test_u16_vsnprintf1_LDADD): Likewise.
23235         * modules/unistdio/u32-vsnprintf-tests
23236         (test_u32_vsnprintf1_LDADD): Likewise.
23237         * modules/unistdio/u32-vsprintf-tests
23238         (test_u32_vsprintf1_LDADD): Likewise.
23239         * modules/unistdio/u8-vsnprintf-tests
23240         (test_u8_vsnprintf1_LDADD): Likewise.
23241         * modules/unistdio/u8-vsprintf-tests
23242         (test_u8_vsprintf1_LDADD): Likewise.
23243         * modules/unistdio/ulc-vsnprintf-tests
23244         (test_ulc_vsnprintf1_LDADD): Likewise.
23245         * modules/unistdio/ulc-vsprintf-tests
23246         (test_ulc_vsprintf1_LDADD): Likewise.
23247
23248         Fix linking of some uniconv tests on FreeBSD.
23249         * modules/uniconv/u16-conv-from-enc-tests
23250         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
23251         * modules/uniconv/u16-conv-to-enc-tests
23252         (test_u16_conv_to_enc_LDADD): Likewise.
23253         * modules/uniconv/u16-strconv-from-enc-tests
23254         (test_u16_strconv_from_enc_LDADD): Likewise.
23255         * modules/uniconv/u16-strconv-to-enc-tests
23256         (test_u16_strconv_to_enc_LDADD): Likewise.
23257         * modules/uniconv/u32-conv-from-enc-tests
23258         (test_u32_conv_from_enc_LDADD): Likewise.
23259         * modules/uniconv/u32-conv-to-enc-tests
23260         (test_u32_conv_to_enc_LDADD): Likewise.
23261         * modules/uniconv/u32-strconv-from-enc-tests
23262         (test_u32_strconv_from_enc_LDADD): Likewise.
23263         * modules/uniconv/u32-strconv-to-enc-tests
23264         (test_u32_strconv_to_enc_LDADD): Likewise.
23265         * modules/uniconv/u8-conv-from-enc-tests
23266         (test_u8_conv_from_enc_LDADD): Likewise.
23267         * modules/uniconv/u8-conv-to-enc-tests
23268         (test_u8_conv_to_enc_LDADD): Likewise.
23269         * modules/uniconv/u8-strconv-from-enc-tests
23270         (test_u8_strconv_from_enc_LDADD): Likewise.
23271         * modules/uniconv/u8-strconv-to-enc-tests
23272         (test_u8_strconv_to_enc_LDADD): Likewise.
23273
23274 2007-10-22  Bruno Haible  <bruno@clisp.org>
23275
23276         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
23277         size.
23278
23279 2007-10-22  Eric Blake  <ebb9@byu.net>
23280
23281         Tweak x*printf documentation.
23282         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
23283         variable name and comments.
23284         Suggested by Bruno Haible.
23285
23286 2007-10-22  Bruno Haible  <bruno@clisp.org>
23287
23288         * lib/acl.c (copy_acl): Fix file name in comment.
23289
23290 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
23291
23292         Fix Tru64 problem with stdbool.h.
23293         * lib/stdbool.in.h (false, true):
23294         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
23295         Don't declare as an enum in this situation; it runs afoul of Tru64.
23296         Problem reported by Steven M. Schweda in
23297         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
23298
23299 2007-10-22  Eric Blake  <ebb9@byu.net>
23300
23301         Also wrap vf?printf.
23302         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
23303         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
23304         (xvprintf, xvfprintf): New functions.
23305
23306 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23307
23308         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
23309         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
23310
23311         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
23312         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
23313
23314 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
23315
23316         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
23317         by Bruno Haible.
23318
23319 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23320
23321         * lib/getloadavg.c
23322         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
23323         Undef `sys' after including sys/table.h, for Tru64 4.0D.
23324
23325         * tests/test-i-ring.c: Work for C89.
23326
23327 2007-10-22  Bruno Haible  <bruno@clisp.org>
23328
23329         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
23330         -1u, in preprocessor expression, so that we don't test for the bug
23331         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
23332         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
23333
23334 2007-10-22  Eric Blake  <ebb9@byu.net>
23335
23336         * tests/test-yesno.sh: Silence stderr during test.
23337
23338 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23339
23340         * modules/crypto/gc-camellia: New file.
23341
23342         * m4/gc-camellia.m4: New file.
23343
23344         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
23345
23346         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
23347
23348 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23349
23350         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
23351         --help to stdout.  Reported by sms@antinode.org (Steven
23352         M. Schweda).
23353
23354 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23355
23356         * users.txt: Fix link to libksba.
23357
23358 2007-10-21  Ben Pfaff  <blp@gnu.org>
23359
23360         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
23361         round.c roundf implementation that depends on floorf and ceilf to
23362         be tested unconditionally.
23363
23364 2007-10-21  Ben Pfaff  <blp@gnu.org>
23365
23366         * m4/check-libm-func.m4: Removed.
23367         * m4/check-math-lib.m4: New file.
23368         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
23369         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
23370         definition and lack of AC_LIBOBJ([roundf]).
23371         * m4/roundl.m4: Ditto, and similarly for roundl.
23372         * modules/round: Reference new m4 file.
23373         * modules/roundf: Ditto.
23374         * modules/roundl: Ditto.
23375         * tests/test-round2.c (main): Use ROUND instead of round.
23376         Bug report from Bruno Haible.
23377
23378 2007-10-21  Bruno Haible  <bruno@clisp.org>
23379
23380         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
23381         context.
23382
23383 2007-10-21  Bruno Haible  <bruno@clisp.org>
23384
23385         * tests/test-wcwidth.c (main): Allow negative result for some control
23386         characters.
23387
23388         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
23389         Needed on OSF/1 5.1.
23390
23391 2007-10-21  Bruno Haible  <bruno@clisp.org>
23392
23393         * tests/test-floorf1.c: Include isnanf.h.
23394         (main): Use isnanf() instead of isnan().
23395         * tests/test-ceilf1.c: Include isnanf.h.
23396         (main): Use isnanf() instead of isnan().
23397         * tests/test-truncf1.c: Include isnanf.h.
23398         (main): Use isnanf() instead of isnan().
23399         * tests/test-roundf1.c: Include isnanf.h.
23400         (main): Use isnanf() instead of isnan().
23401
23402 2007-10-21  Eric Blake  <ebb9@byu.net>
23403
23404         * users.txt: Update URL for m4.
23405
23406 2007-10-21  Bruno Haible  <bruno@clisp.org>
23407
23408         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
23409
23410 2007-10-21  Bruno Haible  <bruno@clisp.org>
23411
23412         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
23413         Git's management files if the CVS files are not present.
23414
23415 2007-10-20  Bruno Haible  <bruno@clisp.org>
23416
23417         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
23418         gcc-3.4.x.
23419
23420 2007-10-20  Ben Pfaff  <blp@gnu.org>
23421
23422         * lib/math.in.h: Declare round, roundf, roundl if we are providing
23423         implementations.
23424         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
23425         * lib/round.c: New file.
23426         * lib/roundf.c: New file.
23427         * lib/roundl.c: New file.
23428         * m4/round.m4: New file.
23429         * m4/roundf.m4: New file.
23430         * m4/roundl.m4: New file.
23431         * m4/check-libm-func-m4: New file.
23432         * modules/math: Replace round, roundf, roundl related @VARS@ in
23433         math.in.h.
23434         * modules/round: New file.
23435         * modules/round-tests: New file.
23436         * modules/roundf: New file.
23437         * modules/roundf-tests: New file.
23438         * modules/roundl: New file.
23439         * modules/roundl-tests: New file.
23440         * tests/test-round1.c: New file.
23441         * tests/test-round2.c: New file.
23442         * tests/test-roundf1.c: New file.
23443         * tests/test-roundf2.c: New file.
23444         * tests/test-roundl.c: New file.
23445         * doc/functions/round.texi: Mention round module.
23446         * doc/functions/roundf.texi: Mention roundf module.
23447         * doc/functions/roundl.texi: Mention roundl module.
23448         * MODULES.html.sh: Mention new modules.
23449         Thanks to Bruno Haible for suggestions.
23450
23451 2007-10-20  Jim Meyering  <meyering@redhat.com>
23452
23453         * lib/xprintf.c: Include <config.h> unconditionally.
23454
23455         Change xprintf's license to GPL.
23456         * modules/xprintf (License): s/LGPL/GPL/, since this module
23457         depends on modules (exit and exitfail) which are GPL.
23458         Suggestion from Bruno Haible.
23459
23460         xprintf fixes.
23461         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
23462         Use a clearer diagnostic.
23463         Patch from Bruno Haible.
23464
23465 2007-10-20  Bruno Haible  <bruno@clisp.org>
23466
23467         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
23468         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
23469         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23470
23471 2007-10-20  Bruno Haible  <bruno@clisp.org>
23472
23473         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
23474         precision in the comparison result > x - 1 or similar.
23475         * tests/test-ceilf2.c (correct_result_p): Likewise.
23476         * tests/test-truncf2.c (correct_result_p): Likewise.
23477         * tests/test-trunc2.c (correct_result_p): Likewise.
23478         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23479
23480 2007-10-20  Bruno Haible  <bruno@clisp.org>
23481
23482         * modules/ceil: New file.
23483         * m4/ceil.m4: New file.
23484         * doc/functions/ceil.texi: Mention the 'ceil' module.
23485
23486 2007-10-20  Bruno Haible  <bruno@clisp.org>
23487
23488         * modules/floor: New file.
23489         * m4/floor.m4: New file.
23490         * doc/functions/floor.texi: Mention the 'floor' module.
23491
23492 2007-10-20  Bruno Haible  <bruno@clisp.org>
23493
23494         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
23495         of %a.
23496         * modules/floorf-tests (Depends-on): Likewise.
23497         * modules/truncf-tests (Depends-on): Likewise.
23498         * modules/trunc-tests (Depends-on): Likewise.
23499         Reported by Ben Pfaff.
23500
23501 2007-10-19  Jim Meyering  <meyering@redhat.com>
23502
23503         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
23504         Don't bother testing specific errno values.  Just test ferror.
23505
23506         New module: xprintf
23507         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
23508
23509 2007-10-19  Bruno Haible  <bruno@clisp.org>
23510
23511         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
23512         syntax.
23513         * modules/javaexec (Makefile.am): Likewise.
23514         * modules/relocatable-prog (Makefile.am): Likewise.
23515         Suggested by Jim Meyering.
23516
23517 2007-10-18  Bruno Haible  <bruno@clisp.org>
23518
23519         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
23520         Reported by Jim Meyering.
23521
23522 2007-10-18  Eric Blake  <ebb9@byu.net>
23523
23524         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
23525
23526 2007-10-18  Bruno Haible  <bruno@clisp.org>
23527
23528         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
23529         the format string into writable memory. Needed in Fortify conditions.
23530
23531 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
23532             Bruno Haible  <bruno@clisp.org>
23533
23534         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
23535         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
23536         * modules/trim (Depends-on): Add mbchar.
23537         (configure.ac): Add gl_FUNC_MBRTOWC.
23538         (Makefile.am): Augment lib_SOURCES.
23539
23540 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
23541
23542         Modify glob.c to use fstatat and dirfd, to simplify it.
23543         Suggested by Eric Blake.
23544         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
23545         Don't include <stdbool.h>; not used.
23546         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
23547         (link_exists_p): Simplify implementation, since we can now assume
23548         dirfd and fstatat.
23549         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
23550
23551 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23552
23553         * gnulib-tool (func_get_dependencies): Fix sed script to
23554         match only tests.
23555
23556 2007-10-17  Bruno Haible  <bruno@clisp.org>
23557
23558         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
23559         allow locale names without encoding suffix.
23560         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
23561         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
23562
23563 2007-10-16  Bruno Haible  <bruno@clisp.org>
23564
23565         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
23566         * lib/getgroups.c (getgroups): Likewise.
23567         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
23568
23569 2007-10-16  Bruno Haible  <bruno@clisp.org>
23570
23571         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
23572         * modules/malloc-posix (License): Likewise.
23573         * modules/realloc-posix (License): Likewise.
23574         * modules/calloc-posix (License): Likewise.
23575         * modules/intprops (License): Change from GPL to LGPL, with
23576         Paul Eggert's approval.
23577
23578 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
23579
23580         Merge glibc changes into lib/glob.c.
23581
23582         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
23583         2007-10-15 04:59:03 UTC.  Here are the changes:
23584
23585         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
23586
23587         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
23588
23589         * lib/glob.c: Add some branch prediction throughout.
23590
23591         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
23592
23593         [BZ #5103]
23594         * lib/glob.c (glob): Recognize patterns starting \/.
23595
23596         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
23597
23598         [BZ #3996]
23599         * lib/glob.c (attribute_hidden): Define if not defined.
23600         (glob): Unescape dirname, filename or username when needed and not
23601         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
23602         is NULL.  Handle unescaped [ in pattern without closing ].
23603         Don't pass GLOB_CHECK down to recursive glob for directories.
23604         (__glob_pattern_type): New function.
23605         (__glob_pattern_p): Implement using __glob_pattern_type.
23606         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
23607         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
23608         Remove unreachable code.
23609
23610         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
23611
23612         * lib/glob.c (glob_in_dir): Add some comments and asserts to
23613         explain why there are no leaks.
23614
23615         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
23616
23617         [BZ #3253]
23618         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
23619         time, rather allocate increasingly bigger arrays of pointers, if
23620         possible with alloca, if too large with malloc.
23621
23622 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
23623
23624         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
23625         Problem reported by H.Merijn Brand in
23626         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
23627         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
23628         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
23629
23630 2007-10-15  Bruno Haible  <bruno@clisp.org>
23631
23632         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
23633         with explicit rpl_ prefix.
23634         * lib/fopen.c (fopen): Likewise.
23635         * lib/freopen.c (freopen): Likewise.
23636         * lib/iconv.c (iconv): Likewise.
23637         * lib/iconv_close.c (iconv_close): Likewise.
23638
23639 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23640
23641         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
23642
23643 2007-10-15  Bruno Haible  <bruno@clisp.org>
23644
23645         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
23646         <stddef.h> instead of <stdlib.h> since we only need NULL.
23647         Reported by Ben Pfaff <blp@cs.stanford.edu>.
23648
23649 2007-10-15  Bruno Haible  <bruno@clisp.org>
23650
23651         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
23652         Replace paragraph talking about LIBOBJS.
23653         Reported by Colin Watson <cjwatson@debian.org>.
23654
23655 2007-10-15  Bruno Haible  <bruno@clisp.org>
23656
23657         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
23658         <stdlib.h> before using NULL.
23659
23660 2007-10-15  Simon Josefsson  <simon@josefsson.org>
23661
23662         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
23663         Reported by Albert Chin <china@thewrittenword.com>.
23664
23665 2007-10-14  Bruno Haible  <bruno@clisp.org>
23666
23667         * modules/iconv_open-utf-tests: New file.
23668         * tests/test-iconv-utf.c: New file.
23669
23670         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
23671         * modules/iconv_open-utf: New file.
23672         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
23673         (iconv, iconv_close): New declarations.
23674         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
23675         be defined.
23676         (iconv_open): Add special handling of conversion between UTF-8 and
23677         UTF-{16,32}{BE,LE}.
23678         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
23679         * lib/iconv_close.c: New file.
23680         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
23681         gl_FUNC_ICONV_OPEN.
23682         (gl_FUNC_ICONV_OPEN): Use it.
23683         (gl_FUNC_ICONV_OPEN_UTF): New macro.
23684         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
23685         and REPLACE_ICONV_UTF.
23686         * modules/iconv_open (Depends-on): Add c-strcase.
23687         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
23688         ICONV_CONST.
23689         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
23690
23691 2007-10-13  Albert Chin  <china@thewrittenword.com>
23692             Bruno Haible  <bruno@clisp.org>
23693
23694         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
23695         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
23696
23697 2007-10-13  Bruno Haible  <bruno@clisp.org>
23698
23699         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
23700         defined, use the ISO C99 inline semantics.
23701         * lib/argp.h (ARGP_EI): Likewise.
23702
23703 2007-10-13  Bruno Haible  <bruno@clisp.org>
23704
23705         Handle 'inline' change in gcc 4.3.0.
23706         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
23707         argp_fmtstream_write, argp_fmtstream_set_lmargin,
23708         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
23709         argp_fmtstream_point): Disable 'extern' declaration if the function
23710         definition is going to be provided inline.
23711         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
23712         semantics, not the ISO C99 inline semantics.
23713         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
23714         'extern' declaration if the function definition is going to be provided
23715         inline.
23716         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
23717         the GNU C inline semantics, not the ISO C99 inline semantics. With
23718         GCC 4.2, avoid a warning.
23719
23720 2007-10-13  Bruno Haible  <bruno@clisp.org>
23721
23722         * lib/freading.h (freading): Enable the use of __freading for
23723         glibc >= 2.7.
23724         * lib/freading.c (freading): Likewise.
23725
23726 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
23727
23728         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
23729         "warning: C99 inline functions are not supported; using GNU89".
23730
23731 2007-10-12  Bruno Haible  <bruno@clisp.org>
23732
23733         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
23734         of 2.
23735         * tests/test-ceilf2.c: New file.
23736         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
23737
23738         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
23739         * modules/ceilf-tests: Update.
23740
23741 2007-10-12  Bruno Haible  <bruno@clisp.org>
23742
23743         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
23744         of 2.
23745         * tests/test-floorf2.c: New file.
23746         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
23747
23748         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
23749         * modules/floorf-tests: Update.
23750
23751 2007-10-12  Bruno Haible  <bruno@clisp.org>
23752
23753         * tests/test-trunc2.c: New file.
23754         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
23755
23756         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
23757         * modules/trunc-tests: Update.
23758
23759 2007-10-12  Bruno Haible  <bruno@clisp.org>
23760
23761         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
23762         of 2.
23763         * tests/test-truncf2.c: New file.
23764         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
23765
23766         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
23767         * modules/truncf-tests: Update.
23768
23769 2007-10-11  Eric Blake  <ebb9@byu.net>
23770
23771         Don't claim strerror is broken on Interix.
23772         * doc/functions/strerror.texi (strerror): Known broken systems are
23773         now Solaris 8, and not Interix.
23774         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
23775         Interix on cross-compile.
23776         Reported by Martin Koeppe in
23777         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
23778
23779 2007-10-11  Bruno Haible  <bruno@clisp.org>
23780
23781         * modules/i-ring-tests: New file.
23782         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
23783         instead of assert.
23784
23785 2007-10-11  Bruno Haible  <bruno@clisp.org>
23786
23787         * modules/filenamecat-tests: New file.
23788         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
23789         * lib/filenamecat.c: Remove test code.
23790
23791 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
23792
23793         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
23794
23795         * lib/strerror.c: Include <string.h> always, to test interface,
23796         and to remove the need for the dummy.
23797         Include intprops.h to compute width instead of doing it ourselves
23798         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
23799         (strerror): Define it to return NULL if there's no system strerror.
23800         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
23801         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
23802         ancient pre-strerror Unix systems well any more.  Saying "unknown
23803         system error" is enough.
23804         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
23805         simpler strerror.c implementation.
23806         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
23807         Simplify the tests to reflect the simpler strerror implementation.
23808         * modules/strerror (Depends-on): Add intprops.
23809
23810 2007-10-09  Eric Blake  <ebb9@byu.net>
23811
23812         Silence test-fpending.
23813         * modules/fpending-tests (Files): Add wrapper script.
23814         * tests/test-fpending.sh: New file.
23815
23816 2007-10-09  Bruno Haible  <bruno@clisp.org>
23817
23818         * MODULES.html.sh (func_module): Don't create a hyperlink for
23819         function names like 'printf_frexp'.
23820         (Misc): Add crc, memxor.
23821         (Characteristics of floating types): New section.
23822         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
23823         isnanf-nolibm, signbit, trunc, truncf, truncl.
23824         (Enhancements for ISO C 99 functions): New subsection Input/output.
23825         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
23826         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
23827         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
23828         (Compatibility checks for POSIX:2001 functions): Add clock-time.
23829         (Enhancements for POSIX:2001 functions): Add chdir-long.
23830         (File system functions): Add areadlink, chdir-safer, read-file.
23831         Remove cycle-check.
23832         (File system as inode set): New section.
23833         (Date and time): Add gethrxtime.
23834         (Multithreading): Add openmp.
23835         (Internationalization functions): Add localename.
23836         (Unicode string functions): Add unistr/u*-mbsnlen.
23837         (Support for maintaining and releasing projects): Add git-version-gen.
23838         (Lone files): Remove directories.
23839
23840 2007-10-08  Ben Pfaff  <blp@gnu.org>
23841
23842         * lib/xmalloca.h: Fix typo in comment.
23843
23844 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
23845
23846         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
23847         when avoiding problems with integer overflow.  Use a portable test
23848         instead.
23849
23850 2007-10-08  Simon Josefsson  <simon@josefsson.org>
23851
23852         * modules/dummy (License): Change to LGPLv2+.
23853         * modules/float (License): Likewise
23854         * modules/realloc (License): Likewise
23855         * modules/stdlib (License): Likewise
23856
23857 2007-10-07  Bruno Haible  <bruno@clisp.org>
23858
23859         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
23860         * floor.c (TWO_MANT_DIG): Likewise.
23861         * ceil.c (TWO_MANT_DIG): Likewise.
23862         Reported by Ben Pfaff.
23863
23864 2007-10-07  Bruno Haible  <bruno@clisp.org>
23865
23866         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
23867         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
23868         * lib/frexp.c (FUNC): Likewise.
23869         * lib/printf-frexp.h (printf_frexp): Likewise.
23870         * lib/printf-frexpl.h (printf_frexpl): Likewise.
23871         * lib/printf-frexp.c (FUNC): Likewise.
23872         Suggested by Jim Meyering.
23873
23874 2007-10-07  Jim Meyering  <meyering@redhat.com>
23875
23876         Make xnanosleep's integer overflow test more robust.
23877         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
23878         so that gcc-4.3.0 doesn't optimize away this test for overflow.
23879
23880 2007-10-07  Bruno Haible  <bruno@clisp.org>
23881
23882         * NEWS: Mention the license change.
23883
23884         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
23885         abbreviations in the modules files.
23886
23887         Change copyright notice from GPLv2+ to GPLv3+.
23888         * README: Change copyright notice.
23889         * MODULES.html.sh: Likewise.
23890         * build-aux/bootstrap.conf: Likewise.
23891         * build-aux/config.libpath: Likewise.
23892         * build-aux/csharpcomp.sh.in: Likewise.
23893         * build-aux/csharpexec.sh.in: Likewise.
23894         * build-aux/install-reloc: Likewise.
23895         * build-aux/javacomp.sh.in: Likewise.
23896         * build-aux/javaexec.sh.in: Likewise.
23897         * build-aux/ldd.sh.in: Likewise.
23898         * build-aux/reloc-ldflags: Likewise.
23899         * build-aux/relocatable.sh.in: Likewise.
23900         * build-aux/x-to-1.in: Likewise.
23901         * check-module: Likewise.
23902         * config/srclistvars.sh: Likewise.
23903         * gnulib-tool: Likewise.
23904         * lib/acl-internal.h: Likewise.
23905         * lib/acl.c: Likewise.
23906         * lib/acl.h: Likewise.
23907         * lib/acl_entries.c: Likewise.
23908         * lib/areadlink-with-size.c: Likewise.
23909         * lib/areadlink.c: Likewise.
23910         * lib/areadlink.h: Likewise.
23911         * lib/argmatch.c: Likewise.
23912         * lib/argmatch.h: Likewise.
23913         * lib/argp-ba.c: Likewise.
23914         * lib/argp-eexst.c: Likewise.
23915         * lib/argp-fmtstream.c: Likewise.
23916         * lib/argp-fmtstream.h: Likewise.
23917         * lib/argp-fs-xinl.c: Likewise.
23918         * lib/argp-help.c: Likewise.
23919         * lib/argp-namefrob.h: Likewise.
23920         * lib/argp-parse.c: Likewise.
23921         * lib/argp-pin.c: Likewise.
23922         * lib/argp-pv.c: Likewise.
23923         * lib/argp-pvh.c: Likewise.
23924         * lib/argp-xinl.c: Likewise.
23925         * lib/argp.h: Likewise.
23926         * lib/at-func.c: Likewise.
23927         * lib/atanl.c: Likewise.
23928         * lib/backupfile.c: Likewise.
23929         * lib/backupfile.h: Likewise.
23930         * lib/basename.c: Likewise.
23931         * lib/binary-io.h: Likewise.
23932         * lib/byteswap.in.h: Likewise.
23933         * lib/c-stack.c: Likewise.
23934         * lib/c-stack.h: Likewise.
23935         * lib/c-strcasestr.c: Likewise.
23936         * lib/c-strcasestr.h: Likewise.
23937         * lib/c-strstr.c: Likewise.
23938         * lib/c-strstr.h: Likewise.
23939         * lib/c-strtod.c: Likewise.
23940         * lib/calloc.c: Likewise.
23941         * lib/canon-host.c: Likewise.
23942         * lib/canon-host.h: Likewise.
23943         * lib/canonicalize-lgpl.c: Likewise.
23944         * lib/canonicalize.c: Likewise.
23945         * lib/canonicalize.h: Likewise.
23946         * lib/ceil.c: Likewise.
23947         * lib/ceilf.c: Likewise.
23948         * lib/ceill.c: Likewise.
23949         * lib/chdir-long.c: Likewise.
23950         * lib/chdir-long.h: Likewise.
23951         * lib/chdir-safer.c: Likewise.
23952         * lib/chdir-safer.h: Likewise.
23953         * lib/chown.c: Likewise.
23954         * lib/classpath.c: Likewise.
23955         * lib/classpath.h: Likewise.
23956         * lib/clean-temp.c: Likewise.
23957         * lib/clean-temp.h: Likewise.
23958         * lib/cloexec.c: Likewise.
23959         * lib/close-stream.c: Likewise.
23960         * lib/closein.c: Likewise.
23961         * lib/closein.h: Likewise.
23962         * lib/closeout.c: Likewise.
23963         * lib/closeout.h: Likewise.
23964         * lib/concat-filename.c: Likewise.
23965         * lib/copy-file.c: Likewise.
23966         * lib/copy-file.h: Likewise.
23967         * lib/count-one-bits.h: Likewise.
23968         * lib/crc.c: Likewise.
23969         * lib/crc.h: Likewise.
23970         * lib/creat-safer.c: Likewise.
23971         * lib/csharpcomp.c: Likewise.
23972         * lib/csharpcomp.h: Likewise.
23973         * lib/csharpexec.c: Likewise.
23974         * lib/csharpexec.h: Likewise.
23975         * lib/cycle-check.c: Likewise.
23976         * lib/cycle-check.h: Likewise.
23977         * lib/diacrit.c: Likewise.
23978         * lib/diacrit.h: Likewise.
23979         * lib/diffseq.h: Likewise.
23980         * lib/dirchownmod.c: Likewise.
23981         * lib/dirent.in.h: Likewise.
23982         * lib/dirfd.c: Likewise.
23983         * lib/dirfd.h: Likewise.
23984         * lib/dirname.c: Likewise.
23985         * lib/dirname.h: Likewise.
23986         * lib/dummy.c: Likewise.
23987         * lib/dup-safer.c: Likewise.
23988         * lib/dup2.c: Likewise.
23989         * lib/eealloc.h: Likewise.
23990         * lib/error.c: Likewise.
23991         * lib/error.h: Likewise.
23992         * lib/euidaccess.c: Likewise.
23993         * lib/exclude.c: Likewise.
23994         * lib/exclude.h: Likewise.
23995         * lib/execute.c: Likewise.
23996         * lib/execute.h: Likewise.
23997         * lib/exitfail.c: Likewise.
23998         * lib/exitfail.h: Likewise.
23999         * lib/expl.c: Likewise.
24000         * lib/fatal-signal.c: Likewise.
24001         * lib/fatal-signal.h: Likewise.
24002         * lib/fbufmode.c: Likewise.
24003         * lib/fbufmode.h: Likewise.
24004         * lib/fchdir.c: Likewise.
24005         * lib/fchmodat.c: Likewise.
24006         * lib/fchownat.c: Likewise.
24007         * lib/fcntl--.h: Likewise.
24008         * lib/fcntl-safer.h: Likewise.
24009         * lib/fcntl.in.h: Likewise.
24010         * lib/fd-safer.c: Likewise.
24011         * lib/fflush.c: Likewise.
24012         * lib/file-has-acl.c: Likewise.
24013         * lib/file-set.c: Likewise.
24014         * lib/file-type.c: Likewise.
24015         * lib/file-type.h: Likewise.
24016         * lib/fileblocks.c: Likewise.
24017         * lib/filemode.c: Likewise.
24018         * lib/filemode.h: Likewise.
24019         * lib/filename.h: Likewise.
24020         * lib/filenamecat.c: Likewise.
24021         * lib/filenamecat.h: Likewise.
24022         * lib/findprog.c: Likewise.
24023         * lib/findprog.h: Likewise.
24024         * lib/float.in.h: Likewise.
24025         * lib/floor.c: Likewise.
24026         * lib/floorf.c: Likewise.
24027         * lib/floorl.c: Likewise.
24028         * lib/fopen-safer.c: Likewise.
24029         * lib/fopen.c: Likewise.
24030         * lib/fpending.c: Likewise.
24031         * lib/fpending.h: Likewise.
24032         * lib/fprintf.c: Likewise.
24033         * lib/fprintftime.h: Likewise.
24034         * lib/fpucw.h: Likewise.
24035         * lib/fpurge.c: Likewise.
24036         * lib/fpurge.h: Likewise.
24037         * lib/freadable.c: Likewise.
24038         * lib/freadable.h: Likewise.
24039         * lib/freadahead.c: Likewise.
24040         * lib/freadahead.h: Likewise.
24041         * lib/freading.c: Likewise.
24042         * lib/freading.h: Likewise.
24043         * lib/free.c: Likewise.
24044         * lib/freopen.c: Likewise.
24045         * lib/frexp.c: Likewise.
24046         * lib/frexpl.c: Likewise.
24047         * lib/fseek.c: Likewise.
24048         * lib/fseterr.c: Likewise.
24049         * lib/fseterr.h: Likewise.
24050         * lib/fstatat.c: Likewise.
24051         * lib/fstrcmp.c: Likewise.
24052         * lib/fstrcmp.h: Likewise.
24053         * lib/fsusage.c: Likewise.
24054         * lib/fsusage.h: Likewise.
24055         * lib/ftell.c: Likewise.
24056         * lib/ftello.c: Likewise.
24057         * lib/fts-cycle.c: Likewise.
24058         * lib/fts.c: Likewise.
24059         * lib/fts_.h: Likewise.
24060         * lib/full-read.c: Likewise.
24061         * lib/full-read.h: Likewise.
24062         * lib/full-write.c: Likewise.
24063         * lib/full-write.h: Likewise.
24064         * lib/fwritable.c: Likewise.
24065         * lib/fwritable.h: Likewise.
24066         * lib/fwriteerror.c: Likewise.
24067         * lib/fwriteerror.h: Likewise.
24068         * lib/fwriting.c: Likewise.
24069         * lib/fwriting.h: Likewise.
24070         * lib/gcd.c: Likewise.
24071         * lib/gcd.h: Likewise.
24072         * lib/getcwd.c: Likewise.
24073         * lib/getdate.h: Likewise.
24074         * lib/getdate.y: Likewise.
24075         * lib/getdomainname.c: Likewise.
24076         * lib/getdomainname.h: Likewise.
24077         * lib/getgroups.c: Likewise.
24078         * lib/gethostname.c: Likewise.
24079         * lib/gethrxtime.c: Likewise.
24080         * lib/gethrxtime.h: Likewise.
24081         * lib/getloadavg.c: Likewise.
24082         * lib/getndelim2.c: Likewise.
24083         * lib/getndelim2.h: Likewise.
24084         * lib/getnline.c: Likewise.
24085         * lib/getnline.h: Likewise.
24086         * lib/getopt.c: Likewise.
24087         * lib/getopt.in.h: Likewise.
24088         * lib/getopt1.c: Likewise.
24089         * lib/getopt_int.h: Likewise.
24090         * lib/getpagesize.h: Likewise.
24091         * lib/getsubopt.c: Likewise.
24092         * lib/gettime.c: Likewise.
24093         * lib/getugroups.c: Likewise.
24094         * lib/getugroups.h: Likewise.
24095         * lib/getusershell.c: Likewise.
24096         * lib/gl_anyavltree_list1.h: Likewise.
24097         * lib/gl_anyavltree_list2.h: Likewise.
24098         * lib/gl_anyhash_list1.h: Likewise.
24099         * lib/gl_anyhash_list2.h: Likewise.
24100         * lib/gl_anylinked_list1.h: Likewise.
24101         * lib/gl_anylinked_list2.h: Likewise.
24102         * lib/gl_anyrbtree_list1.h: Likewise.
24103         * lib/gl_anyrbtree_list2.h: Likewise.
24104         * lib/gl_anytree_list1.h: Likewise.
24105         * lib/gl_anytree_list2.h: Likewise.
24106         * lib/gl_anytree_oset.h: Likewise.
24107         * lib/gl_anytreehash_list1.h: Likewise.
24108         * lib/gl_anytreehash_list2.h: Likewise.
24109         * lib/gl_array_list.c: Likewise.
24110         * lib/gl_array_list.h: Likewise.
24111         * lib/gl_array_oset.c: Likewise.
24112         * lib/gl_array_oset.h: Likewise.
24113         * lib/gl_avltree_list.c: Likewise.
24114         * lib/gl_avltree_list.h: Likewise.
24115         * lib/gl_avltree_oset.c: Likewise.
24116         * lib/gl_avltree_oset.h: Likewise.
24117         * lib/gl_avltreehash_list.c: Likewise.
24118         * lib/gl_avltreehash_list.h: Likewise.
24119         * lib/gl_carray_list.c: Likewise.
24120         * lib/gl_carray_list.h: Likewise.
24121         * lib/gl_linked_list.c: Likewise.
24122         * lib/gl_linked_list.h: Likewise.
24123         * lib/gl_linkedhash_list.c: Likewise.
24124         * lib/gl_linkedhash_list.h: Likewise.
24125         * lib/gl_list.c: Likewise.
24126         * lib/gl_list.h: Likewise.
24127         * lib/gl_oset.c: Likewise.
24128         * lib/gl_oset.h: Likewise.
24129         * lib/gl_rbtree_list.c: Likewise.
24130         * lib/gl_rbtree_list.h: Likewise.
24131         * lib/gl_rbtree_oset.c: Likewise.
24132         * lib/gl_rbtree_oset.h: Likewise.
24133         * lib/gl_rbtreehash_list.c: Likewise.
24134         * lib/gl_rbtreehash_list.h: Likewise.
24135         * lib/gl_sublist.c: Likewise.
24136         * lib/gl_sublist.h: Likewise.
24137         * lib/group-member.c: Likewise.
24138         * lib/group-member.h: Likewise.
24139         * lib/hard-locale.c: Likewise.
24140         * lib/hard-locale.h: Likewise.
24141         * lib/hash-pjw.c: Likewise.
24142         * lib/hash-pjw.h: Likewise.
24143         * lib/hash-triple.c: Likewise.
24144         * lib/hash.c: Likewise.
24145         * lib/hash.h: Likewise.
24146         * lib/human.c: Likewise.
24147         * lib/human.h: Likewise.
24148         * lib/i-ring.c: Likewise.
24149         * lib/i-ring.h: Likewise.
24150         * lib/idcache.c: Likewise.
24151         * lib/imaxabs.c: Likewise.
24152         * lib/imaxdiv.c: Likewise.
24153         * lib/inet_pton.c: Likewise.
24154         * lib/inet_pton.h: Likewise.
24155         * lib/intprops.h: Likewise.
24156         * lib/inttostr.c: Likewise.
24157         * lib/inttostr.h: Likewise.
24158         * lib/inttypes.in.h: Likewise.
24159         * lib/isapipe.c: Likewise.
24160         * lib/isdir.c: Likewise.
24161         * lib/isnan.c: Likewise.
24162         * lib/isnan.h: Likewise.
24163         * lib/isnanf.c: Likewise.
24164         * lib/isnanf.h: Likewise.
24165         * lib/isnanl-nolibm.h: Likewise.
24166         * lib/isnanl.c: Likewise.
24167         * lib/isnanl.h: Likewise.
24168         * lib/javacomp.c: Likewise.
24169         * lib/javacomp.h: Likewise.
24170         * lib/javaexec.c: Likewise.
24171         * lib/javaexec.h: Likewise.
24172         * lib/javaversion.c: Likewise.
24173         * lib/javaversion.h: Likewise.
24174         * lib/javaversion.java: Likewise.
24175         * lib/lbrkprop.h: Likewise.
24176         * lib/lchmod.h: Likewise.
24177         * lib/lchown.c: Likewise.
24178         * lib/ldexpl.c: Likewise.
24179         * lib/linebreak.c: Likewise.
24180         * lib/linebreak.h: Likewise.
24181         * lib/linebuffer.c: Likewise.
24182         * lib/linebuffer.h: Likewise.
24183         * lib/locale.in.h: Likewise.
24184         * lib/logl.c: Likewise.
24185         * lib/long-options.c: Likewise.
24186         * lib/long-options.h: Likewise.
24187         * lib/lstat.c: Likewise.
24188         * lib/lstat.h: Likewise.
24189         * lib/math.in.h: Likewise.
24190         * lib/mbchar.c: Likewise.
24191         * lib/mbchar.h: Likewise.
24192         * lib/mbfile.h: Likewise.
24193         * lib/mbiter.h: Likewise.
24194         * lib/mbscasecmp.c: Likewise.
24195         * lib/mbscasestr.c: Likewise.
24196         * lib/mbschr.c: Likewise.
24197         * lib/mbscspn.c: Likewise.
24198         * lib/mbslen.c: Likewise.
24199         * lib/mbsncasecmp.c: Likewise.
24200         * lib/mbsnlen.c: Likewise.
24201         * lib/mbspbrk.c: Likewise.
24202         * lib/mbspcasecmp.c: Likewise.
24203         * lib/mbsrchr.c: Likewise.
24204         * lib/mbssep.c: Likewise.
24205         * lib/mbsspn.c: Likewise.
24206         * lib/mbsstr.c: Likewise.
24207         * lib/mbstok_r.c: Likewise.
24208         * lib/mbswidth.c: Likewise.
24209         * lib/mbswidth.h: Likewise.
24210         * lib/mbuiter.h: Likewise.
24211         * lib/memcasecmp.c: Likewise.
24212         * lib/memcasecmp.h: Likewise.
24213         * lib/memchr.c: Likewise.
24214         * lib/memcmp.c: Likewise.
24215         * lib/memcoll.c: Likewise.
24216         * lib/memcoll.h: Likewise.
24217         * lib/memcpy.c: Likewise.
24218         * lib/memrchr.c: Likewise.
24219         * lib/mkancesdirs.c: Likewise.
24220         * lib/mkdir-p.c: Likewise.
24221         * lib/mkdir-p.h: Likewise.
24222         * lib/mkdir.c: Likewise.
24223         * lib/mkdirat.c: Likewise.
24224         * lib/mkdtemp.c: Likewise.
24225         * lib/mkstemp-safer.c: Likewise.
24226         * lib/mkstemp.c: Likewise.
24227         * lib/modechange.c: Likewise.
24228         * lib/modechange.h: Likewise.
24229         * lib/mountlist.c: Likewise.
24230         * lib/mountlist.h: Likewise.
24231         * lib/mpsort.c: Likewise.
24232         * lib/nanosleep.c: Likewise.
24233         * lib/obstack.c: Likewise.
24234         * lib/obstack.h: Likewise.
24235         * lib/open-safer.c: Likewise.
24236         * lib/open.c: Likewise.
24237         * lib/openat-die.c: Likewise.
24238         * lib/openat-priv.h: Likewise.
24239         * lib/openat-proc.c: Likewise.
24240         * lib/openat.c: Likewise.
24241         * lib/openat.h: Likewise.
24242         * lib/pagealign_alloc.c: Likewise.
24243         * lib/pagealign_alloc.h: Likewise.
24244         * lib/physmem.c: Likewise.
24245         * lib/physmem.h: Likewise.
24246         * lib/pipe-safer.c: Likewise.
24247         * lib/pipe.c: Likewise.
24248         * lib/pipe.h: Likewise.
24249         * lib/posixtm.c: Likewise.
24250         * lib/posixtm.h: Likewise.
24251         * lib/posixver.c: Likewise.
24252         * lib/printf-frexp.c: Likewise.
24253         * lib/printf-frexp.h: Likewise.
24254         * lib/printf-frexpl.c: Likewise.
24255         * lib/printf-frexpl.h: Likewise.
24256         * lib/printf.c: Likewise.
24257         * lib/progname.c: Likewise.
24258         * lib/progname.h: Likewise.
24259         * lib/progreloc.c: Likewise.
24260         * lib/putenv.c: Likewise.
24261         * lib/quote.c: Likewise.
24262         * lib/quote.h: Likewise.
24263         * lib/quotearg.c: Likewise.
24264         * lib/quotearg.h: Likewise.
24265         * lib/raise.c: Likewise.
24266         * lib/readline.c: Likewise.
24267         * lib/readline.h: Likewise.
24268         * lib/readlink.c: Likewise.
24269         * lib/readtokens.c: Likewise.
24270         * lib/readtokens.h: Likewise.
24271         * lib/readtokens0.c: Likewise.
24272         * lib/readtokens0.h: Likewise.
24273         * lib/readutmp.c: Likewise.
24274         * lib/readutmp.h: Likewise.
24275         * lib/realloc.c: Likewise.
24276         * lib/relocwrapper.c: Likewise.
24277         * lib/rename-dest-slash.c: Likewise.
24278         * lib/rename.c: Likewise.
24279         * lib/rmdir.c: Likewise.
24280         * lib/rpmatch.c: Likewise.
24281         * lib/safe-read.c: Likewise.
24282         * lib/safe-read.h: Likewise.
24283         * lib/safe-write.c: Likewise.
24284         * lib/safe-write.h: Likewise.
24285         * lib/same-inode.h: Likewise.
24286         * lib/same.c: Likewise.
24287         * lib/same.h: Likewise.
24288         * lib/save-cwd.c: Likewise.
24289         * lib/save-cwd.h: Likewise.
24290         * lib/savedir.c: Likewise.
24291         * lib/savedir.h: Likewise.
24292         * lib/savewd.c: Likewise.
24293         * lib/savewd.h: Likewise.
24294         * lib/search.in.h: Likewise.
24295         * lib/setenv.c: Likewise.
24296         * lib/setenv.h: Likewise.
24297         * lib/settime.c: Likewise.
24298         * lib/sh-quote.c: Likewise.
24299         * lib/sh-quote.h: Likewise.
24300         * lib/sig2str.c: Likewise.
24301         * lib/sig2str.h: Likewise.
24302         * lib/signal.in.h: Likewise.
24303         * lib/signbitd.c: Likewise.
24304         * lib/signbitf.c: Likewise.
24305         * lib/signbitl.c: Likewise.
24306         * lib/sigprocmask.c: Likewise.
24307         * lib/sincosl.c: Likewise.
24308         * lib/sleep.c: Likewise.
24309         * lib/sprintf.c: Likewise.
24310         * lib/sqrtl.c: Likewise.
24311         * lib/stat-time.h: Likewise.
24312         * lib/stdio--.h: Likewise.
24313         * lib/stdio-safer.h: Likewise.
24314         * lib/stdlib--.h: Likewise.
24315         * lib/stdlib-safer.h: Likewise.
24316         * lib/stdlib.in.h: Likewise.
24317         * lib/stpcpy.c: Likewise.
24318         * lib/stpncpy.c: Likewise.
24319         * lib/strchrnul.c: Likewise.
24320         * lib/strcspn.c: Likewise.
24321         * lib/strerror.c: Likewise.
24322         * lib/strftime.c: Likewise.
24323         * lib/strftime.h: Likewise.
24324         * lib/striconveh.c: Likewise.
24325         * lib/striconveh.h: Likewise.
24326         * lib/striconveha.c: Likewise.
24327         * lib/striconveha.h: Likewise.
24328         * lib/stripslash.c: Likewise.
24329         * lib/strnlen1.c: Likewise.
24330         * lib/strnlen1.h: Likewise.
24331         * lib/strtod.c: Likewise.
24332         * lib/strtoimax.c: Likewise.
24333         * lib/strtok_r.c: Likewise.
24334         * lib/strtol.c: Likewise.
24335         * lib/strtoll.c: Likewise.
24336         * lib/strtoul.c: Likewise.
24337         * lib/strtoull.c: Likewise.
24338         * lib/sysexits.in.h: Likewise.
24339         * lib/tempname.c: Likewise.
24340         * lib/tempname.h: Likewise.
24341         * lib/timespec.h: Likewise.
24342         * lib/tls.c: Likewise.
24343         * lib/tls.h: Likewise.
24344         * lib/tmpdir.c: Likewise.
24345         * lib/tmpdir.h: Likewise.
24346         * lib/tmpfile-safer.c: Likewise.
24347         * lib/tmpfile.c: Likewise.
24348         * lib/trigl.c: Likewise.
24349         * lib/trigl.h: Likewise.
24350         * lib/trim.c: Likewise.
24351         * lib/trim.h: Likewise.
24352         * lib/trunc.c: Likewise.
24353         * lib/truncf.c: Likewise.
24354         * lib/truncl.c: Likewise.
24355         * lib/tsearch.c: Likewise.
24356         * lib/unicodeio.c: Likewise.
24357         * lib/unicodeio.h: Likewise.
24358         * lib/unistd--.h: Likewise.
24359         * lib/unistd-safer.h: Likewise.
24360         * lib/unistdio/ulc-fprintf.c: Likewise.
24361         * lib/unistdio/ulc-vfprintf.c: Likewise.
24362         * lib/unlinkdir.c: Likewise.
24363         * lib/unlinkdir.h: Likewise.
24364         * lib/unlocked-io.h: Likewise.
24365         * lib/unsetenv.c: Likewise.
24366         * lib/userspec.c: Likewise.
24367         * lib/utime.c: Likewise.
24368         * lib/utimecmp.c: Likewise.
24369         * lib/utimecmp.h: Likewise.
24370         * lib/utimens.c: Likewise.
24371         * lib/verify.h: Likewise.
24372         * lib/verror.c: Likewise.
24373         * lib/verror.h: Likewise.
24374         * lib/version-etc-fsf.c: Likewise.
24375         * lib/version-etc.c: Likewise.
24376         * lib/version-etc.h: Likewise.
24377         * lib/vfprintf.c: Likewise.
24378         * lib/vprintf.c: Likewise.
24379         * lib/vsprintf.c: Likewise.
24380         * lib/w32spawn.h: Likewise.
24381         * lib/wait-process.c: Likewise.
24382         * lib/wait-process.h: Likewise.
24383         * lib/wcwidth.c: Likewise.
24384         * lib/write-any-file.c: Likewise.
24385         * lib/xalloc-die.c: Likewise.
24386         * lib/xalloc.h: Likewise.
24387         * lib/xasprintf.c: Likewise.
24388         * lib/xgetcwd.c: Likewise.
24389         * lib/xgetcwd.h: Likewise.
24390         * lib/xgetdomainname.c: Likewise.
24391         * lib/xgetdomainname.h: Likewise.
24392         * lib/xgethostname.c: Likewise.
24393         * lib/xmalloc.c: Likewise.
24394         * lib/xmalloca.c: Likewise.
24395         * lib/xmalloca.h: Likewise.
24396         * lib/xmemcoll.c: Likewise.
24397         * lib/xnanosleep.c: Likewise.
24398         * lib/xreadlink.c: Likewise.
24399         * lib/xreadlink.h: Likewise.
24400         * lib/xsetenv.c: Likewise.
24401         * lib/xsetenv.h: Likewise.
24402         * lib/xstriconv.c: Likewise.
24403         * lib/xstriconv.h: Likewise.
24404         * lib/xstrndup.c: Likewise.
24405         * lib/xstrndup.h: Likewise.
24406         * lib/xstrtod.c: Likewise.
24407         * lib/xstrtod.h: Likewise.
24408         * lib/xstrtol-error.c: Likewise.
24409         * lib/xstrtol.c: Likewise.
24410         * lib/xstrtol.h: Likewise.
24411         * lib/xtime.h: Likewise.
24412         * lib/xvasprintf.c: Likewise.
24413         * lib/xvasprintf.h: Likewise.
24414         * lib/yesno.c: Likewise.
24415         * lib/yesno.h: Likewise.
24416         * posix-modules: Likewise.
24417         * tests/test-alloca-opt.c: Likewise.
24418         * tests/test-arcfour.c: Likewise.
24419         * tests/test-arctwo.c: Likewise.
24420         * tests/test-argmatch.c: Likewise.
24421         * tests/test-argp-2.sh: Likewise.
24422         * tests/test-argp.c: Likewise.
24423         * tests/test-arpa_inet.c: Likewise.
24424         * tests/test-array_list.c: Likewise.
24425         * tests/test-array_oset.c: Likewise.
24426         * tests/test-atexit.c: Likewise.
24427         * tests/test-avltree_list.c: Likewise.
24428         * tests/test-avltree_oset.c: Likewise.
24429         * tests/test-avltreehash_list.c: Likewise.
24430         * tests/test-base64.c: Likewise.
24431         * tests/test-binary-io.c: Likewise.
24432         * tests/test-byteswap.c: Likewise.
24433         * tests/test-c-ctype.c: Likewise.
24434         * tests/test-c-strcasecmp.c: Likewise.
24435         * tests/test-c-strcasestr.c: Likewise.
24436         * tests/test-c-strncasecmp.c: Likewise.
24437         * tests/test-c-strstr.c: Likewise.
24438         * tests/test-canonicalize-lgpl.c: Likewise.
24439         * tests/test-canonicalize.c: Likewise.
24440         * tests/test-carray_list.c: Likewise.
24441         * tests/test-ceilf.c: Likewise.
24442         * tests/test-ceill.c: Likewise.
24443         * tests/test-count-one-bits.c: Likewise.
24444         * tests/test-crc.c: Likewise.
24445         * tests/test-dirname.c: Likewise.
24446         * tests/test-fbufmode.c: Likewise.
24447         * tests/test-fcntl.c: Likewise.
24448         * tests/test-fflush.c: Likewise.
24449         * tests/test-floorf.c: Likewise.
24450         * tests/test-floorl.c: Likewise.
24451         * tests/test-fopen.c: Likewise.
24452         * tests/test-fprintf-posix.c: Likewise.
24453         * tests/test-fprintf-posix.h: Likewise.
24454         * tests/test-fpurge.c: Likewise.
24455         * tests/test-freadable.c: Likewise.
24456         * tests/test-freadahead.c: Likewise.
24457         * tests/test-freading.c: Likewise.
24458         * tests/test-freopen.c: Likewise.
24459         * tests/test-frexp.c: Likewise.
24460         * tests/test-frexpl.c: Likewise.
24461         * tests/test-fseek.c: Likewise.
24462         * tests/test-fseeko.c: Likewise.
24463         * tests/test-fseterr.c: Likewise.
24464         * tests/test-fstrcmp.c: Likewise.
24465         * tests/test-ftell.c: Likewise.
24466         * tests/test-ftello.c: Likewise.
24467         * tests/test-fwritable.c: Likewise.
24468         * tests/test-fwriting.c: Likewise.
24469         * tests/test-getaddrinfo.c: Likewise.
24470         * tests/test-getpass.c: Likewise.
24471         * tests/test-gettimeofday.c: Likewise.
24472         * tests/test-hmac-md5.c: Likewise.
24473         * tests/test-hmac-sha1.c: Likewise.
24474         * tests/test-iconv.c: Likewise.
24475         * tests/test-iconvme.c: Likewise.
24476         * tests/test-inttypes.c: Likewise.
24477         * tests/test-isnan.c: Likewise.
24478         * tests/test-isnanf.c: Likewise.
24479         * tests/test-isnanl-nolibm.c: Likewise.
24480         * tests/test-isnanl.c: Likewise.
24481         * tests/test-isnanl.h: Likewise.
24482         * tests/test-ldexpl.c: Likewise.
24483         * tests/test-linked_list.c: Likewise.
24484         * tests/test-linkedhash_list.c: Likewise.
24485         * tests/test-locale.c: Likewise.
24486         * tests/test-localename.c: Likewise.
24487         * tests/test-lock.c: Likewise.
24488         * tests/test-lseek.c: Likewise.
24489         * tests/test-malloca.c: Likewise.
24490         * tests/test-math.c: Likewise.
24491         * tests/test-mbscasecmp.c: Likewise.
24492         * tests/test-mbscasestr1.c: Likewise.
24493         * tests/test-mbscasestr2.c: Likewise.
24494         * tests/test-mbscasestr3.c: Likewise.
24495         * tests/test-mbscasestr4.c: Likewise.
24496         * tests/test-mbschr.c: Likewise.
24497         * tests/test-mbscspn.c: Likewise.
24498         * tests/test-mbsncasecmp.c: Likewise.
24499         * tests/test-mbspbrk.c: Likewise.
24500         * tests/test-mbspcasecmp.c: Likewise.
24501         * tests/test-mbsrchr.c: Likewise.
24502         * tests/test-mbsspn.c: Likewise.
24503         * tests/test-mbsstr1.c: Likewise.
24504         * tests/test-mbsstr2.c: Likewise.
24505         * tests/test-mbsstr3.c: Likewise.
24506         * tests/test-md5.c: Likewise.
24507         * tests/test-memmem.c: Likewise.
24508         * tests/test-netinet_in.c: Likewise.
24509         * tests/test-open.c: Likewise.
24510         * tests/test-printf-frexp.c: Likewise.
24511         * tests/test-printf-frexpl.c: Likewise.
24512         * tests/test-printf-posix.c: Likewise.
24513         * tests/test-printf-posix.h: Likewise.
24514         * tests/test-rbtree_list.c: Likewise.
24515         * tests/test-rbtree_oset.c: Likewise.
24516         * tests/test-rbtreehash_list.c: Likewise.
24517         * tests/test-read-file.c: Likewise.
24518         * tests/test-rijndael.c: Likewise.
24519         * tests/test-search.c: Likewise.
24520         * tests/test-signbit.c: Likewise.
24521         * tests/test-sleep.c: Likewise.
24522         * tests/test-snprintf-posix.c: Likewise.
24523         * tests/test-snprintf-posix.h: Likewise.
24524         * tests/test-snprintf.c: Likewise.
24525         * tests/test-sprintf-posix.c: Likewise.
24526         * tests/test-sprintf-posix.h: Likewise.
24527         * tests/test-stat-time.c: Likewise.
24528         * tests/test-stdbool.c: Likewise.
24529         * tests/test-stdint.c: Likewise.
24530         * tests/test-stdio.c: Likewise.
24531         * tests/test-stdlib.c: Likewise.
24532         * tests/test-stpncpy.c: Likewise.
24533         * tests/test-strcasestr.c: Likewise.
24534         * tests/test-striconv.c: Likewise.
24535         * tests/test-striconveh.c: Likewise.
24536         * tests/test-striconveha.c: Likewise.
24537         * tests/test-string.c: Likewise.
24538         * tests/test-sys_select.c: Likewise.
24539         * tests/test-sys_socket.c: Likewise.
24540         * tests/test-sys_stat.c: Likewise.
24541         * tests/test-sys_time.c: Likewise.
24542         * tests/test-sysexits.c: Likewise.
24543         * tests/test-time.c: Likewise.
24544         * tests/test-tls.c: Likewise.
24545         * tests/test-trunc.c: Likewise.
24546         * tests/test-truncf.c: Likewise.
24547         * tests/test-truncl.c: Likewise.
24548         * tests/test-unistd.c: Likewise.
24549         * tests/test-vasnprintf-posix.c: Likewise.
24550         * tests/test-vasnprintf-posix2.c: Likewise.
24551         * tests/test-vasnprintf.c: Likewise.
24552         * tests/test-vasprintf-posix.c: Likewise.
24553         * tests/test-vasprintf.c: Likewise.
24554         * tests/test-verify.c: Likewise.
24555         * tests/test-vfprintf-posix.c: Likewise.
24556         * tests/test-vprintf-posix.c: Likewise.
24557         * tests/test-vsnprintf-posix.c: Likewise.
24558         * tests/test-vsnprintf.c: Likewise.
24559         * tests/test-vsprintf-posix.c: Likewise.
24560         * tests/test-wchar.c: Likewise.
24561         * tests/test-wctype.c: Likewise.
24562         * tests/test-wcwidth.c: Likewise.
24563         * tests/test-xstrtol.c: Likewise.
24564         * tests/test-xvasprintf.c: Likewise.
24565         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
24566         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
24567         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
24568         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
24569         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
24570         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
24571         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
24572         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
24573         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
24574         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
24575         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
24576         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
24577         * tests/uniname/test-uninames.c: Likewise.
24578         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
24579         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
24580         * tests/unistdio/test-u16-printf1.h: Likewise.
24581         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
24582         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
24583         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
24584         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
24585         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
24586         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
24587         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
24588         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
24589         * tests/unistdio/test-u32-printf1.h: Likewise.
24590         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
24591         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
24592         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
24593         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
24594         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
24595         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
24596         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
24597         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
24598         * tests/unistdio/test-u8-printf1.h: Likewise.
24599         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
24600         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
24601         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
24602         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
24603         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
24604         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
24605         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
24606         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
24607         * tests/unistdio/test-ulc-printf1.h: Likewise.
24608         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
24609         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
24610         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
24611         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
24612         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
24613         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
24614         * tests/uniwidth/test-u16-strwidth.c: Likewise.
24615         * tests/uniwidth/test-u16-width.c: Likewise.
24616         * tests/uniwidth/test-u32-strwidth.c: Likewise.
24617         * tests/uniwidth/test-u32-width.c: Likewise.
24618         * tests/uniwidth/test-u8-strwidth.c: Likewise.
24619         * tests/uniwidth/test-u8-width.c: Likewise.
24620         * tests/uniwidth/test-uc_width.c: Likewise.
24621         * config/srclist-update: Likewise.
24622         (fixlicense): Update to GPLv3+.
24623
24624         Change copyright notice from LGPLv2.1+ to LGPLv3+.
24625         * tests/test-tsearch.c: Change copyright notice.
24626
24627         Change copyright notice from LGPLv2.0+ to LGPLv3+.
24628         * lib/c-strcaseeq.h: Change copyright notice.
24629         * lib/streq.h: Likewise.
24630         * lib/uniconv.h: Likewise.
24631         * lib/uniconv/u-conv-from-enc.h: Likewise.
24632         * lib/uniconv/u-conv-to-enc.h: Likewise.
24633         * lib/uniconv/u-strconv-from-enc.h: Likewise.
24634         * lib/uniconv/u-strconv-to-enc.h: Likewise.
24635         * lib/uniconv/u16-conv-from-enc.c: Likewise.
24636         * lib/uniconv/u16-conv-to-enc.c: Likewise.
24637         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
24638         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
24639         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
24640         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
24641         * lib/uniconv/u32-conv-from-enc.c: Likewise.
24642         * lib/uniconv/u32-conv-to-enc.c: Likewise.
24643         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
24644         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
24645         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
24646         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
24647         * lib/uniconv/u8-conv-from-enc.c: Likewise.
24648         * lib/uniconv/u8-conv-to-enc.c: Likewise.
24649         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
24650         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
24651         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
24652         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
24653         * lib/uniname.h: Likewise.
24654         * lib/uniname/uniname.c: Likewise.
24655         * lib/unistdio.h: Likewise.
24656         * lib/unistdio/u-asnprintf.h: Likewise.
24657         * lib/unistdio/u-asprintf.h: Likewise.
24658         * lib/unistdio/u-printf-args.c: Likewise.
24659         * lib/unistdio/u-printf-args.h: Likewise.
24660         * lib/unistdio/u-printf-parse.h: Likewise.
24661         * lib/unistdio/u-snprintf.h: Likewise.
24662         * lib/unistdio/u-sprintf.h: Likewise.
24663         * lib/unistdio/u-vasprintf.h: Likewise.
24664         * lib/unistdio/u-vsnprintf.h: Likewise.
24665         * lib/unistdio/u-vsprintf.h: Likewise.
24666         * lib/unistdio/u16-asnprintf.c: Likewise.
24667         * lib/unistdio/u16-asprintf.c: Likewise.
24668         * lib/unistdio/u16-printf-parse.c: Likewise.
24669         * lib/unistdio/u16-snprintf.c: Likewise.
24670         * lib/unistdio/u16-sprintf.c: Likewise.
24671         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
24672         * lib/unistdio/u16-u16-asprintf.c: Likewise.
24673         * lib/unistdio/u16-u16-snprintf.c: Likewise.
24674         * lib/unistdio/u16-u16-sprintf.c: Likewise.
24675         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
24676         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
24677         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
24678         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
24679         * lib/unistdio/u16-vasnprintf.c: Likewise.
24680         * lib/unistdio/u16-vasprintf.c: Likewise.
24681         * lib/unistdio/u16-vsnprintf.c: Likewise.
24682         * lib/unistdio/u16-vsprintf.c: Likewise.
24683         * lib/unistdio/u32-asnprintf.c: Likewise.
24684         * lib/unistdio/u32-asprintf.c: Likewise.
24685         * lib/unistdio/u32-printf-parse.c: Likewise.
24686         * lib/unistdio/u32-snprintf.c: Likewise.
24687         * lib/unistdio/u32-sprintf.c: Likewise.
24688         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
24689         * lib/unistdio/u32-u32-asprintf.c: Likewise.
24690         * lib/unistdio/u32-u32-snprintf.c: Likewise.
24691         * lib/unistdio/u32-u32-sprintf.c: Likewise.
24692         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
24693         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
24694         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
24695         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
24696         * lib/unistdio/u32-vasnprintf.c: Likewise.
24697         * lib/unistdio/u32-vasprintf.c: Likewise.
24698         * lib/unistdio/u32-vsnprintf.c: Likewise.
24699         * lib/unistdio/u32-vsprintf.c: Likewise.
24700         * lib/unistdio/u8-asnprintf.c: Likewise.
24701         * lib/unistdio/u8-asprintf.c: Likewise.
24702         * lib/unistdio/u8-printf-parse.c: Likewise.
24703         * lib/unistdio/u8-snprintf.c: Likewise.
24704         * lib/unistdio/u8-sprintf.c: Likewise.
24705         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
24706         * lib/unistdio/u8-u8-asprintf.c: Likewise.
24707         * lib/unistdio/u8-u8-snprintf.c: Likewise.
24708         * lib/unistdio/u8-u8-sprintf.c: Likewise.
24709         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
24710         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
24711         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
24712         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
24713         * lib/unistdio/u8-vasnprintf.c: Likewise.
24714         * lib/unistdio/u8-vasprintf.c: Likewise.
24715         * lib/unistdio/u8-vsnprintf.c: Likewise.
24716         * lib/unistdio/u8-vsprintf.c: Likewise.
24717         * lib/unistdio/ulc-asnprintf.c: Likewise.
24718         * lib/unistdio/ulc-asprintf.c: Likewise.
24719         * lib/unistdio/ulc-printf-parse.c: Likewise.
24720         * lib/unistdio/ulc-snprintf.c: Likewise.
24721         * lib/unistdio/ulc-sprintf.c: Likewise.
24722         * lib/unistdio/ulc-vasnprintf.c: Likewise.
24723         * lib/unistdio/ulc-vasprintf.c: Likewise.
24724         * lib/unistdio/ulc-vsnprintf.c: Likewise.
24725         * lib/unistdio/ulc-vsprintf.c: Likewise.
24726         * lib/unistr.h: Likewise.
24727         * lib/unistr/u-cpy-alloc.h: Likewise.
24728         * lib/unistr/u-cpy.h: Likewise.
24729         * lib/unistr/u-endswith.h: Likewise.
24730         * lib/unistr/u-move.h: Likewise.
24731         * lib/unistr/u-set.h: Likewise.
24732         * lib/unistr/u-startswith.h: Likewise.
24733         * lib/unistr/u-stpcpy.h: Likewise.
24734         * lib/unistr/u-stpncpy.h: Likewise.
24735         * lib/unistr/u-strcat.h: Likewise.
24736         * lib/unistr/u-strcpy.h: Likewise.
24737         * lib/unistr/u-strcspn.h: Likewise.
24738         * lib/unistr/u-strdup.h: Likewise.
24739         * lib/unistr/u-strlen.h: Likewise.
24740         * lib/unistr/u-strncat.h: Likewise.
24741         * lib/unistr/u-strncpy.h: Likewise.
24742         * lib/unistr/u-strnlen.h: Likewise.
24743         * lib/unistr/u-strpbrk.h: Likewise.
24744         * lib/unistr/u-strspn.h: Likewise.
24745         * lib/unistr/u-strstr.h: Likewise.
24746         * lib/unistr/u-strtok.h: Likewise.
24747         * lib/unistr/u16-check.c: Likewise.
24748         * lib/unistr/u16-chr.c: Likewise.
24749         * lib/unistr/u16-cmp.c: Likewise.
24750         * lib/unistr/u16-cpy-alloc.c: Likewise.
24751         * lib/unistr/u16-cpy.c: Likewise.
24752         * lib/unistr/u16-endswith.c: Likewise.
24753         * lib/unistr/u16-mblen.c: Likewise.
24754         * lib/unistr/u16-mbsnlen.c: Likewise.
24755         * lib/unistr/u16-mbtouc-aux.c: Likewise.
24756         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
24757         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
24758         * lib/unistr/u16-mbtouc.c: Likewise.
24759         * lib/unistr/u16-mbtoucr.c: Likewise.
24760         * lib/unistr/u16-move.c: Likewise.
24761         * lib/unistr/u16-next.c: Likewise.
24762         * lib/unistr/u16-prev.c: Likewise.
24763         * lib/unistr/u16-set.c: Likewise.
24764         * lib/unistr/u16-startswith.c: Likewise.
24765         * lib/unistr/u16-stpcpy.c: Likewise.
24766         * lib/unistr/u16-stpncpy.c: Likewise.
24767         * lib/unistr/u16-strcat.c: Likewise.
24768         * lib/unistr/u16-strchr.c: Likewise.
24769         * lib/unistr/u16-strcmp.c: Likewise.
24770         * lib/unistr/u16-strcpy.c: Likewise.
24771         * lib/unistr/u16-strcspn.c: Likewise.
24772         * lib/unistr/u16-strdup.c: Likewise.
24773         * lib/unistr/u16-strlen.c: Likewise.
24774         * lib/unistr/u16-strmblen.c: Likewise.
24775         * lib/unistr/u16-strmbtouc.c: Likewise.
24776         * lib/unistr/u16-strncat.c: Likewise.
24777         * lib/unistr/u16-strncmp.c: Likewise.
24778         * lib/unistr/u16-strncpy.c: Likewise.
24779         * lib/unistr/u16-strnlen.c: Likewise.
24780         * lib/unistr/u16-strpbrk.c: Likewise.
24781         * lib/unistr/u16-strrchr.c: Likewise.
24782         * lib/unistr/u16-strspn.c: Likewise.
24783         * lib/unistr/u16-strstr.c: Likewise.
24784         * lib/unistr/u16-strtok.c: Likewise.
24785         * lib/unistr/u16-to-u32.c: Likewise.
24786         * lib/unistr/u16-to-u8.c: Likewise.
24787         * lib/unistr/u16-uctomb-aux.c: Likewise.
24788         * lib/unistr/u16-uctomb.c: Likewise.
24789         * lib/unistr/u32-check.c: Likewise.
24790         * lib/unistr/u32-chr.c: Likewise.
24791         * lib/unistr/u32-cmp.c: Likewise.
24792         * lib/unistr/u32-cpy-alloc.c: Likewise.
24793         * lib/unistr/u32-cpy.c: Likewise.
24794         * lib/unistr/u32-endswith.c: Likewise.
24795         * lib/unistr/u32-mblen.c: Likewise.
24796         * lib/unistr/u32-mbsnlen.c: Likewise.
24797         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
24798         * lib/unistr/u32-mbtouc.c: Likewise.
24799         * lib/unistr/u32-mbtoucr.c: Likewise.
24800         * lib/unistr/u32-move.c: Likewise.
24801         * lib/unistr/u32-next.c: Likewise.
24802         * lib/unistr/u32-prev.c: Likewise.
24803         * lib/unistr/u32-set.c: Likewise.
24804         * lib/unistr/u32-startswith.c: Likewise.
24805         * lib/unistr/u32-stpcpy.c: Likewise.
24806         * lib/unistr/u32-stpncpy.c: Likewise.
24807         * lib/unistr/u32-strcat.c: Likewise.
24808         * lib/unistr/u32-strchr.c: Likewise.
24809         * lib/unistr/u32-strcmp.c: Likewise.
24810         * lib/unistr/u32-strcpy.c: Likewise.
24811         * lib/unistr/u32-strcspn.c: Likewise.
24812         * lib/unistr/u32-strdup.c: Likewise.
24813         * lib/unistr/u32-strlen.c: Likewise.
24814         * lib/unistr/u32-strmblen.c: Likewise.
24815         * lib/unistr/u32-strmbtouc.c: Likewise.
24816         * lib/unistr/u32-strncat.c: Likewise.
24817         * lib/unistr/u32-strncmp.c: Likewise.
24818         * lib/unistr/u32-strncpy.c: Likewise.
24819         * lib/unistr/u32-strnlen.c: Likewise.
24820         * lib/unistr/u32-strpbrk.c: Likewise.
24821         * lib/unistr/u32-strrchr.c: Likewise.
24822         * lib/unistr/u32-strspn.c: Likewise.
24823         * lib/unistr/u32-strstr.c: Likewise.
24824         * lib/unistr/u32-strtok.c: Likewise.
24825         * lib/unistr/u32-to-u16.c: Likewise.
24826         * lib/unistr/u32-to-u8.c: Likewise.
24827         * lib/unistr/u32-uctomb.c: Likewise.
24828         * lib/unistr/u8-check.c: Likewise.
24829         * lib/unistr/u8-chr.c: Likewise.
24830         * lib/unistr/u8-cmp.c: Likewise.
24831         * lib/unistr/u8-cpy-alloc.c: Likewise.
24832         * lib/unistr/u8-cpy.c: Likewise.
24833         * lib/unistr/u8-endswith.c: Likewise.
24834         * lib/unistr/u8-mblen.c: Likewise.
24835         * lib/unistr/u8-mbsnlen.c: Likewise.
24836         * lib/unistr/u8-mbtouc-aux.c: Likewise.
24837         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
24838         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
24839         * lib/unistr/u8-mbtouc.c: Likewise.
24840         * lib/unistr/u8-mbtoucr.c: Likewise.
24841         * lib/unistr/u8-move.c: Likewise.
24842         * lib/unistr/u8-next.c: Likewise.
24843         * lib/unistr/u8-prev.c: Likewise.
24844         * lib/unistr/u8-set.c: Likewise.
24845         * lib/unistr/u8-startswith.c: Likewise.
24846         * lib/unistr/u8-stpcpy.c: Likewise.
24847         * lib/unistr/u8-stpncpy.c: Likewise.
24848         * lib/unistr/u8-strcat.c: Likewise.
24849         * lib/unistr/u8-strchr.c: Likewise.
24850         * lib/unistr/u8-strcmp.c: Likewise.
24851         * lib/unistr/u8-strcpy.c: Likewise.
24852         * lib/unistr/u8-strcspn.c: Likewise.
24853         * lib/unistr/u8-strdup.c: Likewise.
24854         * lib/unistr/u8-strlen.c: Likewise.
24855         * lib/unistr/u8-strmblen.c: Likewise.
24856         * lib/unistr/u8-strmbtouc.c: Likewise.
24857         * lib/unistr/u8-strncat.c: Likewise.
24858         * lib/unistr/u8-strncmp.c: Likewise.
24859         * lib/unistr/u8-strncpy.c: Likewise.
24860         * lib/unistr/u8-strnlen.c: Likewise.
24861         * lib/unistr/u8-strpbrk.c: Likewise.
24862         * lib/unistr/u8-strrchr.c: Likewise.
24863         * lib/unistr/u8-strspn.c: Likewise.
24864         * lib/unistr/u8-strstr.c: Likewise.
24865         * lib/unistr/u8-strtok.c: Likewise.
24866         * lib/unistr/u8-to-u16.c: Likewise.
24867         * lib/unistr/u8-to-u32.c: Likewise.
24868         * lib/unistr/u8-uctomb-aux.c: Likewise.
24869         * lib/unistr/u8-uctomb.c: Likewise.
24870         * lib/unitypes.h: Likewise.
24871         * lib/uniwidth.h: Likewise.
24872         * lib/uniwidth/cjk.h: Likewise.
24873         * lib/uniwidth/u16-strwidth.c: Likewise.
24874         * lib/uniwidth/u16-width.c: Likewise.
24875         * lib/uniwidth/u32-strwidth.c: Likewise.
24876         * lib/uniwidth/u32-width.c: Likewise.
24877         * lib/uniwidth/u8-strwidth.c: Likewise.
24878         * lib/uniwidth/u8-width.c: Likewise.
24879         * lib/uniwidth/width.c: Likewise.
24880
24881 2007-10-07  Bruno Haible  <bruno@clisp.org>
24882
24883         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
24884         The file is still under LGPL (see modules/inttypes).
24885
24886 2007-10-06  Bruno Haible  <bruno@clisp.org>
24887
24888         * modules/trunc (Dependencies): Add 'extensions'.
24889         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
24890         Reported by Ben Pfaff <blp@gnu.org>.
24891
24892 2007-10-06  Bruno Haible  <bruno@clisp.org>
24893
24894         * modules/freopen-tests: New file.
24895         * tests/test-freopen.c: New file.
24896
24897         * modules/fopen-tests: New file.
24898         * tests/test-fopen.c: New file.
24899
24900         * modules/fopen: New file.
24901         * lib/fopen.c: New file.
24902         * m4/fopen.m4: New file.
24903         * modules/freopen: New file.
24904         * lib/freopen.c: New file.
24905         * m4/freopen.m4: New file.
24906         * lib/stdio.in.h (fopen, freopen): New declarations.
24907         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
24908         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
24909         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
24910         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
24911         * doc/functions/fopen.texi: Mention the 'fopen' module.
24912         * doc/functions/freopen.texi: Mention the 'freopen' module.
24913
24914 2007-10-06  Bruno Haible  <bruno@clisp.org>
24915
24916         * modules/open-tests: New file.
24917         * tests/test-open.c: New file.
24918
24919         * modules/open: New file.
24920         * lib/open.c: New file.
24921         * m4/open.m4: New file.
24922         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
24923         lib/open.c does.
24924         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
24925         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
24926         macros.
24927         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
24928         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
24929         REPLACE_OPEN.
24930         * doc/functions/open.texi: Mention the 'open' module.
24931
24932 2007-10-04  Bruno Haible  <bruno@clisp.org>
24933
24934         * modules/ceill-tests: New file.
24935         * tests/test-ceill.c: New file.
24936
24937         * modules/ceill: New file.
24938         * lib/ceill.c: Replace entire file.
24939         * m4/ceill.m4: New file.
24940         * lib/math.in.h (ceill): Replace declaration.
24941         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
24942         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
24943         * doc/functions/ceill.texi: Mention the 'ceill' module.
24944         * modules/mathl (Files): Remove lib/ceill.c.
24945         (Depends-on): Add ceill.
24946
24947 2007-10-04  Bruno Haible  <bruno@clisp.org>
24948
24949         * modules/ceilf-tests: New file.
24950         * tests/test-ceilf.c: New file.
24951
24952         * modules/ceilf: New file.
24953         * lib/ceil.c: New file.
24954         * lib/ceilf.c: New file.
24955         * m4/ceilf.m4: New file.
24956         * lib/math.in.h (ceilf): New declaration.
24957         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
24958         HAVE_DECL_CEILF.
24959         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
24960         HAVE_DECL_CEILF.
24961         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
24962
24963 2007-10-04  Bruno Haible  <bruno@clisp.org>
24964
24965         * modules/floorl-tests: New file.
24966         * tests/test-floorl.c: New file.
24967
24968         * modules/floorl: New file.
24969         * lib/floorl.c: Replace entire file.
24970         * m4/floorl.m4: New file.
24971         * lib/math.in.h (floorl): Replace declaration.
24972         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
24973         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
24974         * doc/functions/floorl.texi: Mention the 'floorl' module.
24975         * modules/mathl (Files): Remove lib/floorl.c.
24976         (Depends-on): Add floorl.
24977
24978 2007-10-04  Bruno Haible  <bruno@clisp.org>
24979
24980         * modules/floorf-tests: New file.
24981         * tests/test-floorf.c: New file.
24982
24983         * modules/floorf: New file.
24984         * lib/floor.c: New file.
24985         * lib/floorf.c: New file.
24986         * m4/floorf.m4: New file.
24987         * lib/math.in.h (floorf): New declaration.
24988         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
24989         HAVE_DECL_FLOORF.
24990         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
24991         HAVE_DECL_FLOORF.
24992         * doc/functions/floorf.texi: Mention the 'floorf' module.
24993
24994 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
24995             Bruno Haible  <bruno@clisp.org>
24996
24997         Advertise for the Git server instead of the CVS server.
24998         * doc/gnulib-intro.texi (Steady Development): Mention the Git
24999         repository instead of the CVS one.
25000         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
25001         about all VCS systems generically.
25002         * doc/gnulib.texi (Introduction): Capitalize `Git'.
25003
25004 2007-10-04  Bruno Haible  <bruno@clisp.org>
25005
25006         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
25007         means.
25008         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
25009
25010 2007-10-04  Bruno Haible  <bruno@clisp.org>
25011
25012         * modules/truncl-tests: New file.
25013         * tests/test-truncl.c: New file.
25014
25015         * modules/truncl: New file.
25016         * lib/truncl.c: New file.
25017         * m4/truncl.m4: New file.
25018         * lib/math.in.h (truncl): New declaration.
25019         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
25020         HAVE_DECL_TRUNCL.
25021         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
25022         HAVE_DECL_TRUNCL.
25023         * doc/functions/truncl.texi: Mention the 'truncl' module.
25024
25025 2007-10-04  Bruno Haible  <bruno@clisp.org>
25026
25027         * modules/truncf-tests: New file.
25028         * tests/test-truncf.c: New file.
25029
25030         * modules/truncf: New file.
25031         * lib/trunc.c: Make paramerizable through USE_* macros.
25032         * lib/truncf.c: New file.
25033         * m4/truncf.m4: New file.
25034         * lib/math.in.h (truncf): New declaration.
25035         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
25036         HAVE_DECL_TRUNCF.
25037         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
25038         HAVE_DECL_TRUNCF.
25039         * doc/functions/truncf.texi: Mention the 'truncf' module.
25040
25041 2007-10-03  Bruno Haible  <bruno@clisp.org>
25042
25043         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
25044         augmentation also for tests modules.
25045         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
25046         * modules/atexit-tests (Makefile.am): Likewise.
25047         * modules/binary-io-tests (Makefile.am): Likewise.
25048         * modules/c-strcase-tests (Makefile.am): Likewise.
25049         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
25050         * modules/canonicalize-tests (Makefile.am): Likewise.
25051         * modules/closein-tests (Makefile.am): Likewise.
25052         * modules/fprintf-posix-tests (Makefile.am): Likewise.
25053         * modules/freadahead-tests (Makefile.am): Likewise.
25054         * modules/fseek-tests (Makefile.am): Likewise.
25055         * modules/fseeko-tests (Makefile.am): Likewise.
25056         * modules/ftell-tests (Makefile.am): Likewise.
25057         * modules/ftello-tests (Makefile.am): Likewise.
25058         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
25059         * modules/isnanl-tests (Makefile.am): Likewise.
25060         * modules/lseek-tests (Makefile.am): Likewise.
25061         * modules/mbscasecmp-tests (Makefile.am): Likewise.
25062         * modules/mbscasestr-tests (Makefile.am): Likewise.
25063         * modules/mbschr-tests (Makefile.am): Likewise.
25064         * modules/mbscspn-tests (Makefile.am): Likewise.
25065         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
25066         * modules/mbspbrk-tests (Makefile.am): Likewise.
25067         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
25068         * modules/mbsrchr-tests (Makefile.am): Likewise.
25069         * modules/mbsspn-tests (Makefile.am): Likewise.
25070         * modules/mbsstr-tests (Makefile.am): Likewise.
25071         * modules/printf-posix-tests (Makefile.am): Likewise.
25072         * modules/snprintf-posix-tests (Makefile.am): Likewise.
25073         * modules/sprintf-posix-tests (Makefile.am): Likewise.
25074         * modules/tsearch-tests (Makefile.am): Likewise.
25075         * modules/uniname/uniname-tests (Makefile.am): Likewise.
25076         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
25077         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
25078         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
25079         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
25080         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
25081         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
25082         * modules/vprintf-posix-tests (Makefile.am): Likewise.
25083         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
25084         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
25085         * modules/xstrtoimax-tests (Makefile.am): Likewise.
25086         * modules/xstrtol-tests (Makefile.am): Likewise.
25087         * modules/xstrtoumax-tests (Makefile.am): Likewise.
25088         * modules/yesno-tests (Makefile.am): Likewise.
25089
25090 2007-10-03  Bruno Haible  <bruno@clisp.org>
25091
25092         * modules/trunc-tests: New file.
25093         * tests/test-trunc.c: New file.
25094
25095         * modules/trunc: New file.
25096         * lib/trunc.c: New file.
25097         * m4/trunc.m4: New file.
25098         * lib/math.in.h (trunc): New declaration.
25099         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
25100         HAVE_DECL_TRUNC.
25101         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
25102         HAVE_DECL_TRUNC.
25103         * doc/functions/trunc.texi: Mention the 'trunc' module.
25104
25105 2007-10-03  Bruno Haible  <bruno@clisp.org>
25106
25107         * tests/test-fpending.c: New file, mostly copied
25108         from coreutils/lib/t-fpending.c.
25109         * modules/fpending-tests: New file.
25110
25111 2007-10-03  Bruno Haible  <bruno@clisp.org>
25112
25113         Port the stdio extensions to QNX (untested).
25114         * lib/fseterr.c (fseterr): Add support for QNX.
25115         * lib/fbufmode.c (fbufmode): Likewise.
25116         * lib/freadable.c (freadable): Likewise.
25117         * lib/fwritable.c (fwritable): Likewise.
25118         * lib/freading.c (freading): Likewise.
25119         * lib/fwriting.c (fwriting): Likewise.
25120         * lib/freadahead.c (freadahed): Likewise.
25121         * lib/fpurge.c (fpurge): Likewise.
25122         * lib/fseeko.c (rpl_fseeko): Likewise.
25123
25124 2007-10-03  Bruno Haible  <bruno@clisp.org>
25125             Jim Meyering  <jim@meyering.net>
25126             Eric Blake  <ebb9@byu.net>
25127
25128         * doc/relocatable.texi: Use @command instead of @program.
25129
25130 2007-10-02  Jim Meyering  <jim@meyering.net>
25131
25132         Perform one more "_.h" -> ".in.h" substitution.
25133         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
25134         instead of unistd_.h here, too.
25135
25136 2007-10-01  Bruno Haible  <bruno@clisp.org>
25137
25138         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
25139         Needed for the alloca-opt module.
25140
25141 2007-09-30  Bruno Haible  <bruno@clisp.org>
25142
25143         * lib/alloca.in.h: Renamed from lib/alloca_.h.
25144         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
25145         alloca_.h.
25146         * lib/argz.in.h: Renamed from lib/argz_.h.
25147         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
25148         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
25149         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
25150         byteswap_.h.
25151         * lib/dirent.in.h: Renamed from lib/dirent_.h.
25152         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
25153         dirent_.h.
25154         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
25155         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
25156         fcntl_.h.
25157         * lib/float.in.h: Renamed from lib/float_.h.
25158         * modules/float (Files, Makefile.am): Use float.in.h instead of
25159         float_.h.
25160         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
25161         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
25162         fnmatch_.h.
25163         * lib/getopt.in.h: Renamed from lib/getopt_.h.
25164         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
25165         getopt_.h.
25166         * lib/glob.in.h: Renamed from lib/glob_.h.
25167         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
25168         * lib/iconv.in.h: Renamed from lib/iconv_.h.
25169         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
25170         iconv_.h.
25171         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
25172         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
25173         inttypes_.h.
25174         * lib/locale.in.h: Renamed from lib/locale_.h.
25175         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
25176         locale_.h.
25177         * lib/math.in.h: Renamed from lib/math_.h.
25178         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
25179         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
25180         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
25181         of netinet_in_.h. Add dependency.
25182         * lib/poll.in.h: Renamed from lib/poll_.h.
25183         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
25184         * lib/search.in.h: Renamed from lib/search_.h.
25185         * modules/search (Files, Makefile.am): Use search.in.h instead of
25186         search_.h.
25187         * lib/signal.in.h: Renamed from lib/signal_.h.
25188         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
25189         _signal.h.
25190         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
25191         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
25192         stdbool_.h.
25193         * lib/stdint.in.h: Renamed from lib/stdint_.h.
25194         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
25195         stdint_.h.
25196         * lib/stdio.in.h: Renamed from lib/stdio_.h.
25197         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
25198         stdio_.h.
25199         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
25200         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
25201         stdlib_.h.
25202         * lib/string.in.h: Renamed from lib/string_.h.
25203         * modules/string (Files, Makefile.am): Use string.in.h instead of
25204         string_.h.
25205         * doc/gnulib-tool.texi (Initial import): Update.
25206         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
25207         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
25208         of sys_select_.h. Add dependency.
25209         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
25210         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
25211         of sys_socket_.h.
25212         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
25213         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
25214         sys_stat_.h.
25215         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
25216         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
25217         sys_time_.h.
25218         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
25219         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
25220         sysexits_.h.
25221         * lib/time.in.h: Renamed from lib/time_.h.
25222         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
25223         * lib/unistd.in.h: Renamed from lib/unistd_.h.
25224         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
25225         unistd_.h.
25226         * lib/wchar.in.h: Renamed from lib/wchar_.h.
25227         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
25228         wchar_.h.
25229         * lib/wctype.in.h: Renamed from lib/wctype_.h.
25230         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
25231         wctype_.h.
25232         * build-aux/bootstrap (slurp): Update.
25233         * lib/.cppi-disable: Update.
25234
25235 2007-09-30  Bruno Haible  <bruno@clisp.org>
25236
25237         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
25238         Needed on BeOS.
25239
25240 2007-09-30  Bruno Haible  <bruno@clisp.org>
25241
25242         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
25243
25244 2007-09-29  Bruno Haible  <bruno@clisp.org>
25245
25246         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
25247
25248 2007-09-29  Bruno Haible  <bruno@clisp.org>
25249
25250         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
25251         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
25252         * build-aux/install-reloc: Compile also areadlink.c.
25253         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
25254
25255 2007-09-29  Bruno Haible  <bruno@clisp.org>
25256
25257         * gnulib-tool (func_emit_initmacro_done): Indentation.
25258
25259 2007-09-29  Bruno Haible  <bruno@clisp.org>
25260
25261         * README: Add CVS checkout update instructions.
25262         Info from Bob Proulx <bob@proulx.com>.
25263
25264 2007-09-28  Eric Blake  <ebb9@byu.net>
25265
25266         Provide move-if-change.
25267         * build-aux/move-if-change: New file, based on best practice
25268         rather than any canonical upstream location.
25269
25270 2007-09-28  Jim Meyering  <jim@meyering.net>
25271
25272         Fix canonicalize loop-detection corner case.
25273         Do not attempt to stat the symlink values stored via seen_triple.
25274         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
25275         on linux-2.6.18, (but not 2.6.22).
25276         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
25277         triple_compare.  The former compares dev,ino,filename, while the latter
25278         would actually stat dirname(filename) when dev and ino were equal.
25279         * lib/hash-triple.c: Install <string.h>.
25280         (STREQ): Define.
25281         (triple_compare_ino_str): New function.
25282         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
25283
25284 2007-09-28  Eric Blake  <ebb9@byu.net>
25285
25286         Enforce that AC_REPLACE_FUNCS files exist.
25287         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
25288         override check for typos.
25289
25290         Fix test-closein on Solaris 10.
25291         * tests/test-closein.c (main): Don't assume stdin can be inherited
25292         closed on all systems.
25293         * tests/test-closein.sh: Likewise.
25294         Reported by Piotr Tarnowski.
25295
25296 2007-09-28  Jim Meyering  <jim@meyering.net>
25297
25298         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
25299
25300 2007-09-27  Jim Meyering  <jim@meyering.net>
25301
25302         canonicalize: Avoid a false-positive cycle failure.
25303         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
25304         Sort.  Remove cycle-check.
25305         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
25306         not cycle-check.h.
25307         (seen_triple): New function.
25308         (canonicalize_filename_mode): Use it instead of cycle-check.
25309         * tests/test-canonicalize.c: Add a test for this bug.
25310         * tests/test-canonicalize.sh: Set up and run the test.
25311
25312         New module, file-set, from coreutils.
25313         * modules/file-set: Define it.
25314         * lib/file-set.c, lib/file-set.h: Implement.
25315
25316         New module, hash-triple, from coreutils.
25317         * modules/hash-triple: Define it.
25318         * lib/hash-triple.c, lib/hash-triple.h: Implement.
25319
25320 2007-09-25  Eric Blake  <ebb9@byu.net>
25321
25322         Fix strerror on Interix.
25323         * lib/string_.h (strerror): Declare replacement.
25324         * doc/functions/strerror.texi (strerror): Document the Interix
25325         shortcoming.
25326         * modules/string (Makefile.am): Support new hooks.
25327         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
25328         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
25329         gl_FUNC_STRERROR_SEPARATE.
25330         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
25331         * lib/strerror.c (rpl_strerror): Provide replacement.
25332         * modules/strerror (Depends-on): Add string.
25333         (configure.ac): Detect use of module.
25334         * tests/test-strerror.c: New file.
25335         * modules/strerror-tests: New test module.
25336         * modules/argp (Depends-on): Add strerror.
25337         * modules/error (Depends-on): Likewise.
25338         Reported by Martin Koeppe.
25339
25340 2007-09-24  Bruno Haible  <bruno@clisp.org>
25341
25342         * README: Update git instructions.
25343
25344 2007-09-24  Eric Blake  <ebb9@byu.net>
25345
25346         Revert fpending breakage from 2007-09-08.
25347         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
25348         __fpending.c.
25349
25350 2007-09-24  Jim Meyering  <jim@meyering.net>
25351
25352         filenamecat.c: Add a test.
25353         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
25354         showing how the function works when DIR is the empty string.
25355
25356 2007-09-21  Simon Josefsson  <simon@josefsson.org>
25357
25358         * tests/test-canonicalize.sh: Turn on executable bit.
25359
25360 2007-09-19  Eric Blake  <ebb9@byu.net>
25361
25362         * README: Update CVS instructions.
25363
25364 2007-09-18  Bruno Haible  <bruno@clisp.org>
25365
25366         * modules/areadlink: New file.
25367         * lib/areadlink.h (areadlink): New declaration.
25368         * lib/areadlink.c: New file, based on lib/xreadlink.c.
25369
25370 2007-09-17  Jim Meyering  <jim@meyering.net>
25371
25372         * lib/savewd.c (ESTALE) [!defined]: Define.
25373         Reported to be required on Interix by Martin Koeppe.
25374
25375 2007-09-17  Bruno Haible  <bruno@clisp.org>
25376
25377         * gnulib-tool (func_version): Use $version.
25378
25379 2007-09-16  Bruno Haible  <bruno@clisp.org>
25380
25381         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
25382         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
25383         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
25384         Reported by Greg Schafer <gschafer@zip.com.au>.
25385
25386 2007-09-15  Bruno Haible  <bruno@clisp.org>
25387
25388         * gnulib-tool (sed): Try a little harder to make bash understand the
25389         alias.
25390         Reported by Bruce Korb <bruce.korb@gmail.com>.
25391
25392 2007-09-13  Eric Blake  <ebb9@byu.net>
25393
25394         * ChangeLog: Remove conflict markers.
25395
25396 2007-09-13  Simon Josefsson  <simon@josefsson.org>
25397
25398         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
25399         Reported by Bruno Haible <bruno@clisp.org>.
25400
25401 2007-09-12  Bruno Haible  <bruno@clisp.org>
25402
25403         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
25404         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
25405         is not defined.
25406
25407 2007-09-12  Eric Blake  <ebb9@byu.net>
25408
25409         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
25410         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
25411         Autoconf definition.
25412         * modules/euidaccess (Depends-on): Add extensions, for
25413         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
25414         * modules/fnmatch (Depends-on): Likewise.
25415         * modules/getaddrinfo (Depends-on): Likewise.
25416         * modules/getdelim (Depends-on): Likewise.
25417         * modules/getline (Depends-on): Likewise.
25418         * modules/getsubopt (Depends-on): Likewise.
25419         * modules/gettext (Depends-on): Likewise.
25420         * modules/group-member (Depends-on): Likewise.
25421         * modules/mbchar (Depends-on): Likewise.
25422         * modules/memmem (Depends-on): Likewise.
25423         * modules/mempcpy (Depends-on): Likewise.
25424         * modules/memrchr (Depends-on): Likewise.
25425         * modules/pagealign_alloc (Depends-on): Likewise.
25426         * modules/readutmp (Depends-on): Likewise.
25427         * modules/stpcpy (Depends-on): Likewise.
25428         * modules/stpncpy (Depends-on): Likewise.
25429         * modules/strchrnul (Depends-on): Likewise.
25430         * modules/strndup (Depends-on): Likewise.
25431         * modules/strsep (Depends-on): Likewise.
25432         * modules/strverscmp (Depends-on): Likewise.
25433         * modules/vasprintf (Depends-on): Likewise.
25434         * modules/wcwidth (Depends-on): Likewise.
25435         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
25436         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
25437         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
25438         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
25439         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
25440         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
25441         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
25442         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
25443         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
25444         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
25445         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
25446         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
25447         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
25448         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
25449         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
25450         * m4/readutmp.m4 (gl_READUTMP): Likewise.
25451         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
25452         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
25453         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
25454         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
25455         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
25456         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
25457         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
25458         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
25459         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
25460         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
25461         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
25462         so that lock.m4 can be used in gettext without extensions module.
25463
25464 2007-09-11  Bruno Haible  <bruno@clisp.org>
25465
25466         * m4/isc-posix.m4: Remove file.
25467         Suggested by Eric Blake.
25468
25469 2007-09-11  Eric Blake  <ebb9@byu.net>
25470
25471         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
25472
25473 2007-09-10  Bruno Haible  <bruno@clisp.org>
25474
25475         * posix-modules: Fix typo in error message.
25476         Reported by Matt <mkraai@beckman.com>.
25477
25478 2007-09-09  Bruno Haible  <bruno@clisp.org>
25479
25480         * doc/functions/getdelim.texi: Update list of platforms lacking the
25481         function.
25482         * doc/functions/getline.texi: Likewise.
25483
25484 2007-09-09  Jim Meyering  <jim@meyering.net>
25485
25486         * lib/hash.c (hash_initialize): Detect calloc failure.
25487         Reported by Bruno Haible.
25488
25489 2007-09-09  Bruno Haible  <bruno@clisp.org>
25490
25491         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
25492         malloc or realloc fails.
25493
25494 2007-09-09  Bruno Haible  <bruno@clisp.org>
25495
25496         * modules/getcwd (Depends-on): Add malloc-posix.
25497         * modules/glob (Depends-on): Likewise.
25498         * modules/putenv (Depends-on): Likewise.
25499         * modules/strdup (Depends-on): Likewise.
25500         * modules/getdelim (Depends-on): Add realloc-posix.
25501         * modules/read-file (Depends-on): Likewise.
25502
25503 2007-09-09  Bruno Haible  <bruno@clisp.org>
25504
25505         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
25506         (gl_FUNC_MALLOC_POSIX): Require it.
25507         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
25508         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
25509         * modules/realloc (Files): Add m4/malloc.m4.
25510         * modules/calloc (Files): Likewise.
25511
25512 2007-09-09  Bruno Haible  <bruno@clisp.org>
25513
25514         * modules/malloc-posix: New file.
25515         * modules/malloc (Depends-on): Add malloc-posix.
25516         * lib/malloc.c: Include errno.h.
25517         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
25518         and a POSIX-compatible malloc into a single function. Set ENOMEM
25519         when returning NULL.
25520         * m4/malloc.m4: New file.
25521         * doc/functions/malloc.texi: Mention the malloc-posix module.
25522         * lib/stdlib_.h (malloc): New declaration.
25523         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25524         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
25525         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
25526         and HAVE_MALLOC_POSIX.
25527
25528 2007-09-09  Bruno Haible  <bruno@clisp.org>
25529
25530         * modules/realloc-posix: New file.
25531         * modules/realloc (Depends-on): Add realloc-posix.
25532         * lib/realloc.c: Include errno.h.
25533         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
25534         and a POSIX-compatible realloc into a single function. Set ENOMEM
25535         when returning NULL.
25536         * m4/realloc.m4: New file.
25537         * doc/functions/realloc.texi: Mention the realloc-posix module.
25538         * lib/stdlib_.h (realloc): New declaration.
25539         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25540         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
25541         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
25542         and HAVE_REALLOC_POSIX.
25543
25544 2007-09-09  Bruno Haible  <bruno@clisp.org>
25545
25546         * modules/calloc-posix: New file.
25547         * modules/calloc (Depends-on): Add calloc-posix.
25548         * lib/calloc.c: Include errno.h.
25549         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
25550         and a POSIX-compatible calloc into a single function. Set ENOMEM
25551         when returning NULL.
25552         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
25553         * doc/functions/calloc.texi: Mention the calloc-posix module.
25554         * lib/stdlib_.h (calloc): New declaration.
25555         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25556         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
25557         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
25558         and HAVE_CALLOC_POSIX.
25559
25560 2007-09-09  Bruno Haible  <bruno@clisp.org>
25561
25562         Allow for modules to show an arbitrary notice.
25563         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
25564         * gnulib-tool: New option --extract-notice.
25565         (func_usage): Document it.
25566         (sed_extract_prog): Update.
25567         (func_get_notice): New function.
25568         (func_modules_notice): New function.
25569         (func_import, func_create_testdir): Invoke it.
25570         Suggested by Jim Meyering.
25571
25572 2007-09-09  Bruno Haible  <bruno@clisp.org>
25573
25574         * gnulib-tool: New options --verbose, --quiet.
25575         (func_usage): Document them.
25576         (verbose): New variable.
25577         (func_execute_command): New function.
25578         (func_import): Don't show the module list and the file list if
25579         $verbose < 0.
25580         (func_create_testdir): Likewise. Use func_execute_command.
25581         (func_create_megatestdir): Use func_execute_command.
25582
25583 2007-09-08  Bruno Haible  <bruno@clisp.org>
25584
25585         * gnulib-tool (func_import): Prefer rsync over wget when available,
25586         for fetching the PO files.
25587
25588 2007-09-08  Bruno Haible  <bruno@clisp.org>
25589
25590         * posix-modules: New file. Portions copied from gnulib-tool.
25591         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
25592
25593 2007-09-08  Jim Meyering  <jim@meyering.net>
25594
25595         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
25596         * lib/fpending.h: Rename from __fpending.h.
25597         * lib/fpending.c: Rename from __fpending.c.
25598         Include "fpending.h", not "__fpending.h".
25599         * lib/__fpending.h, lib/__fpending.c: Remove files.
25600         * modules/fpending (Files): Reflect new file names.
25601         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
25602
25603 2007-09-08  Bruno Haible  <bruno@clisp.org>
25604
25605         * m4/inttypes-h.m4: Remove stub file.
25606
25607 2007-09-07  Simon Josefsson  <simon@josefsson.org>
25608
25609         * doc/headers/stdint.texi: Discuss #include_next issue.
25610
25611 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
25612
25613         * build-aux/bootstrap: Remove obsolete comment about wget --help.
25614
25615 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25616
25617         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
25618         in variable name.
25619
25620 2007-09-03  Jim Meyering  <jim@meyering.net>
25621
25622         New module: git-version-gen.
25623         * modules/git-version-gen: New file.
25624
25625         Import changes from coreutils for bootstrap script.
25626
25627         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
25628
25629         bootstrap: uses rsync to download the .po files
25630         * build-aux/bootstrap (po_download_command_format): New global.
25631         (download_po_files): Use rsync.
25632         (update_po_files): Don't remove .po files after download,
25633         so future rsync runs can take advantage of the copies.
25634
25635         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
25636
25637         Solve the unnecessary-.po-file-regeneration problem once and for all.
25638         * build-aux/bootstrap (download_po_files): New function, renamed from
25639         get_translations.  Now, downloads, but doesn't update LINGUAS.
25640         (update_po_files): New function.
25641
25642         bootstrap: Ignore more.
25643         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
25644         uniwidth to e.g., lib/.gitignore.
25645         (slurp): Handle the sys_stat_.h -> sys mapping, too.
25646
25647         * build-aux/bootstrap: New setting: vc_ignore.
25648         (insert_sorted_if_absent): Create $file if absent.
25649         Adapt to new, possibly empty, list: $vc_ignore.
25650
25651         bootstrap: generate more ignorable names
25652         * build-aux/bootstrap (slurp): When generating ignorable names,
25653         also map .sin to .sed, .gperf to .c, and .y to .c.
25654
25655 2007-09-03  Jim Meyering  <jim@meyering.net>
25656
25657         * build-aux/git-version-gen: New file, from coreutils.  For details, see
25658         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
25659
25660 2007-09-02  Bruno Haible  <bruno@clisp.org>
25661
25662         Fix mis-recognition of 'mcs' on QNX 6.
25663         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
25664         output contains the string "Mono".
25665         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
25666         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
25667
25668 2007-09-01  Bruno Haible  <bruno@clisp.org>
25669
25670         Fix collision between uniwidth/* and linebreak modules.
25671         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
25672         u32_width): Remove declarations.
25673         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
25674         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
25675         streq3, streq2, streq1, streq0): Remove functions.
25676         (STREQ): Remove macro.
25677         (is_cjk_encoding): Remove function.
25678         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
25679         (uc_width, u8_width, u16_width, u32_width): Remove functions.
25680         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
25681         * NEWS: Document the change.
25682
25683 2007-09-01  Bruno Haible  <bruno@clisp.org>
25684
25685         * lib/streq.h: Add double-inclusion guard.
25686
25687 2007-09-01  Karl Berry  <karl@gnu.org>
25688
25689         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
25690
25691 2007-08-28  Jim Meyering  <jim@meyering.net>
25692
25693         Rename mreadlink_with_size to areadlink_with_size.
25694         * NEWS: Document the change.
25695         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
25696         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
25697         * lib/mreadlink.h: Rename this to...
25698         * lib/areadlink.h: ...this.
25699         * modules/mreadlink-with-size: Rename this to...
25700         * modules/areadlink-with-size: ...this.
25701         * lib/canonicalize.c: Reflect the renaming.
25702         * modules/canonicalize: Likewise.
25703
25704 2007-08-26  Bruno Haible  <bruno@clisp.org>
25705
25706         * gnulib-tool (func_import): When deciding which files to remove,
25707         consider also dangling symbolic links.
25708         Reported by Eric Blake.
25709
25710 2007-08-26  Bruno Haible  <bruno@clisp.org>
25711
25712         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
25713
25714 2007-08-23  Simon Josefsson  <simon@josefsson.org>
25715
25716         * lib/readline.c: Don't include getline.h, the prototype is now
25717         found in stdio.h.
25718
25719 2007-08-23  Jim Meyering  <jim@meyering.net>
25720
25721         Getdelim touchup.
25722         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
25723         around the funlockfile call, since funlockfile never sets errno.
25724         Don't set errno upon failed realloc.
25725
25726 2007-08-22  Eric Blake  <ebb9@byu.net>
25727
25728         Getline touchups.
25729         * lib/getdelim.c (getdelim): Revert regression that required *n to
25730         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
25731         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
25732         getdelim, rather than whether implementation is missing.
25733         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
25734         * lib/stdio_.h (getline): Also declare if replacement is
25735         required.
25736         * doc/functions/getdelim.texi: New file.
25737         * doc/functions/getline.texi: Likewise.
25738         * doc/gnulib.texi (Function Substitutes): Add new files.
25739         Reported by Bruno Haible.
25740
25741 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
25742
25743         * users.txt: Add Guile.
25744
25745 2007-08-22  Eric Blake  <ebb9@byu.net>
25746
25747         * tests/test-getdelim.c (main): Use remove, not unlink.
25748         * tests/test-getline.c (main): Likewise.
25749
25750         Move getline and getdelim into stdio.h, per POSIX 200x.
25751         * modules/getline (Files): Remove getline.h.
25752         (Depends-on): Add stdio.
25753         (configure.ac): Add module indicator.
25754         * modules/getdelim (Files): Remove getdelim.h.
25755         (Depends-on): Add stdio.
25756         (configure.ac): Add module indicator.
25757         * modules/stdio (Makefile.am): Work with new indicators.
25758         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
25759         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
25760         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
25761         * lib/getdelim.h: Delete.
25762         * lib/getline.h: Delete.
25763         * lib/stdio_.h (getdelim, getline): Declare.
25764         * modules/getdelim-tests: New module.
25765         * modules/getline-tests: Likewise.
25766         * tests/test-getdelim.c: New file.
25767         * tests/test-getline.c: Likewise.
25768         * NEWS: Document the change.
25769         * lib/getline.c: Update choice of header.
25770         * lib/csharpcomp.c: Likewise.
25771         * lib/getpass.c: Likewise.
25772         * lib/javacomp.c: Likewise.
25773         * lib/javaversion.c: Likewise.
25774         * lib/yesno.c: Likewise.
25775         * lib/getdelim.c: Likewise.
25776         (getdelim): Set errno on failure, and avoid memory leak.
25777
25778 2007-08-19  Bruno Haible  <bruno@clisp.org>
25779
25780         * modules/closein (Depends-on): Add freadahead.
25781         * lib/closein.c: Include freadahead.h.
25782         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
25783         is zero.
25784
25785 2007-08-19  Bruno Haible  <bruno@clisp.org>
25786
25787         * modules/freadahead-tests: New file.
25788         * tests/test-freadahead.sh: New file.
25789         * tests/test-freadahead.c: New file.
25790
25791         * modules/freadahead: New file.
25792         * lib/freadahead.h: New file.
25793         * lib/freadahead.c: New file.
25794         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
25795         fbufmode, fpurge, freadable, fwritable.
25796
25797 2007-08-19  Eric Blake  <ebb9@byu.net>
25798
25799         Test yesno in combination with closein.
25800         * lib/yesno.c (yesno): Document use of stdin.
25801         * modules/yesno-tests (Files): New module.
25802         * tests/test-yesno.c (main): New file.
25803         * tests/test-yesno.sh: Likewise.
25804
25805 2007-08-19  Bruno Haible  <bruno@clisp.org>
25806
25807         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
25808         * lib/fseeko.c (rpl_fseeko): Likewise.
25809         * lib/fseterr.c (fseterr): Likewise.
25810
25811 2007-08-19  Bruno Haible  <bruno@clisp.org>
25812
25813         * tests/test-lseek.c (main): Disable a test for BeOS.
25814         * doc/functions/lseek.texi: Document the BeOS bug.
25815
25816 2007-08-19  Bruno Haible  <bruno@clisp.org>
25817             Eric Blake  <ebb9@byu.net>
25818
25819         * lib/lseek.c: Include <sys/stat.h>.
25820         (rpl_lseek): Add workaround code also for Unix platforms.
25821         Needed for BeOS.
25822         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
25823         * doc/functions/lseek.texi: Document BeOS definiency.
25824
25825 2007-08-18  Bruno Haible  <bruno@clisp.org>
25826
25827         * modules/fstrcmp-tests: New file.
25828         * tests/test-fstrcmp.c: New file.
25829
25830 2007-08-18  Bruno Haible  <bruno@clisp.org>
25831
25832         * modules/fstrcmp: New file, from GNU gettext with modifications.
25833         * lib/fstrcmp.h: New file, from GNU gettext.
25834         * lib/fstrcmp.c: New file, from GNU gettext.
25835         * MODULES.html.sh (String handling): Add fstrcmp.
25836
25837 2007-08-18  Bruno Haible  <bruno@clisp.org>
25838
25839         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
25840         'bool'.
25841         (diag, compareseq): Remove const from the ctxt argument.
25842         (USE_HEURISTIC): Undefine at the end.
25843
25844 2007-08-18  Jim Meyering  <jim@meyering.net>
25845
25846         New file: lib/idcache.h
25847         * NEWS: Mention the addition.
25848         * modules/idcache (Files): Add lib/idcache.h
25849         * lib/idcache.c: Include "idcache.h".
25850         Don't include <sys/types.h>.
25851         Add a FIXME comment.
25852         Move file-scoped "static" declarations to the top.
25853         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
25854
25855 2007-08-17  Bruno Haible  <bruno@clisp.org>
25856         and Paul Eggert  <eggert@cs.ucla.edu>
25857
25858         * MODULES.html.sh: Add diffseq.
25859         * modules/diffseq: New file.
25860         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
25861         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
25862
25863 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
25864
25865         Import changes from coreutils for bootstrap script.
25866
25867         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
25868
25869         * build-aux/bootstrap (slurp): Work even in environments where
25870         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
25871         current code does not slurp files whose names start with ".", and
25872         this looks like it might be a troublesome area.
25873
25874         2007-07-11  Jim Meyering  <jim@meyering.net>
25875
25876         If there's a GPL vN copyright comment, require that N == 3.
25877
25878         2007-07-08  Jim Meyering  <jim@meyering.net>
25879
25880         Run the coreutils-specific code only if tests/Makefile.am.in exists.
25881         * build-aux/bootstrap (mam_template): Move definition out of loop.
25882
25883         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
25884
25885         * build-aux/bootstrap (symlink_to_dir): Rename function from
25886         symlink_to_gnulib.  Add a directory parameter.  Update all
25887         callers.
25888         (cp_mark_as_generated): Also check for -- and link to -- files in
25889         gl/.
25890
25891         2007-07-08  Jim Meyering  <jim@meyering.net>
25892
25893         Adapt to deeper hierarchy in gnulib.
25894         * build-aux/bootstrap (symlink_to_dir): If the destination
25895         directory doesn't exist, create it. This is required at least for
25896         "lib/uniwidth/cjk.h".
25897
25898         2007-05-15  Jim Meyering  <jim@meyering.net>
25899
25900         * build-aux/bootstrap: Now that generated Makefile.am files
25901         are no longer under version control, they must be created at
25902         bootstrap time.
25903
25904 2007-08-14  Ben Pfaff  <blp@gnu.org>
25905
25906         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
25907
25908 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
25909
25910         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
25911         given the changes below.
25912         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
25913         even on hosts that have padding bits beyond the supported 64.
25914
25915 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
25916
25917         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
25918         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
25919         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
25920         depends on it.
25921         (xstrtol_error): Remove.
25922         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
25923         but with a different signature.
25924         (ATTRIBUTE_NORETURN, __attribute__): New macros.
25925         * lib/xstrtol-error.c: Include exitfail.h.
25926         (xstrtol_fatal): New function, with a different signature from the
25927         old xstrtol_error, so that the caller need not worry about passing
25928         in an exit status, or about storage management of the option argument.
25929         (xstrtol_error): Now a static function.  Redo signature to
25930         implement xstrtol_fatal.  Output the correct number of hyphens in
25931         front of the option so that the caller need not worry about
25932         storage management.
25933         (N_): New macro.
25934         (_): Remove; not used now.
25935         * modules/xstrtol: Depend on getopt.
25936         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
25937         of old STRTOL_FATAL_ERROR macro.
25938         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
25939         of test program.
25940         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
25941         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
25942
25943 2007-08-08  Eric Blake  <ebb9@byu.net>
25944
25945         * lib/xstrtol-error.c: Add missing include.
25946
25947         Move xstrtol messages into gnulib domain, when --pobase is used.
25948         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
25949         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
25950         * modules/xstrtol (Files): Distribute new file.
25951         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
25952         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
25953         * tests/test-xstrtol.c: ...into new file.
25954         * tests/test-xstrtoul.c: Also test xstrtoul.
25955         * tests/test-xstrtoimax.c: Also test xstrtoimax.
25956         * tests/test-xstrtoumax.c: Also test xstrtoumax.
25957         * tests/test-xstrtol.sh: Drive the tests.
25958         * tests/test-xstrtoimax.sh: Likewise.
25959         * tests/test-xstrtoumax.sh: Likewise.
25960         * modules/xstrtol-tests: New module.
25961         * modules/xstrtoimax-tests: Likewise.
25962         * modules/xstrtoumax-tests: Likewise.
25963
25964 2007-08-08  Jim Meyering  <jim@meyering.net>
25965
25966         New function: mfile_name_concat.
25967         * lib/filenamecat.c (mfile_name_concat): New function, just like
25968         file_name_concat, but return NULL upon failure rather than exiting
25969         with a diagnostic.
25970         * lib/filenamecat.h: Declare it.
25971
25972 2007-08-07  Bruno Haible  <bruno@clisp.org>
25973
25974         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
25975         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
25976         warning from gcc.
25977         Reported by Eric Blake.
25978
25979 2007-08-07  Simon Josefsson  <simon@josefsson.org>
25980
25981         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
25982         * modules/crypto/arcfour (License): Likewise.
25983         * modules/crypto/des-tests (License): Likewise.
25984         * modules/crypto/gc-arctwo-tests (License): Likewise.
25985         * modules/crypto/gc-des-tests (License): Likewise.
25986         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
25987         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
25988         * modules/crypto/gc-md2-tests (License): Likewise.
25989         * modules/crypto/gc-md4-tests (License): Likewise.
25990         * modules/crypto/gc-md5-tests (License): Likewise.
25991         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
25992         * modules/crypto/gc-rijndael-tests (License): Likewise.
25993         * modules/crypto/gc-sha1-tests (License): Likewise.
25994         * modules/crypto/gc-tests (License): Likewise.
25995         * modules/crypto/hmac-md5 (License): Likewise.
25996         * modules/crypto/hmac-sha1 (License): Likewise.
25997         * modules/crypto/md2-tests (License): Likewise.
25998         * modules/crypto/md4-tests (License): Likewise.
25999         * modules/crypto/md5 (License): Likewise.
26000         * modules/crypto/rijndael (License): Likewise.
26001         * modules/crypto/sha1 (License): Likewise.
26002         * modules/memxor (License): Likewise.
26003
26004 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
26005         and Bruno Haible  <bruno@clisp.org>
26006
26007         * NEWS: Describe interface changes to human, xstrtol.
26008         * lib/human.h: Include <xstrtol.h>.
26009         (human_options): Return enum strtol_error, not int.  Remove
26010         bool arg; take int * instead.
26011         * lib/human.c: Don't include "gettext.h".
26012         (_): Remove; no longer used.
26013         Don't include <xstrtol.h>, since human.h does it.
26014         (human_options): Adjust to abovementioned interface changes.
26015         Do not report error to stderr; that's now the caller's
26016         responsibility.
26017         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
26018         interface change.
26019         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
26020         Str, Argument_type_string.  All uses changed.  Put " argument"
26021         in diagnostics to make them clearer.  Change wording of suffix
26022         message for clarity.
26023         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
26024         Argument_type_string.
26025         (STRTOL_FATAL_WARN): Remove; no longer used.
26026         * modules/human (Depends-on): Remove gettext-h.
26027
26028 2007-08-06  Simon Josefsson  <simon@josefsson.org>
26029
26030         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
26031
26032 2007-07-31  Bruno Haible  <bruno@clisp.org>
26033
26034         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
26035         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
26036         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
26037
26038 2007-07-31  Bruno Haible  <bruno@clisp.org>
26039
26040         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
26041         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
26042
26043 2007-07-30  Bruno Haible  <bruno@clisp.org>
26044
26045         * modules/base64 (License): Use the synonymous term "LGPLv2+".
26046         * modules/c-ctype (License): Likewise.
26047         * modules/c-strcase (License): Likewise.
26048         * modules/check-version (License): Likewise.
26049         * modules/iconv (License): Likewise.
26050         * modules/iconv_open (License): Likewise.
26051         * modules/read-file (License): Likewise.
26052         * modules/striconv (License): Likewise.
26053         * modules/strverscmp (License): Likewise.
26054         * modules/vasprintf (License): Likewise.
26055         * modules/crypto/des (License): Likewise.
26056         * modules/crypto/gc (License): Likewise.
26057         * modules/crypto/gc-arcfour (License): Likewise.
26058         * modules/crypto/gc-arctwo (License): Likewise.
26059         * modules/crypto/gc-des (License): Likewise.
26060         * modules/crypto/gc-hmac-md5 (License): Likewise.
26061         * modules/crypto/gc-hmac-sha1 (License): Likewise.
26062         * modules/crypto/gc-md2 (License): Likewise.
26063         * modules/crypto/gc-md4 (License): Likewise.
26064         * modules/crypto/gc-md5 (License): Likewise.
26065         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
26066         * modules/crypto/gc-random (License): Likewise.
26067         * modules/crypto/gc-rijndael (License): Likewise.
26068         * modules/crypto/gc-sha1 (License): Likewise.
26069         * modules/crypto/md2 (License): Likewise.
26070         * modules/crypto/md4 (License): Likewise.
26071
26072 2007-07-30  Jim Meyering  <jim@meyering.net>
26073
26074         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
26075         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
26076         it has valid stat data.  This bug would cause du not to count the
26077         sizes of inaccessible directories.
26078         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
26079         in <http://bugzilla.redhat.com/250077>.
26080
26081 2007-07-25  Peter O'Gorman  <peter@pogma.com>
26082             Bruno Haible  <bruno@clisp.org>
26083
26084         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
26085         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
26086         #include_next, gives a diagnostic about it, but reports no error in
26087         the exit code.
26088         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
26089
26090 2007-07-24  Ben Pfaff  <blp@gnu.org>
26091
26092         Improve name: "count-one-bits" is better than "popcount".
26093         * MODULES.html.sh: Update name.
26094         * lib/popcount.h: Renamed lib/count-one-bits.h.
26095         (popcount): Renamed count_one_bits.
26096         (popcountl): Renamed count_one_bits_l.
26097         (popcountll): Renamed count_one_bits_ll.
26098         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
26099         * modules/popcount: Renamed module/count-one-bits.
26100         * modules/popcount-tests: Renamed module/count-one-bits-tests.
26101         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
26102
26103 2007-07-23  Ben Pfaff  <blp@gnu.org>
26104
26105         * lib/popcount.h (popcount32): Reduce size of constants, to allow
26106         better code generation, and add U to large constants to avoid
26107         warnings, in non-GCC case.
26108         Suggested by Bruno Haible.
26109
26110 2007-07-23  Ben Pfaff  <blp@gnu.org>
26111
26112         * lib/popcount.h: Use verify_true instead of if...abort.
26113         * modules/popcount: Depend on verify module.
26114         Suggested by Jim Meyering.
26115
26116 2007-07-23  Bruno Haible  <bruno@clisp.org>
26117
26118         * gnulib-tool (func_import): Create a .cvsignore file also when the
26119         directory is not yet in CVS but the toplevel directory is. When
26120         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
26121         Reported by Karl Berry.
26122
26123 2007-07-22  Ben Pfaff  <blp@gnu.org>
26124
26125         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
26126         case.
26127         Suggested by Eric Blake.
26128
26129 2007-07-22  Ben Pfaff  <blp@gnu.org>
26130
26131         New module: popcount.
26132         * MODULES.html.sh: Add popcount.
26133         * modules/popcount: New file.
26134         * modules/popcount-tests: New file.
26135         * tests/test-popcount.c: New file.
26136         * lib/popcount.h: New file.
26137         * m4/popcount.m4: New file.
26138
26139 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
26140
26141         * build-aux/announce-gen: Update to GPLv3.
26142
26143         * build-aux/config.guess: Update from config.
26144
26145 2007-07-21  Bruno Haible  <bruno@clisp.org>
26146
26147         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
26148         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
26149
26150 2007-07-20  Jim Meyering  <jim@meyering.net>
26151
26152         * check-module: Diagnose a self-dependency.
26153
26154 2007-07-19  Bruno Haible  <bruno@clisp.org>
26155
26156         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
26157         empty.
26158         Reported by Eric Blake.
26159
26160 2007-07-18  Bruno Haible  <bruno@clisp.org>
26161
26162         * gnulib-tool: New options --po-base, --po-domain.
26163         (func_usage): Document them.
26164         (pobase, po_domain): New variables.
26165         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
26166         DEFAULT_TEXT_DOMAIN.
26167         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
26168         (func_import): Consider pobase and po_domain. Create a po/ directory.
26169         (func_create_testdir): Set pobase and po_domain to empty.
26170         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
26171         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
26172
26173 2007-07-18  Bruno Haible  <bruno@clisp.org>
26174
26175         * gnulib-tool (func_get_automake_snippet): Synthesize also an
26176         EXTRA_DIST augmentation for files in build-aux/.
26177
26178 2007-07-16  Bruno Haible  <bruno@clisp.org>
26179
26180         * modules/lseek (License): Use the synonymous term "LGPLv2+".
26181         * modules/getdelim (License): Likewise.
26182
26183 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
26184
26185         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
26186         * modules/d-type (License): Likewise.
26187         * modules/extensions (License): Likewise.
26188         * modules/fnmatch (License): Likewise.
26189         * modules/fseeko (License): Likewise.
26190         * modules/getaddrinfo (License): Likewise.
26191         * modules/getline (License): Likewise.
26192         * modules/getlogin_r (License): Likewise.
26193         * modules/getpass (License): Likewise.
26194         * modules/gettimeofday (License): Likewise.
26195         * modules/glob (License): Likewise.
26196         * modules/inet_ntop (License): Likewise.
26197         * modules/malloc (License): Likewise.
26198         * modules/malloca (License): Likewise.
26199         * modules/memmem (License): Likewise.
26200         * modules/mempcpy (License): Likewise.
26201         * modules/memset (License): Likewise.
26202         * modules/minmax (License): Likewise.
26203         * modules/mktime (License): Likewise.
26204         * modules/netinet_in (License): Likewise.
26205         * modules/pathmax (License): Likewise.
26206         * modules/poll (License): Likewise.
26207         * modules/regex (License): Likewise.
26208         * modules/snprintf (License): Likewise.
26209         * modules/stdbool (License): Likewise.
26210         * modules/stdint (License): Likewise.
26211         * modules/stdio (License): Likewise.
26212         * modules/strcase (License): Likewise.
26213         * modules/strcasestr (License): Likewise.
26214         * modules/strdup (License): Likewise.
26215         * modules/string (License): Likewise.
26216         * modules/strndup (License): Likewise.
26217         * modules/strnlen (License): Likewise.
26218         * modules/strpbrk (License): Likewise.
26219         * modules/strptime (License): Likewise.
26220         * modules/strsep (License): Likewise.
26221         * modules/sys_select (License): Likewise.
26222         * modules/sys_socket (License): Likewise.
26223         * modules/sys_stat (License): Likewise.
26224         * modules/sys_time (License): Likewise.
26225         * modules/time (License): Likewise.
26226         * modules/time_r (License): Likewise.
26227         * modules/timegm (License): Likewise.
26228         * modules/unistd (License): Likewise.
26229         * modules/vsnprintf (License): Likewise.
26230         * modules/wctype (License): Likewise.
26231
26232 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26233
26234         * modules/argz (License): LGPLv2+.
26235
26236 2007-07-15  Karl Berry  <karl@gnu.org>
26237
26238         * doc/gnulib.texi: revise node structure per new fdl.texi.
26239
26240 2007-07-14  Bruno Haible  <bruno@clisp.org>
26241
26242         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
26243         the output file.
26244         * lib/uniname/uninames.h: Regenerated.
26245
26246 2007-07-14  Karl Berry  <karl@gnu.org>
26247
26248         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
26249         omitting sectioning and index commands.
26250
26251 2007-07-13  Bruno Haible  <bruno@clisp.org>
26252
26253         New gnulib-tool option --more-symlinks.
26254         * gnulib-tool (func_usage): Document --more-symlinks.
26255         (do_copyrights): New variable.
26256         Recognize option --more-symlinks.
26257         (func_import): Don't add a copyright notice transform to
26258         sed_transform_lib_file if do_copyrights is empty.
26259
26260 2007-07-13  Bruno Haible  <bruno@clisp.org>
26261
26262         * lib/vasnprintf.c (decimal_point_char): Define also if
26263         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
26264         && !NEED_PRINTF_DIRECTIVE_A.
26265         Reported by Clemens Koller <clemens.koller@anagramm.de> via
26266         Gary V. Vaughan <gary@gnu.org>.
26267
26268 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
26269
26270         * lib/inttypes_.h: Undo previous change, since it was fixed
26271         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
26272
26273 2007-07-13  Bruno Haible  <bruno@clisp.org>
26274
26275         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
26276         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
26277
26278 2007-07-13  Jim Meyering  <jim@meyering.net>
26279
26280         df: Don't fail for Tru64's "file-on-file mount".
26281         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
26282         so we fall through and use statfs instead.  Details here:
26283         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
26284         Reported by Albert Chin.
26285
26286 2007-07-13  Bruno Haible  <bruno@clisp.org>
26287
26288         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
26289         * modules/configmake (License): Likewise.
26290         * modules/gettext (License): Likewise.
26291         * modules/gettext-h (License): Likewise.
26292         * modules/include_next (License): Likewise.
26293         * modules/link-warning (License): Likewise.
26294         * modules/localcharset (License): Likewise.
26295         * modules/localename (License): Likewise.
26296         * modules/lock (License): Likewise.
26297         * modules/relocatable-lib-lgpl (License): Likewise.
26298         * modules/size_max (License): Likewise.
26299         * modules/vasnprintf (License): Likewise.
26300         * modules/wchar (License): Likewise.
26301         * modules/xsize (License): Likewise.
26302
26303 2007-07-13  Bruno Haible  <bruno@clisp.org>
26304
26305         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
26306         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
26307
26308 2007-07-12  Bruno Haible  <bruno@clisp.org>
26309
26310         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
26311         in the modules files.
26312
26313 2007-07-11  Karl Berry  <karl@gnu.org>
26314
26315         * MODULES.html.sh (func_module): use
26316          sed -e '\|^'"${includefile}"'$|d'
26317          instead of /.../d, to avoid errors on $includefile's containing /.
26318
26319 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
26320
26321         * gnulib-tool (func_import): Avoid duplication of --avoid
26322         statements
26323         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
26324         names to `_' in variable names.
26325
26326 2007-07-10  Eric Blake  <ebb9@byu.net>
26327
26328         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
26329         * NEWS: Document this change.
26330
26331 2007-07-08  Bruno Haible  <bruno@clisp.org>
26332
26333         Update to Unicode 5.0.
26334         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
26335         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
26336         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
26337         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
26338         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
26339         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
26340         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
26341         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
26342         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
26343         U+10A3F, U+1D242..U+1D244.
26344         (nonspacing_table_ind): Update.
26345         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
26346         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
26347
26348 2007-07-08  Bruno Haible  <bruno@clisp.org>
26349
26350         Update to Unicode 5.0.
26351         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
26352         code transform. Extend the name index field of unicode_name_to_code and
26353         unicode_code_to_name from 16 to 24 bits.
26354         * lib/uniname/uniname.c (unicode_character_name,
26355         unicode_name_character): Add the range 0x12xxx to the code transform.
26356         * lib/uniname/uninames.h: Regenerated.
26357         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
26358
26359 2007-07-07  Bruno Haible  <bruno@clisp.org>
26360
26361         * modules/wcwidth-tests: New file.
26362         * tests/test-wcwidth.c: New file.
26363
26364         Work around MacOS X wcwidth() bug.
26365         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
26366         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
26367         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
26368         original wcwidth in non-UTF-8 locales.
26369         * modules/wcwidth (Depends-on): Add localcharset, streq,
26370         uniwidth/width.
26371         * doc/functions/wcwidth.texi: Update.
26372
26373 2007-07-07  Bruno Haible  <bruno@clisp.org>
26374
26375         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
26376         (wcwidth): New declaration.
26377         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
26378         macros.
26379         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
26380         here. Prepare for creating <wchar.h> unconditionally.
26381         * modules/wchar (Depends-on): Add link-warning.
26382         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
26383         REPLACE_WCWIDTH, and GL_LINK_WARNING.
26384         * lib/wcwidth.h: Remove file.
26385         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
26386         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
26387         * modules/wcwidth (Files): Remove lib/wcwidth.h.
26388         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
26389         (Include): Replace wcwidth.h with <wchar.h>.
26390         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
26391         * lib/mbchar.h: Don't include wcwidth.h.
26392         * lib/mbswidth.c: Likewise.
26393         * NEWS: Mention the change.
26394
26395 2007-07-07  Bruno Haible  <bruno@clisp.org>
26396
26397         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
26398         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
26399         definition with an external declaration.
26400         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
26401         defined as a function. Remove AC_C_INLINE requirement.
26402         * modules/wcwidth (Files): Add lib/wcwidth.c.
26403         (Makefile.am): Remove redundant statement.
26404
26405 2007-07-07  Bruno Haible  <bruno@clisp.org>
26406
26407         * MODULES.html.sh (Unicode string functions): Add the new modules.
26408
26409         * tests/uniwidth/test-u32-strwidth.c: New file.
26410         * modules/uniwidth/u32-strwidth-tests: New file.
26411
26412         * lib/uniwidth/u32-strwidth.c: New file.
26413         * modules/uniwidth/u32-strwidth: New file.
26414
26415         * tests/uniwidth/test-u16-strwidth.c: New file.
26416         * modules/uniwidth/u16-strwidth-tests: New file.
26417
26418         * lib/uniwidth/u16-strwidth.c: New file.
26419         * modules/uniwidth/u16-strwidth: New file.
26420
26421         * tests/uniwidth/test-u8-strwidth.c: New file.
26422         * modules/uniwidth/u8-strwidth-tests: New file.
26423
26424         * lib/uniwidth/u8-strwidth.c: New file.
26425         * modules/uniwidth/u8-strwidth: New file.
26426
26427         * tests/uniwidth/test-u32-width.c: New file.
26428         * modules/uniwidth/u32-width-tests: New file.
26429
26430         * lib/uniwidth/u32-width.c: New file.
26431         * modules/uniwidth/u32-width: New file.
26432
26433         * tests/uniwidth/test-u16-width.c: New file.
26434         * modules/uniwidth/u16-width-tests: New file.
26435
26436         * lib/uniwidth/u16-width.c: New file.
26437         * modules/uniwidth/u16-width: New file.
26438
26439         * tests/uniwidth/test-u8-width.c: New file.
26440         * modules/uniwidth/u8-width-tests: New file.
26441
26442         * lib/uniwidth/u8-width.c: New file.
26443         * modules/uniwidth/u8-width: New file.
26444
26445         * tests/uniwidth/test-uc_width.c: New file.
26446         * modules/uniwidth/width-tests: New file.
26447
26448         * lib/uniwidth/width.c: New file, from GNU libiconv.
26449         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
26450         * modules/uniwidth/width: New file.
26451
26452         * lib/uniwidth.h: New file, from GNU libiconv.
26453         * modules/uniwidth/base: New file.
26454
26455 2007-07-07  Bruno Haible  <bruno@clisp.org>
26456
26457         * lib/uniname.h: New file, from GNU gettext.
26458         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
26459         * lib/uniname/uninames.h: New file, from GNU gettext.
26460         * lib/uniname/uniname.c: New file, from GNU gettext.
26461         * tests/uniname/test-uninames.sh: New file.
26462         * tests/uniname/test-uninames.c: New file, from GNU gettext.
26463         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
26464         * modules/uniname/base: New file.
26465         * modules/uniname/uniname: New file.
26466         * modules/uniname/uniname-tests: New file.
26467         * MODULES.html.sh (Unicode string functions): Add the new modules.
26468
26469 2007-07-06  Bruno Haible  <bruno@clisp.org>
26470
26471         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
26472
26473 2007-07-06  Bruno Haible  <bruno@clisp.org>
26474
26475         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
26476         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
26477         includes <cygwin/sys_time.h> which includes <sys/select.h> which
26478         include <sys/time.h>.
26479         Reported by Eric Blake.
26480
26481 2007-07-06  Eric Blake  <ebb9@byu.net>
26482
26483         Fix testing canonicalize on cygwin.
26484         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
26485         Revert patch from 2007-06-19.
26486         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
26487         canonicalize module is also in use.
26488         * tests/test-canonicalize.c: New file.
26489         * tests/test-canonicalize.sh: Likewise.
26490         * modules/canonicalize-tests: Likewise.
26491
26492 2007-07-06  Jim Meyering  <jim@meyering.net>
26493
26494         * lib/getugroups.c (getugroups): Detect getgrent failure.
26495         Adjust comment to reflect reality: this function may return -1.
26496
26497 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
26498
26499         * build-aux/bootstrap (TP_URL,get_translations): Update to use
26500         the new TP address.
26501         (usage): Fix typo
26502         (gnulib_mk): New variable.
26503
26504 2007-07-05  Jim Meyering  <jim@meyering.net>
26505
26506         Don't let endgrent clobber errno, no matter how improbable.
26507         * lib/getugroups.c (getugroups): Save and restore errno around
26508         endgrent call.
26509
26510         Close the group DB even when failing with 2^31 or more members.
26511         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
26512
26513 2007-07-04  Jim Meyering  <jim@meyering.net>
26514
26515         * lib/getugroups.h: New file.
26516         * lib/getugroups.c: Include "getugroups.h".
26517         Remove uses of "register" keyword.
26518         Move local variable, "cp", down into scope where used.
26519         Give "username" parameter the "const" attribute.
26520         * modules/getugroups (Files): Add lib/getugroups.h
26521
26522 2007-07-04  Karl Berry  <karl@gnu.org>
26523
26524         * MODULES.html.sh (func_all_modules): Complete rename of
26525         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
26526
26527 2007-07-02  Bruno Haible  <bruno@clisp.org>
26528
26529         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
26530         mode, when inttypes.h comes from gnulib.
26531         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
26532
26533 2007-07-02  Simon Josefsson  <simon@josefsson.org>
26534
26535         * NEWS: Mention lgpl module name change.
26536
26537         * modules/lgpl-2.1: Renamed from lgpl.
26538
26539         * NEWS: Mention gpl module name change.
26540
26541         * modules/gpl-3.0: New file, based on gpl-2.0.
26542
26543         * modules/gpl-2.0: Renamed from gpl.
26544
26545         * modules/gpl: Fix filename, doc/gpl.texi is now found at
26546         doc/gpl-2.0.texi.
26547
26548 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
26549
26550         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
26551         #define __STDC_LIMIT_MACROS temporarily while including
26552         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
26553         Problem reported by Joel E. Denny in
26554         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
26555
26556 2007-07-01  Bruno Haible  <bruno@clisp.org>
26557
26558         * lib/unistdio.h: New file.
26559         * lib/unistdio/u-asnprintf.h: New file.
26560         * lib/unistdio/u-asprintf.h: New file.
26561         * lib/unistdio/u-printf-args.c: New file.
26562         * lib/unistdio/u-printf-args.h: New file.
26563         * lib/unistdio/u-printf-parse.h: New file.
26564         * lib/unistdio/u-snprintf.h: New file.
26565         * lib/unistdio/u-sprintf.h: New file.
26566         * lib/unistdio/u-vasprintf.h: New file.
26567         * lib/unistdio/u-vsnprintf.h: New file.
26568         * lib/unistdio/u-vsprintf.h: New file.
26569         * lib/unistdio/ulc-asnprintf.c: New file.
26570         * lib/unistdio/ulc-asprintf.c: New file.
26571         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
26572         * lib/unistdio/ulc-printf-parse.c: New file.
26573         * lib/unistdio/ulc-snprintf.c: New file.
26574         * lib/unistdio/ulc-sprintf.c: New file.
26575         * lib/unistdio/ulc-vasnprintf.c: New file.
26576         * lib/unistdio/ulc-vasprintf.c: New file.
26577         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
26578         * lib/unistdio/ulc-vsnprintf.c: New file.
26579         * lib/unistdio/ulc-vsprintf.c: New file.
26580         * lib/unistdio/u8-asnprintf.c: New file.
26581         * lib/unistdio/u8-asprintf.c: New file.
26582         * lib/unistdio/u8-printf-parse.c: New file.
26583         * lib/unistdio/u8-snprintf.c: New file.
26584         * lib/unistdio/u8-sprintf.c: New file.
26585         * lib/unistdio/u8-vasnprintf.c: New file.
26586         * lib/unistdio/u8-vasprintf.c: New file.
26587         * lib/unistdio/u8-vsnprintf.c: New file.
26588         * lib/unistdio/u8-vsprintf.c: New file.
26589         * lib/unistdio/u8-u8-asnprintf.c: New file.
26590         * lib/unistdio/u8-u8-asprintf.c: New file.
26591         * lib/unistdio/u8-u8-snprintf.c: New file.
26592         * lib/unistdio/u8-u8-sprintf.c: New file.
26593         * lib/unistdio/u8-u8-vasnprintf.c: New file.
26594         * lib/unistdio/u8-u8-vasprintf.c: New file.
26595         * lib/unistdio/u8-u8-vsnprintf.c: New file.
26596         * lib/unistdio/u8-u8-vsprintf.c: New file.
26597         * lib/unistdio/u16-asnprintf.c: New file.
26598         * lib/unistdio/u16-asprintf.c: New file.
26599         * lib/unistdio/u16-printf-parse.c: New file.
26600         * lib/unistdio/u16-snprintf.c: New file.
26601         * lib/unistdio/u16-sprintf.c: New file.
26602         * lib/unistdio/u16-vasnprintf.c: New file.
26603         * lib/unistdio/u16-vasprintf.c: New file.
26604         * lib/unistdio/u16-vsnprintf.c: New file.
26605         * lib/unistdio/u16-vsprintf.c: New file.
26606         * lib/unistdio/u16-u16-asnprintf.c: New file.
26607         * lib/unistdio/u16-u16-asprintf.c: New file.
26608         * lib/unistdio/u16-u16-snprintf.c: New file.
26609         * lib/unistdio/u16-u16-sprintf.c: New file.
26610         * lib/unistdio/u16-u16-vasnprintf.c: New file.
26611         * lib/unistdio/u16-u16-vasprintf.c: New file.
26612         * lib/unistdio/u16-u16-vsnprintf.c: New file.
26613         * lib/unistdio/u16-u16-vsprintf.c: New file.
26614         * lib/unistdio/u32-asnprintf.c: New file.
26615         * lib/unistdio/u32-asprintf.c: New file.
26616         * lib/unistdio/u32-printf-parse.c: New file.
26617         * lib/unistdio/u32-snprintf.c: New file.
26618         * lib/unistdio/u32-sprintf.c: New file.
26619         * lib/unistdio/u32-vasnprintf.c: New file.
26620         * lib/unistdio/u32-vasprintf.c: New file.
26621         * lib/unistdio/u32-vsnprintf.c: New file.
26622         * lib/unistdio/u32-vsprintf.c: New file.
26623         * lib/unistdio/u32-u32-asnprintf.c: New file.
26624         * lib/unistdio/u32-u32-asprintf.c: New file.
26625         * lib/unistdio/u32-u32-snprintf.c: New file.
26626         * lib/unistdio/u32-u32-sprintf.c: New file.
26627         * lib/unistdio/u32-u32-vasnprintf.c: New file.
26628         * lib/unistdio/u32-u32-vasprintf.c: New file.
26629         * lib/unistdio/u32-u32-vsnprintf.c: New file.
26630         * lib/unistdio/u32-u32-vsprintf.c: New file.
26631         * tests/unistdio/test-ulc-asnprintf1.c: New file.
26632         * tests/unistdio/test-ulc-asnprintf1.h: New file.
26633         * tests/unistdio/test-ulc-printf1.h: New file.
26634         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
26635         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
26636         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
26637         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
26638         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
26639         * tests/unistdio/test-ulc-vasprintf1.c: New file.
26640         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
26641         * tests/unistdio/test-ulc-vsprintf1.c: New file.
26642         * tests/unistdio/test-u8-asnprintf1.c: New file.
26643         * tests/unistdio/test-u8-asnprintf1.h: New file.
26644         * tests/unistdio/test-u8-printf1.h: New file.
26645         * tests/unistdio/test-u8-vasnprintf1.c: New file.
26646         * tests/unistdio/test-u8-vasnprintf2.c: New file.
26647         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
26648         * tests/unistdio/test-u8-vasnprintf3.c: New file.
26649         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
26650         * tests/unistdio/test-u8-vasprintf1.c: New file.
26651         * tests/unistdio/test-u8-vsnprintf1.c: New file.
26652         * tests/unistdio/test-u8-vsprintf1.c: New file.
26653         * tests/unistdio/test-u16-asnprintf1.c: New file.
26654         * tests/unistdio/test-u16-asnprintf1.h: New file.
26655         * tests/unistdio/test-u16-printf1.h: New file.
26656         * tests/unistdio/test-u16-vasnprintf1.c: New file.
26657         * tests/unistdio/test-u16-vasnprintf2.c: New file.
26658         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
26659         * tests/unistdio/test-u16-vasnprintf3.c: New file.
26660         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
26661         * tests/unistdio/test-u16-vasprintf1.c: New file.
26662         * tests/unistdio/test-u16-vsnprintf1.c: New file.
26663         * tests/unistdio/test-u16-vsprintf1.c: New file.
26664         * tests/unistdio/test-u32-asnprintf1.c: New file.
26665         * tests/unistdio/test-u32-asnprintf1.h: New file.
26666         * tests/unistdio/test-u32-printf1.h: New file.
26667         * tests/unistdio/test-u32-vasnprintf1.c: New file.
26668         * tests/unistdio/test-u32-vasnprintf2.c: New file.
26669         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
26670         * tests/unistdio/test-u32-vasnprintf3.c: New file.
26671         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
26672         * tests/unistdio/test-u32-vasprintf1.c: New file.
26673         * tests/unistdio/test-u32-vsnprintf1.c: New file.
26674         * tests/unistdio/test-u32-vsprintf1.c: New file.
26675         * modules/unistdio/base: New file.
26676         * modules/unistdio/u-printf-args: New file.
26677         * modules/unistdio/ulc-asnprintf: New file.
26678         * modules/unistdio/ulc-asprintf: New file.
26679         * modules/unistdio/ulc-fprintf: New file.
26680         * modules/unistdio/ulc-printf-parse: New file.
26681         * modules/unistdio/ulc-snprintf: New file.
26682         * modules/unistdio/ulc-sprintf: New file.
26683         * modules/unistdio/ulc-vasnprintf: New file.
26684         * modules/unistdio/ulc-vasprintf: New file.
26685         * modules/unistdio/ulc-vfprintf: New file.
26686         * modules/unistdio/ulc-vsnprintf: New file.
26687         * modules/unistdio/ulc-vsprintf: New file.
26688         * modules/unistdio/u8-asnprintf: New file.
26689         * modules/unistdio/u8-asprintf: New file.
26690         * modules/unistdio/u8-printf-parse: New file.
26691         * modules/unistdio/u8-snprintf: New file.
26692         * modules/unistdio/u8-sprintf: New file.
26693         * modules/unistdio/u8-vasnprintf: New file.
26694         * modules/unistdio/u8-vasprintf: New file.
26695         * modules/unistdio/u8-vsnprintf: New file.
26696         * modules/unistdio/u8-vsprintf: New file.
26697         * modules/unistdio/u8-u8-asnprintf: New file.
26698         * modules/unistdio/u8-u8-asprintf: New file.
26699         * modules/unistdio/u8-u8-snprintf: New file.
26700         * modules/unistdio/u8-u8-sprintf: New file.
26701         * modules/unistdio/u8-u8-vasnprintf: New file.
26702         * modules/unistdio/u8-u8-vasprintf: New file.
26703         * modules/unistdio/u8-u8-vsnprintf: New file.
26704         * modules/unistdio/u8-u8-vsprintf: New file.
26705         * modules/unistdio/u16-asnprintf: New file.
26706         * modules/unistdio/u16-asprintf: New file.
26707         * modules/unistdio/u16-printf-parse: New file.
26708         * modules/unistdio/u16-snprintf: New file.
26709         * modules/unistdio/u16-sprintf: New file.
26710         * modules/unistdio/u16-vasnprintf: New file.
26711         * modules/unistdio/u16-vasprintf: New file.
26712         * modules/unistdio/u16-vsnprintf: New file.
26713         * modules/unistdio/u16-vsprintf: New file.
26714         * modules/unistdio/u16-u16-asnprintf: New file.
26715         * modules/unistdio/u16-u16-asprintf: New file.
26716         * modules/unistdio/u16-u16-snprintf: New file.
26717         * modules/unistdio/u16-u16-sprintf: New file.
26718         * modules/unistdio/u16-u16-vasnprintf: New file.
26719         * modules/unistdio/u16-u16-vasprintf: New file.
26720         * modules/unistdio/u16-u16-vsnprintf: New file.
26721         * modules/unistdio/u16-u16-vsprintf: New file.
26722         * modules/unistdio/u32-asnprintf: New file.
26723         * modules/unistdio/u32-asprintf: New file.
26724         * modules/unistdio/u32-printf-parse: New file.
26725         * modules/unistdio/u32-snprintf: New file.
26726         * modules/unistdio/u32-sprintf: New file.
26727         * modules/unistdio/u32-vasnprintf: New file.
26728         * modules/unistdio/u32-vasprintf: New file.
26729         * modules/unistdio/u32-vsnprintf: New file.
26730         * modules/unistdio/u32-vsprintf: New file.
26731         * modules/unistdio/u32-u32-asnprintf: New file.
26732         * modules/unistdio/u32-u32-asprintf: New file.
26733         * modules/unistdio/u32-u32-snprintf: New file.
26734         * modules/unistdio/u32-u32-sprintf: New file.
26735         * modules/unistdio/u32-u32-vasnprintf: New file.
26736         * modules/unistdio/u32-u32-vasprintf: New file.
26737         * modules/unistdio/u32-u32-vsnprintf: New file.
26738         * modules/unistdio/u32-u32-vsprintf: New file.
26739         * modules/unistdio/ulc-asnprintf-tests: New file.
26740         * modules/unistdio/ulc-vasnprintf-tests: New file.
26741         * modules/unistdio/ulc-vasprintf-tests: New file.
26742         * modules/unistdio/ulc-vsnprintf-tests: New file.
26743         * modules/unistdio/ulc-vsprintf-tests: New file.
26744         * modules/unistdio/u8-asnprintf-tests: New file.
26745         * modules/unistdio/u8-vasnprintf-tests: New file.
26746         * modules/unistdio/u8-vasprintf-tests: New file.
26747         * modules/unistdio/u8-vsnprintf-tests: New file.
26748         * modules/unistdio/u8-vsprintf-tests: New file.
26749         * modules/unistdio/u16-asnprintf-tests: New file.
26750         * modules/unistdio/u16-vasnprintf-tests: New file.
26751         * modules/unistdio/u16-vasprintf-tests: New file.
26752         * modules/unistdio/u16-vsnprintf-tests: New file.
26753         * modules/unistdio/u16-vsprintf-tests: New file.
26754         * modules/unistdio/u32-asnprintf-tests: New file.
26755         * modules/unistdio/u32-vasnprintf-tests: New file.
26756         * modules/unistdio/u32-vasprintf-tests: New file.
26757         * modules/unistdio/u32-vsnprintf-tests: New file.
26758         * modules/unistdio/u32-vsprintf-tests: New file.
26759         * MODULES.html.sh (Unicode string functions): Add the new modules.
26760
26761 2007-07-01  Bruno Haible  <bruno@clisp.org>
26762
26763         * lib/sprintf.c (sprintf): Limit the available length estimation,
26764         to avoid address wraparound.
26765         * lib/vsprintf.c (vsprintf): Likewise.
26766         * modules/sprintf-posix (Dependencies): Add stdint.
26767         * modules/vsprintf-posix (Dependencies): Likewise.
26768
26769 2007-07-01  Bruno Haible  <bruno@clisp.org>
26770
26771         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
26772         Windows PATH as well. Conservative double-quoting. Comments.
26773
26774 2007-07-01  Bruno Haible  <bruno@clisp.org>
26775             Eric Blake  <ebb9@byu.net>
26776             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26777
26778         * gnulib-tool (self_abspathname): Fix algorithm to cope with
26779         empty components in $PATH, denoting '.'.
26780
26781 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26782
26783         * gnulib-tool: Fix indentation.
26784         (func_create_megatestdir): Likewise.
26785         Report by Bruno Haible.
26786
26787 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26788
26789         Sync from Automake.
26790         * build-aux/gnupload: Fix shell portability issues with for loops.
26791         Report by Karl Berry.
26792
26793 2007-06-29  Simon Josefsson  <simon@josefsson.org>
26794
26795         * build-aux/maint.mk (POURL): Use translationproject.org.
26796
26797 2007-06-27  Simon Josefsson  <simon@josefsson.org>
26798             Bruno Haible  <bruno@clisp.org>
26799
26800         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
26801         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
26802         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
26803         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
26804         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
26805
26806 2007-06-27  Bruno Haible  <bruno@clisp.org>
26807
26808         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
26809         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
26810
26811 2007-06-26  Karl Berry  <karl@gnu.org>
26812
26813         * MODULES.html.sh: remove xreadlink-with-size.
26814
26815 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
26816
26817         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
26818         method that I hope also handles the double-include problem noted
26819         by Bruno Haible in
26820         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
26821
26822 2007-06-23  Bruno Haible  <bruno@clisp.org>
26823
26824         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
26825         Don't let the 'mostlyclean' target fail if the last subdirectory could
26826         not be removed.
26827         Reported by Karl Berry.
26828
26829 2007-06-23  Bruno Haible  <bruno@clisp.org>
26830
26831         * gnulib-tool (echo): Add a speedier workaround for ksh.
26832         * tests/test-echo.sh: Likewise.
26833
26834 2007-06-23  Bruno Haible  <bruno@clisp.org>
26835
26836         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
26837         * tests/test-echo.sh: Likewise.
26838
26839 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26840
26841         * gnulib-tool (IFS): Initialize early, so we don't set it to
26842         empty later.
26843         (self_abspathname): Rewrite algorithm to set it, reindent.
26844         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
26845         (func_create_megatestdir): Merge some sed scripts.
26846
26847 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
26848
26849         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
26850         exposed by Sun Studio 11 cc on Solaris 8.
26851
26852 2007-06-22  Bruno Haible  <bruno@clisp.org>
26853
26854         * gnulib-tool (echo): Ensure the echo primitive does not interpret
26855         backslashes.
26856         * tests/test-echo.sh: New file.
26857
26858 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26859
26860         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
26861         simplify `sed_replace_build_aux' scripts, they are portable but
26862         echoing them with `echo' is not.
26863         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
26864
26865 2007-06-21  Karl Berry  <karl@gnu.org>
26866
26867         * config/srclist.txt: guess we can't handle the licenses via
26868         srclist at the moment.
26869
26870 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
26871
26872         * MODULES.html.sh: Add include_next.
26873         * modules/include_next: New file.
26874
26875 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
26876
26877         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
26878         INCLUDE_NEXT.
26879         (gl_CHECK_NEXT_HEADERS): New macro.
26880         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
26881         the obsolescent gl_ABSOLUTE_HEADER.
26882         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
26883         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
26884         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
26885         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
26886         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
26887         * m4/math_h.m4 (gl_MATH_H): Likewise.
26888         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
26889         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
26890         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
26891         * m4/stdint.m4 (gl_STDINT_H): Likewise.
26892         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
26893         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
26894         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
26895         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
26896         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
26897         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
26898         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
26899         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
26900         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
26901         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
26902         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
26903         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
26904         * m4/inttypes.m4 (gl_INTTYPES_H): Define
26905         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
26906         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
26907         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
26908         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
26909         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
26910         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
26911         * lib/float_.h: Likewise.
26912         * lib/inttypes_.h: Likewise.
26913         * lib/math_.h: Likewise.
26914         * lib/search_.h: Likewise.
26915         * lib/signal_.h: Likewise.
26916         * lib/stdint_.h: Likewise.
26917         * lib/stdio_.h: Likewise.
26918         * lib/stdlib_.h: Likewise.
26919         * lib/string_.h: Likewise.
26920         * lib/sys_stat_.h: Likewise.
26921         * lib/sys_time_.h: Likewise.
26922         * lib/time_.h: Likewise.
26923         * lib/unistd_.h: Likewise.
26924         * lib/wchar_.h: Likewise.
26925         * lib/wctype_.h: Likewise.
26926         * lib/dirent_.h: Likewise.
26927         * lib/iconv_.h: Likewise.
26928         * lib/locale_.h: Likewise.
26929         * lib/netinet_in_.h: Likewise.
26930         * lib/sys_select_.h: Likewise.
26931         * lib/sys_socket_.h: Likewise.
26932         * lib/sysexits_.h: Likewise.
26933         * modules/fcntl (Depends-on): Depend on include_next, not
26934         absolute_header.
26935         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
26936         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
26937         * modules/fchdir: Likewise.
26938         * modules/float: Likewise.
26939         * modules/iconv_open: Likewise.
26940         * modules/inttypes: Likewise.
26941         * modules/locale: Likewise.
26942         * modules/math: Likewise.
26943         * modules/netinet_in: Likewise.
26944         * modules/search: Likewise.
26945         * modules/signal: Likewise.
26946         * modules/stdint: Likewise.
26947         * modules/stdio: Likewise.
26948         * modules/stdlib: Likewise.
26949         * modules/string: Likewise.
26950         * modules/sys_select: Likewise.
26951         * modules/sys_socket: Likewise.
26952         * modules/sys_stat: Likewise.
26953         * modules/sys_time: Likewise.
26954         * modules/sysexits: Likewise.
26955         * modules/time: Likewise.
26956         * modules/unistd: Likewise.
26957         * modules/wchar: Likewise.
26958         * modules/wctype: Likewise.
26959         * modules/sys_stat: Change maintainer to "all".
26960         * modules/unistd: Likewise.
26961
26962 2007-06-20  Karl Berry  <karl@gnu.org>
26963
26964         * config/srclist.txt: track www changes in license files.
26965
26966 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
26967
26968         * build-aux/bootstrap: Remove stray dot.
26969         Make sure build_aux settings are honored when linking
26970         gnulib_extra_files.
26971
26972 2007-06-19  Eric Blake  <ebb9@byu.net>
26973
26974         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
26975         Allow compilation on cygwin.
26976
26977 2007-06-19  Jim Meyering  <jim@meyering.net>
26978
26979         xreadlink-with-size: Remove module.  No longer used.
26980         Ex-callers now use xreadlink or mreadlink-with-size.
26981         * modules/xreadlink-with-size: Remove module.
26982         * lib/xreadlink-with-size.c: Remove file.
26983         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
26984         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
26985         just before the function definition *is* accurate.
26986
26987         Eliminate one way canonicalize_filename_mode could exit.
26988         * lib/canonicalize.c (canonicalize_filename_mode):
26989         Use mreadlink_with_size, not xreadlink_with_size.
26990
26991 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
26992
26993         Detect porting problems to FreeBSD/arm, which has time_t wider than
26994         long int.  Original problem reported for GNU diff by Xin Li in
26995         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
26996         * modules/getdate (Depends-on): Add intprops, verify.
26997         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
26998         is an integer type no wider than long int.
26999
27000 2007-06-18  Jim Meyering  <jim@meyering.net>
27001
27002         New module: mreadlink-with-size.
27003         * MODULES.html.sh: Add mreadlink-with-size.
27004         * modules/mreadlink-with-size: New module
27005         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
27006         not xreadlink-with-size.
27007         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
27008
27009 2007-06-16  Bruno Haible  <bruno@clisp.org>
27010
27011         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
27012         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
27013         Reported by Gary V. Vaughan <gary@gnu.org>.
27014
27015 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
27016
27017         Revamp lchown so that it lives in unistd.h where it belongs.
27018         * lib/lchown.h: Remove.
27019         * lib/dirchownmod.c: Don't include lib/lchown.h.
27020         * lib/fchownat.c: Likewise.
27021         * lib/openat.c: Likewise.
27022         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
27023         does not follow symlinks.
27024         (EOPNOTSUPP): Define if not defined.
27025         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
27026         is defined to 0.
27027         (lchown): New decl.
27028         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
27029         Do not check for lchown decl.
27030         Set REPLACE_LCHOWN.
27031         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
27032         REPLACE_LCHOWN.
27033         * modules/chown: Make it clear it follows symlinks.
27034         * modules/lchown: Make it clear it doesn't follow symlinks.
27035         (Files): Remove lib/lchown.h
27036         (Depends-on): Add unistd.
27037         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
27038         (Include): Include <unistd.h>, not "lchown.h".
27039         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
27040         REPLACE_LCHOWN.
27041
27042 2007-06-15  Jim Meyering  <jim@meyering.net>
27043
27044         Change license (GPL to LGPL) of fsusage and dependents.
27045         * modules/fsusage (License): Change to LGPL.
27046         * modules/full-read (License): Likewise.
27047         * modules/full-write (License): Likewise.
27048         * modules/safe-read (License): Likewise.
27049         * modules/safe-write (License): Likewise.
27050
27051 2007-06-14  Ben Pfaff  <blp@gnu.org>
27052
27053         Missing part of allocsa -> malloca transition.
27054         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
27055         gl_MALLOCA.
27056
27057 2007-06-12  Bruno Haible  <bruno@clisp.org>
27058
27059         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
27060         to ia64, x86_64, i386.
27061         Reported by Eric Blake.
27062
27063 2007-06-12  Bruno Haible  <bruno@clisp.org>
27064
27065         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
27066         cross-compiling to x86_64.
27067
27068 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
27069
27070         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
27071         glitch reported by Ralf Wildenhues in
27072         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
27073
27074         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
27075         Vin Shelton.
27076
27077 2007-06-11  Bruno Haible  <bruno@clisp.org>
27078
27079         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
27080         replacement string.
27081         Reported by Eric Blake.
27082
27083 2007-06-10  Bruno Haible  <bruno@clisp.org>
27084
27085         Prepare vasnprintf code for use with Unicode strings.
27086         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
27087         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
27088         TYPE_U32_STRING.
27089         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
27090         a_u32_string variants.
27091         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
27092         * lib/printf-args.c: Don't include config.h and the specification
27093         header if PRINTF_FETCHARGS is already defined.
27094         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
27095         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
27096         TYPE_U16_STRING, TYPE_U32_STRING.
27097         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
27098         u16_directive, u16_directives, u32_directive, u32_directives): New
27099         types.
27100         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
27101         New declarations.
27102         * lib/printf-parse.c: Don't include config.h and the specification
27103         header if PRINTF_PARSE is already defined. Eliminate the set of
27104         parameters for WIDE_CHAR_VERSION; the user of this file must provide
27105         them now. Include c-ctype.h.
27106         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
27107         directive and CHAR_T_ONLY_ASCII.
27108         * lib/vasnprintf.c: Don't include config.h and the specification header
27109         if VASNPRINTF is already defined.
27110         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
27111         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
27112         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
27113         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
27114         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
27115         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
27116         code accordingly.
27117         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
27118         pad_ourselves also in this case, with the 'c' and 's' directives, and
27119         with a different notion of "width".
27120         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
27121
27122 2007-06-10  Bruno Haible  <bruno@clisp.org>
27123
27124         * modules/unistr/u32-mbsnlen: New file.
27125         * lib/unistr/u32-mbsnlen.c: New file.
27126
27127         * modules/unistr/u16-mbsnlen: New file.
27128         * lib/unistr/u16-mbsnlen.c: New file.
27129
27130         * modules/unistr/u8-mbsnlen: New file.
27131         * lib/unistr/u8-mbsnlen.c: New file.
27132
27133         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
27134         declarations.
27135
27136 2007-06-10  Bruno Haible  <bruno@clisp.org>
27137
27138         * lib/string_.h (mbsnlen): New declaration.
27139         * lib/mbsnlen.c: New file.
27140         * m4/mbsnlen.m4: New file.
27141         * modules/mbsnlen: New file.
27142         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
27143         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
27144         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
27145
27146 2007-06-10  Bruno Haible  <bruno@clisp.org>
27147
27148         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
27149
27150 2007-06-10  Bruno Haible  <bruno@clisp.org>
27151
27152         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
27153         * lib/mbuiter.h: Likewise.
27154
27155 2007-06-10  Bruno Haible  <bruno@clisp.org>
27156
27157         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
27158         declaration.
27159
27160 2007-06-10  Karl Berry  <karl@gnu.org>
27161
27162         * config/srclist.txt: remove gettext entries, Bruno prefers
27163         to update individually.
27164
27165 2007-06-10  Bruno Haible  <bruno@clisp.org>
27166
27167         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
27168         'maxlen'. Ensure only length + width bytes are allocated, not
27169         length + 1 + width.
27170
27171 2007-06-09  Bruno Haible  <bruno@clisp.org>
27172
27173         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
27174         (CHAR_T): Remove macro.
27175         (VASNPRINTF): Update.
27176
27177 2007-06-09  Bruno Haible  <bruno@clisp.org>
27178
27179         * MODULES.html.sh (Unicode string functions): Add the new modules.
27180
27181         * modules/uniconv/u32-conv-to-enc: New file.
27182         * lib/uniconv/u32-conv-to-enc.c: New file.
27183         * modules/uniconv/u32-conv-to-enc-tests: New file.
27184         * tests/uniconv/test-u32-conv-to-enc.c: New file.
27185
27186         * modules/uniconv/u16-conv-to-enc: New file.
27187         * lib/uniconv/u16-conv-to-enc.c: New file.
27188         * lib/uniconv/u-conv-to-enc.h: New file.
27189         * modules/uniconv/u16-conv-to-enc-tests: New file.
27190         * tests/uniconv/test-u16-conv-to-enc.c: New file.
27191
27192         * modules/uniconv/u8-conv-to-enc: New file.
27193         * lib/uniconv/u8-conv-to-enc.c: New file.
27194         * modules/uniconv/u8-conv-to-enc-tests: New file.
27195         * tests/uniconv/test-u8-conv-to-enc.c: New file.
27196
27197         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
27198         u32_conv_to_encoding): New declarations.
27199
27200 2007-06-09  Bruno Haible  <bruno@clisp.org>
27201
27202         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
27203
27204 2007-06-09  Bruno Haible  <bruno@clisp.org>
27205
27206         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
27207         * modules/malloca: Renamed from modules/allocsa, updated.
27208         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
27209         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
27210         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
27211         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
27212         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
27213         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
27214         * modules/xmalloca: Renamed from modules/xallocsa, updated.
27215         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
27216         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
27217         * modules/c-strcasestr (Depends-on): Update.
27218         * lib/c-strcasestr.c: Update.
27219         * modules/c-strstr (Depends-on): Update.
27220         * lib/c-strstr.c: Update.
27221         * modules/canonicalize-lgpl (Depends-on): Update.
27222         * lib/canonicalize-lgpl.c: Update.
27223         * modules/clean-temp (Depends-on): Update.
27224         * lib/clean-temp.c: Update.
27225         * modules/csharpcomp (Depends-on): Update.
27226         * lib/csharpcomp.c: Update.
27227         * modules/csharpexec (Depends-on): Update.
27228         * lib/csharpexec.c: Update.
27229         * modules/javacomp (Depends-on): Update.
27230         * lib/javacomp.c: Update.
27231         * modules/javaexec (Depends-on): Update.
27232         * lib/javaexec.c: Update.
27233         * modules/mbscasestr (Depends-on): Update.
27234         * lib/mbscasestr.c: Update.
27235         * modules/mbsstr (Depends-on): Update.
27236         * lib/mbsstr.c: Update.
27237         * modules/setenv (Depends-on): Update.
27238         * lib/setenv.c: Update.
27239         * modules/strcasestr (Depends-on): Update.
27240         * lib/strcasestr.c: Update.
27241         * modules/striconveha (Depends-on): Update.
27242         * lib/striconveha.c: Update.
27243         * modules/relocatable-prog-wrapper (Files): Update.
27244         * lib/relocwrapper.c: Update.
27245         * build-aux/install-reloc: Update.
27246         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
27247
27248 2007-06-08  Bruno Haible  <bruno@clisp.org>
27249
27250         Port to uClibc.
27251         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
27252         * lib/fpurge.c (fpurge): Likewise.
27253         * lib/freading.c (freading): Likewise.
27254         * lib/fseeko.c (rpl_fseeko): Likewise.
27255         * lib/fseterr.c (fseterr): Likewise.
27256         * lib/fwriting.c (fwriting): Likewise.
27257         * tests/test-fflush.c (main): Avoid a failure on uClibc.
27258
27259 2007-06-08  Bruno Haible  <bruno@clisp.org>
27260
27261         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
27262         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
27263         * modules/gettext (Files): Add m4/intlmacosx.m4.
27264
27265 2007-06-07  Bruno Haible  <bruno@clisp.org>
27266
27267         * modules/localename-tests: New file.
27268         * tests/test-localename.c: New file.
27269
27270         New module 'localename'.
27271         * lib/localename.h: New file.
27272         * lib/localename.c: New file, from GNU gettext.
27273         * m4/localename.m4: New file.
27274         * modules/localename: New file.
27275
27276 2007-06-07  Bruno Haible  <bruno@clisp.org>
27277
27278         Work around the lack of <wchar.h> on some builds of uClibc.
27279         * doc/headers/wchar.texi: Update.
27280         * lib/wchar_.h: Include <wchar.h> only if it exists.
27281         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
27282         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
27283         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
27284         doesn't exist.
27285         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
27286         * modules/mbfile (Depends-on): Add wchar.
27287         * modules/mbiter (Depends-on): Likewise.
27288         * modules/mbuiter (Depends-on): Likewise.
27289         Reported by Simon Josefsson.
27290
27291 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
27292
27293         Work around problem reported by Steven M. Schweda in
27294         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
27295         Tru64 5.1B with the Compaq compiler environment installed declares
27296         an 'isblank' function but does not define it in the C library.
27297         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
27298         * lib/regex_internal.h (isblank): Likewise.
27299         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
27300         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
27301
27302 2007-06-05  Bruno Haible  <bruno@clisp.org>
27303
27304         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
27305         ia64.
27306         * modules/printf-safe: New file.
27307         * modules/fprintf-posix (Depends-on): Add printf-safe.
27308         * modules/printf-posix (Depends-on): Likewise.
27309         * modules/snprintf-posix (Depends-on): Likewise.
27310         * modules/sprintf-posix (Depends-on): Likewise.
27311         * modules/vasnprintf-posix (Depends-on): Likewise.
27312         * modules/vasprintf-posix (Depends-on): Likewise.
27313         * modules/vfprintf-posix (Depends-on): Likewise.
27314         * modules/vprintf-posix (Depends-on): Likewise.
27315         * modules/vsnprintf-posix (Depends-on): Likewise.
27316         * modules/vsprintf-posix (Depends-on): Likewise.
27317         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
27318         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
27319         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
27320         "no" on i386, x86_64, ia64.
27321         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
27322         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27323         on i386, x86_64, ia64.
27324         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
27325         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27326         on i386, x86_64, ia64.
27327         * tests/test-vasnprintf-posix.c: Include float.h.
27328         (LDBL80_WORDS): New macro.
27329         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27330         on i386, x86_64, ia64.
27331         * tests/test-vasprintf-posix.c: Include float.h.
27332         (LDBL80_WORDS): New macro.
27333         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27334         on i386, x86_64, ia64.
27335         * tests/test-snprintf-posix.c: Include float.h.
27336         * tests/test-sprintf-posix.c: Likewise.
27337         * tests/test-vsnprintf-posix.c: Likewise.
27338         * tests/test-vsprintf-posix.c: Likewise.
27339
27340 2007-06-05  Bruno Haible  <bruno@clisp.org>
27341
27342         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
27343         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
27344         non-IEEE numbers on i386, x86_64, ia64.
27345         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
27346         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
27347         * tests/test-isnanl.h: Include float.h.
27348         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
27349
27350 2007-06-05  Bruno Haible  <bruno@clisp.org>
27351
27352         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
27353         also the %a / %A. Handle the %a / %A code before this extra handling.
27354
27355 2007-06-05  Bruno Haible  <bruno@clisp.org>
27356
27357         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
27358         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
27359
27360 2007-06-05  Bruno Haible  <bruno@clisp.org>
27361
27362         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
27363         typo in variable name.
27364
27365 2007-06-05  Eric Blake  <ebb9@byu.net>
27366
27367         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
27368         Reported by Simon Josefsson.
27369
27370 2007-06-04  Bruno Haible  <bruno@clisp.org>
27371
27372         Avoid test failures on some PowerPC platforms.
27373         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
27374         Define differently for PowerPC.
27375         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
27376         Reported by Gary V. Vaughan <gary@gnu.org>.
27377
27378 2007-06-02  Bruno Haible  <bruno@clisp.org>
27379
27380         Fix test-stdint failure on FreeBSD/ia64.
27381         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
27382         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
27383         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
27384         * doc/headers/stdint.texi: Update.
27385
27386 2007-06-01  Bruno Haible  <bruno@clisp.org>
27387
27388         * tests/test-binary-io.c (main): Pass a third argument to open().
27389         Reported by Gary V. Vaughan <gary@gnu.org>.
27390
27391 2007-06-01  Bruno Haible  <bruno@clisp.org>
27392
27393         * doc/functions/frexpl.texi: Update for mingw.
27394
27395 2007-06-01  Bruno Haible  <bruno@clisp.org>
27396
27397         * tests/test-lseek.c (main): Disable test of errno for invalid third
27398         argument.
27399         * doc/functions/lseek.texi: Update.
27400         Reported by Gary V. Vaughan <gary@gnu.org>.
27401
27402 2007-05-28  Bruno Haible  <bruno@clisp.org>
27403
27404         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
27405
27406 2007-05-31  Eric Blake  <ebb9@byu.net>
27407
27408         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
27409         cross compiling.
27410
27411 2007-05-30  Eric Blake  <ebb9@byu.net>
27412         and Bruno Haible  <bruno@clisp.org>
27413
27414         Work around mingw test failures exposed by m4-1.4.9b.
27415         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
27416         * tests/test-unistd.c: Disable uid_t and git_t tests for the
27417         moment.
27418
27419 2007-05-30  Bruno Haible  <bruno@clisp.org>
27420
27421         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
27422         assuming that they are closed. Needed on HP-UX 11.
27423
27424 2007-05-29  Bruno Haible  <bruno@clisp.org>
27425
27426         Fix a problem with #include_next.
27427         * lib/dirent_.h: Split the double-inclusion guard.
27428         * lib/fcntl_.h: Likewise.
27429         * lib/float_.h: Likewise.
27430         * lib/iconv_.h: Likewise.
27431         * lib/inttypes_.h: Likewise.
27432         * lib/locale_.h: Likewise.
27433         * lib/math_.h: Likewise.
27434         * lib/netinet_in_.h: Likewise.
27435         * lib/search_.h: Likewise.
27436         * lib/signal_.h: Likewise.
27437         * lib/stdint_.h: Likewise.
27438         * lib/stdio_.h: Likewise.
27439         * lib/stdlib_.h: Likewise.
27440         * lib/string_.h: Likewise.
27441         * lib/sys_select_.h: Likewise.
27442         * lib/sys_socket_.h: Likewise.
27443         * lib/sys_stat_.h: Likewise.
27444         * lib/sys_time_.h: Likewise.
27445         * lib/sysexits_.h: Likewise.
27446         * lib/time_.h: Likewise.
27447         * lib/unistd_.h: Likewise.
27448         * lib/wchar_.h: Likewise.
27449         * lib/wctype_.h: Likewise.
27450
27451 2007-05-29  Bruno Haible  <bruno@clisp.org>
27452
27453         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
27454         for the moment.
27455
27456 2007-05-29  Bruno Haible  <bruno@clisp.org>
27457
27458         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
27459         invocation.
27460         Reported by Eric Blake.
27461
27462 2007-05-29  Bruno Haible  <bruno@clisp.org>
27463
27464         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
27465         compiling case.
27466
27467 2007-05-29  Eric Blake  <ebb9@byu.net>
27468             Bruno Haible  <bruno@clisp.org>
27469
27470         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
27471         cross compiles.
27472
27473 2007-05-28  Eric Blake  <ebb9@byu.net>
27474
27475         * modules/closein-tests (test_closein_LDADD): Support test on
27476         cygwin with libtool.
27477
27478 2007-05-28  Bruno Haible  <bruno@clisp.org>
27479
27480         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
27481         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
27482         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
27483         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
27484         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
27485         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
27486         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
27487         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
27488         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
27489
27490 2007-05-28  Eric Blake  <ebb9@byu.net>
27491
27492         Unconditionally include <config.h> in unit tests.
27493         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
27494         * tests/test-allocsa.c, tests/test-arcfour.c,
27495         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
27496         tests/test-array_list.c, tests/test-array_oset.c,
27497         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
27498         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
27499         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
27500         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
27501         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
27502         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
27503         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
27504         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
27505         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
27506         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
27507         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
27508         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
27509         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
27510         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
27511         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
27512         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
27513         test-md5.c, test-memmem.c, test-printf-posix.c,
27514         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
27515         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
27516         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
27517         test-strcasestr.c, test-striconv.c, test-striconveh.c,
27518         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
27519         test-vasnprintf-posix2.c, test-vasnprintf.c,
27520         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
27521         test-vfprintf-posix.c, test-vprintf-posix.c,
27522         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
27523         test-xvasprintf.c: Likewise.
27524
27525 2007-05-28  Bruno Haible  <bruno@clisp.org>
27526
27527         * gnulib-tool (func_import): Remember the --with-tests command-line
27528         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
27529         Reported by Eric Blake.
27530
27531 2007-05-28  Bruno Haible  <bruno@clisp.org>
27532
27533         * modules/ftell-tests: New file.
27534         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
27535         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
27536
27537         * lib/ftell.c: New file.
27538         * modules/ftell: New file.
27539         * m4/ftell.m4: New file.
27540         * doc/functions/ftell.texi: Update.
27541         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
27542         REPLACE_FTELL.
27543         * lib/stdio_.h (rpl_ftell): New declaration.
27544         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
27545         REPLACE_FTELL.
27546
27547 2007-05-28  Eric Blake  <ebb9@byu.net>
27548
27549         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
27550
27551 2007-05-28  Bruno Haible  <bruno@clisp.org>
27552
27553         * modules/fseek-tests: New file.
27554         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
27555         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
27556
27557         * lib/fseek.c: New file.
27558         * modules/fseek: New file.
27559         * m4/fseek.m4: New file.
27560         * doc/functions/fseek.texi: Update.
27561         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
27562         REPLACE_FSEEK.
27563         * lib/stdio_.h (rpl_fseek): New declaration.
27564         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
27565         REPLACE_FSEEK.
27566
27567 2007-05-28  Bruno Haible  <bruno@clisp.org>
27568
27569         * lib/stdio_.h (fflush): More comments.
27570
27571 2007-05-28  Bruno Haible  <bruno@clisp.org>
27572
27573         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
27574         runtime test.
27575
27576 2007-05-28  Eric Blake  <ebb9@byu.net>
27577
27578         Improve lseek module.
27579         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
27580         * lib/unistd_.h (lseek): Scale back link warning message.
27581         * tests/test-lseek.c: Beef up test.
27582         * tests/test-lseek.sh: Exercise more facets of lseek.
27583         Reported by Bruno Haible.
27584
27585 2007-05-28  Bruno Haible  <bruno@clisp.org>
27586
27587         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
27588         to define.
27589
27590 2007-05-27  Bruno Haible  <bruno@clisp.org>
27591
27592         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
27593
27594 2007-05-27  Bruno Haible  <bruno@clisp.org>
27595
27596         * modules/openmp: New file.
27597         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
27598         Noah Misch.
27599
27600 2007-05-26  Bruno Haible  <bruno@clisp.org>
27601
27602         * modules/chdir-long (Depends-on): Add fchdir.
27603         * modules/chdir-safer (Depends-on): Likewise.
27604         * modules/fts (Depends-on): Likewise.
27605         * modules/fts-lgpl (Depends-on): Likewise.
27606         * modules/openat (Depends-on): Likewise.
27607         * modules/savewd (Depends-on): Likewise.
27608
27609 2007-05-24  Eric Blake  <ebb9@byu.net>
27610
27611         Fix lseek on mingw.
27612         * modules/lseek: New module.
27613         * m4/lseek.m4: New file.
27614         * lib/lseek.c: New file.
27615         * modules/lseek-tests: New file.
27616         * tests/test-lseek.c: New file.
27617         * tests/test-lseek.sh: New file.
27618         * MODULES.html.sh: Document lseek module.
27619         * modules/fflush (Depends-on): Add lseek, fseeko.
27620         * modules/fseeko (Depends-on): Likewise.
27621         * modules/ftello (Depends-on): Likewise.
27622         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
27623         broken.
27624         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
27625         broken.
27626         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
27627         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
27628         * lib/ftello.c (rpl_ftello): Likewise.
27629         * tests/test-fseeko.c (main): Test this.
27630         * tests/test-fseeko.sh: Likewise.
27631         * tests/test-ftello.c (main): Likewise.
27632         * tests/test-ftello.sh: Likewise.
27633         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
27634         implies replacing fseek.
27635         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
27636         HAVE_FTELLO.
27637         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
27638         * modules/unistd (Makefile.am): Likewise.
27639         * lib/unistd_.h (lseek): Declare a replacement.
27640         * doc/functions/lseek.texi (lseek): Document this fix.
27641         * doc/functions/fseek.texi (fseek): Likewise.
27642         * doc/functions/ftell.texi (ftell): Likewise.
27643
27644 2007-05-24  Bruno Haible  <bruno@clisp.org>
27645
27646         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
27647         in the printed representation of a NaN.
27648         * tests/test-vasprintf-posix.c (test_function): Likewise.
27649         * tests/test-snprintf-posix.h (test_function): Likewise.
27650         * tests/test-sprintf-posix.h (test_function): Likewise.
27651         Reported by Eric Blake.
27652
27653 2007-05-23  Eric Blake  <ebb9@byu.net>
27654
27655         Fix fseeko/ftello on cygwin 1.5.24.
27656         * doc/functions/fseeko.texi (fseeko): Document the fix.
27657         * doc/functions/ftello.texi (ftello): Document the fix.
27658         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
27659         * doc/functions/stdout.text (stdout): New file.
27660         * doc/functions/stderr.text (stderr): New file.
27661         * doc/gnulib.texi (Function Substitutes): Use new files.
27662         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
27663         prior to 1.7.0.
27664         * tests/test-ftello.c (main): Likewise for ftello.
27665         * tests/test-fseeko.sh: New file.
27666         * tests/test-ftello.sh: New file.
27667         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
27668         with seekable stdin.
27669         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
27670         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
27671         (gl_REPLACE_FSEEKO): New macro.
27672         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
27673         * modules/fseeko (Files): Distribute fseeko.c.
27674         * modules/ftello (Files): Distribute ftello.c.
27675         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
27676         mode.
27677         * lib/ftello.c (rpl_ftello): New file.
27678         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
27679         fseeko, ftello.
27680         (gl_STDIN_LARGE_OFFSET): New macro.
27681         * modules/stdio (Makefile.am): Perform the replacement.
27682         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
27683
27684 2007-05-23  Bruno Haible  <bruno@clisp.org>
27685
27686         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
27687         GNULIB_POSIXCHECK is defined.
27688
27689 2007-05-21  Bruno Haible  <bruno@clisp.org>
27690
27691         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
27692         Check also the output for NaN arguments. When cross-compiling, guess
27693         no on IRIX.
27694         * lib/vasnprintf.c: Update comments.
27695         * tests/test-vasnprintf-posix.c (strisnan): New function.
27696         (test_function): Use it.
27697         * tests/test-vasprintf-posix.c (strisnan): New function.
27698         (test_function): Use it.
27699         * tests/test-snprintf-posix.h (strisnan): New function.
27700         (test_function): Use it.
27701         * tests/test-sprintf-posix.h (strisnan): New function.
27702         (test_function): Use it.
27703         Reported by Eric Blake.
27704
27705 2007-05-20  Bruno Haible  <bruno@clisp.org>
27706
27707         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
27708         numbers that fails on BeOS.
27709         * doc/functions/frexpl.texi: Update.
27710
27711 2007-05-20  Jim Meyering  <jim@meyering.net>
27712
27713         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
27714         forced upon us by glibc-2.6.
27715
27716 2007-05-20  Bruno Haible  <bruno@clisp.org>
27717
27718         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
27719         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
27720         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
27721         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
27722         NEED_PRINTF_INFINITE.
27723         (is_infinitel): New function.
27724         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
27725         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
27726         gl_PREREQ_VASNPRINTF_INFINITE.
27727         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
27728         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27729         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
27730         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
27731         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
27732         gl_PREREQ_VASNPRINTF_INFINITE.
27733         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27734         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27735         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27736         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27737         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27738         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27739         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27740         * doc/functions/fprintf.texi: Update.
27741         * doc/functions/printf.texi: Update.
27742         * doc/functions/snprintf.texi: Update.
27743         * doc/functions/sprintf.texi: Update.
27744         * doc/functions/vfprintf.texi: Update.
27745         * doc/functions/vprintf.texi: Update.
27746         * doc/functions/vsnprintf.texi: Update.
27747         * doc/functions/vsprintf.texi: Update.
27748
27749 2007-05-20  Bruno Haible  <bruno@clisp.org>
27750
27751         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
27752         was not found in libc.
27753         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
27754
27755 2007-05-20  Bruno Haible  <bruno@clisp.org>
27756
27757         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
27758         printed as "-nan" instead of "nan".
27759         * tests/test-vasprintf-posix.c (test_function): Likewise.
27760         * tests/test-snprintf-posix.h (test_function): Likewise.
27761         * tests/test-sprintf-posix.h (test_function): Likewise.
27762         Needed for HP-UX 11.
27763
27764 2007-05-20  Jim Meyering  <jim@meyering.net>
27765
27766         Fix buggy test for the fchownat-deref bug.
27767         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
27768         symlink required for the run-test.  Without it, this test would
27769         always declare that fchownat doesn't work, and client code would
27770         unnecessarily use the replacement function with fixed libc.
27771         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
27772         Reported by Greg Schafer.
27773
27774 2007-05-19  Bruno Haible  <bruno@clisp.org>
27775
27776         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
27777         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
27778         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
27779         Needed for IRIX 6.5 and Solaris 2.5.1.
27780
27781 2007-05-19  Bruno Haible  <bruno@clisp.org>
27782
27783         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
27784         (test_function): Skip tests involving -0.0 on platforms where
27785         -0.0 = 0.0.
27786         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
27787         (test_function): Skip tests involving -0.0 on platforms where
27788         -0.0 = 0.0.
27789         * tests/test-snprintf-posix.h (have_minus_zero): New function.
27790         (test_function): Skip tests involving -0.0 on platforms where
27791         -0.0 = 0.0.
27792         * tests/test-sprintf-posix.h (have_minus_zero): New function.
27793         (test_function): Skip tests involving -0.0 on platforms where
27794         -0.0 = 0.0.
27795         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
27796         tests.
27797         * tests/test-printf-posix.h (test_function): Likewise.
27798         * tests/test-printf-posix.output: Remove all -0.0 related results.
27799         Needed for IRIX 6.5.
27800
27801 2007-05-19  Bruno Haible  <bruno@clisp.org>
27802
27803         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
27804         printed as "nan0x7fffffff" instead of "nan".
27805         * tests/test-vasprintf-posix.c (test_function): Likewise.
27806         * tests/test-snprintf-posix.h (test_function): Likewise.
27807         * tests/test-sprintf-posix.h (test_function): Likewise.
27808         * tests/test-fprintf-posix.h (NaN): Remove macro.
27809         (test_function): Remove all NaN related tests.
27810         * tests/test-printf-posix.h (NaN): Remove macro.
27811         (test_function): Remove all NaN related tests.
27812         * tests/test-printf-posix.output: Remove all NaN related results.
27813         Needed for IRIX 6.5.
27814
27815 2007-05-19  Bruno Haible  <bruno@clisp.org>
27816
27817         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
27818         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
27819
27820 2007-05-19  Bruno Haible  <bruno@clisp.org>
27821
27822         * lib/float_.h: New file.
27823         * m4/float_h.m4: New file.
27824         * modules/float: New file.
27825         * modules/isnanl (Dependencies): Add float.
27826         * modules/isnanl-nolibm (Dependencies): Likewise.
27827         * modules/mathl (Dependencies): Likewise.
27828         * modules/printf-frexpl (Dependencies): Likewise.
27829         * modules/signbit (Dependencies): Likewise.
27830         * modules/vasnprintf (Dependencies): Likewise.
27831         * doc/headers/float.texi: Update.
27832
27833 2007-05-19  Jim Meyering  <jim@meyering.net>
27834
27835         * lib/utimens.c (gl_futimens): Rename from futimens,
27836         now that glibc-2.6 declares futimens.
27837         * lib/utimens.h: Likewise.
27838
27839 2007-05-19  Bruno Haible  <bruno@clisp.org>
27840
27841         Avoid test failures on mingw.
27842         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
27843         * tests/test-printf-posix.sh: Likewise.
27844         * tests/test-vfprintf-posix.sh: Likewise.
27845         * tests/test-vprintf-posix.sh: Likewise.
27846
27847 2007-05-19  Bruno Haible  <bruno@clisp.org>
27848
27849         Fix *printf result for NaN, Inf, -0.0 on mingw.
27850         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
27851         * lib/vasnprintf.c: Include math.h and isnan.h.
27852         (is_infinite_or_zero): New function.
27853         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
27854         values in the %f, %F, %e, %E, %g, %G directives.
27855         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
27856         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27857         gl_PRINTF_INFINITE and test its result. Invoke
27858         gl_PREREQ_VASNPRINTF_INFINITE.
27859         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27860         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27861         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27862         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27863         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27864         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27865         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27866         * doc/functions/fprintf.texi: Update.
27867         * doc/functions/printf.texi: Update.
27868         * doc/functions/snprintf.texi: Update.
27869         * doc/functions/sprintf.texi: Update.
27870         * doc/functions/vfprintf.texi: Update.
27871         * doc/functions/vprintf.texi: Update.
27872         * doc/functions/vsnprintf.texi: Update.
27873         * doc/functions/vsprintf.texi: Update.
27874
27875 2007-05-19  Bruno Haible  <bruno@clisp.org>
27876
27877         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
27878         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
27879         Instead of multiplying with 10^k, set extra_zeroes to k.
27880         (scale10_round_long_double): Remove function.
27881
27882 2007-05-18  Bruno Haible  <bruno@clisp.org>
27883
27884         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
27885         introduced on 2007-05-06.
27886
27887 2007-05-18  Bruno Haible  <bruno@clisp.org>
27888
27889         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
27890         %g directives.
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
27895 2007-05-18  Bruno Haible  <bruno@clisp.org>
27896
27897         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
27898         (strmatch): New function.
27899         (test_function): Test the %f directive on numbers of various exponents.
27900         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
27901         (strmatch): New function.
27902         (test_function): Test the %f directive on numbers of various exponents.
27903         * tests/test-snprintf-posix.h (strmatch): New function.
27904         (test_function): Test the %f directive on numbers of various exponents.
27905         * tests/test-sprintf-posix.h (strmatch): New function.
27906         (test_function): Test the %f directive on numbers of various exponents.
27907         * tests/test-snprintf-posix.c (SIZEOF): New macro.
27908         * tests/test-sprintf-posix.c (SIZEOF): New macro.
27909         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
27910         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
27911
27912 2007-05-18  Bruno Haible  <bruno@clisp.org>
27913
27914         Add support for 'long double' number output.
27915         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
27916         * lib/vasnprintf.c: Include math.h and float+.h.
27917         (mp_limb_t): New type.
27918         (GMP_LIMB_BITS): New macro.
27919         (mp_twolimb_t): New type.
27920         (GMP_TWOLIMB_BITS): New macro.
27921         (mpn_t): New type.
27922         (multiply, divide, convert_to_decimal, decode_long_double,
27923         scale10_round_long_double, scale10_round_decimal_long_double,
27924         floorlog10l): New functions.
27925         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
27926         for the %f, %F, %e, %E, %g, %G directives.
27927         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
27928         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27929         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
27930         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
27931         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27932         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27933         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27934         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27935         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27936         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27937         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27938         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
27939         * modules/snprintf-posix (Depends-on): Likewise.
27940         * modules/sprintf-posix (Depends-on): Likewise.
27941         * modules/vasnprintf-posix (Depends-on): Likewise.
27942         * modules/vasprintf-posix (Depends-on): Likewise.
27943         * modules/vfprintf-posix (Depends-on): Likewise.
27944         * modules/vsnprintf-posix (Depends-on): Likewise.
27945         * modules/vsprintf-posix (Depends-on): Likewise.
27946         * modules/vasnprintf (Files): Add lib/float+.h.
27947         * doc/functions/fprintf.texi: Update.
27948         * doc/functions/printf.texi: Update.
27949         * doc/functions/snprintf.texi: Update.
27950         * doc/functions/sprintf.texi: Update.
27951         * doc/functions/vfprintf.texi: Update.
27952         * doc/functions/vprintf.texi: Update.
27953         * doc/functions/vsnprintf.texi: Update.
27954         * doc/functions/vsprintf.texi: Update.
27955
27956 2007-05-18  Bruno Haible  <bruno@clisp.org>
27957
27958         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
27959
27960 2007-05-18  Bruno Haible  <bruno@clisp.org>
27961
27962         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
27963         for printing 64-bit integers. Needed for mingw.
27964
27965 2007-05-18  Bruno Haible  <bruno@clisp.org>
27966
27967         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
27968         gl_FUNC_FREXPL_WORKS.
27969         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
27970
27971 2007-05-18  Bruno Haible  <bruno@clisp.org>
27972
27973         * modules/frexpl-nolibm-tests: New file.
27974
27975         * modules/frexpl-nolibm: New file.
27976         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
27977
27978 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
27979
27980         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
27981         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
27982         GCC 4.2, which otherwise issues a lot of warnings.
27983         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
27984         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
27985         Likewise.
27986         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
27987         * modules/iconv_open (iconv.h): Likewise.
27988         * modules/locale (locale.h): Likewise.
27989         * modules/netinet_in (netinet/in.h): Likewise.
27990         * modules/sys_select (sys_select.h): Likewise.
27991         * modules/sys_socket (sys/socket.h): Likewise.
27992         * modules/sys_stat (sys/stat.h): Likewise.
27993         * modules/sysexits (sysexits.h): Likewise.
27994         * modules/unistd (unistd.h): Likewise.
27995
27996 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27997
27998         * modules/closein-tests (Makefile.am): Distribute
27999         `test-closein.sh'.
28000
28001 2007-05-17  Bruno Haible  <bruno@clisp.org>
28002
28003         * tests/test-printf-posix.output: Renamed from
28004         tests/test-fprintf-posix.out.
28005         * modules/fprintf-posix-tests: Update.
28006         * modules/printf-posix-tests: Update.
28007         * modules/vfprintf-posix-tests: Update.
28008         * modules/vprintf-posix-tests: Update.
28009         * tests/test-fprintf-posix.sh: Update.
28010         * tests/test-printf-posix.sh: Update.
28011         * tests/test-vfprintf-posix.sh: Update.
28012         * tests/test-vprintf-posix.sh: Update.
28013         Reported by Ralf Wildenhues.
28014
28015 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
28016
28017         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
28018         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
28019         GCC 4.2, which otherwise issues a lot of warnings.
28020         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
28021         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
28022         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
28023         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
28024         it should no longer be needed.
28025         * lib/string_.h: Likewise.
28026         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
28027         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
28028         * modules/inttypes (inttypes.h): Likewise.
28029         * modules/math (math.h): Likewise.
28030         * modules/search (search.h): Likewise.
28031         * modules/signal (signal.h): Likewise.
28032         * modules/stdint (stdint.h): Likewise.
28033         * modules/stdio (stdio.h): Likewise.
28034         * modules/stdlib (stdlib.h): Likewise.
28035         * modules/string (string.h): Likewise.
28036         * modules/sys_time (sys/time.h): Likewise.
28037         * modules/time (time.h): Likewise.
28038         * modules/wchar (wchar.h): Likewise.
28039         * modules/wctype (wtype.h): Likewise.
28040
28041 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
28042
28043         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
28044
28045 2007-05-13  Bruno Haible  <bruno@clisp.org>
28046
28047         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
28048         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
28049         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
28050         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
28051         (gl_PREREQ_STRTOK_R): Don't require it here.
28052
28053 2007-05-13  Bruno Haible  <bruno@clisp.org>
28054
28055         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
28056         when used in C++ mode.
28057
28058 2007-05-12  Bruno Haible  <bruno@clisp.org>
28059
28060         * lib/linebuffer.h: Tweak doc.
28061         * lib/linebuffer.c: Likewise.
28062
28063 2007-05-12  James Youngman  <jay@gnu.org>
28064
28065         * lib/linebuffer.c (readlinebuffer_delim): New function,
28066         like readlinebuffer, but use a caller-specified delimiter.
28067         (readlinebuffer): Just call readlinebuffer_delim with '\n'
28068         as the delimiter.
28069         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
28070
28071 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
28072
28073         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
28074         * modules/openat (Files): Remove openat-die.c.
28075         (Depends-on): Add openat-die.
28076         * modules/openat-die: New module.
28077
28078 2007-05-06  Bruno Haible  <bruno@clisp.org>
28079
28080         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
28081         Update with info about Cygwin.
28082         * doc/functions/fprintf.texi: Update.
28083         * doc/functions/printf.texi: Update.
28084         * doc/functions/snprintf.texi: Update.
28085         * doc/functions/sprintf.texi: Update.
28086         * doc/functions/vfprintf.texi: Update.
28087         * doc/functions/vprintf.texi: Update.
28088         * doc/functions/vsnprintf.texi: Update.
28089         * doc/functions/vsprintf.texi: Update.
28090         Reported by Eric Blake.
28091
28092 2007-05-06  Bruno Haible  <bruno@clisp.org>
28093
28094         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
28095         padding ourselves for the floating-point directives.
28096         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
28097         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
28098         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28099         gl_PRINTF_FLAG_ZERO and test its result. Invoke
28100         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
28101         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28102         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
28103         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28104         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28105         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28106         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28107         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28108         * tests/test-snprintf-posix.h (test_function): Also check the width
28109         and some flags in the %f directive.
28110         * tests/test-sprintf-posix.h (test_function): Likewise.
28111         * tests/test-vasnprintf-posix.c (test_function): Likewise.
28112         * tests/test-vasprintf-posix.c (test_function): Likewise.
28113         * doc/functions/fprintf.texi: Update.
28114         * doc/functions/printf.texi: Update.
28115         * doc/functions/snprintf.texi: Update.
28116         * doc/functions/sprintf.texi: Update.
28117         * doc/functions/vfprintf.texi: Update.
28118         * doc/functions/vprintf.texi: Update.
28119         * doc/functions/vsnprintf.texi: Update.
28120         * doc/functions/vsprintf.texi: Update.
28121
28122 2007-05-06  Bruno Haible  <bruno@clisp.org>
28123
28124         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
28125         pass the ' flag character to sprintf or snprintf.
28126         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
28127         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
28128         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28129         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
28130         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
28131         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28132         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
28133         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28134         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28135         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28136         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28137         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28138         * tests/test-snprintf-posix.h (test_function): Also check the grouping
28139         flag.
28140         * tests/test-sprintf-posix.h (test_function): Likewise.
28141         * tests/test-vasnprintf-posix.c (test_function): Likewise.
28142         * tests/test-vasprintf-posix.c (test_function): Likewise.
28143         * doc/functions/fprintf.texi: Update.
28144         * doc/functions/printf.texi: Update.
28145         * doc/functions/snprintf.texi: Update.
28146         * doc/functions/sprintf.texi: Update.
28147         * doc/functions/vfprintf.texi: Update.
28148         * doc/functions/vprintf.texi: Update.
28149         * doc/functions/vsnprintf.texi: Update.
28150         * doc/functions/vsprintf.texi: Update.
28151
28152 2007-05-01  Bruno Haible  <bruno@clisp.org>
28153
28154         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
28155
28156 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
28157
28158         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
28159         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
28160
28161 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
28162
28163         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
28164         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
28165         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
28166
28167 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
28168
28169         * lib/argp-help.c (struct hol_entry): New member `ord'.
28170         (HOL_ENTRY_PTRCMP): Use ord for comparison
28171         (hol_sort): Initialize ord.
28172
28173 2007-05-01  Bruno Haible  <bruno@clisp.org>
28174
28175         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
28176         Reported by Eric Blake.
28177         * doc/gnulib.texi (Function Substitutes): Update.
28178
28179 2007-05-01  Bruno Haible  <bruno@clisp.org>
28180
28181         * doc/functions.texi: Remove file, now redundant through
28182         doc/functions/*.texi.
28183
28184 2007-05-01  Bruno Haible  <bruno@clisp.org>
28185
28186         * modules/argp (Depends-on): Add sleep.
28187
28188 2007-05-01  Bruno Haible  <bruno@clisp.org>
28189
28190         * modules/sleep-tests: New file.
28191         * tests/test-sleep.c: New file.
28192
28193         * modules/sleep: New file.
28194         * lib/sleep.c: New file.
28195         * m4/sleep.m4: New file.
28196         * lib/unistd_.h (sleep): New declaration.
28197         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
28198         HAVE_SLEEP.
28199         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
28200         * doc/functions/sleep.texi: Document the sleep module.
28201
28202 2007-05-01  Bruno Haible  <bruno@clisp.org>
28203
28204         * lib/sigprocmask.h: Remove file.
28205         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
28206         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
28207         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
28208         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
28209         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
28210         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
28211         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
28212         HAVE_SIGSET_T as a shell variable.
28213         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
28214         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
28215         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
28216         (Depends-on): Add signal. Remove verify.
28217         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
28218         (Include): Mention <signal.h> instead of sigprocmask.h.
28219         * NEWS: Mention the change.
28220         * lib/fatal-signal.c: Don't include sigprocmask.h.
28221
28222 2007-05-01  Bruno Haible  <bruno@clisp.org>
28223
28224         * modules/signal: New file.
28225         * lib/signal_.h: New file.
28226         * m4/signal_h.m4: New file.
28227
28228 2007-05-01  Bruno Haible  <bruno@clisp.org>
28229
28230         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
28231         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
28232         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
28233         HAVE_WCTYPE_CTMP_BUG into wctype.h.
28234
28235 2007-05-01  Bruno Haible  <bruno@clisp.org>
28236
28237         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
28238         configure time.
28239         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
28240         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
28241         * modules/sys_stat (Makefile.am): Substitute their values into
28242         sys/stat.h.
28243
28244 2007-05-01  Bruno Haible  <bruno@clisp.org>
28245
28246         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
28247         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
28248         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
28249
28250 2007-05-01  Bruno Haible  <bruno@clisp.org>
28251
28252         * doc/header/assert.texi: Undo last change: don't mention the gnulib
28253         'assert' module here.
28254
28255 2007-05-01  Bruno Haible  <bruno@clisp.org>
28256
28257         * doc/functions/*.texi: New files.
28258         * doc/functions/google-ranking.txt: New file.
28259         * doc/gnulib.texi (Function Substitutes): New chapter.
28260         (ctime, inet_ntoa): Remove sections.
28261         * doc/ctime.texi: Remove file.
28262         * doc/inet_ntoa.texi: Remove file.
28263         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
28264         dependencies.
28265         (%.info): New rule, specifying a --reference-limit.
28266
28267 2007-05-01  Bruno Haible  <bruno@clisp.org>
28268
28269         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
28270
28271 2007-05-01  Bruno Haible  <bruno@clisp.org>
28272
28273         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
28274         the portability of 'mkdir' to mingw systems.
28275
28276 2007-05-01  Bruno Haible  <bruno@clisp.org>
28277
28278         * doc/headers/google-ranking.txt: New file.
28279
28280 2007-04-30  Eric Blake  <ebb9@byu.net>
28281
28282         Prefer fseeko to fseek.
28283         * modules/getpass (Depends-on): Add fseeko.
28284         * lib/getpass.c (getpass): Use fseeko, not fseek.
28285
28286 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
28287
28288         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
28289         assumes the sorting is stable, while most qsort implementations
28290         are not.  Use argument addresses to ensure they never compare as
28291         equal.
28292
28293         * tests/test-argp-2.sh (usage-indent test): Fix output
28294         (func_compare): Restore diff options
28295         * tests/test-argp.c: Restore #include "progname.h"
28296
28297 2007-04-29  Bruno Haible  <bruno@clisp.org>
28298
28299         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
28300         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28301         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
28302         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28303         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
28304         (configure.ac): Define CHECK_SNPRINTF_POSIX.
28305         (TESTS, check_PROGRAMS): Add test-snprintf.
28306         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
28307         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
28308         (TESTS, check_PROGRAMS): Add test-vsnprintf.
28309         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
28310         assertions that fail on HP-UX, OSF/1, or IRIX.
28311         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
28312
28313 2007-04-29  Bruno Haible  <bruno@clisp.org>
28314
28315         * MODULES.html.sh (posix_functions): Remove 'contents'.
28316
28317 2007-04-29  Karl Berry  <karl@gnu.org>
28318
28319         * config/srclist.txt (gendocs_template_min): new entry.
28320
28321 2007-04-29  Bruno Haible  <bruno@clisp.org>
28322
28323         Work around fpurge bug on BSD systems.
28324         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
28325         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
28326         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
28327         fpurge to rpl_fpurge if the system already has this function.
28328         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
28329         the case where the system already has this function. Correct invariants
28330         on BSD systems.
28331         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
28332         BSD systems.
28333
28334 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
28335
28336         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
28337         proposed by Sven Verdoolaege.
28338
28339         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
28340         options.
28341         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
28342         (usage and help tests): Update
28343
28344 2007-04-29  Bruno Haible  <bruno@clisp.org>
28345
28346         * tests/test-fflush.c (main): Use a file of size 17, not 10.
28347         Print more information in case of failure. Disable a test on BeOS.
28348
28349 2007-04-29  Bruno Haible  <bruno@clisp.org>
28350
28351         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
28352         This helps debugging on systems on which no gdb is available.
28353
28354 2007-04-29  Bruno Haible  <bruno@clisp.org>
28355
28356         * lib/freading.h: Improve comments.
28357         * lib/fwriting.h: Likewise.
28358         * tests/test-freading.c (main): Don't check freading immediately after
28359         repositioning. Needed for glibc.
28360
28361 2007-04-29  Bruno Haible  <bruno@clisp.org>
28362
28363         * lib/freading.c (freading): Trivial simplification.
28364
28365 2007-04-28  Bruno Haible  <bruno@clisp.org>
28366
28367         * tests/test-fwriting.c (main): Also test the interaction between
28368         fflush and fwriting.
28369         * modules/fwriting-tests (Depends-on): Add fflush.
28370
28371         * tests/test-freading.c (main): Also test the interaction between
28372         fflush and freading.
28373         * modules/freading-tests (Depends-on): Add fflush.
28374
28375 2007-04-28  Bruno Haible  <bruno@clisp.org>
28376
28377         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
28378         fseeko and ftello.
28379         Suggested by Eric Blake.
28380
28381 2007-04-28  Jim Meyering  <jim@meyering.net>
28382
28383         Avoid false-negative in gl_STDINT_H's C99 conformance test.
28384         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
28385         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
28386
28387 2007-04-27  Eric Blake  <ebb9@byu.net>
28388
28389         * doc/headers/assert.texi (assert.h): Document assert module use.
28390
28391 2007-04-27  Bruno Haible  <bruno@clisp.org>
28392
28393         * doc/headers/*.texi: New files.
28394         * doc/gnulib.texi (Header File Substitutes): New chapter.
28395         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
28396         dependencies.
28397         (standards.info ,standards.html, standards.dvi): Update dependencies.
28398         (mostlyclean, clean): New targets.
28399
28400 2007-04-27  Bruno Haible  <bruno@clisp.org>
28401
28402         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
28403         * modules/sysexits (Files, Makefile.am): Update.
28404
28405         * lib/sys_socket_.h: Renamed from lib/socket_.h.
28406         * modules/sys_socket (Files, Makefile.am): Update.
28407
28408         * lib/sys_stat_.h: Renamed from lib/stat_.h.
28409         * modules/sys_stat (Files, Makefile.am): Update.
28410
28411 2007-04-27  Eric Blake  <ebb9@byu.net>
28412
28413         * lib/freading.h: Improve comments.
28414         * lib/fwriting.h: Likewise.
28415         * lib/fflush.c: Likewise.
28416
28417         Fix closein for mingw.
28418         * modules/closein-tests: Add tests for closein.
28419         * tests/test-closein.c: New file.
28420         * tests/test-closein.sh: Likewise.
28421         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
28422         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
28423
28424 2007-04-27  Bruno Haible  <bruno@clisp.org>
28425
28426         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
28427         version is < 6.
28428         * lib/math_.h [__DECC]: Likewise.
28429         * lib/stdio_.h [__DECC]: Likewise.
28430         * lib/stdlib_.h [__DECC]: Likewise.
28431         * lib/string_.h [__DECC]: Likewise.
28432         * lib/time_.h [__DECC]: Likewise.
28433         * lib/wchar_.h [__DECC]: Likewise.
28434         * lib/wctype_.h [__DECC]: Likewise.
28435
28436 2007-04-27  Bruno Haible  <bruno@clisp.org>
28437
28438         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
28439
28440 2007-04-27  Bruno Haible  <bruno@clisp.org>
28441
28442         * lib/fflush.c: Add comments.
28443         * modules/fpurge-tests (Depends-on): Add fflush.
28444         * modules/freadable-tests (Depends-on): Likewise.
28445         * modules/fwritable-tests (Depends-on): Likewise.
28446
28447 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
28448
28449         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
28450         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
28451         Report by Bruno Haible <bruno@clisp.org>.
28452
28453 2007-04-26  Eric Blake  <ebb9@byu.net>
28454
28455         Fix fflush on mingw.
28456         * modules/fflush (Depends-on): Add freading.
28457         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
28458         but unread data.
28459
28460 2007-04-26  Eric Blake  <ebb9@byu.net>
28461         and Bruno Haible  <bruno@clisp.org>
28462
28463         Implement freading and fwriting.
28464         * lib/freading.c: New file.
28465         * lib/freading.h: Likewise.
28466         * m4/freading.m4: Likewise.
28467         * modules/freading: Likewise.
28468         * modules/freading-tests: Likewise.
28469         * tests/test-freading.c: Likewise.
28470         * lib/fwriting.c: New file.
28471         * lib/fwriting.h: Likewise.
28472         * m4/fwriting.m4: Likewise.
28473         * modules/fwriting: Likewise.
28474         * modules/fwriting-tests: Likewise.
28475         * tests/test-fwriting.c: Likewise.
28476         * MODULES.html.sh (File stream based Input/Output): Mention them.
28477
28478 2007-04-26  Bruno Haible  <bruno@clisp.org>
28479
28480         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
28481         'long' when we assume it.
28482         Suggested by Eric Blake.
28483
28484 2007-04-26  Bruno Haible  <bruno@clisp.org>
28485
28486         Ensure fseeko, ftello are declared on glibc systems.
28487         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
28488         * modules/fseeko (configure.ac-early): Likewise.
28489         * modules/ftello (configure.ac-early): Likewise.
28490         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
28491         AC_FUNC_FSEEKO for this.
28492         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
28493         (gl_CHECK_FSEEKO): Remove macro.
28494
28495 2007-04-26  Bruno Haible  <bruno@clisp.org>
28496
28497         * tests/test-fflush.c (main): Also check the ftell result after
28498         fflush and fseek/fseeko.
28499         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
28500         file descriptor position cache in the stream.
28501         * lib/fseeko.c (rpl_fseeko): Likewise.
28502
28503 2007-04-26  Bruno Haible  <bruno@clisp.org>
28504
28505         * modules/fflush-tests (Depends-on): Add fseeko.
28506
28507 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
28508             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28509
28510         * lib/argz_.h: ensure error_t definition is obtained in same
28511         mechanism system argz.h would have.
28512         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
28513         argz facilities are known bad.  Err on the side of caution if
28514         cross-compiling.
28515
28516 2007-04-25  Eric Blake  <ebb9@byu.net>
28517
28518         * lib/fpurge.c (includes): Use stdlib.h for free.
28519         * tests/test-fflush.c (main): Also test fflush-fseeko.
28520
28521 2007-04-25  Bruno Haible  <bruno@clisp.org>
28522
28523         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
28524         * lib/fseeko.c: New file.
28525         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
28526         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
28527         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
28528         gl_FUNC_FSEEKO.
28529         (gl_FUNC_FSEEKO): Invoke it.
28530         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
28531         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
28532         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
28533
28534 2007-04-25  Bruno Haible  <bruno@clisp.org>
28535
28536         * modules/fflush (Depends-on): Add ftello.
28537
28538 2007-04-25  Bruno Haible  <bruno@clisp.org>
28539
28540         * modules/ftello-tests: New file.
28541         * tests/test-ftello.c: New file.
28542
28543         * modules/ftello: New file.
28544         * m4/ftello.m4: New file.
28545         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
28546         HAVE_FTELLO.
28547         * lib/stdio_.h (ftello): New declaration.
28548         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
28549         HAVE_FTELLO.
28550
28551 2007-04-25  Bruno Haible  <bruno@clisp.org>
28552
28553         * modules/fseeko-tests: New file.
28554         * tests/test-fseeko.c: New file.
28555
28556         * modules/fseeko: New file.
28557         * m4/fseeko.m4: New file.
28558         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
28559         HAVE_FSEEKO.
28560         * lib/stdio_.h (fseeko): New declaration.
28561         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
28562         HAVE_FSEEKO.
28563
28564 2007-04-25  Bruno Haible  <bruno@clisp.org>
28565
28566         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
28567
28568 2007-04-25  Bruno Haible  <bruno@clisp.org>
28569
28570         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
28571         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
28572         * tests/test-unistd.c: Likewise.
28573         * tests/test-fcntl.c: Likewise.
28574
28575 2007-04-23  Eric Blake  <ebb9@byu.net>
28576
28577         * lib/fflush.c: Fix missing include.
28578         Reported by Bruno Haible.
28579
28580 2007-04-23  Bruno Haible  <bruno@clisp.org>
28581
28582         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
28583         Reported by Eric Blake.
28584
28585 2007-04-23  Bruno Haible  <bruno@clisp.org>
28586
28587         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
28588
28589 2007-04-23  Bruno Haible  <bruno@clisp.org>
28590
28591         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
28592
28593 2007-04-23  Bruno Haible  <bruno@clisp.org>
28594
28595         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
28596         Needed on HP-UX 11.
28597
28598 2007-04-16  Eric Blake  <ebb9@byu.net>
28599
28600         Make fflush rely on fpurge.
28601         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
28602         open coding all variants.
28603         * modules/fflush (Depends-on): Add fpurge and unistd.
28604         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
28605         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
28606
28607         Fix --with-tests compilation on cygwin.
28608         * modules/argmatch-tests (Makefile.am): List gnulib library first
28609         in LDADD.
28610         * modules/argp-tests (Makefile.am): Likewise.
28611         * modules/array-list-tests (Makefile.am): Likewise.
28612         * modules/array-oset-tests (Makefile.am): Likewise.
28613         * modules/avltree-list-tests (Makefile.am): Likewise.
28614         * modules/avltree-oset-tests (Makefile.am): Likewise.
28615         * modules/avltreehash-list-tests (Makefile.am): Likewise.
28616         * modules/carray-list-tests (Makefile.am): Likewise.
28617         * modules/dirname-tests (Makefile.am): Likewise.
28618         * modules/frexp-tests (Makefile.am): Likewise.
28619         * modules/isnanl-tests (Makefile.am): Likewise.
28620         * modules/linked-list-tests (Makefile.am): Likewise.
28621         * modules/linkedhash-list-tests (Makefile.am): Likewise.
28622         * modules/lock-tests (Makefile.am): Likewise.
28623         * modules/rbtree-list-tests (Makefile.am): Likewise.
28624         * modules/rbtree-oset-tests (Makefile.am): Likewise.
28625         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
28626         * modules/tls-tests (Makefile.am): Likewise.
28627         * modules/tsearch-tests (Makefile.am): Likewise.
28628         * modules/xvasprintf-tests (Makefile.am): Likewise.
28629
28630         Fix fpurge for cygwin.
28631         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
28632         value.
28633         * modules/fpurge-tests (Depends-on): Clean up trash.
28634
28635 2007-04-16  Simon Josefsson  <simon@josefsson.org>
28636
28637         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
28638
28639         * m4/autobuild.m4: Re-indent.
28640
28641 2007-04-13  Bruno Haible  <bruno@clisp.org>
28642
28643         * modules/fpurge-tests: New file.
28644         * tests/test-fpurge.c: New file.
28645
28646         * modules/fpurge: New file.
28647         * lib/fpurge.h: New file.
28648         * lib/fpurge.c: New file.
28649         * m4/fpurge.m4: New file.
28650
28651 2007-04-13  Bruno Haible  <bruno@clisp.org>
28652
28653         * modules/fbufmode-tests: New file.
28654         * tests/test-fbufmode.c: New file.
28655
28656         * modules/fbufmode: New file.
28657         * lib/fbufmode.h: New file.
28658         * lib/fbufmode.c: New file.
28659         * m4/fbufmode.m4: New file.
28660
28661 2007-04-13  Bruno Haible  <bruno@clisp.org>
28662
28663         * modules/fwritable-tests: New file.
28664         * tests/test-fwritable.c: New file.
28665
28666         * modules/fwritable: New file.
28667         * lib/fwritable.h: New file.
28668         * lib/fwritable.c: New file.
28669         * m4/fwritable.m4: New file.
28670
28671 2007-04-13  Bruno Haible  <bruno@clisp.org>
28672
28673         * modules/freadable-tests: New file.
28674         * tests/test-freadable.c: New file.
28675
28676         * modules/freadable: New file.
28677         * lib/freadable.h: New file.
28678         * lib/freadable.c: New file.
28679         * m4/freadable.m4: New file.
28680
28681 2007-04-13  Bruno Haible  <bruno@clisp.org>
28682
28683         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
28684         MOSTLYCLEANFILES.
28685
28686 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
28687
28688         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
28689         gzip bootstrap.conf to avoid dragging in i18n machinery.
28690         (gnulib_tool_option): Use it.
28691
28692 2007-04-13  Bruno Haible  <bruno@clisp.org>
28693
28694         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
28695         %F directives.
28696         * tests/test-vasprintf-posix.c (test_function): Likewise.
28697         * tests/test-snprintf-posix.h (test_function): Likewise.
28698         * tests/test-sprintf-posix.h (test_function): Likewise.
28699         * tests/test-fprintf-posix.h (test_function): Likewise.
28700         * tests/test-printf-posix.h (test_function): Likewise.
28701         * tests/test-fprintf-posix.out: Likewise.
28702
28703 2007-04-13  Bruno Haible  <bruno@clisp.org>
28704
28705         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
28706         * modules/tls-tests (configure.ac): Likewise.
28707         Reported by Arto C. Nirkko <anirkko@insel.ch>.
28708
28709 2007-04-13  Bruno Haible  <bruno@clisp.org>
28710
28711         * lib/tls.c (glthread_tls_get): Fix return type.
28712         Patch by Arto C. Nirkko <anirkko@insel.ch>.
28713
28714 2007-04-12  Eric Blake  <ebb9@byu.net>
28715
28716         * modules/gettime (Depends-on): Remove gettime.
28717         Reported by Dmitry V. Levin.
28718
28719 2007-04-12  Bruno Haible  <bruno@clisp.org>
28720
28721         * modules/fflush (Include): Mention <stdio.h>.
28722         * modules/strtoimax (Include): Mention <inttypes.h>.
28723         * modules/strtoumax (Include): Likewise.
28724
28725 2007-04-12  Eric Blake  <ebb9@byu.net>
28726
28727         * .cvsignore: New file.
28728         * .gitignore: Likewise.
28729
28730 2007-04-12  Bruno Haible  <bruno@clisp.org>
28731
28732         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
28733         not before, since $(LDADD) often contains libgnu.a.
28734         * modules/striconv-tests (test_striconv_LDADD): Likewise.
28735         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
28736         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
28737         Needed on Cygwin.
28738
28739 2007-04-12  Eric Blake  <ebb9@byu.net>
28740
28741         Work around glibc's failure to flush stdin on fclose.
28742         * lib/closein.c (close_stdin): Flush stdin before closing.
28743
28744         Work around glibc's failure to reset seekable stdin on exit.
28745         * modules/closein: New module.
28746         * lib/closein.c: New file.
28747         * lib/closein.h: Likewise.
28748         * m4/closein.m4: Likewise.
28749         * MODULES.html.sh (File stream based Input/Output): Document it.
28750
28751 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28752
28753         * gnulib-tool: Rename generated 'autobuild' script to
28754         'do-autobuild' in --create-megatestdir output.
28755
28756         * doc/gnulib.texi (Build robot for gnulib): Fix.
28757
28758 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28759
28760         * modules/sysexits (Depends-on): Add absolute-header.
28761
28762 2007-04-12  Eric Blake  <ebb9@byu.net>
28763
28764         No need to preserve errno on success.
28765         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
28766         Reported by Bruno Haible.
28767
28768 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28769
28770         * MODULES.html.sh (Support for maintaining and releasing
28771         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
28772
28773 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28774
28775         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
28776
28777 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28778
28779         * modules/autobuild: New module.
28780
28781         * m4/autobuild.m4: New file.
28782
28783 2007-04-11  Bruno Haible  <bruno@clisp.org>
28784
28785         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
28786         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
28787         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
28788         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
28789         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28790         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28791         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28792         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28793         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28794         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28795         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
28796         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28797         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28798         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
28799         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28800         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28801         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
28802         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28803         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28804         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
28805         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28806         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28807         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
28808         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28809         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28810         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
28811         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28812         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28813         Reported by Eric Blake.
28814
28815 2007-04-11  Bruno Haible  <bruno@clisp.org>
28816
28817         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
28818
28819 2007-04-10  Bruno Haible  <bruno@clisp.org>
28820
28821         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
28822         for NaN and Infinity. Needed on FreeBSD 6.1.
28823         * tests/test-vasnprintf-posix.c (test_function): Undo last change
28824         regarding results for "%010a" of Infinity and NaN.
28825         * tests/test-vasprintf-posix.c (test_function): Likewise.
28826         * tests/test-snprintf-posix.h (test_function): Likewise.
28827         * tests/test-sprintf-posix.h (test_function): Likewise.
28828         * tests/test-fprintf-posix.h (test_function): Likewise.
28829         * tests/test-printf-posix.h (test_function): Likewise.
28830         * tests/test-fprintf-posix.out: Likewise.
28831
28832 2007-04-10  Bruno Haible  <bruno@clisp.org>
28833
28834         * modules/locale-tests: New file.
28835         * tests/test-locale.c: New file.
28836
28837         * modules/locale: New file.
28838         * lib/locale_.h: New file.
28839         * m4/locale_h.m4: New file.
28840
28841 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
28842             Bruno Haible  <bruno@clisp.org>
28843
28844         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
28845         be determined, test for availability of the copysignf, copysign,
28846         copysignl functions.
28847         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
28848         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
28849         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
28850
28851 2007-04-09  Eric Blake  <ebb9@byu.net>
28852
28853         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
28854         * modules/stdio (Makefile.am): Support fflush.
28855         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
28856         * modules/fflush: New file.
28857         * lib/fflush.c: Likewise.
28858         * m4/fflush.m4: Likewise.
28859         * modules/fflush-tests: New test.
28860         * tests/test-fflush.c: Likewise.
28861         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
28862
28863 2007-04-06  Bruno Haible  <bruno@clisp.org>
28864
28865         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
28866         (VASNPRINTF): Use signbit for faster determination whether to print a
28867         minus sign.
28868         * modules/vasnprintf (Files): Remove lib/float+.h.
28869         * modules/fprintf-posix (Depends-on): Add signbit.
28870         * modules/snprintf-posix (Depends-on): Likewise.
28871         * modules/sprintf-posix (Depends-on): Likewise.
28872         * modules/vasnprintf-posix (Depends-on): Likewise.
28873         * modules/vasprintf-posix (Depends-on): Likewise.
28874         * modules/vfprintf-posix (Depends-on): Likewise.
28875         * modules/vsnprintf-posix (Depends-on): Likewise.
28876         * modules/vsprintf-posix (Depends-on): Likewise.
28877
28878 2007-04-06  Bruno Haible  <bruno@clisp.org>
28879
28880         * tests/test-frexp.c (main): Test also the sign bit of zero results.
28881         * tests/test-frexpl.c (main): Likewise.
28882         * tests/test-ldexpl.c (main): Likewise.
28883         * modules/frexp-tests (Depends-on): Add signbit.
28884         * modules/frexpl-tests (Depdends-on): Likewise.
28885         * modules/ldexpl-tests (Depdends-on): Likewise.
28886
28887 2007-04-06  Bruno Haible  <bruno@clisp.org>
28888
28889         * modules/signbit-tests: New file.
28890         * tests/test-signbit.c: New file.
28891
28892         * modules/signbit: New file.
28893         * lib/signbitf.c: New file.
28894         * lib/signbitd.c: New file.
28895         * lib/signbitl.c: New file.
28896         * m4/signbit.m4: New file.
28897         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
28898         (signbit): New macro.
28899         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
28900         REPLACE_SIGNBIT.
28901         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
28902         REPLACE_FREXPL into math.h.
28903
28904 2007-04-06  Bruno Haible  <bruno@clisp.org>
28905
28906         * modules/isnanf-nolibm-tests: New file.
28907         * tests/test-isnanf.c: New file.
28908
28909         * modules/isnanf-nolibm: New file.
28910         * lib/isnanf.h: New file.
28911         * lib/isnanf.c: New file.
28912         * lib/isnan.c: Consider the USE_FLOAT macro.
28913         * m4/isnanf.m4: New file.
28914
28915 2007-04-06  Bruno Haible  <bruno@clisp.org>
28916
28917         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
28918         (Link): New section.
28919
28920         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
28921
28922 2007-04-06  Bruno Haible  <bruno@clisp.org>
28923
28924         Assume the 'long double' type.
28925         * m4/longdouble.m4: Remove file.
28926         * config/srclist.txt: Don't mention longdouble.m4.
28927         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
28928         * lib/float+.h: Likewise.
28929         * lib/frexp.c: Likewise.
28930         * lib/printf-args.h: Likewise.
28931         * lib/printf-args.c: Likewise.
28932         * lib/printf-frexp.c: Likewise.
28933         * lib/printf-parse.c: Likewise.
28934         * lib/vasnprintf.c: Likewise.
28935         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
28936         * m4/intl.m4: Likewise.
28937         * m4/isnanl.m4: Likewise.
28938         * m4/printf.m4: Likewise.
28939         * m4/printf-frexpl.m4: Likewise.
28940         * m4/vasnprintf.m4: Likewise.
28941         * modules/allocsa (Files): Remove m4/longdouble.m4.
28942         * modules/gettext (Files): Likewise.
28943         * modules/relocatable-prog-wrapper (Files): Likewise.
28944         * modules/vasnprintf (Files): Likewise.
28945         * modules/isnanl (Files): Likewise.
28946         (Include): Simplify.
28947         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
28948         (Include): Simplify.
28949         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
28950         (Include): Simplify.
28951         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
28952         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28953         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
28954         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28955         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
28956         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28957         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
28958         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28959         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
28960         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28961         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
28962         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28963         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
28964         * tests/test-isnanl.c: Likewise.
28965         * tests/test-snprintf-posix.h: Likewise.
28966         * tests/test-sprintf-posix.h: Likewise.
28967         * tests/test-vasnprintf-posix.c: Likewise.
28968         * tests/test-vasnprintf-posix2.c: Likewise.
28969         * tests/test-vasprintf-posix.c: Likewise.
28970
28971 2007-04-06  Bruno Haible  <bruno@clisp.org>
28972
28973         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
28974         * lib/math_.h [__DECC]: Include the overridden include file through
28975         #include_next, outside the double-inclusion guard.
28976         * lib/stdio_.h [__DECC]: Likewise.
28977         * lib/stdlib_.h [__DECC]: Likewise.
28978         * lib/string_.h [__DECC]: Likewise.
28979         * lib/time_.h [__DECC]: Likewise.
28980         * lib/wchar_.h [__DECC]: Likewise.
28981         * lib/wctype_.h [__DECC]: Likewise.
28982         * lib/inttypes_.h [__DECC]: Likewise.
28983         Reported by Albert Chin <china@thewrittenword.com> in
28984         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
28985
28986 2007-04-04  Eric Blake  <ebb9@byu.net>
28987
28988         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
28989         1.5.x.
28990
28991 2007-04-04  Bruno Haible  <bruno@clisp.org>
28992
28993         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
28994         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
28995
28996 2007-04-04  Bruno Haible  <bruno@clisp.org>
28997
28998         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
28999         results for "%010a" of Infinity and NaN.
29000         * tests/test-vasprintf-posix.c (test_function): Likewise.
29001         * tests/test-snprintf-posix.h (test_function): Likewise.
29002         * tests/test-sprintf-posix.h (test_function): Likewise.
29003         * tests/test-fprintf-posix.h (test_function): Remove these tests.
29004         * tests/test-printf-posix.h (test_function): Likewise.
29005         * tests/test-fprintf-posix.out: Update.
29006         Needed for FreeBSD 6.1.
29007
29008 2007-04-04  Bruno Haible  <bruno@clisp.org>
29009
29010         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
29011         directly used by the gnulib modules nor by gnulib-tool.
29012
29013 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
29014
29015         * DEPENDENCIES: Give overall description of version dependency
29016         desirability.  Use more-typical names for apps.
29017         Add shell, coreutils, diffutils, grep, tar, gzip.
29018
29019 2007-04-04  Simon Josefsson  <simon@josefsson.org>
29020
29021         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
29022
29023 2007-04-04  Karl Berry  <karl@gnu.org>
29024
29025         * MODULES.html.sh (func_module): missing '.
29026
29027 2007-04-03  Bruno Haible  <bruno@clisp.org>
29028
29029         * modules/argmatch-tests (Makefile.am): New variable
29030         test_argmatch_LDADD.
29031         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
29032         * modules/array-list-tests (Makefile.am): New variable
29033         test_array_list_LDADD.
29034         * modules/array-oset-tests (Makefile.am): New variable
29035         test_array_oset_LDADD.
29036         * modules/avltree-list-tests (Makefile.am): New variable
29037         test_avltree_list_LDADD.
29038         * modules/avltree-oset-tests (Makefile.am): New variable
29039         test_avltree_oset_LDADD.
29040         * modules/avltreehash-list-tests (Makefile.am): New variable
29041         test_avltreehash_list_LDADD.
29042         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
29043         test_canonicalize_lgpl_LDADD.
29044         * modules/carray-list-tests (Makefile.am): New variable
29045         test_carray_list_LDADD.
29046         * modules/dirname-tests (Makefile.am): New variable
29047         test_dirname_LDADD.
29048         * modules/linked-list-tests (Makefile.am): New variable
29049         test_linked_list_LDADD.
29050         * modules/linkedhash-list-tests (Makefile.am): New variable
29051         test_linkedhash_list_LDADD.
29052         * modules/rbtree-list-tests (Makefile.am): New variable
29053         test_rbtree_list_LDADD.
29054         * modules/rbtree-oset-tests (Makefile.am): New variable
29055         test_rbtree_oset_LDADD.
29056         * modules/rbtreehash-list-tests (Makefile.am): New variable
29057         test_rbtreehash_list_LDADD.
29058         * modules/xvasprintf-tests (Makefile.am): New variable
29059         test_xvasprintf_LDADD.
29060         Reported by Eric Blake.
29061
29062 2007-04-03  Eric Blake  <ebb9@byu.net>
29063
29064         * DEPENDENCIES: Weaken m4 requirements.
29065
29066 2007-04-03  Bruno Haible  <bruno@clisp.org>
29067
29068         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
29069         * modules/isnanl-tests (configure.ac): Likewise.
29070
29071 2007-04-03  Ben Pfaff  <blp@gnu.org>
29072
29073         * modules/iconv_open: Add $(srcdir)/ to source directory
29074         references in Makefile fragments that call gperf, to fix VPATH
29075         builds.
29076
29077 2007-04-03  Bruno Haible  <bruno@clisp.org>
29078
29079         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
29080         * lib/ldexpl.c: Undo last change.
29081
29082 2007-04-03  Bruno Haible  <bruno@clisp.org>
29083
29084         * modules/printf-frexpl (Depends-on): Undo last change.
29085         (Files): Add m4/ldexpl.m4.
29086
29087 2007-04-03  Bruno Haible  <bruno@clisp.org>
29088
29089         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
29090         * modules/isnanl (Link): New section.
29091
29092         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
29093         * modules/frexp (Link): New section.
29094
29095         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
29096         * modules/frexpl (Link): New section.
29097
29098         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
29099         * modules/ldexpl (Link): New section.
29100
29101 2007-04-03  Bruno Haible  <bruno@clisp.org>
29102
29103         * modules/TEMPLATE-EXTENDED: New file.
29104         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
29105
29106 2007-04-03  Bruno Haible  <bruno@clisp.org>
29107
29108         * DEPENDENCIES: New file.
29109         Suggested by Simon Josefsson.
29110
29111 2007-04-03  Bruno Haible  <bruno@clisp.org>
29112
29113         * doc/gnulib.texi: Escape @.
29114
29115 2007-04-03  James Youngman  <jay@gnu.org>
29116         and Paul Eggert  <eggert@cs.ucla.edu>
29117
29118         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
29119         birthtime on all systems that have birthtime, not just those which
29120         use st_birthtimensec rather than st_birthtim.  Putting zero in
29121         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
29122         that the birth time is not available for files on an NFS mount.
29123
29124 2007-04-03  Simon Josefsson  <simon@josefsson.org>
29125
29126         * modules/memxor: Move back from crypto/, suggested by Bruno.
29127         * modules/crypto/hmac-sha1: Fix memxor dependency.
29128
29129         * modules/crypto/gc: Moved from ../.
29130
29131 2007-04-02  Eric Blake  <ebb9@byu.net>
29132
29133         * lib/ldexpl.c (includes): Avoid libm.
29134
29135         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
29136
29137 2007-04-02  Bruno Haible  <bruno@clisp.org>
29138
29139         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
29140         on IRIX.
29141
29142 2007-04-02  Bruno Haible  <bruno@clisp.org>
29143
29144         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
29145         x86 or x86_64 platforms running MacOS X.
29146         Reported by Ryan Schmidt <@ryandesign.com>.
29147
29148 2007-04-02  Bruno Haible  <bruno@clisp.org>
29149
29150         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
29151         i386.
29152
29153 2007-04-01  Simon Josefsson  <simon@josefsson.org>
29154
29155         * modules/crypto/arcfour: Moved from ../.
29156         * modules/crypto/arcfour-tests: Moved from ../.
29157         * modules/crypto/arctwo: Moved from ../.
29158         * modules/crypto/arctwo-tests: Moved from ../.
29159         * modules/crypto/des: Moved from ../.
29160         * modules/crypto/des-tests: Moved from ../.
29161         * modules/crypto/gc-arcfour: Moved from ../.
29162         * modules/crypto/gc-arcfour-tests: Moved from ../.
29163         * modules/crypto/gc-arctwo: Moved from ../.
29164         * modules/crypto/gc-arctwo-tests: Moved from ../.
29165         * modules/crypto/gc-des: Moved from ../.
29166         * modules/crypto/gc-des-tests: Moved from ../.
29167         * modules/crypto/gc-hmac-md5: Moved from ../.
29168         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
29169         * modules/crypto/gc-hmac-sha1: Moved from ../.
29170         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
29171         * modules/crypto/gc-md2: Moved from ../.
29172         * modules/crypto/gc-md2-tests: Moved from ../.
29173         * modules/crypto/gc-md4: Moved from ../.
29174         * modules/crypto/gc-md4-tests: Moved from ../.
29175         * modules/crypto/gc-md5: Moved from ../.
29176         * modules/crypto/gc-md5-tests: Moved from ../.
29177         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
29178         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
29179         * modules/crypto/gc-random: Moved from ../.
29180         * modules/crypto/gc-rijndael: Moved from ../.
29181         * modules/crypto/gc-rijndael-tests: Moved from ../.
29182         * modules/crypto/gc-sha1: Moved from ../.
29183         * modules/crypto/gc-sha1-tests: Moved from ../.
29184         * modules/crypto/gc-tests: Moved from ../.
29185         * modules/crypto/hmac-md5: Moved from ../.
29186         * modules/crypto/hmac-md5-tests: Moved from ../.
29187         * modules/crypto/hmac-sha1: Moved from ../.
29188         * modules/crypto/hmac-sha1-tests: Moved from ../.
29189         * modules/crypto/md2: Moved from ../.
29190         * modules/crypto/md2-tests: Moved from ../.
29191         * modules/crypto/md4: Moved from ../.
29192         * modules/crypto/md4-tests: Moved from ../.
29193         * modules/crypto/md5: Moved from ../.
29194         * modules/crypto/md5-tests: Moved from ../.
29195         * modules/crypto/memxor: Moved from ../.
29196         * modules/crypto/rijndael: Moved from ../.
29197         * modules/crypto/rijndael-tests: Moved from ../.
29198         * modules/crypto/sha1: Moved from ../.
29199
29200 2007-03-30  James Youngman  <jay@gnu.org>
29201
29202         * tests/test-stat-time.c (prepare_test): use chmod() rather than
29203         rename() to change the ctime of a file (because ctime is unaffected
29204         by rename on jfs2 on AIX 5.1).
29205         (main): Start by doing cleanup, in case a previous run failed leaving
29206         test files behind.
29207
29208 2007-03-31  Bruno Haible  <bruno@clisp.org>
29209
29210         Support old proprietary implementations of iconv.
29211         * modules/iconv_open: New file.
29212         * lib/iconv_.h: New file.
29213         * m4/iconv_h.m4: New file.
29214         * lib/iconv_open.c: New file.
29215         * lib/iconv_open-aix.gperf: New file.
29216         * lib/iconv_open-hpux.gperf: New file.
29217         * lib/iconv_open-irix.gperf: New file.
29218         * lib/iconv_open-osf.gperf: New file.
29219         * m4/iconv_open.m4: New file.
29220         * modules/linebreak (Depends-on): Add iconv_open.
29221         * modules/striconv (Depends-on): Likewise.
29222         * modules/striconveh (Depends-on): Likewise.
29223         * modules/unicodeio (Depends-on): Likewise.
29224         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
29225         (iconv_t)(-1).
29226         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
29227         conversion if cd is (iconv_t)(-1).
29228         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
29229         is not possible.
29230
29231 2007-03-31  Bruno Haible  <bruno@clisp.org>
29232
29233         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
29234         work on Solaris either. Protect also second use of "autodetect_jp".
29235
29236 2007-03-31  Bruno Haible  <bruno@clisp.org>
29237
29238         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
29239         the function is not present.
29240
29241 2007-03-31  Bruno Haible  <bruno@clisp.org>
29242
29243         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
29244         the function is not present.
29245
29246 2007-03-31  Bruno Haible  <bruno@clisp.org>
29247
29248         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
29249         a bug in HP-UX iconv_open().
29250
29251 2007-03-31  Bruno Haible  <bruno@clisp.org>
29252
29253         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
29254         (Mathematics <math.h>): New section, add fpieee.
29255         (Input/output <stdio.h>): Add fseterr.
29256         (Mathematics <math.h>): New section, add printf-frexp.
29257         (Container data structures): Add sublist.
29258         (Core language properties): Add fpucw, inline.
29259         (Functions for greatest-width integer types <inttypes.h>): Add
29260         imaxabs, imaxdiv, inttypes.
29261         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
29262         isnanl-nolibm, ldexp.
29263         (Mathematics <math.h>): New section, add printf-frexpl.
29264         (Support for systems lacking POSIX:2001): Add fprintf-posix,
29265         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
29266         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
29267         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
29268         (Unicode string functions): Add unistr/u*-mbtoucr.
29269         (Java): Add javacomp-script, javaexec-script.
29270         (C#): Add csharpcomp-script, csharpexec-script.
29271         (Support for building libraries and executables): Add havelib,
29272         relocatable-*.
29273         (Support for maintaining and releasing projects): Renamed from
29274         'Support for maintaining and release projects'. Add announce-gen.
29275
29276 2007-03-31  Bruno Haible  <bruno@clisp.org>
29277
29278         * README: Talk primarily about git.
29279         (git and CVS): Renamed from CVS.
29280         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
29281         gnulib is available through git.
29282         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
29283
29284 2007-03-30  Bruno Haible  <bruno@clisp.org>
29285
29286         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
29287         * lib/poll_.h: Likewise.
29288         * lib/stat_.h: Likewise.
29289         * lib/sys_time_.h: Likewise.
29290         * lib/sysexit_.h: Likewise.
29291         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
29292         * lib/stdbool_.h: Likewise.
29293         * lib/byteswap_.h: Add double-inclusion guard.
29294
29295 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
29296
29297         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
29298
29299 2007-03-30  Karl Berry  <karl@gnu.org>
29300
29301         * config/srclist-update: double space after USA in the license
29302         substitution, since that's how it's usually (?) written.
29303
29304 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
29305
29306         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
29307         reported by Bruno Haible.
29308
29309 2007-03-29  Bruno Haible  <bruno@clisp.org>
29310
29311         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
29312         a bug in AIX iconv().
29313
29314 2007-03-29  Bruno Haible  <bruno@clisp.org>
29315
29316         * modules/ldexpl-tests: New file.
29317         * tests/test-ldexpl.c: New file.
29318
29319 2007-03-29  Bruno Haible  <bruno@clisp.org>
29320
29321         * lib/ldexpl.c: Include fpucw.h.
29322         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
29323         multiplication.
29324         * modules/ldexpl (Depends-on): Add fpucw.
29325
29326 2007-03-29  Bruno Haible  <bruno@clisp.org>
29327
29328         * modules/ldexpl: New file.
29329         * m4/ldexpl.m4: New file.
29330         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
29331         set.
29332         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
29333         REPLACE_LDEXPL.
29334         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
29335         REPLACE_LDEXPL.
29336         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
29337         gl_FUNC_LDEXPL_WORKS.
29338         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
29339         * modules/mathl (Files): Remove lib/ldexpl.c.
29340         (Depends-on): Add ldexpl.
29341
29342 2007-03-29  Bruno Haible  <bruno@clisp.org>
29343
29344         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
29345
29346 2007-03-29  Bruno Haible  <bruno@clisp.org>
29347
29348         * tests/test-striconveh.c (main): Don't assume that a direct conversion
29349         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
29350         and possibly also HP-UX.
29351         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
29352         work on AIX, IRIX, HP-UX, OSF/1.
29353         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
29354         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
29355         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
29356         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
29357         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
29358         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
29359
29360 2007-03-29  Bruno Haible  <bruno@clisp.org>
29361
29362         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
29363
29364 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
29365
29366         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
29367         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
29368
29369 2007-03-29  Eric Blake  <ebb9@byu.net>
29370
29371         * lib/acl-internal.h: Remove redundant include.
29372         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
29373         Cygwin when a file is locked.
29374
29375 2007-03-29  Bruno Haible  <bruno@clisp.org>
29376
29377         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
29378         file.
29379         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
29380
29381 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
29382
29383         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
29384         try to remove a parent directory if the child couldn't be removed
29385         (except for the first rmdir, which could fail because the child
29386         doesn't exist).  Problem reported by Jeff Blaine in
29387         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
29388
29389 2007-03-28  Bruno Haible  <bruno@clisp.org>
29390
29391         * lib/striconveh.c (utf8conv_carefully): New function.
29392         (mem_cd_iconveh_internal): Invoke it.
29393
29394 2007-03-28  Bruno Haible  <bruno@clisp.org>
29395
29396         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
29397         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
29398         input.
29399         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
29400         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
29401         unistr/u8-uctomb.
29402
29403 2007-03-28  Bruno Haible  <bruno@clisp.org>
29404
29405         * modules/unistr/u8-mbtoucr: New file.
29406         * lib/unistr/u8-mbtoucr.c: New file.
29407         * modules/unistr/u16-mbtoucr: New file.
29408         * lib/unistr/u16-mbtoucr.c: New file.
29409         * modules/unistr/u16-mbtoucr: New file.
29410         * lib/unistr/u16-mbtoucr.c: New file.
29411         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
29412
29413 2007-03-27  Simon Josefsson  <simon@josefsson.org>
29414             Bruno Haible  <bruno@clisp.org>
29415
29416         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
29417         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
29418         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
29419
29420         * m4/stdio_h.m4: Add stubs for vasprintf too.
29421
29422         * modules/stdio: Support vasprintf in sed command.
29423
29424         * modules/vasprintf: Depend on stdio for prototypes.  Remove
29425         vasprintf.h.  Add stdio module indicator.
29426
29427         * lib/stdio_.h: Declare asprintf and vasprintf, based on
29428         vasprintf.h.
29429
29430         * lib/vasprintf.h: File removed.
29431
29432         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
29433         * lib/vasprintf.c: Ditto.
29434         * lib/xvasprintf.c: Ditto.
29435         * tests/test-vasprintf-posix.c: Ditto.
29436         * tests/test-vasprintf.c: Ditto.
29437
29438 2007-03-27  Bruno Haible  <bruno@clisp.org>
29439
29440         Make vasnprintf multithread-safe.
29441         * lib/vasnprintf.c (decimal_point_char): New function.
29442         (VASNPRINTF): Use it.
29443         Suggested by Simon Josefsson.
29444
29445 2007-03-27  Eric Blake  <ebb9@byu.net>
29446
29447         Support sub-second birthtime on cygwin.
29448         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
29449         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
29450         (get_stat_birthtime): Also work with st_birthtim.
29451
29452 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
29453
29454         * lib/stat-time.h (USE_BIRTHTIME): Remove.
29455         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
29456         (get_stat_birthtime_ns): Do not try to use "spare" fields.
29457         (get_stat_birthtime_ns): Simplify compile-time tests.
29458         (get_stat_birthtime): Change the API to look like
29459         get_stat_mtime etc., except return a negative tv_nsec on error.
29460         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
29461         Don't check for "spare" fields.
29462         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
29463         or for struct stat.st_birthtime, as these tests aren't used.
29464         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
29465
29466 2007-03-27  Bruno Haible  <bruno@clisp.org>
29467
29468         * lib/stat-time.h: Include <sys/stat.h>.
29469
29470 2007-03-27  James Youngman  <jay@gnu.org>
29471
29472         * lib/stat-time.h (get_stat_birthtime): New function for
29473           retrieving st_birthtime as provided by UFS2 (hence *BSD).
29474         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
29475           and its variants.
29476         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
29477         * modules/stat-time-test: New file.
29478         * tests/test-stat-time.c: New test, devised by Bruno Haible.
29479
29480 2007-03-26  Bruno Haible  <bruno@clisp.org>
29481
29482         Better support of signalling NaNs.
29483         * lib/atanl.c: Include isnanl.h.
29484         (atanl): Perform test for NaN at the beginning of the function and
29485         through a call to isnanl.
29486         * lib/cosl.c: Include isnanl.h.
29487         (cosl): Perform test for NaN at the beginning of the function and
29488         through a call to isnanl.
29489         * lib/ldexpl.c: Include isnanl.h.
29490         (ldexpl): Perform test for NaN through a call to isnanl.
29491         * lib/logl.c: Include isnanl.h.
29492         (logl): Perform test for NaN at the beginning of the function and
29493         through a call to isnanl.
29494         * lib/sinl.c: Include isnanl.h.
29495         (sinl): Perform test for NaN at the beginning of the function and
29496         through a call to isnanl.
29497         * lib/sqrtl.c: Include isnanl.h.
29498         (sqrtl): Perform test for NaN at the beginning of the function and
29499         through a call to isnanl.
29500         * lib/tanl.c: Include isnanl.h.
29501         (tanl): Perform test for NaN at the beginning of the function and
29502         through a call to isnanl.
29503         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
29504         * modules/mathl (Depends-on): Add isnanl.
29505
29506 2007-03-26  Eric Blake  <ebb9@byu.net>
29507
29508         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
29509         regression in logic sense of previous patch.
29510
29511 2007-03-26  Bruno Haible  <bruno@clisp.org>
29512
29513         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
29514         unportable shell command "if ! ...".
29515         Reported by Ralf Wildenhues.
29516
29517 2007-03-25  Bruno Haible  <bruno@clisp.org>
29518
29519         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
29520         <sysexits.h> file, and only add EX_CONFIG.
29521         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
29522         absolute file name and whether it is sufficient. Substitute also
29523         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
29524         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
29525         ABSOLUTE_SYSEXITS_H into sysexits.h.
29526
29527 2007-03-25  Bruno Haible  <bruno@clisp.org>
29528
29529         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
29530         hints is NULL.
29531
29532 2007-03-25  Bruno Haible  <bruno@clisp.org>
29533
29534         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
29535         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
29536
29537 2007-03-25  Bruno Haible  <bruno@clisp.org>
29538
29539         * lib/vasnprintf.c: Include langinfo.h.
29540         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
29541         multithread-safe.
29542         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
29543         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
29544         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29545         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29546         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29547         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29548         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29549         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
29550         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29551         Reported by Simon Josefsson.
29552
29553 2007-03-25  Bruno Haible  <bruno@clisp.org>
29554
29555         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
29556         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
29557         * modules/vasnprintf (Depends-on): Add stdint.
29558
29559 2007-03-25  Bruno Haible  <bruno@clisp.org>
29560
29561         * modules/fpieee: New file.
29562         * m4/fpieee.m4: New file.
29563         * modules/isnan-nolibm (Depends-on): Add fpieee.
29564         * modules/isnanl-nolibm (Depends-on): Add fpieee.
29565         * modules/isnanl (Depends-on): Add fpieee.
29566
29567 2007-03-25  Bruno Haible  <bruno@clisp.org>
29568
29569         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
29570
29571 2007-03-25  Bruno Haible  <bruno@clisp.org>
29572
29573         Avoid test failures on IRIX 6.5.
29574         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
29575         (main): Use it.
29576         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
29577         macros.
29578         (main): Use them.
29579
29580 2007-03-25  Bruno Haible  <bruno@clisp.org>
29581
29582         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
29583         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
29584         exists but doesn't work.
29585         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
29586         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
29587         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
29588         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
29589
29590 2007-03-25  Bruno Haible  <bruno@clisp.org>
29591
29592         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
29593         returns inf. Needed on IRIX 6.5.
29594
29595 2007-03-25  Bruno Haible  <bruno@clisp.org>
29596
29597         * tests/test-frexpl.c: Include isnanl-nolibm.h.
29598         (main): Use isnanl instead of x != x idiom.
29599         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
29600
29601         * tests/test-frexp.c: Include isnan.h.
29602         (main): Use isnan instead of x != x idiom.
29603         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
29604
29605 2007-03-25  Bruno Haible  <bruno@clisp.org>
29606
29607         * tests/test-frexp.c (NaN): New function/macro.
29608         (main): Use it instead of 0.0 / 0.0.
29609         * tests/test-isnan.c (NaN): New function/macro.
29610         (main): Use it instead of 0.0 / 0.0.
29611         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
29612         (test_function): Use it instead of 0.0 / 0.0.
29613         * tests/test-vasprintf-posix.c (NaN): New function/macro.
29614         (test_function): Use it instead of 0.0 / 0.0.
29615         * tests/test-snprintf-posix.h (NaN): New function/macro.
29616         (test_function): Use it instead of 0.0 / 0.0.
29617         * tests/test-sprintf-posix.h (NaN): New function/macro.
29618         (test_function): Use it instead of 0.0 / 0.0.
29619         * tests/test-fprintf-posix.h (NaN): New function/macro.
29620         (test_function): Use it instead of 0.0 / 0.0.
29621         * tests/test-printf-posix.h (NaN): New function/macro.
29622         (test_function): Use it instead of 0.0 / 0.0.
29623
29624         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
29625
29626 2007-03-25  Bruno Haible  <bruno@clisp.org>
29627
29628         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
29629
29630 2007-03-25  Bruno Haible  <bruno@clisp.org>
29631
29632         * lib/regexec.c (merge_state_with_log): Make static.
29633
29634 2007-03-25  Bruno Haible  <bruno@clisp.org>
29635
29636         * lib/trigl.c (kernel_rem_pio2): Make static.
29637
29638 2007-03-25  Bruno Haible  <bruno@clisp.org>
29639
29640         * lib/sincosl.c (sincosl_table): Make static.
29641
29642 2007-03-25  Bruno Haible  <bruno@clisp.org>
29643
29644         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
29645         if the compiler does not support C99.
29646
29647 2007-03-25  Bruno Haible  <bruno@clisp.org>
29648
29649         * modules/time (Makefile.am): Ensure all rule action lines start with a
29650         tab.
29651
29652 2007-03-24  Bruno Haible  <bruno@clisp.org>
29653
29654         * modules/tsearch-tests: New file.
29655         * tests/test-tsearch.sh: New file.
29656         * tests/test-tsearch.c: New file, mostly copied from glibc.
29657
29658         * modules/search-tests: New file.
29659         * tests/test-search.c: New file.
29660
29661         * modules/search: New file.
29662         * lib/search_.h: New file, incorporating lib/tsearch.h.
29663         * m4/search_h.m4: New file.
29664         * lib/tsearch.h: Remove file.
29665         * lib/tsearch.c: Include search.h instead of tsearch.h.
29666         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
29667         HAVE_TSEARCH.
29668         * modules/tsearch (Files): Remove lib/tsearch.h.
29669         (Depends-on): Add search.
29670         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
29671         (Include): Change tsearch.h into search.h.
29672
29673 2007-03-24  Bruno Haible  <bruno@clisp.org>
29674
29675         * modules/fpucw: New file.
29676         * lib/fpucw.h: New file.
29677         * lib/frexp.c: Include fpucw.h.
29678         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
29679         (FUNC): Use them.
29680         * lib/printf-frexp.c: Include fpucw.h.
29681         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
29682         (FUNC): Use them.
29683         * lib/vasnprintf.c: Include fpucw.h.
29684         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
29685         'long double' calculations.
29686         * tests/test-frexpl.c: Include fpucw.h.
29687         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
29688         * tests/test-printf-frexpl.c: Include fpucw.h.
29689         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
29690         * modules/frexpl (Depends-on): Add fpucw.
29691         * modules/printf-frexpl (Depends-on): Likewise.
29692         * modules/fprintf-posix (Depends-on): Likewise.
29693         * modules/snprintf-posix (Depends-on): Likewise.
29694         * modules/sprintf-posix (Depends-on): Likewise.
29695         * modules/vasnprintf-posix (Depends-on): Likewise.
29696         * modules/vasprintf-posix (Depends-on): Likewise.
29697         * modules/vfprintf-posix (Depends-on): Likewise.
29698         * modules/vsnprintf-posix (Depends-on): Likewise.
29699         * modules/vsprintf-posix (Depends-on): Likewise.
29700         * modules/frexpl-tests (Depends-on): Likewise.
29701         * modules/printf-frexpl-tests (Depends-on): Likewise.
29702
29703 2007-03-24  Bruno Haible  <bruno@clisp.org>
29704
29705         * lib/float+.h: New file.
29706         * lib/isnan.c: Include float+.h.
29707         (SIZE): New macro.
29708         (FUNC): Compare only SIZE bytes of the value.
29709         * lib/vasnprintf.c: Include float+.h.
29710         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
29711         SIZEOF_LDBL or SIZEOF_DBL bytes.
29712         * modules/isnan-nolibm (Files): Add lib/float+.h.
29713         * modules/isnanl-nolibm (Files): Add lib/float+.h.
29714         * modules/isnanl (Files): Add lib/float+.h.
29715         * modules/vasnprintf (Files): Add lib/float+.h.
29716
29717 2007-03-24  Bruno Haible  <bruno@clisp.org>
29718
29719         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
29720         include isnanl-nolibm.h.
29721
29722 2007-03-24  Bruno Haible  <bruno@clisp.org>
29723
29724         * tests/test-read-file.c (main): Don't produce spurious output for
29725         expected situations. Make the test fail if it encountered unexpected
29726         results.
29727
29728 2007-03-24  Bruno Haible  <bruno@clisp.org>
29729
29730         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
29731         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
29732
29733 2007-03-24  Bruno Haible  <bruno@clisp.org>
29734
29735         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
29736
29737 2007-03-24  Bruno Haible  <bruno@clisp.org>
29738
29739         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
29740         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
29741
29742         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
29743         * modules/utf8-ucs4: Turn into a symbolic link to module
29744         unistr/u8-mbtouc.
29745
29746         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
29747         utf8-ucs4-unsafe.
29748         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
29749         unistr/u8-mbtouc-unsafe.
29750
29751         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
29752         * modules/utf16-ucs4: Turn into a symbolic link to module
29753         unistr/u16-mbtouc.
29754
29755         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
29756         utf16-ucs4-unsafe.
29757         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
29758         unistr/u16-mbtouc-unsafe.
29759
29760         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
29761         * modules/ucs4-utf8: Turn into a symbolic link to module
29762         unistr/u8-ubtomb.
29763
29764         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
29765         * modules/ucs4-utf16: Turn into a symbolic link to module
29766         unistr/u16-ubtomb.
29767
29768 2007-03-24  Bruno Haible  <bruno@clisp.org>
29769
29770         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
29771         Enable the function only if HAVE_INLINE.
29772         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
29773         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
29774         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
29775         Enable the function only if HAVE_INLINE.
29776         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
29777         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
29778         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
29779         Enable the function only if HAVE_INLINE.
29780         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
29781         Enable the function only if HAVE_INLINE.
29782         * modules/utf8-ucs4: Update.
29783         * modules/utf8-ucs4-unsafe: Update.
29784         * modules/utf16-ucs4: Update.
29785         * modules/utf16-ucs4-unsafe: Update.
29786         * modules/ucs4-utf8: Update.
29787         * modules/ucs4-utf16: Update.
29788
29789 2007-03-24  Bruno Haible  <bruno@clisp.org>
29790
29791         * lib/utf8-ucs4.h: Remove file.
29792         * lib/utf8-ucs4-unsafe.h: Remove file.
29793         * lib/utf16-ucs4.h: Remove file.
29794         * lib/utf16-ucs4-unsafe.h: Remove file.
29795         * lib/ucs4-utf8.h: Remove file.
29796         * lib/ucs4-utf16.h: Remove file.
29797         * lib/unistr.h: Include their previous contents.
29798         * m4/utf-ucs4.m4: Remove file.
29799         * m4/ucs4-utf.m4: Remove file.
29800         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
29801         (Depends-on): Add unistr/base.
29802         (configure.ac): Remove gl_UTF_UCS4.
29803         (Makefile.am): Update.
29804         (Include): Change to unistr.h.
29805         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
29806         (Depends-on): Add unistr/base.
29807         (configure.ac): Remove gl_UTF_UCS4.
29808         (Makefile.am): Update.
29809         (Include): Change to unistr.h.
29810         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
29811         (Depends-on): Add unistr/base.
29812         (configure.ac): Remove gl_UTF_UCS4.
29813         (Makefile.am): Update.
29814         (Include): Change to unistr.h.
29815         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
29816         (Depends-on): Add unistr/base.
29817         (configure.ac): Remove gl_UTF_UCS4.
29818         (Makefile.am): Update.
29819         (Include): Change to unistr.h.
29820         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
29821         (Depends-on): Add unistr/base.
29822         (configure.ac): Remove gl_UCS4_UTF.
29823         (Makefile.am): Update.
29824         (Include): Change to unistr.h.
29825         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
29826         (Depends-on): Add unistr/base.
29827         (configure.ac): Remove gl_UCS4_UTF.
29828         (Makefile.am): Update.
29829         (Include): Change to unistr.h.
29830         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
29831         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
29832         utf8-ucs4-unsafe.h.
29833         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
29834         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
29835         utf16-ucs4-unsafe.h.
29836         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
29837         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
29838         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
29839         * lib/unistr/u8-strchr.c: Likewise.
29840         * lib/unistr/u8-strrchr.c: Likewise.
29841         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
29842         * lib/unistr/u16-strchr.c: Likewise.
29843         * lib/unistr/u16-strrchr.c: Likewise.
29844         * lib/striconveh.c: Update.
29845         * lib/linebreak.c: Update.
29846
29847 2007-03-24  Bruno Haible  <bruno@clisp.org>
29848
29849         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
29850         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
29851
29852 2007-03-22  Bruno Haible  <bruno@clisp.org>
29853
29854         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
29855
29856 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
29857
29858         * MODULES.html.sh (File system functions): New module write-any-file.
29859         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
29860         * m4/write-any-file.m4: New files.
29861
29862 2007-03-23  Eric Blake  <ebb9@byu.net>
29863
29864         * gnulib-tool: Rearrange space-tab sequences, since some editors
29865         like to eat them.
29866
29867 2007-03-23  Eric Blake  <ebb9@byu.net>
29868
29869         * lib/version-etc.c (version_etc_va): Update license wording to
29870         be more concise.  Recommended by Richard Stallman.
29871
29872 2007-03-22  Bruno Haible  <bruno@clisp.org>
29873
29874         * lib/poll.c (MSG_PEEK): New fallback definition.
29875
29876 2007-03-22  Bruno Haible  <bruno@clisp.org>
29877
29878         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
29879         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
29880         (main): Update.
29881         Fixes a compilation error on BeOS.
29882
29883 2007-03-22  Bruno Haible  <bruno@clisp.org>
29884
29885         * modules/frexpl-tests: New file.
29886         * tests/test-frexpl.c: New file.
29887
29888         * modules/frexpl: New file.
29889         * m4/frexpl.m4: New file.
29890         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
29891         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
29892         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
29893         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
29894         (Depends-on): Add frexpl. Remove isnanl-nolibm.
29895         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
29896
29897 2007-03-22  Bruno Haible  <bruno@clisp.org>
29898
29899         * lib/frexpl.c: Share code with lib/frexp.c.
29900         * modules/mathl (Files): Add lib/frexp.c.
29901         (Depends-on): Add isnanl-nolibm.
29902
29903 2007-03-22  Bruno Haible  <bruno@clisp.org>
29904
29905         * modules/printf-frexp (Files): Add m4/frexp.m4.
29906         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
29907         only if the found frexp function actually works.
29908
29909 2007-03-22  Bruno Haible  <bruno@clisp.org>
29910
29911         * lib/frexp.c: Remove older implementation that uses divisions.
29912
29913 2007-03-21  Bruno Haible  <bruno@clisp.org>
29914
29915         * modules/frexp-tests: New file.
29916         * tests/test-frexp.c: New file.
29917
29918         * modules/frexp: New file.
29919         * lib/frexp.c: New file.
29920         * m4/frexp.m4: New file.
29921         * lib/math_.h (frexp): New declaration.
29922         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
29923         REPLACE_FREXP.
29924         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
29925
29926 2007-03-21  Bruno Haible  <bruno@clisp.org>
29927
29928         * modules/isnanl-tests: New file.
29929         * tests/test-isnanl.c: New file.
29930
29931         * modules/isnanl: New file.
29932         * lib/isnanl.h: New file.
29933         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
29934         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
29935         gl_FUNC_ISNANL_WORKS.
29936         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
29937         New macros.
29938
29939 2007-03-21  Bruno Haible  <bruno@clisp.org>
29940
29941         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
29942         lib/isnanl.h.
29943         (Include): Update.
29944         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
29945         * lib/vasnprintf.c: Update.
29946         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
29947         tests/test-isnanl.h, remove tests/test-isnanl.c.
29948         (Makefile.am): Update.
29949         * tests/test-isnanl-nolibm.c: New file.
29950         * tests/test-isnanl.h: New file.
29951         * tests/test-isnanl.c: Remove file.
29952
29953 2007-03-21  Jim Meyering  <jim@meyering.net>
29954
29955         When trying to open ".", treat ESTALE like EACCES.
29956         * lib/savewd.c (savewd_save): Resort to forking not just upon
29957         failure with EACCES, but also when errno is ESTALE.
29958
29959 2007-03-20  Bruno Haible  <bruno@clisp.org>
29960
29961         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
29962         Needed on AIX 5.1. Reported by Matthew Woehlke.
29963
29964 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
29965
29966         Suggestions by Bruno Haible:
29967         * lib/acl-internal.h: Include "gettext.h" rather than rolling
29968         our own.
29969         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
29970         * modules/acl (Depends-on): Add gettext.
29971
29972 2007-03-19  Bruno Haible  <bruno@clisp.org>
29973
29974         * modules/iconvme: Remove file.
29975         * lib/iconvme.h: Remove file.
29976         * lib/iconvme.c: Remove file.
29977         * m4/iconvme.m4: Remove file.
29978
29979 2007-03-19  Bruno Haible  <bruno@clisp.org>
29980
29981         * doc/relocatable-maint.texi: Break long shell script line.
29982         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
29983
29984 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
29985
29986         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
29987         handle file_has_acl.
29988         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
29989         * lib/acl.c: Move header inclusions and related macro defns into
29990         lib/acl-internal.h.
29991         (S_ISLNK): Remove defn, since that's now done for us.
29992         (file_has_acl): Move to lib/file-has-acl.c.
29993         Call acl_trivial if available.  This is the crucial part of the fix.
29994         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
29995         shared within the library.  Rewrite a bit, partly to make it compatible
29996         with the GNU coding style.
29997         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
29998         Remove unnecessary double-quotes.
29999         Don't test for acl_to_text; the build will catch that.
30000         Replace acl_entries if it doesn't exist and it is needed.
30001         Check for -lsec and acl_trivial (as used on Solaris 10).
30002         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
30003         lib/file-has-acl.c.
30004         (Depends-on): Add sys_stat, for S_ISLNK.
30005
30006 2007-03-19  Ben Pfaff  <blp@gnu.org>
30007
30008         * doc/gnulib.texi: Fix typos.
30009         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
30010
30011 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30012
30013         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
30014         If size is zero here, buf must be zero.
30015
30016 2007-03-19  Simon Josefsson  <simon@josefsson.org>
30017
30018         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
30019         <bruno@clisp.org>.
30020
30021 2007-03-18  Bruno Haible  <bruno@clisp.org>
30022
30023         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
30024         Suggested by Eric Blake.
30025
30026 2007-03-18  Ben Pfaff  <blp@gnu.org>
30027
30028         * doc/relocatable.texi: Recommend using as prefix a directory
30029         that does not exist and will never be created.  Based on
30030         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
30031         and others.
30032
30033 2007-03-17  Bruno Haible  <bruno@clisp.org>
30034
30035         * lib/fchownat.c: Include lchown.h.
30036
30037 2007-03-17  Bruno Haible  <bruno@clisp.org>
30038
30039         Fix endless loop when the given allocated size was > INT_MAX.
30040         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
30041         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
30042         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
30043         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
30044         * lib/sprintf.c (sprintf): Likewise.
30045
30046 2007-03-17  Bruno Haible  <bruno@clisp.org>
30047
30048         * tests/test-argp-2.sh (func_compare): Output a context diff.
30049
30050 2007-03-17  Bruno Haible  <bruno@clisp.org>
30051
30052         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
30053         locale's decimal-point character.
30054
30055 2007-03-17  Bruno Haible  <bruno@clisp.org>
30056
30057         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
30058         before comparing it. Needed because on some platforms (e.g. x86) a
30059         'long double' occupies less bytes than sizeof (long double).
30060
30061 2007-03-17  Bruno Haible  <bruno@clisp.org>
30062
30063         * tests/test-crc.c (main): Make printf statements 64-bit clean.
30064         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
30065         * tests/test-getaddrinfo.c (simple): Likewise.
30066         * tests/test-read-file.c (main): Likewise.
30067
30068 2007-03-17  Bruno Haible  <bruno@clisp.org>
30069
30070         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
30071
30072 2007-03-17  Bruno Haible  <bruno@clisp.org>
30073
30074         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
30075         unused variable.
30076
30077 2007-03-17  Bruno Haible  <bruno@clisp.org>
30078
30079         * tests/test-c-strcasecmp.c: Include c-strcase.h.
30080         * tests/test-c-strncasecmp.c: Likewise.
30081
30082 2007-03-17  Bruno Haible  <bruno@clisp.org>
30083
30084         * modules/stdlib (Depends-on): Add unistd.
30085         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
30086         Needed for MacOS X 10.3.
30087
30088 2007-03-17  Bruno Haible  <bruno@clisp.org>
30089
30090         * lib/unistr/u-strdup.h: Include <stdlib.h>.
30091
30092 2007-03-17  Bruno Haible  <bruno@clisp.org>
30093
30094         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
30095
30096 2007-03-17  Bruno Haible  <bruno@clisp.org>
30097
30098         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
30099         to reflect files copied from gnulib (with or without modifications).
30100         Suggested by Jim Meyering.
30101
30102 2007-03-17  Eric Blake  <ebb9@byu.net>
30103
30104         * NEWS: Document stdlib change from 2007-02-18.
30105
30106 2007-03-17  Jim Meyering  <jim@meyering.net>
30107
30108         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
30109         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
30110         someone uses a name containing shell meta-characters.
30111         Reported by Alfred M. Szmidt.
30112
30113         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
30114
30115 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
30116
30117         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
30118         and copy gettext configuration files only if configure.ac contains
30119         a use of AM_GNU_GETTEXT_VERSION.
30120
30121 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
30122
30123         * build-aux/bootstrap (gnulib_name): New variable.
30124         (gnulib_tool_options): Use it.
30125
30126 2007-03-13  Simon Josefsson  <simon@josefsson.org>
30127
30128         * tests/test-des.c: Use new namespace.
30129
30130 2007-03-15  Bruno Haible  <bruno@clisp.org>
30131
30132         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
30133         Reported by James Youngman <jay@gnu.org>.
30134
30135 2007-03-15  Bruno Haible  <bruno@clisp.org>
30136
30137         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
30138         declared prototype. Needed with cc on OSF/1 5.1.
30139
30140 2007-03-15  Bruno Haible  <bruno@clisp.org>
30141
30142         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
30143         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
30144         (struct gl_list_implementation): Add dispose_fn argument to the
30145         'create_empty', 'create' methods.
30146         (struct gl_list_impl_base): Add field 'dispose_fn'.
30147         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
30148         argument.
30149         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
30150         dispose_fn argument.
30151         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
30152         dispose_fn on the dropped values.
30153         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
30154         dispose_fn argument.
30155         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
30156         dropped values.
30157         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
30158         (gl_tree_remove_node): Call dispose_fn on the dropped value.
30159         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
30160         (gl_tree_remove_node): Call dispose_fn on the dropped value.
30161         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
30162         argument.
30163         (gl_tree_list_free): Call dispose_fn on the dropped values.
30164         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
30165         the dropped values.
30166         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
30167         Add dispose_fn argument.
30168         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
30169         Call dispose_fn on the dropped values.
30170         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
30171         Add dispose_fn argument.
30172         (gl_sublist_create): Initialize the 'dispose_fn' field.
30173         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
30174         * tests/test-array_list.c (main): Update.
30175         * tests/test-carray_list.c (main): Update.
30176         * tests/test-avltree_list.c (main): Update.
30177         * tests/test-rbtree_list.c (main): Update.
30178         * tests/test-avltreehash_list.c (main): Update.
30179         * tests/test-rbtreehash_list.c (main): Update.
30180         * tests/test-linked_list.c (main): Update.
30181         * tests/test-linkedhash_list.c (main): Update.
30182         * tests/test-array_oset.c (main): Update.
30183
30184 2007-03-15  Bruno Haible  <bruno@clisp.org>
30185
30186         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
30187         (gl_oset_create_empty): Add dispose_fn argument.
30188         (struct gl_oset_implementation): Add dispose_fn argument to
30189         'create_empty' method.
30190         (struct gl_oset_impl_base): Add dispose_fn field.
30191         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
30192         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
30193         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
30194         values.
30195         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
30196         (gl_tree_oset_free): Call dispose_fn on the dropped values.
30197         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
30198         dropped value.
30199         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
30200         dropped value.
30201         * tests/test-array_oset.c (main): Update.
30202         * tests/test-avltree_oset.c (main): Update.
30203         * tests/test-rbtree_oset.c (main): Update.
30204         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
30205
30206 2007-03-13  Bruno Haible  <bruno@clisp.org>
30207
30208         * tests/test-stdbool.c (i): Update after last patch.
30209
30210 2007-03-12  Bruno Haible  <bruno@clisp.org>
30211
30212         * lib/quotearg.c: Include <wctype.h> early, before the definition of
30213         the iswprint macro. Needed on Solaris 2.5.1.
30214
30215 2007-03-12  Bruno Haible  <bruno@clisp.org>
30216
30217         * tests/test-printf-frexp.c (main): Declare x as volatile.
30218
30219 2007-03-12  Simon Josefsson  <simon@josefsson.org>
30220
30221         * doc/gnulib.texi (Build robot for gnulib): New section.
30222
30223 2007-03-12  Jim Meyering  <jim@meyering.net>
30224
30225         * build-aux/bootstrap: New file.
30226         * build-aux/bootstrap.conf: New file, from coreutils.
30227
30228 2007-03-11  Bruno Haible  <bruno@clisp.org>
30229
30230         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
30231
30232 2007-03-12  Simon Josefsson  <simon@josefsson.org>
30233
30234         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
30235         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
30236         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
30237
30238 2007-03-11  Bruno Haible  <bruno@clisp.org>
30239
30240         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
30241         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
30242
30243 2007-03-11  Bruno Haible  <bruno@clisp.org>
30244
30245         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
30246         formula. Needed for SunPRO C 5.0.
30247
30248 2007-03-11  Bruno Haible  <bruno@clisp.org>
30249
30250         * modules/long-options (Depends-on): Add getopt.
30251
30252 2007-03-11  Bruno Haible  <bruno@clisp.org>
30253
30254         * modules/modechange (Depends-on): Add stdbool.
30255
30256 2007-03-11  Bruno Haible  <bruno@clisp.org>
30257
30258         * modules/i-ring (Depends-on): Add stdbool.
30259
30260 2007-03-11  Bruno Haible  <bruno@clisp.org>
30261
30262         * modules/gc-des (Depends-on): Add stdbool.
30263
30264 2007-03-11  Bruno Haible  <bruno@clisp.org>
30265
30266         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
30267
30268 2007-03-11  Bruno Haible  <bruno@clisp.org>
30269
30270         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
30271
30272 2007-03-11  Bruno Haible  <bruno@clisp.org>
30273
30274         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
30275
30276 2007-03-11  Bruno Haible  <bruno@clisp.org>
30277
30278         * lib/vasnprintf.c (sprintf): Undefine.
30279
30280 2007-03-11  Bruno Haible  <bruno@clisp.org>
30281
30282         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
30283         initializers in SunPRO C and Compaq C compilers.
30284
30285 2007-03-11  Bruno Haible  <bruno@clisp.org>
30286
30287         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
30288         decrementing code ANSI C compliant.
30289
30290 2007-03-11  Bruno Haible  <bruno@clisp.org>
30291
30292         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
30293         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
30294
30295 2007-03-11  Bruno Haible  <bruno@clisp.org>
30296
30297         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
30298         <stdbool.h> substitute doesn't pass.
30299
30300 2007-03-11  Bruno Haible  <bruno@clisp.org>
30301
30302         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
30303
30304 2007-03-11  Bruno Haible  <bruno@clisp.org>
30305
30306         * gnulib-tool (func_create_megatestdir): Create also an autobuild
30307         script, for submission to autobuild.josefsson.org.
30308
30309 2007-03-10  Bruno Haible  <bruno@clisp.org>
30310
30311         * modules/canonicalize-lgpl-tests: New file.
30312         * tests/test-canonicalize-lgpl.sh: New file.
30313         * tests/test-canonicalize-lgpl.c: New file.
30314
30315         * modules/c-strcase-tests: New file.
30316         * tests/test-c-strcase.sh: New file.
30317         * tests/test-c-strcasecmp.c: New file.
30318         * tests/test-c-strncasecmp.c: New file.
30319
30320         * modules/atexit-tests: New file.
30321         * tests/test-atexit.sh: New file.
30322         * tests/test-atexit.c: New file.
30323
30324 2007-03-10  Bruno Haible  <bruno@clisp.org>
30325
30326         * tests/test-binary-io.sh: Use temporary filenames that are not so
30327         likely to clash with those of other tests (in a parallel make).
30328         * tests/test-binary-io.c: Likewise.
30329
30330 2007-03-10  Bruno Haible  <bruno@clisp.org>
30331
30332         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
30333         fallback; use #error instead.
30334         Suggested by Simon Josefsson.
30335
30336 2007-03-10  Bruno Haible  <bruno@clisp.org>
30337
30338         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
30339         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
30340         first and the last.
30341
30342 2007-03-10  Bruno Haible  <bruno@clisp.org>
30343
30344         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
30345
30346 2007-03-10  Bruno Haible  <bruno@clisp.org>
30347
30348         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
30349         "make distcheck".
30350         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
30351         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
30352         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
30353
30354 2007-03-10  Bruno Haible  <bruno@clisp.org>
30355
30356         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
30357         variable.
30358         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
30359         variable.
30360
30361 2007-03-09  Eric Blake  <ebb9@byu.net>
30362         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
30363
30364         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
30365         types are not being provided by gnulib.
30366         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
30367         types are supported.
30368
30369 2007-03-10  Bruno Haible  <bruno@clisp.org>
30370
30371         * lib/stdio_.h (__attribute__): New macro.
30372         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
30373         vsprintf): Specify __attribute__ __format__ for GCC.
30374         Suggested by Eric Blake.
30375
30376 2007-03-09  Bruno Haible  <bruno@clisp.org>
30377
30378         * modules/printf-posix-tests: New file.
30379         * tests/test-printf-posix.sh: New file.
30380         * tests/test-printf-posix.c: New file.
30381
30382         * modules/printf-posix: New file.
30383         * lib/printf.c: New file.
30384         * m4/printf-posix-rpl.m4: New file.
30385         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
30386         REPLACE_PRINTF.
30387         * lib/stdio_.h (printf): New declaration.
30388         (format, __format__, ____printf____, ____scanf____, ____strftime____,
30389         ____strfmon____): New macros.
30390         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
30391         REPLACE_PRINTF.
30392
30393 2007-03-09  Bruno Haible  <bruno@clisp.org>
30394
30395         * tests/test-vasnprintf-posix2.sh: New file.
30396         * tests/test-vasnprintf-posix2.c: New file.
30397         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
30398         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
30399         (Makefile.am): Activate test-vasnprintf-posix2.sh.
30400
30401         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
30402         a locale dependent decimal point, rather than always '.'.
30403
30404 2007-03-09  Eric Blake  <ebb9@byu.net>
30405
30406         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
30407         spite of platforms like Tandem/NSK that define it to -1.
30408
30409 2007-03-08  Bruno Haible  <bruno@clisp.org>
30410
30411         * modules/vprintf-posix-tests: New file.
30412         * tests/test-vprintf-posix.sh: New file.
30413         * tests/test-vprintf-posix.c: New file.
30414         * tests/test-printf-posix.h: New file.
30415
30416         * modules/vprintf-posix: New file.
30417         * lib/vprintf.c: New file.
30418         * m4/vprintf-posix.m4: New file.
30419         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
30420         REPLACE_VPRINTF.
30421         * lib/stdio_.h (vprintf): New declaration.
30422         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
30423         REPLACE_VPRINTF.
30424
30425 2007-03-08  Bruno Haible  <bruno@clisp.org>
30426
30427         * modules/fprintf-posix-tests: New file.
30428         * tests/test-fprintf-posix.sh: New file.
30429         * tests/test-fprintf-posix.c: New file.
30430
30431         * modules/fprintf-posix: New file.
30432         * lib/fprintf.c: New file.
30433         * m4/fprintf-posix.m4: New file.
30434         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
30435         REPLACE_FPRINTF.
30436         * lib/stdio_.h (fprintf): New declaration.
30437         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
30438         REPLACE_FPRINTF.
30439
30440 2007-03-08  Bruno Haible  <bruno@clisp.org>
30441
30442         * modules/vfprintf-posix-tests: New file.
30443         * tests/test-vfprintf-posix.sh: New file.
30444         * tests/test-vfprintf-posix.c: New file.
30445         * tests/test-fprintf-posix.h: New file.
30446         * tests/test-fprintf-posix.out: New file.
30447
30448         * modules/vfprintf-posix: New file.
30449         * lib/vfprintf.c: New file.
30450         * m4/vfprintf-posix.m4: New file.
30451         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
30452         REPLACE_VFPRINTF.
30453         * lib/stdio_.h (vfprintf): New declaration.
30454         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
30455         REPLACE_VFPRINTF.
30456
30457 2007-03-08  Bruno Haible  <bruno@clisp.org>
30458
30459         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
30460
30461 2007-03-08  Bruno Haible  <bruno@clisp.org>
30462
30463         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
30464         instead of 'expr' invocations.
30465         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30466         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30467         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30468         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30469         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30470         Suggested by Paul Eggert.
30471
30472 2007-03-08  Bruno Haible  <bruno@clisp.org>
30473
30474         * modules/fseterr-tests: New file.
30475         * tests/test-fseterr.c: New file.
30476
30477         * modules/fseterr: New file.
30478         * lib/fseterr.h: New file.
30479         * lib/fseterr.c: New file.
30480
30481 2007-03-08  Bruno Haible  <bruno@clisp.org>
30482
30483         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
30484         * lib/getopt_.h: Likewise.
30485         * lib/mbswidth.h: Likewise.
30486         * lib/setenv.h: Likewise.
30487         * lib/vasnprintf.h: Likewise.
30488         * lib/vasprintf.h: Likewise.
30489         * lib/verror.h: Likewise.
30490         * lib/xsetenv.h: Likewise.
30491         * lib/xvasprintf.h: Likewise.
30492
30493 2007-03-08  Jim Meyering  <jim@meyering.net>
30494
30495         * users.txt: Add parted.
30496
30497         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
30498
30499 2007-03-07  Bruno Haible  <bruno@clisp.org>
30500
30501         * m4/printf.m4: Make the shell script snippets copy&pastable.
30502
30503 2007-03-02  Bruno Haible  <bruno@clisp.org>
30504
30505         * lib/netinet_in_.h: New file.
30506         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
30507         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
30508         * modules/netinet_in (Files): Add lib/netinet_in_.h.
30509         (Depends-on): Add absolute-header.
30510         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
30511         into netinet/in.h.
30512
30513 2007-03-03  Bruno Haible  <bruno@clisp.org>
30514
30515         * lib/sys_select_.h: New file.
30516         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
30517         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
30518         * modules/sys_select (Files): Add lib/sys_select_.h.
30519         (Depends-on): Add absolute-header.
30520         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
30521         into sys/select.h.
30522
30523 2007-03-02  Bruno Haible  <bruno@clisp.org>
30524
30525         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
30526         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
30527         values.
30528         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
30529         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
30530         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
30531         * modules/sys_socket (Depends-on): Add absolute-header.
30532         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
30533         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
30534         (Include): Remove requirement of inclusion of <sys/types.h>.
30535
30536 2007-03-02  Bruno Haible  <bruno@clisp.org>
30537
30538         * lib/byteswap_.h (bswap_32): Fix formula.
30539
30540 2007-03-06  Bruno Haible  <bruno@clisp.org>
30541
30542         * modules/sprintf-posix-tests: New file.
30543         * tests/test-sprintf-posix.c: New file.
30544
30545         * modules/sprintf-posix: New file.
30546         * lib/sprintf.c: New file.
30547         * m4/sprintf-posix.m4: New file.
30548         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
30549         REPLACE_SPRINTF.
30550         * lib/stdio_.h (sprintf): New declaration.
30551         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
30552         REPLACE_SPRINTF.
30553
30554 2007-03-06  Bruno Haible  <bruno@clisp.org>
30555
30556         * modules/vsprintf-posix-tests: New file.
30557         * tests/test-vsprintf-posix.c: New file.
30558         * tests/test-sprintf-posix.h: New file.
30559
30560         * modules/vsprintf-posix: New file.
30561         * lib/vsprintf.c: New file.
30562         * m4/vsprintf-posix.m4: New file.
30563         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
30564         REPLACE_VSPRINTF.
30565         * lib/stdio_.h (vsprintf): New declaration.
30566         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
30567         REPLACE_VSPRINTF.
30568
30569 2007-03-06  Bruno Haible  <bruno@clisp.org>
30570
30571         * modules/vsnprintf (Depend-on): Remove minmax.
30572
30573 2007-03-06  Bruno Haible  <bruno@clisp.org>
30574
30575         * modules/snprintf-posix-tests: New file.
30576         * tests/test-snprintf-posix.c: New file.
30577
30578         * modules/snprintf-posix: New file.
30579         * m4/snprintf-posix.m4: New file.
30580         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
30581         gl_FUNC_SNPRINTF.
30582         (gl_FUNC_SNPRINTF): Invoke it.
30583         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
30584         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
30585         is set.
30586         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
30587
30588 2007-03-06  Bruno Haible  <bruno@clisp.org>
30589
30590         * modules/vsnprintf-posix-tests: New file.
30591         * tests/test-vsnprintf-posix.c: New file.
30592         * tests/test-snprintf-posix.h: New file.
30593
30594         * modules/vsnprintf-posix: New file.
30595         * m4/vsnprintf-posix.m4: New file.
30596         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
30597         gl_FUNC_VSNPRINTF.
30598         (gl_FUNC_VSNPRINTF): Invoke it.
30599         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
30600         * lib/stdio_.h (vsnprintf): Define as a replacement if
30601         REPLACE_VSNPRINTF is set.
30602         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
30603
30604 2007-03-06  Bruno Haible  <bruno@clisp.org>
30605
30606         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
30607         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
30608
30609 2007-03-06  Bruno Haible  <bruno@clisp.org>
30610
30611         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
30612         (asinl): Declare also if HAVE_DECL_ASINL is set.
30613         (atanl): Declare also if HAVE_DECL_ATANL is set.
30614         (ceill): Declare also if HAVE_DECL_CEILL is set.
30615         (cosl): Declare also if HAVE_DECL_COSL is set.
30616         (expl): Declare also if HAVE_DECL_EXPL is set.
30617         (floorl): Declare also if HAVE_DECL_FLOORL is set.
30618         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
30619         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
30620         (logl): Declare also if HAVE_DECL_LOGL is set.
30621         (sinl): Declare also if HAVE_DECL_SINL is set.
30622         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
30623         (tanl): Declare also if HAVE_DECL_TANL is set.
30624         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
30625         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
30626         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
30627         declaration of frexpl, ldexpl.
30628         * modules/printf-frexpl (Depends-on): Add math.
30629         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
30630
30631 2007-03-05  Bruno Haible  <bruno@clisp.org>
30632
30633         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
30634         frexpl and ldexpl are declared.
30635         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
30636
30637 2007-03-05  Bruno Haible  <bruno@clisp.org>
30638
30639         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
30640         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
30641
30642 2007-03-05  Bruno Haible  <bruno@clisp.org>
30643
30644         * lib/stdio_.h: Include <stddef.h>.
30645
30646 2007-03-05  Bruno Haible  <bruno@clisp.org>
30647
30648         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
30649
30650 2007-03-05  Bruno Haible  <bruno@clisp.org>
30651
30652         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
30653         NetBSD 4, from Ralf Wildenhues.
30654
30655 2007-03-04  Bruno Haible  <bruno@clisp.org>
30656
30657         * lib/vasprintf.h: Update #if logic for the case when the functions
30658         exist but are overridden.
30659
30660 2007-03-04  Bruno Haible  <bruno@clisp.org>
30661
30662         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
30663         implementations: glibc-2.4 and MacOS X 10.3.
30664         * tests/test-vasnprintf-posix.c (test_function): Test also the case
30665         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
30666         * tests/test-vasprintf-posix.c (test_function): Likewise.
30667
30668 2007-03-04  Bruno Haible  <bruno@clisp.org>
30669
30670         * modules/vasprintf-posix-tests: New file.
30671         * tests/test-vasprintf-posix.c: New file.
30672
30673         * modules/vasprintf-posix: New file.
30674         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
30675         defined.
30676         * m4/vasprintf-posix.m4: New file.
30677         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
30678         gl_FUNC_VASPRINTF.
30679         (gl_FUNC_VASPRINTF): Invoke it.
30680         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
30681         here.
30682         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
30683
30684 2007-03-04  Bruno Haible  <bruno@clisp.org>
30685
30686         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
30687         REPLACE_GETTIMEOFDAY.
30688         * modules/sys_time (Makefile.am): Likewise.
30689         * m4/sys_time_h.m4: Likewise.
30690         * m4/gettimeofday.m4: Likewise.
30691
30692 2007-03-04  Bruno Haible  <bruno@clisp.org>
30693
30694         * modules/vasnprintf-posix-tests: New file.
30695         * tests/test-vasnprintf-posix.c: New file.
30696
30697         * modules/vasnprintf-posix: New file.
30698         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
30699         printf-frexpl.h.
30700         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
30701         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
30702         REPLACE_VASNPRINTF is defined.
30703         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
30704         gl_FUNC_VASNPRINTF.
30705         (gl_FUNC_VASNPRINTF): Invoke it.
30706         * m4/vasnprintf-posix.m4: New file.
30707         * m4/printf.m4: New file.
30708
30709 2007-03-04  Bruno Haible  <bruno@clisp.org>
30710
30711         Compile progreloc.c only if --enable-relocatable is specified.
30712         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
30713         if --enable-relocatable was specified.
30714         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
30715         lib_SOURCES.
30716
30717 2007-03-04  Jim Meyering  <jim@meyering.net>
30718
30719         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
30720         Use it consistently, rather than enumerating errno constants.
30721
30722 2007-03-04  Bruno Haible  <bruno@clisp.org>
30723
30724         * modules/xvasprintf-tests: New file.
30725         * tests/test-xvasprintf.c: New file.
30726
30727         * modules/vasprintf-tests: New file.
30728         * tests/test-vasprintf.c: New file.
30729
30730         * modules/vasnprintf-tests: New file.
30731         * tests/test-vasnprintf.c: New file.
30732
30733         * modules/vsnprintf-tests: New file.
30734         * tests/test-vsnprintf.c: New file.
30735
30736         * modules/snprintf-tests: New file.
30737         * tests/test-snprintf.c: New file.
30738
30739 2007-03-04  Bruno Haible  <bruno@clisp.org>
30740
30741         Compile relocatable.c only if --enable-relocatable is specified.
30742         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
30743         gl_RELOCATABLE_LIBRARY.
30744         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
30745         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
30746         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
30747         gl_RELOCATABLE_LIBRARY.
30748         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
30749         (Makefile.am): Remove lib_SOURCES.
30750         * modules/relocatable-lib-lgpl (configure.ac): Invoke
30751         gl_RELOCATABLE_LIBRARY.
30752         (Makefile.am): Remove lib_SOURCES.
30753         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
30754         always.
30755         * modules/relocatable-prog-wrapper (configure.ac): Invoke
30756         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
30757
30758 2007-03-04  Bruno Haible  <bruno@clisp.org>
30759
30760         * modules/argmatch-tests: New file.
30761         * tests/test-argmatch.c: New file.
30762
30763         * tests/test-allocsa.c (main): Halve the number of loop runs.
30764
30765         * modules/alloca-opt-tests: New file.
30766         * tests/test-alloca-opt.c: New file.
30767
30768 2007-03-04  Jim Meyering  <jim@meyering.net>
30769
30770         Work around difference between Linux ACLs and Solaris 10 ZFS.
30771         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
30772         for EINVAL.
30773
30774 2007-03-03  Bruno Haible  <bruno@clisp.org>
30775
30776         * modules/relocatable-prog (Depends-on): Add back progreloc's
30777         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
30778
30779 2007-03-03  Bruno Haible  <bruno@clisp.org>
30780
30781         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
30782         * modules/relocatable-lib: New file.
30783
30784 2007-03-03  Bruno Haible  <bruno@clisp.org>
30785
30786         * modules/relocatable-prog: Renamed from modules/relocatable.
30787         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
30788
30789 2007-03-03  Bruno Haible  <bruno@clisp.org>
30790
30791         * modules/relocatable-script (Files): Add doc/relocatable.texi,
30792         m4/relocatable-lib.m4.
30793         (Depends-on): Remove 'relocatable'.
30794         (configure.ac): Add gl_RELOCATABLE_NOP.
30795
30796 2007-03-03  Bruno Haible  <bruno@clisp.org>
30797
30798         * modules/relocatable-prog-wrapper: New file.
30799         * modules/relocatable (Depends-on): Add it. Remove all other
30800         dependencies except progname.
30801         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
30802
30803         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
30804         (gl_FUNC_STRERROR): Nop.
30805         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
30806
30807         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
30808         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
30809
30810         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
30811         (gl_FUNC_READLINK): Update.
30812
30813         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
30814
30815 2007-03-03  Bruno Haible  <bruno@clisp.org>
30816
30817         * lib/xreadlink.c: Include <unistd.h> unconditionally.
30818         * modules/xreadlink (Depends-on): Add unistd.
30819         * modules/xreadlink-with-size (Depends-on): Likewise.
30820
30821 2007-03-03  Bruno Haible  <bruno@clisp.org>
30822
30823         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
30824         extracted from gt_FUNC_SETENV.
30825         (gt_FUNC_SETENV): Remove macro.
30826         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
30827         remove gt_FUNC_SETENV.
30828
30829 2007-03-03  Bruno Haible  <bruno@clisp.org>
30830
30831         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
30832         ENABLE_RELOCATABLE here.
30833         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
30834
30835 2007-03-03  Bruno Haible  <bruno@clisp.org>
30836
30837         * modules/rbtreehash-list-tests (Depends-on): Add progname.
30838         * tests/test-rbtreehash_list.c: Include progname.h.
30839         (main): Call set_program_name.
30840
30841         * modules/rbtree-oset-tests (Depends-on): Add progname.
30842         * tests/test-rbtree_oset.c: Include progname.h.
30843         (main): Call set_program_name.
30844
30845         * modules/rbtree-list-tests (Depends-on): Add progname.
30846         * tests/test-rbtree_list.c: Include progname.h.
30847         (main): Call set_program_name.
30848
30849         * modules/linked-list-tests (Depends-on): Add progname.
30850         * tests/test-linked_list.c: Include progname.h.
30851         (main): Call set_program_name.
30852
30853 2007-03-03  Bruno Haible  <bruno@clisp.org>
30854
30855         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
30856         All uses of __restrict changed to _Restrict_.
30857         * lib/glob_.h (__restrict): Remove macro.
30858
30859 2007-03-02  Bruno Haible  <bruno@clisp.org>
30860
30861         * modules/gettext (configure.ac): Require gettext infrastructure
30862         from version 0.16.1.
30863
30864 2007-03-02  Bruno Haible  <bruno@clisp.org>
30865
30866         * modules/linkedhash-list-tests (Depends-on): Add progname.
30867         * tests/test-linkedhash_list.c: Include progname.h.
30868         (main): Call set_program_name.
30869
30870         * modules/carray-list-tests (Depends-on): Add progname.
30871         * tests/test-carray_list.c: Include progname.h.
30872         (main): Call set_program_name.
30873
30874         * modules/avltreehash-list-tests (Depends-on): Add progname.
30875         * tests/test-avltreehash_list.c: Include progname.h.
30876         (main): Call set_program_name.
30877
30878         * modules/avltree-oset-tests (Depends-on): Add progname.
30879         * tests/test-avltree_oset.c: Include progname.h.
30880         (main): Call set_program_name.
30881
30882         * modules/avltree-list-tests (Depends-on): Add progname.
30883         * tests/test-avltree_list.c: Include progname.h.
30884         (main): Call set_program_name.
30885
30886         * modules/array-oset-tests (Depends-on): Add progname.
30887         * tests/test-array_oset.c: Include progname.h.
30888         (main): Call set_program_name.
30889
30890         * modules/array-list-tests (Depends-on): Add progname.
30891         * tests/test-array_list.c: Include progname.h.
30892         (main): Call set_program_name.
30893
30894         * modules/argp-tests (Depends-on): Add progname.
30895         * tests/test-argp.c: Include argp.h first. Include progname.h.
30896         (main): Call set_program_name.
30897
30898 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
30899
30900         * doc/gnulib-tool.texi (Initial import): Reword description of
30901         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
30902         limited effect even if defined after the first system include.
30903
30904 2007-03-01  Bruno Haible  <bruno@clisp.org>
30905
30906         * build-aux/config.libpath: Update to libtool-1.5.22.
30907         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
30908
30909 2007-03-01  Bruno Haible  <bruno@clisp.org>
30910
30911         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
30912         foo_CFLAGS.
30913         Reported by Ralf Wildenhues.
30914
30915 2007-03-01  Bruno Haible  <bruno@clisp.org>
30916
30917         * build-aux/install-reloc: Remove object files left over by some
30918         compilers.
30919         Reported by Ralf Wildenhues.
30920
30921 2007-03-01  Bruno Haible  <bruno@clisp.org>
30922
30923         * build-aux/install-reloc: Break long lines.
30924
30925 2007-03-01  Bruno Haible  <bruno@clisp.org>
30926
30927         * doc/relocatable.texi: Document that it may not work on OpenBSD.
30928         Reported by Ralf Wildenhues.
30929
30930 2007-03-01  Bruno Haible  <bruno@clisp.org>
30931
30932         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
30933         include ordering constraints.
30934
30935 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
30936
30937         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
30938         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
30939         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
30940         as another example.
30941         * lib/time_.h: Fix misspelling.
30942         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
30943         Require gl_HEADER_TIME_H_DEFAULTS.
30944         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
30945         * m4/time_r.m4 (gl_TIME_R): Likewise.
30946         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
30947
30948 2007-03-01  Bruno Haible  <bruno@clisp.org>
30949
30950         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
30951         * m4/utimens.m4 (gl_UTIMENS): Likewise.
30952
30953 2007-03-01  Jim Meyering  <jim@meyering.net>
30954
30955         * modules/xreadlink (Maintainer): Add my name.
30956         * modules/xreadlink-with-size (Depends-on): Alphabetize.
30957
30958 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
30959             Bruno Haible  <bruno@clisp.org>
30960
30961         * build-aux/install-reloc: Compile also c-ctype.c.
30962         * build-aux/relocatable.sh.in: New file.
30963         * doc/relocatable.texi: New file.
30964         * doc/relocatable-maint.texi: New file.
30965         * doc/gnulib.texi: Include relocatable-maint.texi.
30966         * lib/progreloc.c: Include unistd.h unconditionally.
30967         * lib/relocwrapper.c: Include unistd.h unconditionally.
30968         Include c-ctype.h.
30969         (add_dotbin): Use c_tolower.
30970         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
30971         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
30972         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
30973         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
30974         to m4/relocatable-lib.m4.
30975         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
30976         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
30977         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
30978         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
30979         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
30980         * modules/relocatable: New file.
30981         * modules/relocatable-lib: New file.
30982         * modules/relocatable-script: New file.
30983
30984 2007-02-28  Bruno Haible  <bruno@clisp.org>
30985
30986         Import --enable-relocatable infrastructure.
30987         * build-aux/config.libpath: New file, from GNU gettext.
30988         * build-aux/install-reloc: New file, from GNU gettext.
30989         * build-aux/reloc-ldflags: New file, from GNU gettext.
30990         * lib/relocatable.h: New file, from GNU gettext.
30991         * lib/relocatable.c: New file, from GNU gettext.
30992         * lib/relocwrapper.c: New file, from GNU gettext.
30993         * m4/relocatable.m4: New file, from GNU gettext.
30994
30995 2007-02-28  Bruno Haible  <bruno@clisp.org>
30996
30997         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
30998
30999         * modules/xreadlink: New file, from GNU gettext with modifications.
31000         * lib/xreadlink.c: New file, from GNU gettext.
31001         * lib/xreadlink.h: Add comments.
31002         (xreadlink): New declaration.
31003
31004         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
31005         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
31006         lib/xreadlink-with-size.c.
31007         (configure.ac): Remove gl_XREADLINK invocation.
31008         (Makefile.am): Augment lib_SOURCES.
31009         * m4/xreadlink.m4: Remove file.
31010         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
31011         (xreadlink_with_size): Renamed from xreadink.
31012         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
31013         * modules/canonicalize (Depends-on): Replace xreadlink with
31014         xreadlink-with-size.
31015         * lib/canonicalize.c (canonicalize_filename_mode): Update.
31016
31017 2007-02-25  Jim Meyering  <jim@meyering.net>
31018
31019         * build-aux/announce-gen: When complaining about excess arguments,
31020         list them.
31021
31022 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
31023
31024         * README: Document signed integer overflow situation more
31025         accurately.
31026
31027 2007-02-25  Bruno Haible  <bruno@clisp.org>
31028
31029         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
31030         'a' or 'A' conversion.
31031
31032 2007-02-25  Bruno Haible  <bruno@clisp.org>
31033
31034         * modules/filename: Renamed from modules/pathname.
31035         (Files): Replace lib/pathname.h with lib/filename.h. Replace
31036         lib/concatpath.c with lib/concat-filename.c.
31037         (Makefile.am): Update.
31038         (Include): Replace pathname.h with filename.h.
31039         * lib/filename.h: Renamed from lib/pathname.h.
31040         (concatenated_filename): Renamed from concatenated_pathname.
31041         * lib/concat-filename.c: Renamed from lib/concatpath.c.
31042         (concatenated_filename): Renamed from concatenated_pathname.
31043         * lib/findprog.c: Include filename.h instead of pathname.h.
31044         (find_in_path): Update.
31045         * lib/javacomp.c: Include filename.h instead of pathname.h.
31046         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
31047         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
31048         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
31049         is_oldgcj_14_13_usable, is_javac_usable): Update.
31050         * lib/javaexec.c: Include filename.h instead of pathname.h.
31051         (execute_java_class): Update.
31052         * modules/findprog: Update.
31053         * modules/javacomp: Update.
31054         * modules/javaexec: Update.
31055         * MODULES.html.sh (File system functions): Add 'filename', remove
31056         'pathname'.
31057
31058 2007-02-25  Bruno Haible  <bruno@clisp.org>
31059
31060         * modules/printf-frexpl-tests: New file.
31061         * tests/test-printf-frexpl.c: New file.
31062
31063         * modules/printf-frexpl: New file.
31064         * lib/printf-frexpl.h: New file.
31065         * lib/printf-frexpl.c: New file.
31066         * m4/printf-frexpl.m4: New file.
31067
31068 2007-02-25  Bruno Haible  <bruno@clisp.org>
31069
31070         * modules/printf-frexp-tests: New file.
31071         * tests/test-printf-frexp.c: New file.
31072
31073         * modules/printf-frexp: New file.
31074         * lib/printf-frexp.h: New file.
31075         * lib/printf-frexp.c: New file.
31076         * m4/printf-frexp.m4: New file.
31077
31078 2007-02-25  Bruno Haible  <bruno@clisp.org>
31079
31080         Assume automake >= 1.10 for the tests.
31081         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
31082         * modules/arctwo-tests: Likewise.
31083         * modules/argp-tests: Likewise.
31084         * modules/avltree-list-tests: Likewise.
31085         * modules/avltree-oset-tests: Likewise.
31086         * modules/avltreehash-list-tests: Likewise.
31087         * modules/carray-list-tests: Likewise.
31088         * modules/crc-tests: Likewise.
31089         * modules/des-tests: Likewise.
31090         * modules/gc-arcfour-tests: Likewise.
31091         * modules/gc-arctwo-tests: Likewise.
31092         * modules/gc-des-tests: Likewise.
31093         * modules/gc-hmac-md5-tests: Likewise.
31094         * modules/gc-hmac-sha1-tests: Likewise.
31095         * modules/gc-md2-tests: Likewise.
31096         * modules/gc-md4-tests: Likewise.
31097         * modules/gc-md5-tests: Likewise.
31098         * modules/gc-pbkdf2-sha1-tests: Likewise.
31099         * modules/gc-rijndael-tests: Likewise.
31100         * modules/gc-sha1-tests: Likewise.
31101         * modules/gc-tests: Likewise.
31102         * modules/getaddrinfo-tests: Likewise.
31103         * modules/hmac-md5-tests: Likewise.
31104         * modules/hmac-sha1-tests: Likewise.
31105         * modules/linked-list-tests: Likewise.
31106         * modules/linkedhash-list-tests: Likewise.
31107         * modules/lock-tests: Likewise.
31108         * modules/md2-tests: Likewise.
31109         * modules/md4-tests: Likewise.
31110         * modules/md5-tests: Likewise.
31111         * modules/rbtree-list-tests: Likewise.
31112         * modules/rbtree-oset-tests: Likewise.
31113         * modules/rbtreehash-list-tests: Likewise.
31114         * modules/read-file-tests: Likewise.
31115         * modules/rijndael-tests: Likewise.
31116         * modules/stdint-tests: Likewise.
31117         * modules/tls-tests: Likewise.
31118
31119 2007-02-24  Bruno Haible  <bruno@clisp.org>
31120
31121         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
31122         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
31123         function; instead check whether isnan with a double argument links.
31124         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
31125         function; instead check whether isnan with a 'long double' argument
31126         links.
31127         Reported by Eric Blake <ebb9@byu.net>.
31128
31129 2007-02-24  Bruno Haible  <bruno@clisp.org>
31130
31131         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
31132         defined.
31133         * lib/isnanl.c: Remove all code. Just include isnan.c.
31134         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
31135
31136 2007-02-25  Jim Meyering  <jim@meyering.net>
31137
31138         Avoid conflicting types for 'unsetenv' on FreeBSD.
31139         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
31140         conflicting with FreeBSD's (5.0 and 6.1) function declaration
31141         in stdlib.h.
31142
31143 2007-02-24  Bruno Haible  <bruno@clisp.org>
31144
31145         * modules/isnanl-nolibm-tests: New file.
31146         * tests/test-isnanl.c: New file.
31147
31148         * modules/isnanl-nolibm: New file.
31149         * lib/isnanl.h: New file.
31150         * lib/isnanl.c: New file.
31151         * m4/isnanl.m4: New file.
31152
31153 2007-02-24  Bruno Haible  <bruno@clisp.org>
31154
31155         * modules/isnan-nolibm-tests: New file.
31156         * tests/test-isnan.c: New file.
31157
31158         * modules/isnan-nolibm: New file.
31159         * lib/isnan.h: New file.
31160         * lib/isnan.c: New file.
31161         * m4/isnan.m4: New file.
31162
31163 2007-02-24  Bruno Haible  <bruno@clisp.org>
31164
31165         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
31166         assume that an exponent fits in 20 bits.
31167
31168 2007-02-24  Jim Meyering  <jim@meyering.net>
31169
31170         * m4/regex.m4: Update the description of the configure-time option,
31171         --without-included-regex, to state accurately what the defaults are,
31172         and perhaps to give people an idea why using this option is risky.
31173
31174 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
31175
31176         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
31177         loops on small arguments.  This attempts to avoid the problem
31178         Bruno Haible reported for AIX 4.3.2 in
31179         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
31180
31181 2007-02-23  Bruno Haible  <bruno@clisp.org>
31182
31183         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
31184         Needed for help2man.
31185
31186 2007-02-23  Karl Berry  <karl@gnu.org>
31187
31188         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
31189         exists, foo.h should be cvs-ignored, not committed.
31190
31191 2007-02-23  Eric Blake  <ebb9@byu.net>
31192
31193         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
31194         * lib/stat-time.h (includes): Likewise.
31195         * lib/utimecmp.c (includes): Likewise.
31196         * lib/utimens.h (includes): Likewise.
31197         * lib/getdate.y (includes): Also include "timespec.h" for use
31198         internal to the module.
31199         * modules/utimens (Depends-on): Revert yesterday's patch.
31200         * modules/nanosleep (Depends-on): Add missing dependency.
31201
31202 2007-02-22  Bruno Haible  <bruno@clisp.org>
31203
31204         * lib/glob.c: Don't include getlogin_r.h.
31205
31206 2007-02-22  Jim Meyering  <jim@meyering.net>
31207
31208         * modules/utimens (Depends-on): Add timespec, required for
31209         utimens.h's inclusion of timespec.h.
31210
31211 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
31212
31213         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
31214         long unreadable paths in GNU/Linux.  Problem reported by Andreas
31215         Schwab in
31216         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
31217         I'll try to think of a better way to fix the Solaris problem.
31218
31219         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
31220         like glibc; on Solaris 10, it fails with errno == EINVAL.
31221         POSIX says the behavior is unspecified if the first argument is NULL,
31222         so play it safe and never pass NULL to the system getcwd.
31223
31224 2007-02-21  Jim Meyering  <jim@meyering.net>
31225
31226         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
31227         of gettimeofday.  It would conflict with the one now always
31228         provided via sys_time_.h.  Reported by Matthew Woehlke, as
31229         an IRIX 6.5 build failure.
31230
31231 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
31232
31233         Minor fixups to port to Solaris 10 with Sun C 5.8.
31234         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
31235         * modules/getcwd (Depends-on): Add dirfd.
31236         * lib/putenv.c (putenv): #undef it.
31237         (rpl_putenv): New decl.
31238         (malloc, free): Include <stdlib.h> rather than prototyping separately.
31239
31240 2007-02-20  Bruno Haible  <bruno@clisp.org>
31241
31242         * modules/stdio-tests: New file.
31243         * tests/test-stdio.c: New file.
31244
31245         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
31246         (Depends-on): Add stdio.
31247         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
31248         (Include): Use <stdio.h> instead of vsnprintf.h.
31249         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
31250         HAVE_DECL_VSNPRINTF.
31251         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
31252
31253         * modules/snprintf (Files): Remove lib/snprintf.h.
31254         (Depends-on): Add stdio.
31255         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
31256         (Include): Use <stdio.h> instead of snprintf.h.
31257         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
31258         HAVE_DECL_SNPRINTF.
31259         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
31260         * lib/getaddrinfo.c: Likewise.
31261
31262         * modules/stdio: New file.
31263         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
31264         * lib/snprintf.h: Remove file.
31265         * lib/vsnprintf.h: Remove file.
31266         * lib/.cppi-disable: Remove snprintf.h.
31267         * m4/stdio_h.m4: New file.
31268         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
31269
31270 2007-02-20  Jim Meyering  <jim@meyering.net>
31271
31272         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
31273         used by e.g., mingw.  From Bruno Haible.
31274
31275 2007-02-19  Bruno Haible  <bruno@clisp.org>
31276
31277         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
31278         warnings.
31279         Reported by Ben Pfaff <blp@cs.stanford.edu>.
31280
31281 2007-02-19  Bruno Haible  <bruno@clisp.org>
31282
31283         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
31284         from mingw users.
31285
31286 2007-02-19  Bruno Haible  <bruno@clisp.org>
31287
31288         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
31289         warnings.
31290         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
31291
31292 2007-02-19  Jim Meyering  <jim@meyering.net>
31293
31294         Don't use FD after a successful "fdopendir (fd)".
31295         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
31296         Reset it by calling dirfd on the just-obtained DIR*.
31297
31298         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
31299         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
31300
31301 2007-02-18  Bruno Haible  <bruno@clisp.org>
31302
31303         * lib/readlink.c: Include <unistd.h>.
31304         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
31305         HAVE_READLINK.
31306         * modules/readlink (Depends-on): Add unistd.
31307         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31308         (Include): Add <unistd.h>.
31309
31310         * lib/getlogin_r.h: Remove file.
31311         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
31312         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
31313         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
31314         HAVE_DECL_GETLOGIN_R.
31315         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
31316         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31317         (Include): Use <unistd.h> instead of getlogin_r.h.
31318
31319         * lib/getcwd.h: Remove file.
31320         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
31321         * lib/xgetcwd.c: Likewise.
31322         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
31323         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
31324         * modules/getcwd (Files): Remove lib/getcwd.h.
31325         (Depends-on): Add unistd.
31326         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31327         (Include): Use <unistd.h> instad of getcwd.h.
31328
31329         * lib/ftruncate.c: Include <unistd.h> first.
31330         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
31331         Set HAVE_FTRUNCATE.
31332         * modules/ftruncate (Depends-on): Add unistd.
31333         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31334
31335         * lib/fchdir.c: Include <unistd.h> first.
31336         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
31337         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
31338         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
31339         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31340         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
31341
31342         * lib/dup2.c: Include <unistd.h> first.
31343         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
31344         HAVE_DUP2.
31345         * modules/dup2 (Depends-on): Add unistd.
31346         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31347
31348         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
31349         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
31350         REPLACE_CHOWN. Don't define chown as a macro here.
31351         * modules/chown (Depends-on): Add unistd.
31352         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31353
31354         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
31355         Add definition for GL_LINK_WARNING.
31356         (chown, dup2): New declarations.
31357         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
31358         link warning.
31359         (ftruncate): New declaration.
31360         (getcwd): New declaration, taken from old getcwd.h.
31361         (getlogin_r): New declaration, taken from old getlogin_r.h.
31362         (readlink): New declaration.
31363         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
31364         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
31365         (gl_PREREQ_UNISTD): Remove macro.
31366         (gl_UNISTD_MODULE_INDICATOR): New macro.
31367         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
31368         many new variables. Don't set UNISTD_H.
31369         * modules/unistd (Description): Change.
31370         (Depends-on): Add link-warning.
31371         (configure.ac): Update.
31372         (Makefile.am): Create unistd.h always. Substitute many new variables
31373         into it.
31374
31375 2007-02-18  Bruno Haible  <bruno@clisp.org>
31376
31377         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
31378         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
31379         HAVE_GETSUBOPT.
31380         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
31381         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
31382         * lib/getsubopt.h: Remove file.
31383         * modules/getsubopt (Files): Remove lib/getsubopt.h.
31384         (Depends-on): Add stdlib.
31385         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31386         (Includes): Use <stdlib.h> instead of getsubopt.h.
31387         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
31388         Set HAVE_GETSUBOPT.
31389         * lib/getsubopt.c: Don't include getsubopt.h.
31390
31391 2007-02-18  Bruno Haible  <bruno@clisp.org>
31392
31393         * modules/fchdir (Depends-on): Add dup2.
31394
31395 2007-02-18  Bruno Haible  <bruno@clisp.org>
31396
31397         * lib/stdlib_.h: Handle glibc's special invocation convention
31398         specially.
31399
31400 2007-02-18  Bruno Haible  <bruno@clisp.org>
31401
31402         * modules/stdlib-tests: New file.
31403         * tests/test-stdlib.c: New file.
31404
31405         * modules/mkstemp (Files): Remove lib/mkstemp.h.
31406         (Depends-on): Add stdlib.
31407         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31408         (Includes): Use <stdlib.h> instead of mkstemp.h.
31409         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
31410         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
31411         * lib/mkstemp.c: Don't include mkstemp.h.
31412         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
31413         * lib/stdlib--.h: Don't include mkstemp.h.
31414
31415         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
31416         (Depends-on): Add stdlib.
31417         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31418         (Includes): Use <stdlib.h> instead of mkdtemp.h.
31419         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
31420         HAVE_MKDTEMP.
31421         * lib/mkdtemp.c: Don't include mkdtemp.h.
31422         * lib/clean-temp.c: Don't include mkdtemp.h.
31423
31424         * modules/exit (Files): Remove lib/exit.h.
31425         (Depends-on): Add stdlib.
31426         (Makefile.am): Remove lib_SOURCES.
31427         (Include): Use <stdlib.h> instead of exit.h.
31428         * lib/argmatch.c: Don't include exit.h.
31429         * lib/execute.c: Likewise.
31430         * lib/pagealign_alloc.c: Likewise.
31431         * lib/pipe.c: Likewise.
31432         * lib/wait-process.c: Likewise.
31433         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
31434         * lib/exitfail.c: Likewise.
31435         * lib/savewd.c: Likewise.
31436         * lib/xsetenv.c: Likewise.
31437
31438         * modules/stdlib: New file.
31439         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
31440         and extra comments about mkstemp().
31441         * lib/exit.h: Remove file.
31442         * lib/mkdtemp.h: Remove file.
31443         * lib/mkstemp.h: Remove file.
31444         * m4/stdlib_h.m4: New file.
31445         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
31446
31447 2007-02-18  Bruno Haible  <bruno@clisp.org>
31448
31449         * modules/math-tests: New file.
31450         * tests/test-math.c: New file.
31451
31452         * modules/math: New file.
31453         * modules/mathl (Files): Remove lib/mathl.h.
31454         (Depends-on): Add math.
31455         (Makefile.am): Don't mention mathl.h.
31456         (Include): Use <math.h> instead of mathl.h.
31457         * lib/math_.h: New file.
31458         * lib/mathl.h: Remove file.
31459         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
31460         mathl.h.
31461         * lib/asinl.c: Likewise.
31462         * lib/atanl.c: Likewise.
31463         * lib/ceill.c: Likewise.
31464         * lib/cosl.c: Likewise.
31465         * lib/expl.c: Likewise.
31466         * lib/floorl.c: Likewise.
31467         * lib/frexpl.c: Likewise.
31468         * lib/ldexpl.c: Likewise.
31469         * lib/logl.c: Likewise.
31470         * lib/sincosl.c: Likewise.
31471         * lib/sinl.c: Likewise.
31472         * lib/sqrtl.c: Likewise.
31473         * lib/tanl.c: Likewise.
31474         * lib/trigl.c: Likewise.
31475         * m4/math_h.m4: New file.
31476         * MODULES.html.sh (Mathematics): Add math.
31477
31478 2007-02-17  Bruno Haible  <bruno@clisp.org>
31479
31480         * modules/wctype-tests: New file.
31481         * tests/test-wctype.c: New file.
31482
31483         * modules/wchar-tests: New file.
31484         * tests/test-wchar.c: New file.
31485
31486         * modules/unistd-tests: New file.
31487         * tests/test-unistd.c: New file.
31488
31489         * modules/time-tests: New file.
31490         * tests/test-time.c: New file.
31491
31492         * modules/sysexits-tests: New file.
31493         * tests/test-sysexits.c: New file.
31494
31495         * modules/sys_time-tests: New file.
31496         * tests/test-sys_time.c: New file.
31497
31498         * modules/sys_stat-tests: New file.
31499         * tests/test-sys_stat.c: New file.
31500
31501         * modules/sys_socket-tests: New file.
31502         * tests/test-sys_socket.c: New file.
31503
31504         * modules/sys_select-tests: New file.
31505         * tests/test-sys_select.c: New file.
31506
31507         * modules/string-tests: New file.
31508         * tests/test-string.c: New file.
31509
31510         * modules/stdbool-tests: New file.
31511         * tests/test-stdbool.c: New file.
31512
31513         * modules/netinet_in-tests: New file.
31514         * tests/test-netinet_in.c: New file.
31515
31516         * modules/inttypes-tests: New file.
31517         * tests/test-inttypes.c: New file.
31518
31519         * modules/fcntl-tests: New file.
31520         * tests/test-fcntl.c: New file.
31521
31522         * modules/byteswap-tests: New file.
31523         * tests/test-byteswap.c: New file.
31524
31525         * modules/arpa_inet-tests: New file.
31526         * tests/test-arpa_inet.c: New file.
31527
31528 2007-02-17  Bruno Haible  <bruno@clisp.org>
31529
31530         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
31531         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
31532         if the corresponding module is not enabled. Emit link warnings if
31533         the function is used nevertheless.
31534         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
31535         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
31536         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
31537         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
31538         * modules/inttypes (Depends-on): Add link-warning.
31539         (Makefile.am): Copy the contents of build-aux/link-warning.h into
31540         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
31541         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
31542         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
31543         * modules/imaxdiv (configure.ac): Likewise.
31544         * modules/strtoimax (configure.ac): Likewise.
31545         * modules/strtoumax (configure.ac): Likewise.
31546
31547 2007-02-17  Bruno Haible  <bruno@clisp.org>
31548
31549         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
31550         gl_STRING_MODULE_INDICATOR_DEFAULTS.
31551         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
31552         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
31553
31554 2007-02-17  Bruno Haible  <bruno@clisp.org>
31555
31556         * modules/link-warning: New file.
31557         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
31558         * lib/string_.h (GL_LINK_WARNING): Remove definition.
31559         * modules/string (Depends-on): Add link-warning.
31560         (Makefile.am): Copy the contents of build-aux/link-warning.h into
31561         string.h.
31562         * MODULES.html.sh (Support for building libraries and executables): Add
31563         link-warning.
31564
31565 2007-02-17  Bruno Haible  <bruno@clisp.org>
31566
31567         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
31568         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
31569         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
31570         long lines.
31571
31572 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
31573             Bruno Haible  <bruno@clisp.org>
31574
31575         * modules/tmpfile: New file.
31576         * lib/tmpfile.c: New file.
31577         * m4/tmpfile.m4: New file.
31578         * MODULES.html.sh (func_all_modules): New section "Input/output".
31579
31580 2007-02-15  Bruno Haible  <bruno@clisp.org>
31581
31582         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
31583         (supports_delete_on_close): New function.
31584         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
31585
31586 2007-02-14  Bruno Haible  <bruno@clisp.org>
31587
31588         * modules/mbspcasecmp-tests: New file.
31589         * tests/test-mbspcasecmp.sh: New file.
31590         * tests/test-mbspcasecmp.c: New file.
31591
31592         New module mbspcasecmp.
31593         * modules/mbspcasecmp: New file.
31594         * lib/mbspcasecmp.c: New file.
31595         * lib/string_.h (strncasecmp): Change warning message.
31596         (mbspcasecmp): New declaration.
31597         * m4/mbspcasecmp.m4: New file.
31598         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31599         GNULIB_MBSPCASECMP.
31600         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
31601         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
31602
31603 2007-02-14  Bruno Haible  <bruno@clisp.org>
31604
31605         * modules/mbsncasecmp-tests: New file.
31606         * tests/test-mbsncasecmp.sh: New file.
31607         * tests/test-mbsncasecmp.c: New file.
31608
31609         New module mbsncasecmp.
31610         * modules/mbsncasecmp: New file.
31611         * lib/mbsncasecmp.c: New file.
31612         * lib/string_.h (mbsncasecmp): New declaration.
31613         * m4/mbsncasecmp.m4: New file.
31614         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31615         GNULIB_MBSNCASECMP.
31616         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
31617         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
31618
31619 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
31620
31621         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
31622         Verify that it doesn't overlap with our flags.
31623         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
31624         do not have the desired effect in multibyte locales; instead, use
31625         mbscasecmp.
31626         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
31627         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
31628         we don't require GNU fnmatch ourselves (if our users require it, they
31629         should do so explicitly).
31630
31631         Fix regex code so it doesn't rely on strcasecmp.
31632         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
31633         Otherwise, include gnulib's langinfo.h.
31634         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
31635         undesirable behavior in non-C locales.  Instead, rely on localecharset.
31636         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
31637         * modules/regex (FILES): Remove m4/codeset.m4.
31638         (Depends-on): Add localcharset.  Remove strcase.
31639
31640 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31641
31642         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
31643         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
31644
31645 2007-02-13  Bruno Haible  <bruno@clisp.org>
31646
31647         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
31648         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31649
31650 2007-02-12  Bruno Haible  <bruno@clisp.org>
31651
31652         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
31653         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
31654         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
31655         time warning rather than a link error.
31656
31657 2007-02-12  Bruno Haible  <bruno@clisp.org>
31658
31659         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
31660         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
31661         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31662
31663 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
31664
31665         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
31666         args, not 2.
31667
31668 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
31669
31670         New module 'time', so that apps can include <time.h> as per
31671         POSIX and GNU instead of separate include files like time_r.h
31672         and timegm.h.  This implementation tries out a simpler approach
31673         for replacing decls in standard include files (as compared to
31674         the string module), somewhat as an experiment.
31675
31676         * config/srclist.txt: Comment out mktime.c for now.
31677         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
31678         since it doesn't apply any more.  Use generic wording instead.
31679         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
31680         'time'.
31681         * lib/time_.h, m4/time_h.m4, modules/time: New files.
31682         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
31683         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
31684         Don't include <sys/types.h>; no longer needed since we assume C89.
31685         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
31686         * lib/strftime.c: Likewise.
31687         * lib/time_r.c: Likewise.
31688         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
31689         * lib/nanosleep.c: Include <time.h> first, to check interface.
31690         * lib/strptime.c: Likewise.
31691         * lib/time_r.c: Likewise.
31692         * lib/timegm.c: Likewise.
31693         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
31694         needed.
31695         * lib/timegm.c: Don't include timegm.h; no longer needed.
31696         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
31697         time.h now handles any problems in that area.
31698         (struct timespec, nanosleep): Remove; time.h now arranges for these.
31699         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
31700         that time.h defines struct timespec.
31701         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
31702         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
31703         handles that.
31704         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
31705         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
31706         needed.  Set REPLACE_LOCALTIME.
31707         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
31708         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
31709         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
31710         nanosleep; time_h.m4 now does that.  Don't require
31711         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
31712         module handles this now.
31713         * modules/getdate (Depends-on): Remove timespec.  Add time.
31714         * modules/nanosleep (Depends-on): Likewise.
31715         * modules/stat-time (Depends-on): Likewise.
31716         * modules/nanosleep (Include): Include time.h, not timespec.h.
31717         * modules/strptime (Files): Remove lib/strptime.h.
31718         (Depends-on): Add extensions, time.
31719         (Include): Include time.h, not strptime.h.
31720         * modules/time_r (Files): Remove lib/time_r.h.
31721         (Depends-on): Add time.
31722         (Include): Include time.h, not time_r.h.
31723         * modules/timegm: Likewise.
31724         * modules/timespec (Description): Now does timespec-related decls
31725         of our own, instead of struct timespec itself.
31726         (Depends-on): Add time; remove extensions.
31727         (Maintainer): Add self.
31728         * modules/utimecmp (Depends-on): Add time; remove timespec.
31729         * modules/utimens (Depends-on): Likewise.
31730         * modules/xnanosleep (Depends-on): Likewise.
31731
31732 2007-02-11  Bruno Haible  <bruno@clisp.org>
31733
31734         * lib/c-strstr.c: Include allocsa.h.
31735         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31736         * lib/c-strcasestr.c: Include allocsa.h.
31737         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31738         * lib/strcasestr.c: Include allocsa.h.
31739         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31740         * lib/mbsstr.c: Include allocsa.h.
31741         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
31742         allocsa/freesa instead of malloc/free.
31743         * lib/mbscasestr.c: Include allocsa.h.
31744         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
31745         allocsa/freesa instead of malloc/free.
31746         * modules/c-strstr (Depends-on): Add allocsa.
31747         * modules/c-strcasestr (Depends-on): Likewise.
31748         * modules/strcasestr (Depends-on): Likewise.
31749         * modules/mbsstr (Depends-on): Likewise.
31750         * modules/mbscasestr (Depends-on): Likewise.
31751
31752 2007-02-11  Bruno Haible  <bruno@clisp.org>
31753
31754         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
31755
31756         * modules/mbsspn-tests: New file.
31757         * tests/test-mbsspn.sh: New file.
31758         * tests/test-mbsspn.c: New file.
31759
31760 2007-02-11  Bruno Haible  <bruno@clisp.org>
31761
31762         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
31763
31764         * modules/mbspbrk-tests: New file.
31765         * tests/test-mbspbrk.sh: New file.
31766         * tests/test-mbspbrk.c: New file.
31767
31768 2007-02-11  Bruno Haible  <bruno@clisp.org>
31769
31770         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
31771         unneeded cast.
31772
31773         * modules/mbscspn-tests: New file.
31774         * tests/test-mbscspn.sh: New file.
31775         * tests/test-mbscspn.c: New file.
31776
31777 2007-02-11  Bruno Haible  <bruno@clisp.org>
31778
31779         * modules/mbscasecmp-tests: New file.
31780         * tests/test-mbscasecmp.sh: New file.
31781         * tests/test-mbscasecmp.c: New file.
31782
31783 2007-02-11  Bruno Haible  <bruno@clisp.org>
31784
31785         Ensure O(n) worst-case complexity of mbscasestr.
31786         * lib/mbscasestr.c: Include stdbool.h.
31787         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
31788         functions.
31789         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
31790         the bookkeeping indicates that it's worth it.
31791         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
31792
31793         * modules/mbscasestr-tests: New file.
31794         * tests/test-mbscasestr1.c: New file.
31795         * tests/test-mbscasestr2.sh: New file.
31796         * tests/test-mbscasestr2.c: New file.
31797         * tests/test-mbscasestr3.sh: New file.
31798         * tests/test-mbscasestr3.c: New file.
31799         * tests/test-mbscasestr4.sh: New file.
31800         * tests/test-mbscasestr4.c: New file.
31801         * m4/locale-tr.m4: New file.
31802
31803 2007-02-11  Bruno Haible  <bruno@clisp.org>
31804
31805         Ensure O(n) worst-case complexity of mbsstr.
31806         * lib/mbsstr.c: Include stdbool.h.
31807         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
31808         functions.
31809         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
31810         bookkeeping indicates that it's worth it.
31811         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
31812
31813         * modules/mbsstr-tests: New file.
31814         * tests/test-mbsstr1.c: New file.
31815         * tests/test-mbsstr2.sh: New file.
31816         * tests/test-mbsstr2.c: New file.
31817         * tests/test-mbsstr3.sh: New file.
31818         * tests/test-mbsstr3.c: New file.
31819         * m4/locale-fr.m4: New file.
31820
31821 2007-02-11  Bruno Haible  <bruno@clisp.org>
31822
31823         * lib/mbsrchr.c (mbsrchr): Fix bug.
31824
31825         * modules/mbsrchr-tests: New file.
31826         * tests/test-mbsrchr.sh: New file.
31827         * tests/test-mbsrchr.c: New file.
31828
31829 2007-02-11  Bruno Haible  <bruno@clisp.org>
31830
31831         * lib/mbschr.c (mbschr): Fix bug.
31832
31833         * modules/mbschr-tests: New file.
31834         * tests/test-mbschr.sh: New file.
31835         * tests/test-mbschr.c: New file.
31836         * m4/locale-zh.m4: New file.
31837
31838 2007-02-11  Bruno Haible  <bruno@clisp.org>
31839
31840         Support for copying multibyte string iterators.
31841         * lib/mbiter.h: Include <string.h>.
31842         (mbiter_multi_copy): New function.
31843         (mbi_copy): New macro.
31844         * lib/mbuiter.h: Include <string.h>.
31845         (mbuiter_multi_copy): New function.
31846         (mbui_copy): New macro.
31847
31848 2007-02-11  Bruno Haible  <bruno@clisp.org>
31849
31850         New module mbslen.
31851         * modules/mbslen: New file.
31852         * lib/mbslen.c: New file.
31853         * lib/string_.h (mbslen): New declaration.
31854         * m4/mbslen.m4: New file.
31855         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31856         GNULIB_MBSLEN.
31857         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
31858         * MODULES.html.sh (Internationalization functions): Add mbslen.
31859
31860 2007-02-11  Bruno Haible  <bruno@clisp.org>
31861
31862         Ensure O(n) worst-case complexity of strcasestr substitute.
31863         * lib/strcasestr.c: Include stdbool.h.
31864         (knuth_morris_pratt): New function.
31865         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
31866         bookkeeping indicates that it's worth it.
31867         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
31868
31869         * modules/strcasestr-tests: New file.
31870         * tests/test-strcasestr.c: New file.
31871
31872 2007-02-11  Bruno Haible  <bruno@clisp.org>
31873
31874         Ensure O(n) worst-case complexity of c_strcasestr.
31875         * lib/c-strcasestr.c: Include stdbool.h, string.h.
31876         (knuth_morris_pratt): New function.
31877         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
31878         the bookkeeping indicates that it's worth it.
31879         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
31880
31881         * modules/c-strcasestr-tests: New file.
31882         * tests/test-c-strcasestr.c: New file.
31883
31884 2007-02-11  Bruno Haible  <bruno@clisp.org>
31885
31886         Ensure O(n) worst-case complexity of c_strstr.
31887         * lib/c-strstr.c: Include stdbool.h, string.h.
31888         (knuth_morris_pratt): New function.
31889         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
31890         bookkeeping indicates that it's worth it.
31891         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
31892
31893         * lib/c-strstr.c: Complete rewrite for maintainability.
31894
31895         * modules/c-strstr-tests: New file.
31896         * tests/test-c-strstr.c: New file.
31897
31898 2007-02-11  Bruno Haible  <bruno@clisp.org>
31899
31900         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
31901         5.2.1 and earlier, whereby \055 was treated just like the range
31902         delimiter '-'.
31903         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
31904
31905 2007-02-08  Bruno Haible  <bruno@clisp.org>
31906
31907         * modules/regex (Depends-on): Add stdbool.
31908         Reported by Dalibor Topic <robilad@kaffe.org>.
31909
31910 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
31911
31912         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
31913         Prefer returning from main to exiting from it.
31914         Remove unnecessary parens after sizeof.
31915
31916 2007-02-05  Bruno Haible  <bruno@clisp.org>
31917
31918         New module mbssep.
31919         * modules/mbssep: New file.
31920         * lib/mbssep.c: New file.
31921         * lib/string_.h (strsep): Add a conditional link warning.
31922         (mbssep): New declaration.
31923         * m4/mbssep.m4: New file.
31924         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31925         GNULIB_MBSSEP.
31926         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
31927         * MODULES.html.sh (Internationalization functions): Add mbssep.
31928
31929 2007-02-05  Bruno Haible  <bruno@clisp.org>
31930
31931         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
31932         Optimize search in case of 1 delimiter.
31933
31934 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
31935
31936         * lib/acl.h: Include sys/types.h before sys/acl.h.
31937
31938 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
31939
31940         Merge upstream fix for glibc bugzilla #3957:
31941
31942         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
31943
31944         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
31945         bit for RE_HAT_LISTS_NOT_NEWLINE.
31946         (build_charclass_op): Remove bogus comment.
31947
31948 2007-02-05  Simon Josefsson  <simon@josefsson.org>
31949
31950         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
31951
31952 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
31953
31954         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
31955         * lib/memmem.c [!defined _LIBC]: Include config.h.
31956
31957 2007-02-04  Bruno Haible  <bruno@clisp.org>
31958
31959         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
31960         warning message.
31961
31962 2007-02-04  Bruno Haible  <bruno@clisp.org>
31963
31964         New module mbstok_r.
31965         * modules/mbstok_r: New file.
31966         * lib/mbstok_r.c: New file.
31967         * lib/string_.h (strtok_r): Change argument names to match the
31968         comments. Add a conditional link warning.
31969         (mbstok_r): New declaration.
31970         * m4/mbstok_r.m4: New file.
31971         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31972         GNULIB_MBSTOK_R.
31973         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
31974         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
31975
31976 2007-02-04  Bruno Haible  <bruno@clisp.org>
31977
31978         New module mbsspn.
31979         * modules/mbsspn: New file.
31980         * lib/mbsspn.c: New file.
31981         * lib/string_.h (strspn): Add a conditional link warning.
31982         (mbsspn): New declaration.
31983         * m4/mbsspn.m4: New file.
31984         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31985         GNULIB_MBSSPN.
31986         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
31987         * MODULES.html.sh (Internationalization functions): Add mbsspn.
31988
31989 2007-02-04  Bruno Haible  <bruno@clisp.org>
31990
31991         New module mbspbrk.
31992         * modules/mbspbrk: New file.
31993         * lib/mbspbrk.c: New file.
31994         * lib/string_.h (strpbrk): Add a conditional link warning.
31995         (mbspbrk): New declaration.
31996         * m4/mbspbrk.m4: New file.
31997         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31998         GNULIB_MBSPBRK.
31999         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
32000         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
32001
32002 2007-02-04  Bruno Haible  <bruno@clisp.org>
32003
32004         New module mbscspn.
32005         * modules/mbscspn: New file.
32006         * lib/mbscspn.c: New file.
32007         * lib/string_.h (strcspn): Add a conditional link warning.
32008         (mbscspn): New declaration.
32009         * m4/mbscspn.m4: New file.
32010         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32011         GNULIB_MBSCSPN.
32012         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
32013         * MODULES.html.sh (Internationalization functions): Add mbscspn.
32014
32015 2007-02-04  Bruno Haible  <bruno@clisp.org>
32016
32017         New module mbscasestr, reduced goal of strcasestr.
32018         * modules/mbscasestr: New file.
32019         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
32020         (mbscasestr): Renamed from strcasestr.
32021         * lib/strcasestr.c: Don't include mbuiter.h.
32022         (strcasestr): Remove support for multibyte locales.
32023         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
32024         Change the conditional link warning.
32025         (mbscasestr): New declaration.
32026         * m4/mbscasestr.m4: New file.
32027         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
32028         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
32029         REPLACE_STRCASESTR.
32030         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
32031         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
32032         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
32033         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
32034         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
32035         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
32036         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
32037         (Depends-on): Remove mbuiter.
32038         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
32039
32040 2007-02-04  Bruno Haible  <bruno@clisp.org>
32041
32042         Simplify handling of strncasecmp.
32043         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
32044         the conditional link warning.
32045         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
32046         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
32047         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
32048         * modules/strcase (configure.ac): Don't invoke
32049         gl_STRING_MODULE_INDICATOR.
32050         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
32051
32052 2007-02-04  Bruno Haible  <bruno@clisp.org>
32053
32054         New module mbscasecmp, reduced goal of strcasecmp.
32055         * modules/mbscasecmp: New file.
32056         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
32057         (mbscasecmp): Renamed from strcasecmp.
32058         * lib/strcasecmp.c: Don't include mbuiter.h.
32059         (strcasecmp): Remove support for multibyte locales.
32060         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
32061         Change the conditional link warning.
32062         (mbscasecmp): New declaration.
32063         * m4/mbscasecmp.m4: New file.
32064         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
32065         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
32066         REPLACE_STRCASECMP.
32067         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
32068         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32069         GNULIB_MBSCASECMP.
32070         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
32071         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
32072         * modules/strcase (Files): Remove m4/mbrtowc.m4.
32073         (Depends-on): Remove mbuiter.
32074         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
32075
32076 2007-02-04  Bruno Haible  <bruno@clisp.org>
32077
32078         New module mbsstr. Remove module strstr.
32079         * modules/mbsstr: New file.
32080         * modules/strstr: Remove file.
32081         * lib/mbsstr.c: Renamed from lib/strstr.c.
32082         (mbsstr): Renamed from strstr.
32083         * lib/string_.h (strstr): Remove declaration. Change the conditional
32084         link warning.
32085         (mbsstr): New declaration.
32086         * m4/mbsstr.m4: New file.
32087         * m4/strstr.m4: Remove file.
32088         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
32089         REPLACE_STRSTR.
32090         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
32091         Don't initialize GNULIB_STRSTR.
32092         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
32093         substitute GNULIB_STRSTR and REPLACE_STRSTR.
32094         * MODULES.html.sh (Internationalization functions): Add mbsstr.
32095         (Support for systems lacking ANSI C 89): Remove strstr.
32096
32097 2007-02-04  Bruno Haible  <bruno@clisp.org>
32098
32099         New module mbsrchr.
32100         * modules/mbsrchr: New file.
32101         * lib/mbsrchr.c: New file.
32102         * lib/string_.h (strrchr): Add a conditional link warning.
32103         (mbsrchr): New declaration.
32104         * m4/mbsrchr.m4: New file.
32105         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32106         GNULIB_MBSRCHR.
32107         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
32108         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
32109
32110 2007-02-04  Bruno Haible  <bruno@clisp.org>
32111
32112         New module mbschr.
32113         * modules/mbschr: New file.
32114         * lib/mbschr.c: New file.
32115         * lib/string_.h (strchr): Add a conditional link warning.
32116         (mbschr): New declaration.
32117         * m4/mbschr.m4: New file.
32118         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32119         GNULIB_MBSCHR.
32120         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
32121         * MODULES.html.sh (Internationalization functions): Add mbschr.
32122
32123 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
32124
32125         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
32126
32127         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
32128
32129 2007-02-04  Bruno Haible  <bruno@clisp.org>
32130
32131         New module description section 'configure.ac-early'.
32132         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
32133         (func_get_autoconf_early_snippet): New function.
32134         (func_import, func_create_testdir): Use it. Remove special cases for
32135         modules 'extensions' and 'lock'.
32136         * modules/extensions (configure.ac-early): Require
32137         gl_USE_SYSTEM_EXTENSIONS.
32138         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
32139
32140 2007-02-04  Bruno Haible  <bruno@clisp.org>
32141
32142         Make use of gcj-4.3's -fsource and -ftarget option.
32143         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
32144         and if so try the options -fsource and -ftarget.
32145         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
32146         source_version, ftarget_option, target_version arguments.
32147         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
32148         (is_envjavac_oldgcj_14_14_usable): Renamed from
32149         is_envjavac_gcj_14_14_usable.
32150         (is_envjavac_oldgcj_14_13_usable): Renamed from
32151         is_envjavac_gcj_14_13_usable.
32152         (is_gcj_present): Update.
32153         (is_gcj_43, is_gcj43_usable): New functions.
32154         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
32155         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
32156         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
32157         try the options -fsource and -ftarget.
32158
32159 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
32160
32161         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
32162         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
32163         larger value.
32164
32165 2007-02-03  Jim Meyering  <jim@meyering.net>
32166
32167         Give tools a better chance to allocate space for very large buffers.
32168         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
32169
32170         Make pwd and readlink work also when run with an unreadable parent dir
32171         on systems with openat support.
32172         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
32173         provided getcwd function, even when we have openat support.
32174         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
32175
32176 2007-02-02  Bruno Haible  <bruno@clisp.org>
32177
32178         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
32179         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
32180         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
32181         portability problems if one of these functions is only used on specific
32182         platforms.
32183         Reported by Paul Eggert.
32184
32185 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
32186
32187         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
32188         is causing more trouble than it's curing.
32189         * lib/regex_internal.h (__mempcpy): Remove.
32190         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
32191         (and make the code a tad smaller to boot).
32192         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
32193
32194 2007-02-02  Jim Meyering  <jim@meyering.net>
32195
32196         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
32197         section, not in the Makefile.am: one.
32198
32199 2007-02-02  Eric Blake  <ebb9@byu.net>
32200
32201         * lib/strchrnul.c: Always include config.h first.
32202
32203         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
32204         gnulib strstr is not necessary here.
32205
32206 2007-02-02  Simon Josefsson  <simon@josefsson.org>
32207
32208         * m4/socklen.m4: Fix typo.
32209
32210 2007-02-02  Eric Blake  <ebb9@byu.net>
32211
32212         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
32213         * modules/netinet_in (Makefile.am): Likewise.
32214
32215 2007-02-01  Bruno Haible  <bruno@clisp.org>
32216
32217         * lib/string_.h (GL_LINK_WARNING): New macro.
32218         (strcasecmp, strstr, strcasestr): If provided by the system,
32219         conditionally define as a macro that leads to a warning instead of to
32220         an error.
32221         (strncasecmp): Conditionally define as a macro that leads to a warning.
32222
32223 2007-02-01  Karl Berry  <karl@gnu.org>
32224
32225         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
32226
32227 2007-02-01  Bruno Haible  <bruno@clisp.org>
32228
32229         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
32230         renamings.
32231
32232 2007-02-01  Eric Blake  <ebb9@byu.net>
32233
32234         * modules/regex (Depends-on): Revert dependence on mempcpy.
32235         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
32236         module's definition of mempcpy.
32237         Reported by Paul Eggert.
32238
32239 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
32240
32241         * lib/string_.h: If the gnulib module XYZ is not present, undefine
32242         the symbol XYZ before redefining it.  This fixes a problem with
32243         programs that don't use XYZ, when compiled on systems that define
32244         XYZ to something else.
32245
32246 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
32247
32248         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
32249         occurs when "mkdir -m foo" creates a setgid directory that is (1)
32250         writeable to group or other and (2) is intended to have a special
32251         mode bit that is set or cleared.  In such a case, the directory
32252         should be neither group- nor other-writeable until the special
32253         mode bits are right.
32254
32255 2007-01-31  Eric Blake  <ebb9@byu.net>
32256
32257         * modules/mountlist (Depends-on): Add strstr.
32258
32259         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
32260         bug.
32261         * modules/string (Makefile.am): Remove redundant replacement.
32262         * modules/regex (Depends-on): Add mempcpy.
32263
32264 2007-01-31  Bruno Haible  <bruno@clisp.org>
32265
32266         New module description field 'Link'.
32267         * gnulib-tool (func_usage): Document --extract-link-directive.
32268         (sed_extract_prog): Recognize 'Link' directive.
32269         (func_get_link_directive): New function.
32270         (func_import): Show summary of link directives.
32271         Handle --extract-link-directive option.
32272         * modules/acl (Link): New section.
32273         * modules/clock-time (Link): New section.
32274         * modules/euidaccess (Link): New section.
32275         * modules/gettext (Link): New section.
32276         * modules/iconv (Link): New section.
32277         * modules/lock (Link): New section.
32278         * modules/nanosleep (Link): New section.
32279         * modules/readline (Link): New section.
32280
32281 2007-01-27  Bruno Haible  <bruno@clisp.org>
32282
32283         Enforce the use of gnulib modules for unportable <string.h> functions.
32284         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
32285         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
32286         (gl_HEADER_STRING_H_BODY): Require it.
32287         * lib/string_.h: If the gnulib module XYZ is not present, redefine
32288         the symbol XYZ to one that gives a link error.
32289         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
32290         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
32291         * modules/mempcpy (configure.ac): Likewise.
32292         * modules/memrchr (configure.ac): Likewise.
32293         * modules/stpcpy (configure.ac): Likewise.
32294         * modules/stpncpy (configure.ac): Likewise.
32295         * modules/strcase (configure.ac): Likewise.
32296         * modules/strcasestr (configure.ac): Likewise.
32297         * modules/strchrnul (configure.ac): Likewise.
32298         * modules/strdup (configure.ac): Likewise.
32299         * modules/strndup (configure.ac): Likewise.
32300         * modules/strnlen (configure.ac): Likewise.
32301         * modules/strpbrk (configure.ac): Likewise.
32302         * modules/strsep (configure.ac): Likewise.
32303         * modules/strstr (configure.ac): Likewise.
32304         * modules/strtok_r (configure.ac): Likewise.
32305
32306 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
32307
32308         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
32309
32310 2007-01-30  Jim Meyering  <jim@meyering.net>
32311
32312         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
32313
32314 2007-01-29  Bruno Haible  <bruno@clisp.org>
32315
32316         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
32317         * lib/execute.c: Likewise.
32318         * lib/pipe.c: Likewise.
32319         * lib/printf-args.h: Likewise.
32320         * lib/printf-args.c: Likewise.
32321         * lib/printf-parse.c: Likewise.
32322         * lib/vasnprintf.c: Likewise.
32323
32324 2007-01-29  Eric Blake  <ebb9@byu.net>
32325
32326         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
32327         declaration.
32328
32329 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
32330
32331         * lib/strptime.h (strptime): Use 'restrict' for args where
32332         POSIX requires this.
32333         * lib/strptime.c (strptime): Likewise.
32334         Change license notice from LGPL to GPL, since gnulib-tool will
32335         change this as needed.
32336         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
32337         defined.
32338         Include "strptime.h" first, to check interface.
32339         Do not #undef _LIBC and _NL_CURRENT.
32340         Do not include <stdlib.h>; no longer needed.
32341         Include "time_r.h" and declare ptime_locale_status
32342         only if _LIBC is not defined.
32343         (__P): Remove unused macro.
32344         (match_string): Bring back glibc version, but use it only if _LIBC
32345         is defined.
32346         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
32347         Remove unnecessary assertion and abort() call.
32348         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
32349         * m4/strptime.m4: Fix serial number comment.
32350         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
32351         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
32352         (Depends-on): Add time_r.
32353
32354 2007-01-29  Bruno Haible  <bruno@clisp.org>
32355
32356         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32357         strptime.
32358         * modules/strptime (Depends-on): Add stdbool.
32359         * lib/strptime.h: Include <time.h> always. Add comments.
32360
32361 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
32362
32363         * modules/strptime: New file.
32364         * lib/strptime.h: New file.
32365         * lib/strptime.c: New file.
32366         * m4/strptime.m4: New file.
32367
32368 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
32369
32370         * MODULES.html.sh: New module mpsort.
32371         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
32372
32373         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
32374         a circularity problem with HP-UX ia64 reported by Bob Proulx in
32375         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
32376         All uses changed.
32377         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
32378         All uses changed.
32379         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
32380         to _Restrict_.
32381         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
32382         the parameter matches the prototype.
32383
32384 2007-01-28  Jim Meyering  <jim@meyering.net>
32385
32386         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
32387         sys/time.h here, reverting that part of the previous patch:
32388         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
32389
32390 2007-01-28  Bruno Haible  <bruno@clisp.org>
32391
32392         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
32393         value of $(SYS_TIME_H).
32394         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
32395         remove it conditionally, too. [added by Jim Meyering]
32396         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
32397         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
32398         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
32399         GETTIMEOFDAY_REPLACEMENT to 1.
32400
32401 2007-01-28  Bruno Haible  <bruno@clisp.org>
32402
32403         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
32404         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
32405         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
32406         Set UNISTD_H instead of UNISTD_H2.
32407         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
32408
32409 2007-01-28  Bruno Haible  <bruno@clisp.org>
32410
32411         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
32412         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
32413
32414 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32415
32416         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
32417         (func_create_testdir): Ensure C locale for `grep' and `tr'
32418         character ranges.
32419         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
32420         ACLOCAL_AMFLAGS parsing state machine.
32421
32422 2007-01-27  Bruno Haible  <bruno@clisp.org>
32423
32424         * modules/unistr/base: Update.
32425
32426 2007-01-27  Bruno Haible  <bruno@clisp.org>
32427
32428         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
32429         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
32430         * modules/unistr/u32-mbtouc-unsafe: Renamed from
32431         modules/unistr/u32-mbtouc.
32432         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
32433         * lib/unistr.h: Update.
32434         * lib/linebreak.c: Update.
32435         * modules/unistr/u32-mbtouc: Renamed from
32436         modules/unistr/u32-mbtouc-safe.
32437         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
32438         * lib/unistr.h: Update.
32439         * lib/unistr/u32-to-u8.c: Update.
32440         * lib/unistr/u32-to-u16.c: Update.
32441
32442 2007-01-27  Bruno Haible  <bruno@clisp.org>
32443
32444         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
32445         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
32446         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
32447         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
32448         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
32449         * modules/unistr/u16-mbtouc-unsafe: Renamed from
32450         modules/unistr/u16-mbtouc.
32451         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
32452         * lib/unistr.h: Update.
32453         * lib/linebreak.c: Update.
32454         * modules/linebreak: Update.
32455         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
32456         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
32457         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
32458         * modules/unistr/u16-mbtouc: Renamed from
32459         modules/unistr/u16-mbtouc-safe.
32460         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
32461         * lib/unistr.h: Update.
32462         * lib/unistr/u16-to-u8.c: Update.
32463         * modules/unistr/u16-to-u8: Update.
32464         * lib/unistr/u16-to-u32.c: Update.
32465         * modules/unistr/u16-to-u32: Update.
32466
32467 2007-01-27  Bruno Haible  <bruno@clisp.org>
32468
32469         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
32470         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
32471         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
32472         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
32473         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
32474         * modules/unistr/u8-mbtouc-unsafe: Renamed from
32475         modules/unistr/u8-mbtouc.
32476         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
32477         * lib/unistr.h: Update.
32478         * lib/striconveh.c: Update.
32479         * modules/striconveh: Update.
32480         * lib/linebreak.c: Update.
32481         * modules/linebreak: Update.
32482         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
32483         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
32484         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
32485         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
32486         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
32487         * lib/unistr.h: Update.
32488         * lib/striconveh.c: Update.
32489         * modules/striconveh: Update.
32490         * lib/unistr/u8-to-u16.c: Update.
32491         * modules/unistr/u8-to-u16: Update.
32492         * lib/unistr/u8-to-u32.c: Update.
32493         * modules/unistr/u8-to-u32: Update.
32494
32495 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32496
32497         Sync from Libtool.
32498         * lib/argz.c: Do not include strings.h nor memory.h, include
32499         string.h unconditionally.  Patch by Simon Josefsson.
32500
32501 2007-01-27  Bruno Haible  <bruno@clisp.org>
32502
32503         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
32504         from gl_HEADER_STRING_H_BODY.
32505         (gl_HEADER_STRING_H_BODY): Require it.
32506         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
32507         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
32508         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
32509         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
32510         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
32511         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
32512         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
32513         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
32514         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
32515         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
32516         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
32517         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
32518         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
32519         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
32520         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
32521
32522 2007-01-27  Bruno Haible  <bruno@clisp.org>
32523
32524         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
32525         check_PROGRAMS into noinst_PROGRAMS.
32526         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
32527         check_PROGRAMS in this case.
32528         (func_import): Set for_test to false.
32529         (func_create_testdir): Set for_test to true.
32530
32531 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
32532             Bruno Haible  <bruno@clisp.org>
32533
32534         * modules/strcasestr (Files): Remove lib/strcasestr.h.
32535         (Depends-on): Add string.
32536         (Includes): Use <string.h> instead of strcasestr.h.
32537         * modules/string (Makefile.am): Also substitute the value of
32538         REPLACE_STRCASESTR.
32539         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
32540         assume strcasestr is declared in <string.h> not <strings.h>. Also
32541         set REPLACE_STRCASESTR.
32542         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
32543         REPLACE_STRCASESTR.
32544         * lib/strcasestr.h: Remove file.
32545         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
32546         * lib/string_.h (strcasestr): New declaration.
32547
32548 2007-01-27  Bruno Haible  <bruno@clisp.org>
32549
32550         * lib/string_.h: Use 'extern'.
32551
32552 2007-01-27  Jim Meyering  <jim@meyering.net>
32553
32554         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
32555         of set-but-not-used local, "q".
32556
32557         * lib/mempcpy.c: Include <config.h> before <string.h>.
32558         This fixes a compilation error on HP-UX, due to the system's
32559         "restrict"-using mempcpy prototype.
32560
32561 2007-01-26  Bruno Haible  <bruno@clisp.org>
32562
32563         Small optimization.
32564         * lib/javacomp.c: Include c-strstr.h.
32565          (is_envjavac_gcj): Use c_strstr instead of strstr.
32566         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
32567
32568 2007-01-26  Bruno Haible  <bruno@clisp.org>
32569
32570         * MODULES.html.sh (Unicode string functions): Add the new modules.
32571
32572         * modules/uniconv/u32-strconv-to-locale: New file.
32573         * lib/uniconv/u32-strconv-to-locale.c: New file.
32574
32575         * modules/uniconv/u16-strconv-to-locale: New file.
32576         * lib/uniconv/u16-strconv-to-locale.c: New file.
32577
32578         * modules/uniconv/u8-strconv-to-locale: New file.
32579         * lib/uniconv/u8-strconv-to-locale.c: New file.
32580
32581         * modules/uniconv/u32-strconv-from-locale: New file.
32582         * lib/uniconv/u32-strconv-from-locale.c: New file.
32583
32584         * modules/uniconv/u16-strconv-from-locale: New file.
32585         * lib/uniconv/u16-strconv-from-locale.c: New file.
32586
32587         * modules/uniconv/u8-strconv-from-locale: New file.
32588         * lib/uniconv/u8-strconv-from-locale.c: New file.
32589
32590         * modules/uniconv/u32-strconv-to-enc: New file.
32591         * lib/uniconv/u32-strconv-to-enc.c: New file.
32592         * modules/uniconv/u32-strconv-to-enc-tests: New file.
32593         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
32594
32595         * modules/uniconv/u16-strconv-to-enc: New file.
32596         * lib/uniconv/u16-strconv-to-enc.c: New file.
32597         * lib/uniconv/u-strconv-to-enc.h: New file.
32598         * modules/uniconv/u16-strconv-to-enc-tests: New file.
32599         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
32600
32601         * modules/uniconv/u8-strconv-to-enc: New file.
32602         * lib/uniconv/u8-strconv-to-enc.c: New file.
32603         * modules/uniconv/u8-strconv-to-enc-tests: New file.
32604         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
32605
32606         * modules/uniconv/u32-strconv-from-enc: New file.
32607         * lib/uniconv/u32-strconv-from-enc.c: New file.
32608         * modules/uniconv/u32-strconv-from-enc-tests: New file.
32609         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
32610
32611         * modules/uniconv/u16-strconv-from-enc: New file.
32612         * lib/uniconv/u16-strconv-from-enc.c: New file.
32613         * modules/uniconv/u16-strconv-from-enc-tests: New file.
32614         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
32615
32616         * modules/uniconv/u8-strconv-from-enc: New file.
32617         * lib/uniconv/u8-strconv-from-enc.c: New file.
32618         * lib/uniconv/u-strconv-from-enc.h: New file.
32619         * modules/uniconv/u8-strconv-from-enc-tests: New file.
32620         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
32621
32622         * modules/uniconv/u32-conv-from-enc: New file.
32623         * lib/uniconv/u32-conv-from-enc.c: New file.
32624         * modules/uniconv/u32-conv-from-enc-tests: New file.
32625         * tests/uniconv/test-u32-conv-from-enc.c: New file.
32626
32627         * modules/uniconv/u16-conv-from-enc: New file.
32628         * lib/uniconv/u16-conv-from-enc.c: New file.
32629         * lib/uniconv/u-conv-from-enc.h: New file.
32630         * modules/uniconv/u16-conv-from-enc-tests: New file.
32631         * tests/uniconv/test-u16-conv-from-enc.c: New file.
32632
32633         * modules/uniconv/u8-conv-from-enc: New file.
32634         * lib/uniconv/u8-conv-from-enc.c: New file.
32635         * modules/uniconv/u8-conv-from-enc-tests: New file.
32636         * tests/uniconv/test-u8-conv-from-enc.c: New file.
32637
32638         * modules/uniconv/base: New file.
32639         * lib/uniconv.h: New file.
32640
32641 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
32642
32643         * doc/gnulib-tool.texi (Initial import): Update to match current
32644         behavior with strdup module.
32645         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
32646         * lib/memmem.h: Remove; all uses removed.  This is now done
32647         by <string.h>.
32648         * lib/mempcpy.h: Likewise.
32649         * lib/memrchr.h: Likewise.
32650         * lib/stpcpy.h: Likewise.
32651         * lib/stpncpy.h: Likewise.
32652         * lib/strcase.h: Likewise.
32653         * lib/strchrnul.h: Likewise.
32654         * lib/strdup.h: Likewise.
32655         * lib/strndup.h: Likewise.
32656         * lib/strnlen.h: Likewise.
32657         * lib/strpbrk.h: Likewise.
32658         * lib/strsep.h: Likewise.
32659         * lib/strstr.h: Likewise.
32660         * lib/strtok_r.h: Likewise.
32661         * lib/string_.h: New file.
32662         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
32663         Rely on <string.h> instead.
32664         * lib/canon-host.c: Likewise.
32665         * lib/chdir-long.c: Likewise.
32666         * lib/concatpath.c: Likewise.
32667         * lib/exclude.c: Likewise.
32668         * lib/fchdir.c: Likewise.
32669         * lib/getaddrinfo.c: Likewise.
32670         * lib/getcwd.c: Likewise.
32671         * lib/getsubopt.c: Likewise.
32672         * lib/glob.c: Likewise.
32673         * lib/hard-locale.c: Likewise.
32674         * lib/iconvme.c: Likewise.
32675         * lib/javacomp.c: Likewise.
32676         * lib/mempcpy.c: Likewise.
32677         * lib/memrchr.c: Likewise.
32678         * lib/regex_internal.h: Likewise.
32679         * lib/stpncpy.c: Likewise.
32680         * lib/strcasecmp.c: Likewise.
32681         * lib/strchrnul.c: Likewise.
32682         * lib/strdup.c: Likewise.
32683         * lib/striconv.c: Likewise.
32684         * lib/striconveh.c: Likewise.
32685         * lib/striconveha.c: Likewise.
32686         * lib/strncasecmp.c: Likewise.
32687         * lib/strndup.c: Likewise.
32688         * lib/strnlen.c: Likewise.
32689         * lib/strsep.c: Likewise.
32690         * lib/strstr.c: Likewise.
32691         * lib/strtok_r.c: Likewise.
32692         * lib/userspec.c: Likewise.
32693         * lib/w32spawn.h: Likewise.
32694         * lib/xstrndup.c: Likewise.
32695         * lib/mountlist.c (strstr): Remove decl.
32696         * m4/string_h.m4: New file.
32697         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
32698         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
32699         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
32700         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
32701         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
32702         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
32703         Set REPLACE_STRCASECMP if necessary.
32704         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
32705         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
32706         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
32707         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
32708         HAVE_DECL_STRDUP if necessary.
32709         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
32710         since gl_FUNC_STRNDUP does that now.
32711         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
32712         Check for decl here...
32713         (gl_PREREQ_STRNLEN): ... not here.
32714         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
32715         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
32716         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
32717         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
32718         necessary.
32719         * modules/string: New file.
32720         * modules/memmem (Files): Remove special-purpose include file.
32721         (Depends-on): Add string.
32722         (Include): Include <string.h>, not the removed file.
32723         * modules/mempcpy: Likewise.
32724         * modules/memrchr: Likewise.
32725         * modules/stpcpy: Likewise.
32726         * modules/stpncpy: Likewise.
32727         * modules/strcase: Likewise.
32728         * modules/strchrnul: Likewise.
32729         * modules/strdup: Likewise.
32730         * modules/strndup: Likewise.
32731         * modules/strnlen: Likewise.
32732         * modules/strpbrk: Likewise.
32733         * modules/strsep: Likewise.
32734         * modules/strstr: Likewise.
32735         * modules/strtok_r: Likewise.
32736         * tests/test-dirname.c: Don't include "strdup.h", since
32737         <string.h> now suffices.
32738         * tests/test-memmem.c: Don't include "memmem.h", since
32739         <string.h> now suffices.
32740
32741 2007-01-25  Bruno Haible  <bruno@clisp.org>
32742
32743         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
32744         *resultp is 0.
32745
32746         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
32747         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
32748         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
32749         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
32750
32751         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
32752         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
32753         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
32754         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
32755         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
32756         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
32757
32758 2007-01-24  Bruno Haible  <bruno@clisp.org>
32759
32760         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
32761         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
32762         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
32763         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
32764         gl_FUNC_FTS_CORE.
32765         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
32766         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
32767         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
32768         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
32769         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
32770         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
32771         gl_FUNC_FCHOWNAT.
32772         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
32773         gl_FUNC_STRFTIME.
32774         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
32775         Reported by Ralf Wildenhues.
32776
32777 2007-01-24  Bruno Haible  <bruno@clisp.org>
32778
32779         Drop AC_REQUIRE calls that are redundant with the module dependencies.
32780         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
32781         gl_GETADDRINFO.
32782         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
32783         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
32784         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
32785
32786 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
32787
32788         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
32789         Don't use 'exit'; just return from 'main'.
32790         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
32791
32792         * lib/fnmatch_.h: Readjust white space and comments to match
32793         glibc, to avoid spurious diffs.
32794
32795 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
32796
32797         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
32798         2004-12-01 change by Jakub Jelinek, since this code won't compile
32799         if !LIBC.  Problem reported by Bob Proulx.
32800
32801 2007-01-23  Bruno Haible  <bruno@clisp.org>
32802
32803         * lib/striconveh.c: Include c-strcaseeq.h.
32804         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
32805         * modules/striconveh (Depends-on): Add c-strcaseeq.
32806
32807 2007-01-23  Bruno Haible  <bruno@clisp.org>
32808
32809         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
32810
32811         * modules/c-strcaseeq: New file.
32812         * lib/c-strcaseeq.h: New file.
32813
32814         * modules/streq: New file.
32815         * lib/streq.h: New file.
32816
32817 2007-01-23  Bruno Haible  <bruno@clisp.org>
32818
32819         * modules/striconveha-tests: New file.
32820         * tests/test-striconveha.c: New file.
32821
32822         * lib/striconveha.h: Include <stdbool.h>.
32823         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
32824         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
32825         (mem_iconveha_notranslit): Renamed from mem_iconveha.
32826         (mem_iconveha): New function.
32827         (str_iconveha_notranslit): Renamed from str_iconveha.
32828         (str_iconveha): New function.
32829         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
32830         c-strcase.
32831
32832 2007-01-23  Bruno Haible  <bruno@clisp.org>
32833
32834         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
32835         encodings without forgiving before trying any encoding with handler.
32836         (str_iconveha): Try all encodings without forgiving before trying any
32837         encoding with handler.
32838
32839 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
32840
32841         Import the following changes from libc.
32842
32843         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
32844
32845         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
32846
32847         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
32848
32849         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
32850         normal_bracket label.
32851
32852         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
32853
32854         [BZ #361]
32855         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
32856         to normal_bracket after fetching the next character.
32857
32858 2007-01-22  Bruno Haible  <bruno@clisp.org>
32859
32860         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
32861         argument.
32862         * lib/striconveh.c (iconv_carefully_1): New function.
32863         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
32864         argument.
32865         (str_cd_iconveh): Update.
32866         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
32867         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
32868         * tests/test-striconveh.c (MAGIC): New macro.
32869         (new_offsets): New function.
32870         (main): Test call with and without offsets.
32871
32872 2007-01-22  Bruno Haible  <bruno@clisp.org>
32873
32874         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
32875         * modules/sys_select (Makefile.am): Likewise.
32876         * modules/sys_socket (Makefile.am): Likewise.
32877         * modules/sys_time (Makefile.am): Likewise.
32878
32879 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
32880
32881         * modules/gettimeofday (License): Change from GPL to LGPL, since
32882         gettimeofday is a library function.
32883
32884 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32885
32886         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
32887
32888 2007-01-21  Bruno Haible  <bruno@clisp.org>
32889
32890         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
32891
32892 2007-01-21  Bruno Haible  <bruno@clisp.org>
32893
32894         * modules/striconveha: New file.
32895         * lib/striconveha.h: New file.
32896         * lib/striconveha.c: New file.
32897         * MODULES.html.sh (Internationalization functions): Add striconveha.
32898         * lib/striconv.c (str_iconv): Optimize the case of an empty input
32899         string.
32900         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
32901
32902 2007-01-21  Bruno Haible  <bruno@clisp.org>
32903
32904         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
32905         * lib/striconveh.c (str_iconveh): Likewise.
32906
32907 2007-01-21  Bruno Haible  <bruno@clisp.org>
32908
32909         * lib/striconveh.h (mem_iconveh): New declaration.
32910         * lib/striconveh.c (mem_iconveh): New function.
32911         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
32912
32913 2007-01-21  Bruno Haible  <bruno@clisp.org>
32914
32915         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
32916
32917         * lib/striconveh.h (mem_cd_iconveh): Change specification.
32918         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
32919         original result buffer.
32920         (str_cd_iconveh): Update.
32921         * tests/test-striconveh.c (main): Update.
32922
32923         * lib/striconv.h (mem_cd_iconv): Change specification.
32924         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
32925         result buffer.
32926         (str_cd_iconv): Update.
32927         * tests/test-striconv.c (main): Update.
32928
32929 2007-01-21  Bruno Haible  <bruno@clisp.org>
32930
32931         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
32932
32933 2007-01-20  Jim Meyering  <jim@meyering.net>
32934
32935         * lib/userspec.c (parse_with_separator): If a user or group string
32936         starts with "+", skip the corresponding name-to-ID look-up, since
32937         such a look-up must fail: user and group names may not include "+".
32938
32939 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
32940
32941         * lib/poll.c: Include sys/time.h and time.h unconditionally,
32942         since we now assume the sys_time module.
32943         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
32944         check for sys/time.h; no longer needed.
32945         * modules/poll (Depends-on): Depend on sys_time.
32946
32947 2007-01-18  Bruno Haible  <bruno@clisp.org>
32948
32949         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
32950         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
32951
32952         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
32953         gettimeofday.
32954
32955         * tests/test-gettimeofday.c: Include <time.h>.
32956         (dummy): Remove variable.
32957
32958         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
32959         gl_HEADER_SYS_TIME_H.
32960         (gl_HEADER_SYS_TIME_H): New macro.
32961
32962         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
32963         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
32964         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
32965         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
32966         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
32967         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
32968         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
32969         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
32970         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
32971         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
32972         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
32973
32974         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
32975         last change; it caused a compilation error when cross-compiling to
32976         Cygwin.
32977
32978 2007-01-18  Jim Meyering  <jim@meyering.net>
32979
32980         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
32981         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
32982         than the race-prone "test -d sys || mkdir sys".
32983         (configure.ac): Use AC_PROG_MKDIR_P.
32984         * modules/sys_select: Likewise.
32985         * modules/sys_socket: Likewise.
32986         * modules/sys_time: Likewise.
32987
32988 2007-01-18  Eric Blake  <ebb9@byu.net>
32989
32990         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
32991         replace gettimeofday.
32992         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
32993         name, to avoid infinite recursion.
32994
32995 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
32996
32997         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
32998         module sys_time.
32999         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
33000         assume timespec.h defines struct timeval.
33001         * lib/settime.c: Likewise.
33002         * lib/utimens.c: Likewise.
33003         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
33004         since we now assume the gettimeofday module.
33005         * lib/tempname.c (__gen_tempname): Likewise.
33006         * lib/gettimeofday.h: Remove.
33007         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
33008         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
33009         Include <time.h>, for 'time()'.
33010         (localtime_buffer_addr): Also use this workaround if
33011         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
33012         to simplify the uses.  All uses changed.
33013         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
33014         that #undef is inside {}, and 'const' follows type name consistently.
33015         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
33016         (gettimeofday): Do not use the maximum possible value for
33017         tv->tv_usec, since that might break usages other than ls.c.
33018         Instead, we'll leave ls.c alone.  This undoes today's patch
33019         by Bruno.  Add a compile-time warning for 1s-clock resolution;
33020         we've never observed the problem but might as well keep the
33021         canary.
33022         * lib/nanosleep.c: Include timespec.h first, for interface check.
33023         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
33024         now assume the sys_time module.
33025         * lib/tempname.c: Likewise.
33026         * lib/timespec.h: Likewise.
33027         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
33028         needed.
33029         * lib/strftime.c: Likewise.
33030         * lib/timespec.h: Likewise.
33031         * lib/posixtm.c: Include posixtm.h first, for interface check.
33032         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
33033         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
33034         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
33035         * lib/sys_time_.h: New file.
33036         * lib/timespec.h (struct timespec): Use long int, not long.
33037         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
33038         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
33039         Remove obsolescent call to AC_HEADER_TIME.
33040         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
33041         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
33042         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
33043         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
33044         Likewise.
33045         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
33046         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
33047         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
33048         into the sys_time module.  Check for gettimeofday just once.
33049         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
33050         for gettimeofday signature to just check the signature.  Merely
33051         compile it, since linking doesn't test signature.  Improve test for
33052         whether gettimeofday.o is actually needed.
33053         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
33054         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
33055         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
33056         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33057         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
33058         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
33059         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
33060         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
33061         than worrying about sys/time.h.
33062         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
33063         Don't bother worrying about TIME_WITH_SYS_TIME.
33064         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
33065         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
33066         * m4/sys_time_h.m4: New file.
33067         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
33068         Don't include sys/time.h.  Return from main rather than exiting.
33069         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
33070         all uses changed.
33071         * modules/gethrxtime (Depends-on): Add sys_time.
33072         * modules/gettime (Depends-on): Likewise.
33073         * modules/gettimeofday (Depends-on): Likewise.
33074         * modules/nanosleep (Depends-on): Likewise.
33075         * modules/settime (Depends-on): Likewise.
33076         * modules/tempname (Depends-on): Likewise.
33077         * modules/utimens (Depends-on): Likewise.
33078         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
33079         (Include:) Change back to <sys/time.h>.
33080         (Maintainer:) Add self.
33081         * modules/sys_time: New file.
33082         * modules/tempname (Depends-on): Add gettimeofday.
33083         * tests/test-gettimeofday.c: Include <sys/time.h>
33084         rather than gettimeofday.h.
33085
33086 2007-01-17  Bruno Haible  <bruno@clisp.org>
33087
33088         * gnulib-tool (func_get_license): Revert last patch. Instead, let
33089         the license default to GPL.
33090         (func_create_testdir): Don't complain if a module is LGPL and its
33091         tests module depends on GPLed modules.
33092
33093 2007-01-17  Bruno Haible  <bruno@clisp.org>
33094
33095         * lib/gettimeofday.c (gettimeofday): Add code for the case
33096         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
33097         maximum possible value for tv->tv_usec, rather than the minimum one.
33098
33099 2005-10-08  Martin Lambers  <marlam@marlam.de>
33100 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
33101 2007-01-16  Bruno Haible  <bruno@clisp.org>
33102
33103         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
33104         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
33105         gl_FUNC_GETTIMEOFDAY.
33106         (Include): Add gettimeofday.h.
33107         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
33108         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
33109         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
33110         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
33111         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
33112         * lib/gettimeofday.h: New file.
33113         * lib/gettimeofday.c: Include <sys/timeb.h>.
33114         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
33115         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33116         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
33117         fall back on time().
33118
33119         * tests/test-gettimeofday.c: New file.
33120         * modules/gettimeofday-tests: New file.
33121
33122 2007-01-16  Eric Blake  <ebb9@byu.net>
33123
33124         * modules/fnmatch (Depends-on): Depend on wchar.
33125         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
33126         * m4/fnmatch.m4: Likewise.
33127         * modules/mbchar (Makefile.am): Assume <wchar.h>.
33128         * m4/mbchar.m4: Likewise.
33129         * modules/mbswidth (Depends-on): Depend on wchar.
33130         * lib/mbswidth.c: Assume <wchar.h>.
33131         * m4/mbswidth.m4: Likewise.
33132         * modules/quotearg (Depends-on): Depend on wchar.
33133         * lib/quotearg.c: Assume <wchar.h>.
33134         * m4/quotearg.m4: Likewise.
33135         * modules/regex (Depends-on): Depend on wchar.
33136         * lib/regex_internal.h: Assume <wchar.h>.
33137         * m4/regex.m4: Likewise.
33138         * modules/stdint (Depends-on): Depend on wchar.
33139         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
33140         * m4/stdint.m4: Likewise.
33141         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
33142         * modules/strftime (Depends-on): Depend on wchar.
33143         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
33144         * modules/strtol (Depends-on): Depend on wchar.
33145         * lib/strtol.c: Assume <wchar.h>.
33146         * modules/wcwidth (Depends-on): Depend on wchar.
33147         * lib/wcwidth.h: Assume <wchar.h>.
33148         * m4/wcwidth.m4: Likewise.
33149
33150 2007-01-16  Bruno Haible  <bruno@clisp.org>
33151
33152         * modules/csharpexec-script: New, created from...
33153         * modules/csharpexec: ... this.
33154
33155 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
33156
33157         * modules/javaexec-script: New, created from...
33158         * modules/javaexec: ... this.
33159
33160 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33161
33162         * modules/poll (Dependencies): Add sys_select.
33163
33164 2007-01-15  Jim Meyering  <jim@meyering.net>
33165
33166         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
33167         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
33168         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
33169         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
33170
33171 2007-01-15  Bruno Haible  <bruno@clisp.org>
33172
33173         * modules/striconveh: New file.
33174         * lib/striconveh.h: New file.
33175         * lib/striconveh.c: New file.
33176         * MODULES.html.sh (Internationalization functions): Add striconveh.
33177
33178         * modules/striconveh-tests: New file.
33179         * tests/test-striconveh.c: New file.
33180
33181 2007-01-15  Bruno Haible  <bruno@clisp.org>
33182
33183         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
33184         not from GNU libiconv or GNU libc.
33185
33186 2007-01-15  Bruno Haible  <bruno@clisp.org>
33187
33188         * doc/gnulib-intro.texi (Copyright): Explain the different license
33189         terms for module descriptions, autoconf macros, tests, documentation.
33190
33191 2007-01-14  Bruno Haible  <bruno@clisp.org>
33192
33193         * modules/striconv-tests: New file.
33194         * tests/test-striconv.c: New file.
33195
33196 2007-01-14  Bruno Haible  <bruno@clisp.org>
33197
33198         * modules/iconv-tests: New file.
33199         * tests/test-iconv.c: New file.
33200
33201 2007-01-14  Bruno Haible  <bruno@clisp.org>
33202
33203         * gnulib-tool (func_get_license): For test modules, use the license of
33204         the main module.
33205
33206 2007-01-14  Bruno Haible  <bruno@clisp.org>
33207
33208         * modules/iconv (Include): Clarify that <iconv.h> can only be included
33209         if iconv is found to exist.
33210
33211 2007-01-14  Bruno Haible  <bruno@clisp.org>
33212
33213         * modules/c-ctype-tests: New file.
33214         * tests/test-c-ctype.c: New file.
33215
33216 2007-01-14  Bruno Haible  <bruno@clisp.org>
33217
33218         * modules/binary-io-tests: New file.
33219         * tests/test-binary-io.sh: New file.
33220         * tests/test-binary-io.c: New file.
33221
33222 2007-01-14  Bruno Haible  <bruno@clisp.org>
33223
33224         * modules/array-oset-tests: New file.
33225         * tests/test-array_oset.c: New file.
33226
33227 2007-01-14  Bruno Haible  <bruno@clisp.org>
33228
33229         * modules/array-list-tests: New file.
33230         * tests/test-array_list.c: New file.
33231
33232 2007-01-14  Bruno Haible  <bruno@clisp.org>
33233
33234         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
33235         and make.
33236         Reported by Simon Josefsson in
33237         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
33238
33239 2007-01-14  Bruno Haible  <bruno@clisp.org>
33240
33241         * modules/allocsa-tests: New file.
33242         * tests/test-allocsa.c: New file.
33243
33244 2007-01-14  Bruno Haible  <bruno@clisp.org>
33245
33246         * modules/fchdir (Depends-on): Add absolute-header.
33247         * modules/unistd (Depends-on): Likewise.
33248
33249 2006-12-30  Bruno Haible  <bruno@clisp.org>
33250
33251         * modules/fchdir: New file.
33252         * modules/unistd (Files): Add lib/unistd_.h.
33253         (Makefile.am): Generate unistd.h from unistd_.h.
33254         * lib/fchdir.c: New file.
33255         * lib/dirent_.h: New file.
33256         * lib/unistd_.h: New file.
33257         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
33258         * m4/fchdir.m4: New file.
33259         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
33260         (gl_HEADER_UNISTD): Invoke it.
33261         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
33262         function.
33263         * lib/backupfile.c (opendir, closedir): Undefine.
33264         * lib/chown.c (open, close): Undefine.
33265         * lib/clean-temp.c (open, close): Undefine.
33266         * lib/copy-file.c (open, close): Undefine.
33267         * lib/execute.c (open, close): Undefine.
33268         * lib/fsusage.c (open, close): Undefine.
33269         * lib/gc-gnulib.c (open, close): Undefine.
33270         * lib/getcwd.c (opendir, closedir): Undefine.
33271         * lib/glob.c (opendir, closedir): Undefine.
33272         * lib/javacomp.c (open, close): Undefine.
33273         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
33274         * lib/openat-proc.c (open, close): Undefine.
33275         * lib/pagealign_alloc.c (open, close): Undefine.
33276         * lib/pipe.c (open, close): Undefine.
33277         * lib/progreloc.c (open, close): Undefine.
33278         * lib/savedir.c (opendir, closedir): Undefine.
33279         * lib/utime.c (open, close): Undefine.
33280         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
33281
33282 2007-01-10  Bruno Haible  <bruno@clisp.org>
33283
33284         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
33285
33286 2007-01-12  Eric Blake  <ebb9@byu.net>
33287
33288         Provide a robust <wchar.h>.  Further simplifications are now
33289         possible in other modules, but not included here.
33290         * modules/wchar: New module.
33291         * m4/wchar.m4: New file.
33292         * lib/wchar_.h: Likewise.
33293         * modules/mbchar (Depends-on): Depend on wchar, as the first use
33294         of the new module.
33295         * MODULES.html.sh (Extended multibyte and wide character utilities):
33296         New section.
33297
33298 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
33299
33300         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
33301         to a reasonable default for memory allocation.
33302         (xreadlink): Don't allocate a huge buffer, to work around a buggy
33303         file system that reports garbage st_size values for symlinks.
33304         Problem reported by Liyang Hu.
33305
33306 2007-01-11  Simon Josefsson  <simon@josefsson.org>
33307
33308         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
33309         Emacs .#* auto-save files).
33310
33311 2007-01-11  Bruno Haible  <bruno@clisp.org>
33312
33313         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
33314         directory.
33315
33316 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
33317
33318         Use @...@ consistently in lib/wctype_.h.
33319         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
33320         on it being set to 1 or 0.
33321         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
33322         go back to AC_SUBSTing it.
33323         * modules/wctype (Makefile.am): Undo previous change.
33324
33325 2007-01-10  Eric Blake  <ebb9@byu.net>
33326
33327         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
33328         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
33329         * modules/wctype (Makefile.am): Likewise.
33330         Reported by Chris McGuire.
33331
33332 2007-01-10  Jim Meyering  <jim@meyering.net>
33333
33334         fts.c: a small readability/maintainability improvement
33335         * lib/fts.c (fts_read): Make this code slightly more readable and
33336         maintainable by hoisting the "sp->fts_cur = p" assignments to
33337         immediately follow the statements that set P.  Derived from
33338         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
33339
33340 2007-01-10  Eric Blake  <ebb9@byu.net>
33341
33342         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
33343         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
33344         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
33345         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
33346         Reported by Chris McGuire.
33347
33348 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33349
33350         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
33351         in sed script.
33352
33353 2007-01-09  Bruno Haible  <bruno@clisp.org>
33354
33355         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
33356         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
33357         variables.
33358         (func_module): Use them.
33359
33360 2007-01-09  Bruno Haible  <bruno@clisp.org>
33361
33362         * modules/unistr/base: New file.
33363         * lib/unistr.h: New file.
33364
33365         * modules/unistr/u8-to-u16: New file.
33366         * lib/unistr/u8-to-u16.c: New file.
33367
33368         * modules/unistr/u8-to-u32: New file.
33369         * lib/unistr/u8-to-u32.c: New file.
33370
33371         * modules/unistr/u16-to-u8: New file.
33372         * lib/unistr/u16-to-u8.c: New file.
33373
33374         * modules/unistr/u16-to-u32: New file.
33375         * lib/unistr/u16-to-u32.c: New file.
33376
33377         * modules/unistr/u32-to-u8: New file.
33378         * lib/unistr/u32-to-u8.c: New file.
33379
33380         * modules/unistr/u32-to-u16: New file.
33381         * lib/unistr/u32-to-u16.c: New file.
33382
33383         * modules/unistr/u8-check: New file.
33384         * modules/unistr/u16-check: New file.
33385         * modules/unistr/u32-check: New file.
33386         * lib/unistr/u8-check.c: New file.
33387         * lib/unistr/u16-check.c: New file.
33388         * lib/unistr/u32-check.c: New file.
33389
33390         * modules/unistr/u8-chr: New file.
33391         * modules/unistr/u16-chr: New file.
33392         * modules/unistr/u32-chr: New file.
33393         * lib/unistr/u8-chr.c: New file.
33394         * lib/unistr/u16-chr.c: New file.
33395         * lib/unistr/u32-chr.c: New file.
33396
33397         * modules/unistr/u8-cmp: New file.
33398         * modules/unistr/u16-cmp: New file.
33399         * modules/unistr/u32-cmp: New file.
33400         * lib/unistr/u8-cmp.c: New file.
33401         * lib/unistr/u16-cmp.c: New file.
33402         * lib/unistr/u32-cmp.c: New file.
33403
33404         * modules/unistr/u8-cpy: New file.
33405         * modules/unistr/u16-cpy: New file.
33406         * modules/unistr/u32-cpy: New file.
33407         * lib/unistr/u8-cpy.c: New file.
33408         * lib/unistr/u16-cpy.c: New file.
33409         * lib/unistr/u32-cpy.c: New file.
33410         * lib/unistr/u-cpy.h: New file.
33411
33412         * modules/unistr/u8-cpy-alloc: New file.
33413         * modules/unistr/u16-cpy-alloc: New file.
33414         * modules/unistr/u32-cpy-alloc: New file.
33415         * lib/unistr/u8-cpy-alloc.c: New file.
33416         * lib/unistr/u16-cpy-alloc.c: New file.
33417         * lib/unistr/u32-cpy-alloc.c: New file.
33418         * lib/unistr/u-cpy-alloc.h: New file.
33419
33420         * modules/unistr/u8-endswith: New file.
33421         * modules/unistr/u16-endswith: New file.
33422         * modules/unistr/u32-endswith: New file.
33423         * lib/unistr/u8-endswith.c: New file.
33424         * lib/unistr/u16-endswith.c: New file.
33425         * lib/unistr/u32-endswith.c: New file.
33426         * lib/unistr/u-endswith.h: New file.
33427
33428         * modules/unistr/u8-mblen: New file.
33429         * modules/unistr/u16-mblen: New file.
33430         * modules/unistr/u32-mblen: New file.
33431         * lib/unistr/u8-mblen.c: New file.
33432         * lib/unistr/u16-mblen.c: New file.
33433         * lib/unistr/u32-mblen.c: New file.
33434
33435         * modules/unistr/u8-mbtouc: New file.
33436         * modules/unistr/u16-mbtouc: New file.
33437         * modules/unistr/u32-mbtouc: New file.
33438         * lib/unistr/u8-mbtouc.c: New file.
33439         * lib/unistr/u16-mbtouc.c: New file.
33440         * lib/unistr/u32-mbtouc.c: New file.
33441
33442         * modules/unistr/u8-mbtouc-safe: New file.
33443         * modules/unistr/u16-mbtouc-safe: New file.
33444         * modules/unistr/u32-mbtouc-safe: New file.
33445         * lib/unistr/u8-mbtouc-safe.c: New file.
33446         * lib/unistr/u16-mbtouc-safe.c: New file.
33447         * lib/unistr/u32-mbtouc-safe.c: New file.
33448
33449         * modules/unistr/u8-move: New file.
33450         * modules/unistr/u16-move: New file.
33451         * modules/unistr/u32-move: New file.
33452         * lib/unistr/u8-move.c: New file.
33453         * lib/unistr/u16-move.c: New file.
33454         * lib/unistr/u32-move.c: New file.
33455         * lib/unistr/u-move.h: New file.
33456
33457         * modules/unistr/u8-next: New file.
33458         * modules/unistr/u16-next: New file.
33459         * modules/unistr/u32-next: New file.
33460         * lib/unistr/u8-next.c: New file.
33461         * lib/unistr/u16-next.c: New file.
33462         * lib/unistr/u32-next.c: New file.
33463
33464         * modules/unistr/u8-prev: New file.
33465         * modules/unistr/u16-prev: New file.
33466         * modules/unistr/u32-prev: New file.
33467         * lib/unistr/u8-prev.c: New file.
33468         * lib/unistr/u16-prev.c: New file.
33469         * lib/unistr/u32-prev.c: New file.
33470
33471         * modules/unistr/u8-set: New file.
33472         * modules/unistr/u16-set: New file.
33473         * modules/unistr/u32-set: New file.
33474         * lib/unistr/u8-set.c: New file.
33475         * lib/unistr/u16-set.c: New file.
33476         * lib/unistr/u32-set.c: New file.
33477         * lib/unistr/u-set.h: New file.
33478
33479         * modules/unistr/u8-startswith: New file.
33480         * modules/unistr/u16-startswith: New file.
33481         * modules/unistr/u32-startswith: New file.
33482         * lib/unistr/u8-startswith.c: New file.
33483         * lib/unistr/u16-startswith.c: New file.
33484         * lib/unistr/u32-startswith.c: New file.
33485         * lib/unistr/u-startswith.h: New file.
33486
33487         * modules/unistr/u8-stpcpy: New file.
33488         * modules/unistr/u16-stpcpy: New file.
33489         * modules/unistr/u32-stpcpy: New file.
33490         * lib/unistr/u8-stpcpy.c: New file.
33491         * lib/unistr/u16-stpcpy.c: New file.
33492         * lib/unistr/u32-stpcpy.c: New file.
33493         * lib/unistr/u-stpcpy.h: New file.
33494
33495         * modules/unistr/u8-stpncpy: New file.
33496         * modules/unistr/u16-stpncpy: New file.
33497         * modules/unistr/u32-stpncpy: New file.
33498         * lib/unistr/u8-stpncpy.c: New file.
33499         * lib/unistr/u16-stpncpy.c: New file.
33500         * lib/unistr/u32-stpncpy.c: New file.
33501         * lib/unistr/u-stpncpy.h: New file.
33502
33503         * modules/unistr/u8-strcat: New file.
33504         * modules/unistr/u16-strcat: New file.
33505         * modules/unistr/u32-strcat: New file.
33506         * lib/unistr/u8-strcat.c: New file.
33507         * lib/unistr/u16-strcat.c: New file.
33508         * lib/unistr/u32-strcat.c: New file.
33509         * lib/unistr/u-strcat.h: New file.
33510
33511         * modules/unistr/u8-strchr: New file.
33512         * modules/unistr/u16-strchr: New file.
33513         * modules/unistr/u32-strchr: New file.
33514         * lib/unistr/u8-strchr.c: New file.
33515         * lib/unistr/u16-strchr.c: New file.
33516         * lib/unistr/u32-strchr.c: New file.
33517
33518         * modules/unistr/u8-strcmp: New file.
33519         * modules/unistr/u16-strcmp: New file.
33520         * modules/unistr/u32-strcmp: New file.
33521         * lib/unistr/u8-strcmp.c: New file.
33522         * lib/unistr/u16-strcmp.c: New file.
33523         * lib/unistr/u32-strcmp.c: New file.
33524
33525         * modules/unistr/u8-strcpy: New file.
33526         * modules/unistr/u16-strcpy: New file.
33527         * modules/unistr/u32-strcpy: New file.
33528         * lib/unistr/u8-strcpy.c: New file.
33529         * lib/unistr/u16-strcpy.c: New file.
33530         * lib/unistr/u32-strcpy.c: New file.
33531         * lib/unistr/u-strcpy.h: New file.
33532
33533         * modules/unistr/u8-strcspn: New file.
33534         * modules/unistr/u16-strcspn: New file.
33535         * modules/unistr/u32-strcspn: New file.
33536         * lib/unistr/u8-strcspn.c: New file.
33537         * lib/unistr/u16-strcspn.c: New file.
33538         * lib/unistr/u32-strcspn.c: New file.
33539         * lib/unistr/u-strcspn.h: New file.
33540
33541         * modules/unistr/u8-strdup: New file.
33542         * modules/unistr/u16-strdup: New file.
33543         * modules/unistr/u32-strdup: New file.
33544         * lib/unistr/u8-strdup.c: New file.
33545         * lib/unistr/u16-strdup.c: New file.
33546         * lib/unistr/u32-strdup.c: New file.
33547         * lib/unistr/u-strdup.h: New file.
33548
33549         * modules/unistr/u8-strlen: New file.
33550         * modules/unistr/u16-strlen: New file.
33551         * modules/unistr/u32-strlen: New file.
33552         * lib/unistr/u8-strlen.c: New file.
33553         * lib/unistr/u16-strlen.c: New file.
33554         * lib/unistr/u32-strlen.c: New file.
33555         * lib/unistr/u-strlen.h: New file.
33556
33557         * modules/unistr/u8-strmblen: New file.
33558         * modules/unistr/u16-strmblen: New file.
33559         * modules/unistr/u32-strmblen: New file.
33560         * lib/unistr/u8-strmblen.c: New file.
33561         * lib/unistr/u16-strmblen.c: New file.
33562         * lib/unistr/u32-strmblen.c: New file.
33563
33564         * modules/unistr/u8-strmbtouc: New file.
33565         * modules/unistr/u16-strmbtouc: New file.
33566         * modules/unistr/u32-strmbtouc: New file.
33567         * lib/unistr/u8-strmbtouc.c: New file.
33568         * lib/unistr/u16-strmbtouc.c: New file.
33569         * lib/unistr/u32-strmbtouc.c: New file.
33570
33571         * modules/unistr/u8-strncat: New file.
33572         * modules/unistr/u16-strncat: New file.
33573         * modules/unistr/u32-strncat: New file.
33574         * lib/unistr/u8-strncat.c: New file.
33575         * lib/unistr/u16-strncat.c: New file.
33576         * lib/unistr/u32-strncat.c: New file.
33577         * lib/unistr/u-strncat.h: New file.
33578
33579         * modules/unistr/u8-strncmp: New file.
33580         * modules/unistr/u16-strncmp: New file.
33581         * modules/unistr/u32-strncmp: New file.
33582         * lib/unistr/u8-strncmp.c: New file.
33583         * lib/unistr/u16-strncmp.c: New file.
33584         * lib/unistr/u32-strncmp.c: New file.
33585
33586         * modules/unistr/u8-strncpy: New file.
33587         * modules/unistr/u16-strncpy: New file.
33588         * modules/unistr/u32-strncpy: New file.
33589         * lib/unistr/u8-strncpy.c: New file.
33590         * lib/unistr/u16-strncpy.c: New file.
33591         * lib/unistr/u32-strncpy.c: New file.
33592         * lib/unistr/u-strncpy.h: New file.
33593
33594         * modules/unistr/u8-strnlen: New file.
33595         * modules/unistr/u16-strnlen: New file.
33596         * modules/unistr/u32-strnlen: New file.
33597         * lib/unistr/u8-strnlen.c: New file.
33598         * lib/unistr/u16-strnlen.c: New file.
33599         * lib/unistr/u32-strnlen.c: New file.
33600         * lib/unistr/u-strnlen.h: New file.
33601
33602         * modules/unistr/u8-strpbrk: New file.
33603         * modules/unistr/u16-strpbrk: New file.
33604         * modules/unistr/u32-strpbrk: New file.
33605         * lib/unistr/u8-strpbrk.c: New file.
33606         * lib/unistr/u16-strpbrk.c: New file.
33607         * lib/unistr/u32-strpbrk.c: New file.
33608         * lib/unistr/u-strpbrk.h: New file.
33609
33610         * modules/unistr/u8-strrchr: New file.
33611         * modules/unistr/u16-strrchr: New file.
33612         * modules/unistr/u32-strrchr: New file.
33613         * lib/unistr/u8-strrchr.c: New file.
33614         * lib/unistr/u16-strrchr.c: New file.
33615         * lib/unistr/u32-strrchr.c: New file.
33616
33617         * modules/unistr/u8-strspn: New file.
33618         * modules/unistr/u16-strspn: New file.
33619         * modules/unistr/u32-strspn: New file.
33620         * lib/unistr/u8-strspn.c: New file.
33621         * lib/unistr/u16-strspn.c: New file.
33622         * lib/unistr/u32-strspn.c: New file.
33623         * lib/unistr/u-strspn.h: New file.
33624
33625         * modules/unistr/u8-strstr: New file.
33626         * modules/unistr/u16-strstr: New file.
33627         * modules/unistr/u32-strstr: New file.
33628         * lib/unistr/u8-strstr.c: New file.
33629         * lib/unistr/u16-strstr.c: New file.
33630         * lib/unistr/u32-strstr.c: New file.
33631         * lib/unistr/u-strstr.h: New file.
33632
33633         * modules/unistr/u8-strtok: New file.
33634         * modules/unistr/u16-strtok: New file.
33635         * modules/unistr/u32-strtok: New file.
33636         * lib/unistr/u8-strtok.c: New file.
33637         * lib/unistr/u16-strtok.c: New file.
33638         * lib/unistr/u32-strtok.c: New file.
33639         * lib/unistr/u-strtok.h: New file.
33640
33641         * modules/unistr/u8-uctomb: New file.
33642         * modules/unistr/u16-uctomb: New file.
33643         * modules/unistr/u32-uctomb: New file.
33644         * lib/unistr/u8-uctomb.c: New file.
33645         * lib/unistr/u16-uctomb.c: New file.
33646         * lib/unistr/u32-uctomb.c: New file.
33647
33648         * MODULES.html.sh (Unicode string functions): Add the new modules.
33649
33650 2007-01-08  Bruno Haible  <bruno@clisp.org>
33651
33652         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
33653         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
33654         subdirectories.
33655
33656 2007-01-08  Karl Berry  <karl@gnu.org>
33657
33658         * doc/error.texi: mention that main() fns must set program_name
33659         when progname is used.
33660
33661 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
33662
33663         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
33664         WCTYPE_H is empty, for the benefit of builds from non-distclean
33665         directories.  Problem reported by Eric Blake in
33666         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
33667
33668 2007-01-08  Bruno Haible  <bruno@clisp.org>
33669
33670         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
33671         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
33672         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
33673         PROVIDE_CANONICALIZE_FILENAME_MODE.
33674         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
33675
33676 2007-01-08  Bruno Haible  <bruno@clisp.org>
33677
33678         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
33679         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
33680         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
33681         * lib/fts.c: Likewise.
33682         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
33683
33684 2006-12-25  Bruno Haible  <bruno@clisp.org>
33685
33686         * modules/utf8-ucs4-safe: New file.
33687         * lib/utf8-ucs4-safe.h: New file.
33688         * lib/unistr/utf8-ucs4-safe.c: New file.
33689
33690         * modules/utf16-ucs4-safe: New file.
33691         * lib/utf16-ucs4-safe.h: New file.
33692         * lib/unistr/utf16-ucs4-safe.c: New file.
33693
33694         * MODULES.html.sh (Unicode string functions): Add the new modules.
33695
33696 2007-01-08  Bruno Haible  <bruno@clisp.org>
33697
33698         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
33699         (Depends-on): Add unitypes.
33700         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
33701         (u8_mbtouc_aux): Move out to separate file.
33702         (u8_mbtouc): Use ucs4_t, uint8_t types.
33703         * lib/unistr/utf8-ucs4.c: New file.
33704
33705         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
33706         (Depends-on): Add unitypes.
33707         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
33708         (u16_mbtouc_aux): Move out to separate file.
33709         (u16_mbtouc): Use ucs4_t, uint16_t types.
33710         * lib/unistr/utf16-ucs4.c: New file.
33711
33712         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
33713         (Depends-on): Add unitypes.
33714         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
33715         (u8_uctomb_aux): Move out to separate file.
33716         (u8_uctomb): Use ucs4_t, uint8_t types.
33717         * lib/unistr/ucs4-utf8.c: New file.
33718
33719         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
33720         (Depends-on): Add unitypes.
33721         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
33722         (u16_uctomb_aux): Move out to separate file.
33723         (u16_uctomb): Use ucs4_t, uint16_t types.
33724         * lib/unistr/ucs4-utf16.c: New file.
33725
33726 2006-12-25  Bruno Haible  <bruno@clisp.org>
33727
33728         * modules/unitypes: New file.
33729         * lib/unitypes.h: New file.
33730         * MODULES.html.sh (func_all_modules): New section "Unicode string
33731         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
33732         this section. Add unitypes.
33733
33734 2007-01-08  Bruno Haible  <bruno@clisp.org>
33735
33736         Avoid variable names that conflict with those from libtool.
33737         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
33738         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
33739         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
33740         library_names_spec to acl_library_names_spec, hardcode_* to
33741         acl_hardcode_*.
33742         Reported by Ralf Wildenhues.
33743
33744 2007-01-08  Bruno Haible  <bruno@clisp.org>
33745
33746         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
33747         definition.
33748         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
33749         definition.
33750         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
33751         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
33752         definition.
33753         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
33754         definition.
33755         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
33756         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
33757         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
33758         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
33759         definition.
33760         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
33761         definition.
33762         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
33763         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
33764         GC_USE_<algorithm>.
33765         * lib/gc-libgcrypt.c: Likewise.
33766         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
33767         * modules/gc-arctwo (configure.ac): Likewise.
33768         * modules/gc-des (configure.ac): Likewise.
33769         * modules/gc-hmac-md5 (configure.ac): Likewise.
33770         * modules/gc-hmac-sha1 (configure.ac): Likewise.
33771         * modules/gc-md2 (configure.ac): Likewise.
33772         * modules/gc-md4 (configure.ac): Likewise.
33773         * modules/gc-md5 (configure.ac): Likewise.
33774         * modules/gc-random (configure.ac): Likewise.
33775         * modules/gc-rijndael (configure.ac): Likewise.
33776         * modules/gc-sha1 (configure.ac): Likewise.
33777
33778 2007-01-08  Bruno Haible  <bruno@clisp.org>
33779
33780         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
33781         macro definition.
33782         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
33783         definition.
33784         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
33785         definition.
33786         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
33787         * modules/fcntl-safer (configure.ac): Likewise.
33788         * modules/fopen-safer (configure.ac): Likewise.
33789         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
33790         GNULIB_FWRITEERROR macro definition.
33791
33792 2007-01-08  Bruno Haible  <bruno@clisp.org>
33793
33794         * m4/gnulib-common.m4: New file.
33795         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
33796         (func_get_filelist): Add m4/gnulib-common.m4.
33797
33798 2007-01-08  Bruno Haible  <bruno@clisp.org>
33799
33800         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
33801         command.
33802
33803 2007-01-08  Jim Meyering  <jim@meyering.net>
33804
33805         Use a more robust test for a "can't happen" condition.
33806         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
33807         narrowed the st_size value.  Presuming the "can't happen" condition
33808         is true, that narrowing could conceivably convert an invalid st_size
33809         value into a valid one.  Instead, use a change based on Matthew
33810         Woehlke's original patch.
33811
33812         Slight readability improvement: use an assert-like macro
33813         in place of literal "abort ()" uses.
33814         * lib/fts.c (fts_assert): Define.
33815         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
33816         Use this macro instead of a bare 'abort'.
33817
33818 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
33819
33820         Don't worry about using IRIX 5.3's wctype.h broken definitions;
33821         simply work around them.
33822         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
33823         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
33824         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
33825         declaring.
33826         Don't bother to define as macros, since the standard doesn't require it.
33827         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
33828         longer worry about IRIX 5.3.
33829         (HAVE_WCTYPE_CTMP_BUG): Remove.
33830
33831 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
33832
33833         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
33834         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
33835         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
33836         Problems reported by Georg Schwarz for IRIX 5.3.
33837
33838         * gnulib-tool (autoconf_minversion): Take the maximum version number
33839         found, not the minimum.  Problem reported by James Youngman.
33840
33841 2007-01-03  Karl Berry  <karl@gnu.org>
33842
33843         * doc/error.texi: new file, explaining interaction with progname.
33844         * doc/gnulib.texi: include it.  Update copyright.
33845
33846 2007-01-03  Simon Josefsson  <simon@josefsson.org>
33847
33848         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
33849         AC_CANONICAL_HOST, to improve autobuild outputs.
33850
33851 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
33852             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
33853
33854         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
33855         sockets, server sockets, and other file descriptors.  Count errors
33856         to compute the return value.  Reorder the code a bit to be easier
33857         to follow.  Don't set event bits that were not requested (except
33858         POLLERR and POLLHUP).
33859
33860 2007-01-01  Bruno Haible  <bruno@clisp.org>
33861
33862         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
33863
33864 2007-01-03  Jim Meyering  <jim@meyering.net>
33865
33866         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
33867
33868 2007-01-02  Bruno Haible  <bruno@clisp.org>
33869
33870         * modules/settime (Include): Require timespec.h.
33871         * modules/nanosleep (Include): Likewise.
33872
33873 2007-01-01  Bruno Haible  <bruno@clisp.org>
33874
33875         * gnulib-tool (func_emit_copyright_notice): Bump year.
33876         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
33877
33878 2007-01-01  Bruno Haible  <bruno@clisp.org>
33879
33880         Improve support for OpenBSD.
33881         * build-aux/config.rpath (libname_spec): Export.
33882         (library_names_spec): New variable. Export.
33883         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
33884         library_names_spec from the config.rpath output. Locate shared library
33885         through the name pattern in library_names_spec.
33886
33887 2007-01-01  Eric Blake  <ebb9@byu.net>
33888
33889         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
33890
33891 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
33892
33893         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
33894         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
33895         assume the C locale, and avoid an "eval" that could cause trouble.
33896         Problem with SORT reported by Bob Proulx.
33897
33898         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
33899         Define.  Trivial patch from Henning Nielsen Lund, originally
33900         sent to bug-grep@gnu.org today.
33901
33902 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
33903
33904         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
33905         struct stat.  Problem reported by Henning Nielsen Lund.
33906         * lib/acl.c: Include acl.h first, to check interface.  Don't
33907         bother to include sys/types.h and sys/stat.h again.
33908
33909 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
33910
33911         Import the following change from libc; problem reported by
33912         Sven Verdoolaege.
33913
33914         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
33915
33916         [BZ #1373]
33917         * lib/argp.h: Remove __NTH for __argp_usage inline function.
33918
33919 2006-12-28  Jim Meyering  <jim@meyering.net>
33920
33921         * build-aux/announce-gen: Do not assume that the package
33922         builds any of tar.gz, tar.bz2, and .xdelta files.
33923         Suggestion from Simon Josefsson.
33924
33925 2006-12-28  Simon Josefsson  <simon@josefsson.org>
33926
33927         * modules/announce-gen: New file.
33928
33929 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
33930
33931         * lib/mbchar.h: Just include <wctype.h>; the wctype module
33932         handles its gotchas now.
33933         * lib/mbswidth.c: Likewise.
33934         * lib/wcwidth.h: Likewise.
33935         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
33936         and iswcntrl; the wctype module does this stuff now.
33937         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
33938         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
33939         * modules/mbchar (Depends-on): Add wctype.
33940         * modules/mbswidth (Depends-on): Likewise.
33941         * modules/wcwidth (Depends-on): Likewise.
33942
33943 2006-12-27  Eric Blake  <ebb9@byu.net>
33944
33945         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
33946         module uses more than what <wctype.h> is required to provide.
33947
33948 2006-12-26  Eric Blake  <ebb9@byu.net>
33949
33950         * gnulib-tool (sed_extract_prog): Avoid space-tab.
33951
33952 2006-12-26  Eric Blake  <ebb9@byu.net>
33953
33954         * modules/absolute-header: New module.
33955         * modules/fcntl (Depends-on): Depend on it.
33956         * modules/inttypes (Depends-on): Likewise.
33957         * modules/stdint (Depends-on): Likewise.
33958         * modules/sys_stat (Depends-on): Likewise.
33959         * modules/wctype (Depends-on): Likewise.
33960         * MODULES.html.sh (Support for building libraries and
33961         executables): Document it.
33962
33963 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
33964
33965         * gnulib-tool (SED): Remove, undoing previous change.
33966         The problem was that it broke coreutils on Solaris, because
33967         "sed --posix" leaked into a makefile.
33968         (sed): New alias, if 'alias' and GNU sed.
33969
33970 2006-12-24  Jim Meyering  <jim@meyering.net>
33971
33972         Work around an fchownat bug in glibc-2.4:
33973         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
33974         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
33975         in spite of the -P option.
33976         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
33977         New macros.
33978         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
33979         * modules/openat (Files): Add lib/fchownat.c.
33980         * lib/openat.c (fchownat): Don't define here.  Move to...
33981         * lib/fchownat.c: ...this new file.
33982
33983 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
33984
33985         Fix bug reported by Bruno Haible in
33986         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
33987         where quotearg.c didn't compile on Mac OS X 10.2 because it
33988         lacks <wchar.h> and wint_t.
33989         * lib/wctype_.h (__wctype_wint_t): New type.
33990         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
33991         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
33992         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
33993         Arg is now of type __wctype_wint_t, not wint_t.
33994         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
33995         substitute HAVE_WINT_T.
33996         * modules/wctype (Files): Add m4/wint_t.m4.
33997         (wctype.h): Substitute HAVE_WINT_T.
33998
33999 2006-12-23  Bruno Haible  <bruno@clisp.org>
34000
34001         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
34002
34003 2006-12-23  Bruno Haible  <bruno@clisp.org>
34004
34005         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
34006         S_ISLNK.
34007         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
34008         mingw.
34009
34010 2006-12-22  Bruno Haible  <bruno@clisp.org>
34011
34012         * lib/copy-file.c: Include acl.h.
34013         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
34014         Close the file descriptors only after being done with copy_acl.
34015         * modules/copy-file (Depends-on): Add acl.
34016
34017 2006-12-22  Bruno Haible  <bruno@clisp.org>
34018
34019         * gnulib-tool (SED): New variable.
34020         Use $SED instead of sed everywhere.
34021
34022 2006-12-22  Bruno Haible  <bruno@clisp.org>
34023
34024         * modules/no-c++: New file.
34025         * m4/no-c++.m4: New file.
34026         * MODULES.html.sh (Support for building libraries and executables):
34027         Add no-c++.
34028
34029 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
34030
34031         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
34032         Include <limits.h>, and use its INT_MAX to rewrite the
34033         j loop so that it does not overflow 'int'.  Problem reported by
34034         Ralf Wildenhues in
34035         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
34036         Play it safe by shifting left by 1 rather than multiplying by 2,
34037         as GCC is less likely to optimize this away when the value
34038         is signed (when it assumes overflow leads to undefined behavior).
34039         Also, don't assume time_t uses two's complement.
34040
34041 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
34042
34043         * MODULES.html.sh: New module wctype.
34044         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
34045         * lib/fnmatch.c: Don't bother to include <wchar.h> before
34046         <wctype.h>, since the new wctype module should fix this.
34047         * lib/quotearg.c: Include <wctype.h> unconditionally, since
34048         the wctype module should arrange for it.
34049         * lib/regex_internal.h: Likewise.
34050         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
34051         since the wctype module should handle this now.
34052         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
34053         * modules/fnmatch (Depends-on): Add wctype.
34054         * modules/quotearg (Depends-on): Likewise.
34055         * modules/regex (Depends-on): Likewise.
34056
34057 2006-12-19  Bruno Haible  <bruno@clisp.org>
34058
34059         * lib/strdup.h [C++]: Wrap definitions in extern "C".
34060         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
34061
34062 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34063
34064         * modules/savewd (Depends-on): Fix dependency on fcntl.
34065
34066 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
34067
34068         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
34069         conforms to C99, rather than relying on the user's environment
34070         setting of STDINT_H.
34071
34072 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
34073         and Eric Blake  <ebb9@byu.net>
34074
34075         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
34076         This is more consistent with the other defines here.
34077         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
34078         Port to z/OS.  Problem reported by Paul Gilmartin.
34079         Change local vars to use gl_ prefix rather than ac_.
34080         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
34081         with other defines.
34082         * modules/double-slash-root: New module.
34083         * modules/dirname (Files): Remove m4/double-slash-root.m4.
34084         (Depends-on): Add double-slash-root.
34085         * MODULES.html.sh (File system functions): Mention new module.
34086
34087 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
34088
34089         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
34090         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
34091         This is for the benefit of gzip, which doesn't do i18n.
34092
34093 2006-12-12  Jim Meyering  <jim@meyering.net>
34094
34095         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
34096         Reported by Andreas Schwab <schwab@suse.de>.
34097
34098 2006-12-12  Bruno Haible  <bruno@clisp.org>
34099
34100         Merge these changes.
34101         2006-09-05  Bruno Haible  <bruno@clisp.org>
34102         * lib/iconvme.c (iconv_string): No need to save and restore errno when
34103         iconv_alloc succeeded.
34104         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
34105         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
34106         test for " && dest " at the end - dest is always != NULL there. Call
34107         iconv with 4xNULL arguments initially, to reset the state. Call iconv
34108         with 2xNULL arguments, also to flush the state storage. Handle the
34109         IRIX iconv behaviour. Realloc the final result, to throw away unused
34110         memory.
34111
34112 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
34113
34114         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
34115         and fchmodat unconditionally, since glibc 2.4 has them.
34116         Problem reported by Arkadiusz Miskiewicz.
34117
34118 2006-12-10  Bruno Haible  <bruno@clisp.org>
34119
34120         * gnulib-tool (func_import): Show the include files only for those
34121         modules that are copied and specified.
34122         Reported by Karl Berry.
34123
34124 2006-12-08  Jim Meyering  <jim@meyering.net>
34125
34126         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
34127         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
34128
34129         * build-aux/announce-gen: Add two new options, both optional:
34130         --bootstrap-tools=TOOL_LIST
34131               a comma-separated list of tools, e.g.,
34132               autoconf,automake,bison,gnulib
34133         --gnulib-snapshot-date=DATE
34134               if gnulib is in the bootstrap tool list,
34135               then report this as the snapshot date.
34136               If not specified, use the current date/time.
34137               If you specify a date here, be sure it's UTC.
34138
34139 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34140
34141         * tests/test-argp-2.sh: Fix test to match actual output.
34142         (func_compare): Fix sed script to be portable.
34143
34144 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
34145
34146         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
34147         workaround for this case.  It is not autoconfigured now; offhand
34148         it's hard to see how to autoconfigure it.
34149
34150 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
34151
34152         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
34153         a directory that is about to be chowned.  Such a directory's
34154         initial file permissions should permit the owner only and this
34155         should not be changed until after the chown, since the group and
34156         other bits would be incorrect if they granted permission before
34157         the chown.
34158
34159         Fix porting problem for iswctype reported by Georg Schwarz in:
34160         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
34161         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
34162         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
34163         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
34164         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
34165
34166 2006-12-03  Jim Meyering  <jim@meyering.net>
34167
34168         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
34169         p->fts_statp may not yet be defined.
34170         (fts_read): Instead, set it in the caller, once p->fts_statp is
34171         sure to be defined, and corresponds to a top-level directory.
34172         This bug made du -x fail.  Here's the coreutils test case:
34173         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
34174         Reported by Mike Frysinger.
34175
34176 2006-12-01  Jim Meyering  <jim@meyering.net>
34177
34178         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
34179         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
34180         Reported by Simon Josefsson.
34181
34182 2006-11-30  Jim Meyering  <jim@meyering.net>
34183
34184         * m4/warning.m4: Use the all-permissive copyright notice
34185         recommended by RMS (rather than LGPL).
34186         * m4/vararrays.m4: Likewise.
34187         * m4/flexmember.m4: Likewise.
34188
34189 2006-11-29  Bruno Haible  <bruno@clisp.org>
34190
34191         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34192         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
34193         using +=.
34194         Reported by Simon Josefsson <simon@josefsson.org>.
34195
34196 2006-11-28  James Youngman <jay@gnu.org>
34197
34198         * README: Advise users that they might find the bug-gnulib@gnu.org
34199         and autotools-announce@gnu.org mailing lists useful.
34200
34201 2006-11-28  Bruno Haible  <bruno@clisp.org>
34202
34203         * m4/ptrdiff_max.m4: Remove file.
34204
34205 2006-11-21  Bruno Haible  <bruno@clisp.org>
34206
34207         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
34208         _AC_COMPUTE_INT.
34209         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34210         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
34211         _AC_COMPUTE_INT.
34212         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34213         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
34214         _AC_COMPUTE_INT.
34215         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34216
34217 2006-11-28  Jim Meyering  <jim@meyering.net>
34218
34219         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
34220         warning from "gcc -Wshadow" about shadowing the builtin.
34221
34222 2006-11-27  Bruno Haible  <bruno@clisp.org>
34223
34224         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
34225         _AC_COMPUTE_INT.
34226         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34227
34228 2006-11-27  Bruno Haible  <bruno@clisp.org>
34229             Paul Eggert  <eggert@cs.ucla.edu>
34230
34231         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
34232
34233 2006-11-26  Bruno Haible  <bruno@clisp.org>
34234
34235         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34236         noinst_LTLIBRARIES.
34237
34238 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
34239             Bruno Haible  <bruno@clisp.org>
34240
34241         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
34242         if compiling with "gcc -ansi".
34243
34244 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
34245
34246         Fix some incompatibilities with gcc -ansi -pedantic.
34247         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
34248         if compiling pedantically with GCC, unless it's C99 or later.
34249         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
34250         it mishandles gcc -ansi -pedantic as well.
34251         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
34252         if gcc -pedantic.
34253         * lib/regexec.c (check_node_accept_bytes): Don't use auto
34254         initializers for struct if -pedantic, unless it's C99 or later.
34255
34256 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
34257
34258         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
34259         Don't close an fd more than once. Identical atimes indicate
34260         success, not failure.
34261
34262 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
34263
34264         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
34265
34266 2006-11-23  Jim Meyering  <jim@meyering.net>
34267
34268         * build-aux/announce-gen: New file.  From coreutils.
34269
34270 2006-11-22  Jim Meyering  <jim@meyering.net>
34271
34272         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
34273         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
34274         (fts_read): Use a temporary to narrow the overused st_size member
34275         before using it in a switch statement.  Reported by Matthew Woehlke.
34276
34277         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
34278         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
34279
34280 2006-11-20  Bruno Haible  <bruno@clisp.org>
34281
34282         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
34283         changequote instead of pairs of brackets.
34284         Reported by Andreas Schwab <schwab@suse.de>.
34285
34286 2006-11-21  Jim Meyering  <jim@meyering.net>
34287
34288         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
34289         so as to remain compatible with older compilers.
34290         Patch from Michael Deutschmann.
34291
34292 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
34293
34294         * MODULES.html.sh (File system functions): Add openat.
34295
34296         * lib/openat.h (rpl_fstatat): New macro, if
34297         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
34298         (fstatat): Define to rpl_fstatat under the same conditions,
34299         unless COMPILING_FSTATAT.
34300         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
34301         seems to have the bug.
34302         * lib/fstatat.c: New file.
34303         * modules/openat (Files): Add it.
34304
34305 2006-11-20  Bruno Haible  <bruno@clisp.org>
34306
34307         * Makefile: New file.
34308
34309 2006-11-20  Jim Meyering  <jim@meyering.net>
34310
34311         The beginnings of syntax-related checks for gnulib.
34312         * lib/Makefile: New file.
34313         * lib/t-idcache: New script.  Ensure that the two halves of
34314         idcache.c stay in sync.
34315
34316         * lib/idcache.c: Adjust comments in user- and group- portions to
34317         be more accurate, and to be consistent with one another.
34318
34319 2006-11-20  Jim Meyering  <jim@meyering.net>
34320
34321         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
34322         continue using the flexible array member (thus, this module performs
34323         half as many malloc calls), with the addition that...
34324         (getgroup, getuser): Consistently record a non-match via an empty
34325         "name" string, and map an empty string match to a NULL return value.
34326         * modules/idcache (Depends-on): Re-add flexmember.
34327
34328         * lib/idcache.c (getuser): Remove all uses of the register keyword.
34329         (getuidbyname, getgroup, getgidbyname): Likewise.
34330
34331         Use cleaner syntax: NULL rather than 0.
34332         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
34333
34334 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
34335
34336         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
34337         It mishandled the case where the group was missing.
34338         Problem reported by Greg Schafer.
34339         * modules/idcache: Likewise.
34340
34341 2006-11-18  Jim Meyering  <jim@meyering.net>
34342
34343         * check-module (%exempt_header): Add exception for some
34344         conditionally-included headers.
34345
34346         * modules/i-ring (Depends-on): Add verify.
34347         (License): Change to LGPL.
34348
34349 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
34350
34351         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
34352         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
34353         and inttostr.h.  Use snprintf rather than uinttostr, so that
34354         LGPLed code doesn't depend on GPLed.
34355
34356 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
34357
34358         * modules/inline (License): Change from GPL to LGPL.
34359
34360 2006-11-17  Jim Meyering  <jim@meyering.net>
34361
34362         * modules/d-type (License): Switch to LGPL.
34363
34364 2006-11-15  Bruno Haible  <bruno@clisp.org>
34365
34366         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
34367
34368 2006-11-15  Eric Blake  <ebb9@byu.net>
34369
34370         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
34371         the module dependency.
34372
34373 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
34374             Bruno Haible  <bruno@clisp.org>
34375
34376         * gnulib-tool (func_create_testdir): Add license consistency check.
34377
34378 2006-11-15  Eric Blake  <ebb9@byu.net>
34379
34380         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
34381         random "(cached)" in configure output.
34382
34383 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34384
34385         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
34386         test for conforming inttypes.h is both announced and cached.
34387
34388         * MODULES.html.sh (seen_modules, seen_files): New variables.
34389         (func_module): Rewrite to use a few less gnulib-tool and sed
34390         invocations.  Avoid a couple of quadratic algorithms for ...
34391         (missed_modules, missed_files): ... these, with ...
34392         (func_append, func_tmpdir): ... these new functions, from
34393         gnulib-tool.  Analogously, install traps for cleanup.
34394
34395         * tests/test-gc.c (main): Remove unused variables.
34396         * tests/test-read-file.c: Include stdlib.h, for 'free'.
34397
34398 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
34399
34400         * modules/inttostr (License): Change to LGPL.
34401
34402 2006-11-14  Eric Blake  <ebb9@byu.net>
34403
34404         * modules/tempname (License): Change to LGPL.
34405
34406 2006-11-14  Eric Blake  <ebb9@byu.net>
34407
34408         * doc/functions.texi (Function Portability): *printf functions on
34409         Cygwin now understand all POSIX size specifiers.
34410
34411 2006-11-14  Bruno Haible  <bruno@clisp.org>
34412
34413         * modules/c-ctype (License): Change to LGPL.
34414
34415 2006-11-12  Bruno Haible  <bruno@clisp.org>
34416
34417         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
34418         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
34419         for GNOME libraries, for which the include files are installed in
34420         subdirectories of $prefix/include.
34421
34422 2006-11-12  Bruno Haible  <bruno@clisp.org>
34423
34424         * m4/lib-link.m4: Require at least autoconf-2.54.
34425         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
34426         name to underscores for the --with option.
34427
34428 2006-11-13  Bruno Haible  <bruno@clisp.org>
34429
34430         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
34431         the tests directory.
34432         Reported by Ralf Wildenhues.
34433
34434 2006-11-13  Bruno Haible  <bruno@clisp.org>
34435
34436         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
34437         (func_emit_initmacro_end): Undo the override here.
34438         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
34439         Works around the famous automake error in coreutils.
34440
34441 2006-11-13  Eric Blake  <ebb9@byu.net>
34442
34443         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
34444         element, not its node.
34445
34446 2006-11-12  Bruno Haible  <bruno@clisp.org>
34447
34448         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
34449         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
34450
34451 2006-11-12  Bruno Haible  <bruno@clisp.org>
34452
34453         * gnulib-tool: New option --local-symlink.
34454         (func_usage): Document it.
34455         (lsymbolic): New variable.
34456         (func_import, func_create_testdir): If --symlink was not specified,
34457         test whether --local-symlink was specified and the file comes from
34458         the local_gnulib_dir.
34459
34460 2006-11-12  Bruno Haible  <bruno@clisp.org>
34461
34462         * gnulib-tool (func_ln): New function.
34463         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
34464
34465 2006-11-12  Bruno Haible  <bruno@clisp.org>
34466
34467         Finish support for source files in subdirectories.
34468         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
34469         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
34470         AUTOMAKE_OPTIONS.
34471         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
34472
34473 2006-11-12  Bruno Haible  <bruno@clisp.org>
34474
34475         * gnulib-tool (func_get_automake_snippet): Synthesize also an
34476         EXTRA_lib_SOURCES augmentation.
34477         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
34478
34479 2006-11-12  Jim Meyering  <jim@meyering.net>
34480
34481         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
34482         file descriptors.  This also averts a failure on systems with
34483         native openat support when a traversed directory lacks "x" access.
34484         * lib/fts_.h: Include "i-ring.h"
34485         (struct FTS) [fts_fd_ring]: New member.
34486         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
34487         (FCHDIR): Add parentheses.
34488         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
34489         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
34490         When descending, rather than simply closing the previous
34491         fts_cwd_fd value, push that file descriptor onto the ring.
34492         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
34493         (fts_open): Initialize the new fd_ring member.
34494         (fts_close): Clear the ring.
34495         (fts_safe_changedir): When possible, use our new fd_ring to skip
34496         the diropen and fstat and dev/ino comparison that would normally
34497         accompany a virtual `chdir ("..")'.
34498
34499         * modules/fts (Depends-on): Add i-ring.
34500         * modules/i-ring: New module.
34501         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
34502         * m4/i-ring.m4: New file.
34503
34504 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34505
34506         * gnulib-tool (func_create_testdir): Fix replacement of
34507         `build-aux' in configure.ac.  Run autotools in gltests
34508         subdirectory.
34509         (func_create_testdir, func_create_megatestdir, test): There is
34510         no need for '--force' in most autotool invocations in a new
34511         tree.  Actually fail the whole test if any of the tools, or the
34512         configure or make stages fail.
34513
34514         Sync from Automake.
34515         * build-aux/gnupload: Revert last change.  Add pointer to upload
34516         instructions of the GNU Maintenance Instructions.
34517         Suggestion by Karl Berry.
34518
34519 2006-11-10  Jim Meyering  <jim@meyering.net>
34520
34521         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
34522
34523 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
34524
34525         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
34526         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
34527         (bind_textdomain_codeset) [! ENABLE_NLS]:
34528         Evaluate all the arguments.  That way, callers get compatible behavior
34529         if the arguments have side effects.  Also, it avoids some GCC
34530         diagnostics in some cases; Joel E. Denny reported problems when Bison
34531         was configured with --enable-gcc-warnigs.
34532
34533 2006-11-10  Jim Meyering  <jim@meyering.net>
34534
34535         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
34536         relevant options in CFLAGS (like -O, -fno-inline) are taken into
34537         account.
34538
34539 2006-11-10  Jim Meyering  <jim@meyering.net>
34540
34541         * modules/inline: New file/module.
34542         * modules/xalloc (Files): Remove m4/inline.m4.
34543         (Depends-on): Add inline, instead.
34544         * modules/oset: Likewise.
34545         * modules/list: Likewise.
34546
34547 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
34548
34549         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
34550         Problem reported by Matthew Woehlke.
34551
34552 2006-11-09  Bruno Haible  <bruno@clisp.org>
34553
34554         * lib/tempname.c (gen_tempname): Remove variant that invokes
34555         __gen_tempname.
34556         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
34557         __gen_tempname.
34558
34559 2006-11-08  Bruno Haible  <bruno@clisp.org>
34560
34561         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
34562         to 'yes' instead of 'cross-compiling'.
34563
34564 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
34565
34566         * lib/quotearg.h (quotearg_free): New decl.
34567         * lib/quotearg.c (quotearg_free): New function.
34568         (slot0, nslots, slotvec0, slotvec):
34569         Now file-scope so that quotearg_free can get at them.
34570
34571 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34572
34573         Sync from Automake.
34574         * build-aux/gnupload: Add missing 'gnu' to example URL.
34575         Report by Karl Berry.
34576
34577 2006-11-08  Bruno Haible  <bruno@clisp.org>
34578
34579         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
34580         Suggested by Paul Eggert.
34581
34582 2006-11-08  Jim Meyering  <jim@meyering.net>
34583
34584         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
34585         It's already included if !_LIBC.
34586         (fts_safe_changedir): Add a comment.
34587
34588 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
34589
34590         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
34591         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
34592         Matthew Woehlke.
34593
34594         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
34595         definitions up, to avoid colliding with change below.
34596         (static_inline) [HAVE_INLINE]: New macro.
34597         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
34598         Provide extern decls when !HAVE_INLINE.  Do not define unless
34599         static_inline is defined, either by us or by xmalloc.c.  Use
34600         static_inline rather than static inline.
34601         (XCALLOC): Optimize sizeof(T) = 1 case.
34602         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
34603
34604 2006-11-07  Bruno Haible  <bruno@clisp.org>
34605
34606         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
34607         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
34608         AC_C_INLINE.
34609         * modules/xalloc (Files): Add m4/inline.m4.
34610
34611 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34612
34613         * README: Fix typo.
34614         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
34615         (Miscellanous Notes): ...from this.
34616
34617 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
34618
34619         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
34620         Mention that offsetof should be used instead of sizeof.
34621         From Bruno Haible.
34622
34623 2006-11-07  Bruno Haible  <bruno@clisp.org>
34624
34625         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
34626
34627 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
34628
34629         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
34630         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
34631         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
34632         (gl_tree_add_before, gl_tree_add_after):
34633         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
34634         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
34635         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
34636         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
34637         (gl_linked_add_after, gl_linked_add_at): Likewise.
34638         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
34639         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
34640         (gl_tree_add_before, gl_tree_add_after): Likewise.
34641         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
34642         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
34643         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
34644
34645 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34646
34647         * lib/gl_oset.h: Use C comment style, not C++ comment style.
34648
34649 2006-11-06  Bruno Haible  <bruno@clisp.org>
34650
34651         * m4/inline.m4: New file.
34652         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
34653         * modules/list (Files): Add m4/inline.m4.
34654         * modules/oset (Files): Likewise.
34655
34656 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
34657
34658         * lib/idcache.c: Include <stddef.h>, for offsetof.
34659         (struct userid.name): Change from char * to a flexible array member.
34660         All uses changed.
34661         * modules/idcache (Depends-on): Add flexmember.
34662
34663         * MODULES.html.sh (Core language properties): New module flexmember.
34664         * modules/flexmember, m4/flexmember.m4: New files.
34665
34666         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
34667         inline functions that are identical with the old xnmalloc_inline,
34668         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
34669         that we can avoid some unnecessary integer multiplications and
34670         divisions in the common case where the element size is known at
34671         compile time.
34672         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
34673         needed.
34674         (xnboundedmalloc): Remove.
34675         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
34676         arguments, for consistency with rest of this header.
34677         (xcharalloc): Rewrite using XNMALLOC.
34678         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
34679         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
34680         versions have been moved to lib/xalloc.h and renamed to be the
34681         non-*_inline versions.
34682         (xmalloc, xrealloc): Implement without reference to the xnmalloc
34683         and xnrealloc functions, since those functions are now inline and
34684         now call us.
34685         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
34686         renaming described above.
34687         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
34688         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
34689         captures the dependency in AC_C_INLINE.
34690
34691         New module canonicalize-lgpl, proposed by Charles Wilson in
34692         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
34693         with a few small changes afterwards.
34694         * MODULES.html.sh (File system functions): New module
34695         canonicalize-lgpl.
34696         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
34697         and canonicalize_file_name.
34698         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
34699         * modules/canonicalize-lgpl: New files.
34700
34701 2006-11-05  Bruno Haible  <bruno@clisp.org>
34702
34703         * gnulib-tool (func_import, func_create_testdir): Create directories
34704         also for files in subdirectories of lib/.
34705
34706 2006-11-05  Bruno Haible  <bruno@clisp.org>
34707
34708         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
34709         ANSI C compliant.
34710
34711 2006-11-03  Bruno Haible  <bruno@clisp.org>
34712
34713         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
34714         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
34715         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
34716         (xnboundedmalloc): New inline function.
34717         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
34718         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
34719         xmalloc.
34720         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
34721         xmalloc.
34722         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
34723         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
34724         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
34725         xmalloc.
34726         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
34727         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
34728         xmalloc.
34729         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
34730         gl_tree_add_after): Use XMALLOC instead of xmalloc.
34731         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
34732         xmalloc.
34733         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
34734         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
34735         gl_tree_add_after): Use XMALLOC instead of xmalloc.
34736         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
34737         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
34738         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
34739         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
34740
34741 2006-11-03  Bruno Haible  <bruno@clisp.org>
34742
34743         * lib/c-ctype.h [C++]: Define functions without name mangling.
34744         * lib/fwriteerror.h [C++]: Likewise.
34745         * lib/gcd.h [C++]: Likewise.
34746         * lib/linebreak.h [C++]: Likewise.
34747
34748 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
34749
34750         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
34751         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
34752         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
34753         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
34754         Check for functions and headers just once.
34755         Check for declaration of canonicalize_file_name.
34756         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
34757
34758 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
34759
34760         * gnulib-tool (func_import): Fix typo in actioncmd.
34761
34762 2006-11-02  Bruno Haible  <bruno@clisp.org>
34763
34764         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
34765         newline sequence in the Makefile.am snippet as a space, like "make"
34766         does.
34767         Reported by Roger Persson <perrog@gmail.com>.
34768
34769 2006-11-01  Bruno Haible  <bruno@clisp.org>
34770
34771         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
34772         already declared in <string.h>.
34773         * lib/strcase.h (strncasecmp): Don't declare it if yes.
34774
34775 2006-11-01  Bruno Haible  <bruno@clisp.org>
34776
34777         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
34778         * lib/strcase.h: Include <string.h>.
34779         (strcasecmp): Define to rpl_strcasecmp here.
34780
34781 2006-11-01  Bruno Haible  <bruno@clisp.org>
34782
34783         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
34784
34785 2006-11-01  Eric Blake  <ebb9@byu.net>
34786
34787         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
34788
34789         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
34790
34791 2006-10-29  Bruno Haible  <bruno@clisp.org>
34792
34793         Make it compile in C++ mode.
34794         * lib/full-write.c (full_rw): Add a cast.
34795
34796 2006-11-01  Bruno Haible  <bruno@clisp.org>
34797
34798         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
34799         be POSIX compliant.
34800         Reported by Roger Persson <perrog@gmail.com>.
34801
34802 2006-11-01  Eric Blake  <ebb9@byu.net>
34803
34804         * lib/getopt_.h: Fix comments.
34805
34806 2006-10-31  Eric Blake  <ebb9@byu.net>
34807
34808         * modules/tmpdir (Depends-on): Add sys_stat.
34809         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
34810         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
34811         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
34812         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
34813         tempname.
34814
34815 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
34816
34817         Avoid some C++ diagnostics reported by Bruno Haible.
34818         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
34819         xmalloc.
34820         (quotearg_alloc): Use xcharalloc rather than xmalloc.
34821         (struct slotvec): Move to top level.
34822         (quotearg_n_options): Rewrite to avoid xmalloc.
34823         * lib/xalloc.h (xcharalloc): New function.
34824         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
34825         [defined __cplusplus]: Add function template that provides result
34826         type propagation.  This part of the change is from Bruno Haible.
34827
34828 2006-10-29  Bruno Haible  <bruno@clisp.org>
34829
34830         Make it compile in C++ mode.
34831         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
34832         * lib/strnlen1.c (strnlen1): Cast memchr result.
34833         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
34834         * lib/clean-temp.c (string_equals, string_hash): Add casts.
34835         (create_temp_dir): Rename local variable 'template'.
34836         (compile_csharp_using_sscli): Add cast.
34837         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
34838         * lib/findprog.c (find_in_path): Likewise.
34839         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
34840         * lib/wait-process.c (register_slave_subprocess): Likewise.
34841
34842 2006-10-22  Bruno Haible  <bruno@clisp.org>
34843
34844         * modules/tsearch: New file.
34845         * lib/tsearch.h: New file.
34846         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
34847         * m4/tsearch.m4: New file.
34848         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
34849
34850 2006-10-29  Eric Blake  <ebb9@byu.net>
34851
34852         * lib/arcfour.c: Assume config.h.
34853         * lib/arctwo.c: Likewise.
34854         * lib/base64.c: Likewise.
34855         * lib/check-version.c: Likewise.
34856         * lib/crc.c: Likewise.
34857         * lib/des.c: Likewise.
34858         * lib/gc-gnulib.c: Likewise.
34859         * lib/gc-libgcrypt.c: Likewise.
34860         * lib/gc-pbkdf2-sha1.c: Likewise.
34861         * lib/getaddrinfo.c: Likewise.
34862         * lib/getdelim.c: Likewise.
34863         * lib/getline.c: Likewise.
34864         * lib/hmac-md5.c: Likewise.
34865         * lib/hmac-sha1.c: Likewise.
34866         * lib/iconvme.c: Likewise.
34867         * lib/md2.c: Likewise.
34868         * lib/md4.c: Likewise.
34869         * lib/memxor.c: Likewise.
34870         * lib/read-file.c: Likewise.
34871         * lib/readline.c: Likewise.
34872         * lib/rijndael-alg-fst.c: Likewise.
34873         * lib/rijndael-api-fst.c: Likewise.
34874         * lib/xgetdomainname.c: Likewise.
34875
34876 2006-10-28  Eric Blake  <ebb9@byu.net>
34877
34878         * lib/xstrndup.c: Assume config.h.
34879
34880 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
34881
34882         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
34883         stat-macros.h is now for our own macros, whereas stat_h is for
34884         macros in the <sys/stat.h> name space.
34885         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
34886         (STAT_MACROS_H): Remove.
34887         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
34888         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
34889         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
34890         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
34891         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
34892         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
34893         Move these macros to ...
34894         * lib/stat_.h: here.  Don't include stat-macros.h.
34895         * lib/canonicalize.c: Don't include stat-macros.h.
34896         * lib/chown.c: Likewise.
34897         * lib/euidaccess.c: Likewise.
34898         * lib/file-type.c: Likewise.
34899         * lib/filemode.c: Likewise.
34900         * lib/glob.c: Likewise.
34901         * lib/isapipe.c: Likewise.
34902         * lib/lchown.c: Likewise.
34903         * lib/lstat.c: Likewise.
34904         * lib/mkdir-p.c: Likewise.
34905         * lib/rmdir.c: Likewise.
34906         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
34907         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
34908         unless mkdir isn't declared, to speed up 'configure'.
34909         Always create sys/stat.h, since it's unlikely any real sys/stat.h
34910         would define all the S_* symbols.
34911         * modules/canonicalize (Depends-on):
34912         Depend on sys_stat, not stat-macros.
34913         * modules/chown: Likewise.
34914         * modules/euidaccess: Likewise.
34915         * modules/filemode: Likewise.
34916         * modules/file-type: Likewise.
34917         * modules/glob: Likewise.
34918         * modules/isapipe: Likewise.
34919         * modules/lchown: Likewise.
34920         * modules/lstat: Likewise.
34921         * modules/mkancesdirs: Likewise.
34922         * modules/rmdir: Likewise.
34923         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
34924         * modules/modechange: Likewise.
34925         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
34926         (configure.ac): Remove gl_STAT_MACROS.
34927         * modules/sys_stat (Depends-on): Remove stat-macros.
34928
34929 2006-10-27  Bruno Haible  <bruno@clisp.org>
34930
34931         * m4/signed.m4: Remove file.
34932         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
34933         invocation.
34934         * modules/vasnprintf (Files): Remove m4/signed.m4.
34935
34936 2006-10-27  Bruno Haible  <bruno@clisp.org>
34937
34938         Update to GNU gettext 0.16.
34939         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
34940         m4/inttypes-h.m4, m4/signed.m4.
34941         * m4/gettext.m4: Update to GNU gettext 0.16.
34942         * m4/intl.m4: New file, from GNU gettext.
34943         * m4/intldir.m4: New file, from GNU gettext.
34944         * config/srclist.txt: Update
34945
34946 2006-10-27  Eric Blake  <ebb9@byu.net>
34947
34948         * MODULES.html.sh: Document tempname.
34949         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
34950         dependencies.
34951         (Files): Move lib/tempname.c...
34952         * modules/tempname: ...to this new module.
34953         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
34954         (gl_PREREQ_TEMPNAME): Move...
34955         * m4/tempname.m4: ...to this new file.
34956         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
34957         * modules/sys_stat (Depends-on): Add stat-macros.
34958         * lib/stat_.h (includes): Pick up stat macros.
34959         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
34960         if stat macros are broken.
34961         * lib/tempname.c (includes): No need to include "stat-macros.h".
34962         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
34963         (direxists, __path_search) [!_LIBC]: Don't compile these in
34964         gnulib; the tmpdir module covers that.
34965         * lib/tempname.h: New file.
34966
34967 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
34968
34969         * COPYING: Explain how gnulib-tool converts licence headers.
34970         Almost all wording by Eric Blake.
34971
34972 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
34973
34974         * lib/mbchar.h (is_basic_table): Make read-only.
34975         * lib/mbchar.c (is_basic_table): Likewise.
34976         Reported by John Darrington.
34977
34978 2006-10-25  Bruno Haible  <bruno@clisp.org>
34979
34980         * lib/progname.h (set_program_name): Undefine before defining.
34981
34982 2006-10-25  Bruno Haible  <bruno@clisp.org>
34983
34984         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
34985         false for non-gcc C++ compilers.
34986         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
34987
34988 2006-10-24  Bruno Haible  <bruno@clisp.org>
34989
34990         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
34991         iconv implementations like Irix iconv.
34992
34993 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
34994
34995         * modules/vararrays: New file.
34996         * m4/vararrays.m4: New file, taken from diffutils.
34997         * MODULES.html.sh: New module vararrays.
34998
34999 2006-10-24  Karl Berry  <karl@gnu.org>
35000
35001         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
35002         Don't call GNU Unix.
35003
35004 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35005
35006         * users.txt: Add Libtool.
35007
35008         Sync from Libtool:
35009
35010         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35011
35012         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
35013         to gnulib's policy of including config.h unconditionally.
35014
35015 2006-10-24  Bruno Haible  <bruno@clisp.org>
35016
35017         * modules/wcwidth (Files): Add m4/wint_t.m4.
35018         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
35019         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
35020
35021 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35022
35023         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
35024         to pacify GCC with some -W flags enabled.  Problem reported by
35025         Bruno Haible.
35026
35027 2006-10-24  Jim Meyering  <jim@meyering.net>
35028
35029         * MODULES.html.sh: Remove uinttostr.  It's not a module.
35030         Reported by Karl Berry.
35031
35032 2006-10-23  Bruno Haible  <bruno@clisp.org>
35033
35034         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
35035
35036 2006-10-24  Bruno Haible  <bruno@clisp.org>
35037
35038         * lib/gl_list.h: Use C comment style, not C++ comment style.
35039
35040 2006-10-23  Eric Blake  <ebb9@byu.net>
35041
35042         * lib/getaddrinfo.c (includes): Add missing include.
35043
35044 2006-10-23  Bruno Haible  <bruno@clisp.org>
35045             Paul Eggert  <eggert@cs.ucla.edu>
35046
35047         Ability to rename obstack_free.
35048         * lib/obstack.h (__obstack_free): New macro. Declare instead of
35049         obstack_free.
35050         (obstack_free): Invoke the __obstack_free macro.
35051         * lib/obstack.c (obstack_free): Use __obstack_free macro.
35052
35053 2006-10-23  Bruno Haible  <bruno@clisp.org>
35054             Paul Eggert  <eggert@cs.ucla.edu>
35055
35056         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
35057         __argc, __argv from the declaration. (They are defined as macros on
35058         mingw.)
35059
35060 2006-10-22  Bruno Haible  <bruno@clisp.org>
35061
35062         * doc/gnulib-intro.texi: New file.
35063         * doc/gnulib.texi: Include it.
35064
35065 2006-10-21  Bruno Haible  <bruno@clisp.org>
35066
35067         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
35068         "Introduction", "Miscellanous Notes", "Particular Modules".
35069
35070 2006-10-21  Bruno Haible  <bruno@clisp.org>
35071
35072         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35073         Change mostlyclean-local rule to avoid sh syntax error from bash
35074         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
35075
35076 2006-10-23  Jim Meyering  <jim@meyering.net>
35077
35078         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
35079         in place of snprintf.
35080
35081         * modules/inttostr (Files): Add lib/uinttostr.c.
35082         * lib/uinttostr.c (inttostr): New file/function.
35083         * lib/inttostr.h (uinttostr): Declare.
35084         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
35085         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
35086         Add uinttostr.
35087         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
35088
35089 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
35090
35091         * lib/canonicalize.c (ELOOP): Define if not already defined.
35092         Problem reported by Bruno Haible in
35093         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
35094
35095 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
35096
35097         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
35098         Problem reported by Perry Smith and Ville Laurikari.
35099
35100         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
35101         uses.
35102
35103 2006-10-19  Bruno Haible  <bruno@clisp.org>
35104
35105         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
35106         for mingw.
35107
35108 2006-10-19  Bruno Haible  <bruno@clisp.org>
35109
35110         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
35111         Needed for mingw.
35112
35113 2006-10-19  Bruno Haible  <bruno@clisp.org>
35114
35115         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
35116
35117 2006-10-19  Bruno Haible  <bruno@clisp.org>
35118
35119         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
35120         it.
35121
35122 2006-10-19  Bruno Haible  <bruno@clisp.org>
35123
35124         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
35125         invocation.
35126
35127 2006-10-19  Bruno Haible  <bruno@clisp.org>
35128
35129         * gnulib-tool (func_create_testdir): Don't include ftruncate and
35130         mountlist by default.
35131
35132 2006-10-16  Bruno Haible  <bruno@clisp.org>
35133
35134         * lib/c-strstr.c: Include c-strstr.h.
35135
35136 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
35137
35138         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
35139         in a slash.
35140
35141 2006-10-18  Bruno Haible  <bruno@clisp.org>
35142
35143         * lib/lock.h [C++]: Wrap definitions in extern "C".
35144
35145 2006-10-18  Bruno Haible  <bruno@clisp.org>
35146
35147         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
35148         gl_LIBOBJS list.
35149
35150 2006-10-18  Bruno Haible  <bruno@clisp.org>
35151
35152         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
35153
35154 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
35155
35156         * lib/xstrtol.h: Include gettext.h.
35157         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
35158         Problem reported by Eric Blake.
35159         * modules/xstrtol (Depends-on): Add gettext-h.
35160
35161 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
35162
35163         * lib/strftime.c (advance): New macro.
35164         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
35165         incomplete type, so you can't add 0 to it.  Problem and patch
35166         reported by Eelco Dolstra for dietlibc.
35167
35168 2006-10-18  Jim Meyering  <jim@meyering.net>
35169
35170         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
35171         type for a local, and rename it: s/up/user_proc/.
35172
35173 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
35174
35175         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
35176         READ_UTMP_USER_PROCESS.
35177         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
35178
35179 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
35180
35181         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
35182         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
35183
35184 2006-10-17  Eric Blake  <ebb9@byu.net>
35185
35186         * lib/sigprocmask.c (sigprocmask): Fix typo.
35187
35188         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
35189
35190         * modules/clean-temp (Makefile.am): Don't add to make output...
35191         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
35192         config.h.
35193
35194 2006-10-17  Bruno Haible  <bruno@clisp.org>
35195
35196         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
35197         differently if DEFAULT_TEXT_DOMAIN is set.
35198
35199 2006-10-16  Bruno Haible  <bruno@clisp.org>
35200
35201         * lib/clean-temp.c: Include fwriteerror.h.
35202
35203 2006-10-16  Bruno Haible  <bruno@clisp.org>
35204
35205         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
35206
35207 2006-10-16  Bruno Haible  <bruno@clisp.org>
35208
35209         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
35210         * lib/sigprocmask.h: Include <sys/types.h>.
35211         (sigset_t): Use the system's definition if present.
35212
35213 2006-10-17  Eric Blake  <ebb9@byu.net>
35214
35215         * lib/xvasprintf.c (includes): Assume config.h.
35216         * lib/xasprintf.c (includes): Likewise.
35217
35218 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
35219
35220         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
35221         at least as wide as intmax_t.
35222
35223 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
35224
35225         (Imported from Automake.)
35226         * build-aux/gnupload: Update to version 1.1 of directive file.
35227
35228 2006-10-16  Eric Blake  <ebb9@byu.net>
35229
35230         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
35231         match Automake 1.10a.
35232
35233 2006-10-14  Bruno Haible  <bruno@clisp.org>
35234
35235         * modules/sigprocmask: New file.
35236         * lib/sigprocmask.h: New file.
35237         * lib/sigprocmask.c: New file.
35238         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
35239         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
35240         request sigprocmask.o.
35241         (gl_PREREQ_SIGPROCMASK): New macro.
35242         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
35243         (Depends-on): Add sigprocmask.
35244         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
35245         gt_SIGNALBLOCKING. Test for 'raise' only once.
35246         * lib/fatal-signal.c: Include sigprocmask.h.
35247         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
35248         unblock_fatal_signals): Define always.
35249         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
35250         sigprocmask.
35251
35252 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
35253
35254         Sync from Automake.
35255         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
35256         which incorrectly sets the mode of an existing destination
35257         directory.  In some cases the unpatched install-sh could do the
35258         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
35259         system.  We hope this is rare in practice, but it's clearly worth
35260         fixing.  Problem reported by Alex Unleashed in
35261         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
35262         Also, don't bother to check for -m bugs unless we're using -m;
35263         suggested by Stepan Kasal.
35264
35265 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35266
35267         Sync from Automake.
35268         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
35269         `-c' flag, so they appear at the same position as in %FASTDEP%
35270         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
35271         which ignores unknown options only after the first non-option.
35272         Bug report against M4 by Nelson H. F. Beebe.
35273
35274 2006-10-13  Jim Meyering  <jim@meyering.net>
35275
35276         Fix a bug in yesterday's change.
35277         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
35278         p->fts_statp->st_dev would be used uninitialized.
35279         Ensures that we always call fts_stat on the very first entry.
35280         Miklos Szeredi reported that find -xdev stopped working.
35281
35282 2006-10-12  Bruno Haible  <bruno@clisp.org>
35283
35284         * gnulib-tool (func_get_automake_snippet): Append an automatically
35285         computed EXTRA_DIST augmentation.
35286         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
35287         * modules/alloca-opt (Makefile.am): Likewise.
35288         * modules/allocsa (Makefile.am): Likewise.
35289         * modules/arcfour (Makefile.am): Likewise.
35290         * modules/arctwo (Makefile.am): Likewise.
35291         * modules/argmatch (Makefile.am): Likewise.
35292         * modules/argz (Makefile.am): Likewise.
35293         * modules/atexit (Makefile.am): Likewise.
35294         * modules/backupfile (Makefile.am): Likewise.
35295         * modules/byteswap (Makefile.am): Likewise.
35296         * modules/c-strtod (Makefile.am): Likewise.
35297         * modules/c-strtold (Makefile.am): Likewise.
35298         * modules/calloc (Makefile.am): Likewise.
35299         * modules/canon-host (Makefile.am): Likewise.
35300         * modules/canonicalize (Makefile.am): Likewise.
35301         * modules/chdir-long (Makefile.am): Likewise.
35302         * modules/chdir-safer (Makefile.am): Likewise.
35303         * modules/check-version (Makefile.am): Likewise.
35304         * modules/chown (Makefile.am): Likewise.
35305         * modules/cloexec (Makefile.am): Likewise.
35306         * modules/close-stream (Makefile.am): Likewise.
35307         * modules/closeout (Makefile.am): Likewise.
35308         * modules/crc (Makefile.am): Likewise.
35309         * modules/csharpexec (Makefile.am): Likewise.
35310         * modules/cycle-check (Makefile.am): Likewise.
35311         * modules/des (Makefile.am): Likewise.
35312         * modules/dev-ino (Makefile.am): Likewise.
35313         * modules/dirfd (Makefile.am): Likewise.
35314         * modules/dirname (Makefile.am): Likewise.
35315         * modules/dup2 (Makefile.am): Likewise.
35316         * modules/eealloc (Makefile.am): Likewise.
35317         * modules/error (Makefile.am): Likewise.
35318         * modules/euidaccess (Makefile.am): Likewise.
35319         * modules/exclude (Makefile.am): Likewise.
35320         * modules/exitfail (Makefile.am): Likewise.
35321         * modules/fcntl-safer (Makefile.am): Likewise.
35322         * modules/fcntl (Makefile.am): Likewise.
35323         * modules/file-type (Makefile.am): Likewise.
35324         * modules/fileblocks (Makefile.am): Likewise.
35325         * modules/filemode (Makefile.am): Likewise.
35326         * modules/filenamecat (Makefile.am): Likewise.
35327         * modules/fnmatch (Makefile.am): Likewise.
35328         * modules/fopen-safer (Makefile.am): Likewise.
35329         * modules/fpending (Makefile.am): Likewise.
35330         * modules/fprintftime (Makefile.am): Likewise.
35331         * modules/free (Makefile.am): Likewise.
35332         * modules/fsusage (Makefile.am): Likewise.
35333         * modules/ftruncate (Makefile.am): Likewise.
35334         * modules/fts (Makefile.am): Likewise.
35335         * modules/gc-arcfour (Makefile.am): Likewise.
35336         * modules/gc-des (Makefile.am): Likewise.
35337         * modules/gc-hmac-md5 (Makefile.am): Likewise.
35338         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
35339         * modules/gc-md4 (Makefile.am): Likewise.
35340         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
35341         * modules/gc-sha1 (Makefile.am): Likewise.
35342         * modules/gc (Makefile.am): Likewise.
35343         * modules/getaddrinfo (Makefile.am): Likewise.
35344         * modules/getcwd (Makefile.am): Likewise.
35345         * modules/getdelim (Makefile.am): Likewise.
35346         * modules/getdomainname (Makefile.am): Likewise.
35347         * modules/getgroups (Makefile.am): Likewise.
35348         * modules/gethostname (Makefile.am): Likewise.
35349         * modules/gethrxtime (Makefile.am): Likewise.
35350         * modules/getline (Makefile.am): Likewise.
35351         * modules/getloadavg (Makefile.am): Likewise.
35352         * modules/getlogin_r (Makefile.am): Likewise.
35353         * modules/getndelim2 (Makefile.am): Likewise.
35354         * modules/getopt (Makefile.am): Likewise.
35355         * modules/getpagesize (Makefile.am): Likewise.
35356         * modules/getpass-gnu (Makefile.am): Likewise.
35357         * modules/getpass (Makefile.am): Likewise.
35358         * modules/getsubopt (Makefile.am): Likewise.
35359         * modules/gettime (Makefile.am): Likewise.
35360         * modules/gettimeofday (Makefile.am): Likewise.
35361         * modules/getugroups (Makefile.am): Likewise.
35362         * modules/getusershell (Makefile.am): Likewise.
35363         * modules/glob (Makefile.am): Likewise.
35364         * modules/group-member (Makefile.am): Likewise.
35365         * modules/hard-locale (Makefile.am): Likewise.
35366         * modules/hash (Makefile.am): Likewise.
35367         * modules/hmac-md5 (Makefile.am): Likewise.
35368         * modules/hmac-sha1 (Makefile.am): Likewise.
35369         * modules/human (Makefile.am): Likewise.
35370         * modules/idcache (Makefile.am): Likewise.
35371         * modules/imaxabs (Makefile.am): Likewise.
35372         * modules/imaxdiv (Makefile.am): Likewise.
35373         * modules/inet_ntop (Makefile.am): Likewise.
35374         * modules/inet_pton (Makefile.am): Likewise.
35375         * modules/intprops (Makefile.am): Likewise.
35376         * modules/inttostr (Makefile.am): Likewise.
35377         * modules/inttypes (Makefile.am): Likewise.
35378         * modules/isapipe (Makefile.am): Likewise.
35379         * modules/javaversion (Makefile.am): Likewise.
35380         * modules/lchmod (Makefile.am): Likewise.
35381         * modules/lchown (Makefile.am): Likewise.
35382         * modules/localcharset (Makefile.am): Likewise.
35383         * modules/long-options (Makefile.am): Likewise.
35384         * modules/lstat (Makefile.am): Likewise.
35385         * modules/malloc (Makefile.am): Likewise.
35386         * modules/mathl (Makefile.am): Likewise.
35387         * modules/mbchar (Makefile.am): Likewise.
35388         * modules/md2 (Makefile.am): Likewise.
35389         * modules/md4 (Makefile.am): Likewise.
35390         * modules/md5 (Makefile.am): Likewise.
35391         * modules/memcasecmp (Makefile.am): Likewise.
35392         * modules/memchr (Makefile.am): Likewise.
35393         * modules/memcmp (Makefile.am): Likewise.
35394         * modules/memcoll (Makefile.am): Likewise.
35395         * modules/memcpy (Makefile.am): Likewise.
35396         * modules/memmem (Makefile.am): Likewise.
35397         * modules/memmove (Makefile.am): Likewise.
35398         * modules/mempcpy (Makefile.am): Likewise.
35399         * modules/memrchr (Makefile.am): Likewise.
35400         * modules/memset (Makefile.am): Likewise.
35401         * modules/memxor (Makefile.am): Likewise.
35402         * modules/mkancesdirs (Makefile.am): Likewise.
35403         * modules/mkdir-p (Makefile.am): Likewise.
35404         * modules/mkdir (Makefile.am): Likewise.
35405         * modules/mkdtemp (Makefile.am): Likewise.
35406         * modules/mkstemp (Makefile.am): Likewise.
35407         * modules/mktime (Makefile.am): Likewise.
35408         * modules/modechange (Makefile.am): Likewise.
35409         * modules/mountlist (Makefile.am): Likewise.
35410         * modules/nanosleep (Makefile.am): Likewise.
35411         * modules/obstack (Makefile.am): Likewise.
35412         * modules/openat (Makefile.am): Likewise.
35413         * modules/pagealign_alloc (Makefile.am): Likewise.
35414         * modules/pathmax (Makefile.am): Likewise.
35415         * modules/physmem (Makefile.am): Likewise.
35416         * modules/poll (Makefile.am): Likewise.
35417         * modules/posixtm (Makefile.am): Likewise.
35418         * modules/posixver (Makefile.am): Likewise.
35419         * modules/putenv (Makefile.am): Likewise.
35420         * modules/quote (Makefile.am): Likewise.
35421         * modules/quotearg (Makefile.am): Likewise.
35422         * modules/raise (Makefile.am): Likewise.
35423         * modules/read-file (Makefile.am): Likewise.
35424         * modules/readline (Makefile.am): Likewise.
35425         * modules/readlink (Makefile.am): Likewise.
35426         * modules/readtokens (Makefile.am): Likewise.
35427         * modules/readutmp (Makefile.am): Likewise.
35428         * modules/realloc (Makefile.am): Likewise.
35429         * modules/regex (Makefile.am): Likewise.
35430         * modules/rename-dest-slash (Makefile.am): Likewise.
35431         * modules/rename (Makefile.am): Likewise.
35432         * modules/rijndael (Makefile.am): Likewise.
35433         * modules/rmdir (Makefile.am): Likewise.
35434         * modules/rpmatch (Makefile.am): Likewise.
35435         * modules/safe-read (Makefile.am): Likewise.
35436         * modules/safe-write (Makefile.am): Likewise.
35437         * modules/same-inode (Makefile.am): Likewise.
35438         * modules/same (Makefile.am): Likewise.
35439         * modules/save-cwd (Makefile.am): Likewise.
35440         * modules/savedir (Makefile.am): Likewise.
35441         * modules/setenv (Makefile.am): Likewise.
35442         * modules/settime (Makefile.am): Likewise.
35443         * modules/sha1 (Makefile.am): Likewise.
35444         * modules/sig2str (Makefile.am): Likewise.
35445         * modules/snprintf (Makefile.am): Likewise.
35446         * modules/stat-macros (Makefile.am): Likewise.
35447         * modules/stat-time (Makefile.am): Likewise.
35448         * modules/stdbool (Makefile.am): Likewise.
35449         * modules/stdint (Makefile.am): Likewise.
35450         * modules/stdlib-safer (Makefile.am): Likewise.
35451         * modules/stpcpy (Makefile.am): Likewise.
35452         * modules/stpncpy (Makefile.am): Likewise.
35453         * modules/strcase (Makefile.am): Likewise.
35454         * modules/strcasestr (Makefile.am): Likewise.
35455         * modules/strchrnul (Makefile.am): Likewise.
35456         * modules/strcspn (Makefile.am): Likewise.
35457         * modules/strdup (Makefile.am): Likewise.
35458         * modules/strerror (Makefile.am): Likewise.
35459         * modules/strftime (Makefile.am): Likewise.
35460         * modules/strndup (Makefile.am): Likewise.
35461         * modules/strnlen (Makefile.am): Likewise.
35462         * modules/strpbrk (Makefile.am): Likewise.
35463         * modules/strsep (Makefile.am): Likewise.
35464         * modules/strstr (Makefile.am): Likewise.
35465         * modules/strtod (Makefile.am): Likewise.
35466         * modules/strtoimax (Makefile.am): Likewise.
35467         * modules/strtok_r (Makefile.am): Likewise.
35468         * modules/strtol (Makefile.am): Likewise.
35469         * modules/strtoll (Makefile.am): Likewise.
35470         * modules/strtoul (Makefile.am): Likewise.
35471         * modules/strtoull (Makefile.am): Likewise.
35472         * modules/strtoumax (Makefile.am): Likewise.
35473         * modules/strverscmp (Makefile.am): Likewise.
35474         * modules/sys_socket (Makefile.am): Likewise.
35475         * modules/sys_stat (Makefile.am): Likewise.
35476         * modules/sysexits (Makefile.am): Likewise.
35477         * modules/time_r (Makefile.am): Likewise.
35478         * modules/timegm (Makefile.am): Likewise.
35479         * modules/timespec (Makefile.am): Likewise.
35480         * modules/tmpfile-safer (Makefile.am): Likewise.
35481         * modules/trim (Makefile.am): Likewise.
35482         * modules/unistd-safer (Makefile.am): Likewise.
35483         * modules/unlinkdir (Makefile.am): Likewise.
35484         * modules/unlocked-io (Makefile.am): Likewise.
35485         * modules/userspec (Makefile.am): Likewise.
35486         * modules/utime (Makefile.am): Likewise.
35487         * modules/utimecmp (Makefile.am): Likewise.
35488         * modules/utimens (Makefile.am): Likewise.
35489         * modules/vasnprintf (Makefile.am): Likewise.
35490         * modules/vasprintf (Makefile.am): Likewise.
35491         * modules/vsnprintf (Makefile.am): Likewise.
35492         * modules/xalloc (Makefile.am): Likewise.
35493         * modules/xgetcwd (Makefile.am): Likewise.
35494         * modules/xnanosleep (Makefile.am): Likewise.
35495         * modules/xreadlink (Makefile.am): Likewise.
35496         * modules/xstrtod (Makefile.am): Likewise.
35497         * modules/xstrtol (Makefile.am): Likewise.
35498         * modules/xstrtold (Makefile.am): Likewise.
35499         * modules/yesno (Makefile.am): Likewise.
35500         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
35501
35502 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
35503
35504         * modules/error (Makefile.am): Distribute files through
35505         EXTRA_DIST, not lib_SOURCES.
35506
35507 2006-10-12  Eric Blake  <ebb9@byu.net>
35508
35509         * modules/error (Makefile.am): Distribute files in /lib.
35510         * modules/obstack (Makefile.am): Likewise.
35511
35512 2006-10-12  Bruno Haible  <bruno@clisp.org>
35513
35514         * modules/acl (Makefile.am): Distribute all files in lib/ through
35515         EXTRA_DIST.
35516         * modules/arcfour (Makefile.am): Likewise.
35517         * modules/arctwo (Makefile.am): Likewise.
35518         * modules/argmatch (Makefile.am): Likewise.
35519         * modules/argz (Makefile.am): Likewise.
35520         * modules/atexit (Makefile.am): Likewise.
35521         * modules/backupfile (Makefile.am): Likewise.
35522         * modules/c-strtod (Makefile.am): Likewise.
35523         * modules/c-strtold (Makefile.am): Likewise.
35524         * modules/calloc (Makefile.am): Likewise.
35525         * modules/canon-host (Makefile.am): Likewise.
35526         * modules/canonicalize (Makefile.am): Likewise.
35527         * modules/chdir-long (Makefile.am): Likewise.
35528         * modules/chdir-safer (Makefile.am): Likewise.
35529         * modules/check-version (Makefile.am): Likewise.
35530         * modules/chown (Makefile.am): Likewise.
35531         * modules/cloexec (Makefile.am): Likewise.
35532         * modules/close-stream (Makefile.am): Likewise.
35533         * modules/closeout (Makefile.am): Likewise.
35534         * modules/crc (Makefile.am): Likewise.
35535         * modules/cycle-check (Makefile.am): Likewise.
35536         * modules/des (Makefile.am): Likewise.
35537         * modules/dirfd (Makefile.am): Likewise.
35538         * modules/dirname (Makefile.am): Likewise.
35539         * modules/dup2 (Makefile.am): Likewise.
35540         * modules/euidaccess (Makefile.am): Likewise.
35541         * modules/exclude (Makefile.am): Likewise.
35542         * modules/exitfail (Makefile.am): Likewise.
35543         * modules/fcntl-safer (Makefile.am): Likewise.
35544         * modules/file-type (Makefile.am): Likewise.
35545         * modules/fileblocks (Makefile.am): Likewise.
35546         * modules/filemode (Makefile.am): Likewise.
35547         * modules/filenamecat (Makefile.am): Likewise.
35548         * modules/fnmatch (Makefile.am): Likewise.
35549         * modules/fopen-safer (Makefile.am): Likewise.
35550         * modules/fpending (Makefile.am): Likewise.
35551         * modules/fprintftime (Makefile.am): Likewise.
35552         * modules/free (Makefile.am): Likewise.
35553         * modules/fsusage (Makefile.am): Likewise.
35554         * modules/ftruncate (Makefile.am): Likewise.
35555         * modules/fts (Makefile.am): Likewise.
35556         * modules/gc (Makefile.am): Likewise.
35557         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
35558         * modules/getaddrinfo (Makefile.am): Likewise.
35559         * modules/getcwd (Makefile.am): Likewise.
35560         * modules/getdelim (Makefile.am): Likewise.
35561         * modules/getdomainname (Makefile.am): Likewise.
35562         * modules/getgroups (Makefile.am): Likewise.
35563         * modules/gethostname (Makefile.am): Likewise.
35564         * modules/gethrxtime (Makefile.am): Likewise.
35565         * modules/getline (Makefile.am): Likewise.
35566         * modules/getloadavg (Makefile.am): Likewise.
35567         * modules/getlogin_r (Makefile.am): Likewise.
35568         * modules/getopt (Makefile.am): Likewise.
35569         * modules/getpass (Makefile.am): Likewise.
35570         * modules/getpass-gnu (Makefile.am): Likewise.
35571         * modules/getsubopt (Makefile.am): Likewise.
35572         * modules/gettime (Makefile.am): Likewise.
35573         * modules/gettimeofday (Makefile.am): Likewise.
35574         * modules/getugroups (Makefile.am): Likewise.
35575         * modules/getusershell (Makefile.am): Likewise.
35576         * modules/glob (Makefile.am): Likewise.
35577         * modules/group-member (Makefile.am): Likewise.
35578         * modules/hard-locale (Makefile.am): Likewise.
35579         * modules/hash (Makefile.am): Likewise.
35580         * modules/hmac-md5 (Makefile.am): Likewise.
35581         * modules/hmac-sha1 (Makefile.am): Likewise.
35582         * modules/human (Makefile.am): Likewise.
35583         * modules/idcache (Makefile.am): Likewise.
35584         * modules/imaxabs (Makefile.am): Likewise.
35585         * modules/imaxdiv (Makefile.am): Likewise.
35586         * modules/inet_ntop (Makefile.am): Likewise.
35587         * modules/inet_pton (Makefile.am): Likewise.
35588         * modules/inttostr (Makefile.am): Likewise.
35589         * modules/isapipe (Makefile.am): Likewise.
35590         * modules/lchown (Makefile.am): Likewise.
35591         * modules/long-options (Makefile.am): Likewise.
35592         * modules/lstat (Makefile.am): Likewise.
35593         * modules/malloc (Makefile.am): Likewise.
35594         * modules/mathl (Makefile.am): Likewise.
35595         * modules/mbchar (Makefile.am): Likewise.
35596         * modules/md2 (Makefile.am): Likewise.
35597         * modules/md4 (Makefile.am): Likewise.
35598         * modules/md5 (Makefile.am): Likewise.
35599         * modules/memcasecmp (Makefile.am): Likewise.
35600         * modules/memchr (Makefile.am): Likewise.
35601         * modules/memcmp (Makefile.am): Likewise.
35602         * modules/memcoll (Makefile.am): Likewise.
35603         * modules/memcpy (Makefile.am): Likewise.
35604         * modules/memmem (Makefile.am): Likewise.
35605         * modules/memmove (Makefile.am): Likewise.
35606         * modules/mempcpy (Makefile.am): Likewise.
35607         * modules/memrchr (Makefile.am): Likewise.
35608         * modules/memset (Makefile.am): Likewise.
35609         * modules/memxor (Makefile.am): Likewise.
35610         * modules/mkancesdirs (Makefile.am): Likewise.
35611         * modules/mkdir (Makefile.am): Likewise.
35612         * modules/mkdir-p (Makefile.am): Likewise.
35613         * modules/mkdtemp (Makefile.am): Likewise.
35614         * modules/mkstemp (Makefile.am): Likewise.
35615         * modules/mktime (Makefile.am): Likewise.
35616         * modules/modechange (Makefile.am): Likewise.
35617         * modules/mountlist (Makefile.am): Likewise.
35618         * modules/nanosleep (Makefile.am): Likewise.
35619         * modules/openat (Makefile.am): Likewise.
35620         * modules/pagealign_alloc (Makefile.am): Likewise.
35621         * modules/physmem (Makefile.am): Likewise.
35622         * modules/poll (Makefile.am): Likewise.
35623         * modules/posixtm (Makefile.am): Likewise.
35624         * modules/posixver (Makefile.am): Likewise.
35625         * modules/putenv (Makefile.am): Likewise.
35626         * modules/quote (Makefile.am): Likewise.
35627         * modules/quotearg (Makefile.am): Likewise.
35628         * modules/raise (Makefile.am): Likewise.
35629         * modules/read-file (Makefile.am): Likewise.
35630         * modules/readline (Makefile.am): Likewise.
35631         * modules/readlink (Makefile.am): Likewise.
35632         * modules/readtokens (Makefile.am): Likewise.
35633         * modules/readutmp (Makefile.am): Likewise.
35634         * modules/realloc (Makefile.am): Likewise.
35635         * modules/regex (Makefile.am): Likewise.
35636         * modules/rename (Makefile.am): Likewise.
35637         * modules/rename-dest-slash (Makefile.am): Likewise.
35638         * modules/rijndael (Makefile.am): Likewise.
35639         * modules/rmdir (Makefile.am): Likewise.
35640         * modules/rpmatch (Makefile.am): Likewise.
35641         * modules/safe-read (Makefile.am): Likewise.
35642         * modules/safe-write (Makefile.am): Likewise.
35643         * modules/same (Makefile.am): Likewise.
35644         * modules/save-cwd (Makefile.am): Likewise.
35645         * modules/savedir (Makefile.am): Likewise.
35646         * modules/setenv (Makefile.am): Likewise.
35647         * modules/settime (Makefile.am): Likewise.
35648         * modules/sha1 (Makefile.am): Likewise.
35649         * modules/sig2str (Makefile.am): Likewise.
35650         * modules/snprintf (Makefile.am): Likewise.
35651         * modules/stdlib-safer (Makefile.am): Likewise.
35652         * modules/stpcpy (Makefile.am): Likewise.
35653         * modules/stpncpy (Makefile.am): Likewise.
35654         * modules/strcase (Makefile.am): Likewise.
35655         * modules/strcasestr (Makefile.am): Likewise.
35656         * modules/strchrnul (Makefile.am): Likewise.
35657         * modules/strcspn (Makefile.am): Likewise.
35658         * modules/strdup (Makefile.am): Likewise.
35659         * modules/strerror (Makefile.am): Likewise.
35660         * modules/strftime (Makefile.am): Likewise.
35661         * modules/strndup (Makefile.am): Likewise.
35662         * modules/strnlen (Makefile.am): Likewise.
35663         * modules/strpbrk (Makefile.am): Likewise.
35664         * modules/strsep (Makefile.am): Likewise.
35665         * modules/strstr (Makefile.am): Likewise.
35666         * modules/strtod (Makefile.am): Likewise.
35667         * modules/strtoimax (Makefile.am): Likewise.
35668         * modules/strtok_r (Makefile.am): Likewise.
35669         * modules/strtol (Makefile.am): Likewise.
35670         * modules/strtoll (Makefile.am): Likewise.
35671         * modules/strtoul (Makefile.am): Likewise.
35672         * modules/strtoull (Makefile.am): Likewise.
35673         * modules/strtoumax (Makefile.am): Likewise.
35674         * modules/strverscmp (Makefile.am): Likewise.
35675         * modules/time_r (Makefile.am): Likewise.
35676         * modules/timegm (Makefile.am): Likewise.
35677         * modules/tmpfile-safer (Makefile.am): Likewise.
35678         * modules/unistd-safer (Makefile.am): Likewise.
35679         * modules/unlinkdir (Makefile.am): Likewise.
35680         * modules/userspec (Makefile.am): Likewise.
35681         * modules/utime (Makefile.am): Likewise.
35682         * modules/utimecmp (Makefile.am): Likewise.
35683         * modules/utimens (Makefile.am): Likewise.
35684         * modules/vasnprintf (Makefile.am): Likewise.
35685         * modules/vasprintf (Makefile.am): Likewise.
35686         * modules/vsnprintf (Makefile.am): Likewise.
35687         * modules/xalloc (Makefile.am): Likewise.
35688         * modules/xgetcwd (Makefile.am): Likewise.
35689         * modules/xnanosleep (Makefile.am): Likewise.
35690         * modules/xreadlink (Makefile.am): Likewise.
35691         * modules/xstrtod (Makefile.am): Likewise.
35692         * modules/xstrtol (Makefile.am): Likewise.
35693         * modules/xstrtold (Makefile.am): Likewise.
35694         * modules/yesno (Makefile.am): Likewise.
35695
35696 2006-10-12  Jim Meyering  <jim@meyering.net>
35697
35698         * m4/getloadavg.m4: Revert the change below.
35699
35700         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
35701         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
35702         fail with a symlink, which is what coreutils' ./bootstrap now
35703         creates by default.
35704
35705 2006-10-12  Bruno Haible  <bruno@clisp.org>
35706
35707         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
35708         mingw.
35709         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
35710         MSVC and mingw explicitly.
35711
35712 2006-10-11  Simon Josefsson  <jas@extundo.com>
35713             Bruno Haible  <bruno@clisp.org>
35714
35715         Add support for multiple gnulib-tool invocations in the scope of a
35716         single configure.ac file.
35717         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
35718         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
35719         with the same contents as the _LIBADD variable.
35720         (func_emit_initmacro_start, func_emit_initmacro_end,
35721         func_emit_initmacro_done): New functions.
35722         (func_import, func_create_testdir): Invoke them. Allow the identifiers
35723         gl_LIBOBJS and gl_LTLIBOBJS.
35724
35725 2006-10-11  Bruno Haible  <bruno@clisp.org>
35726
35727         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
35728         (func_create_testdir): Don't create po/Makefile.am, don't invoke
35729         autoreconf. Instead, invoke autopoint explicitly but move back the
35730         *.m4 files from gnulib.
35731
35732 2006-10-11  Bruno Haible  <bruno@clisp.org>
35733
35734         * gnulib-tool (func_usage): Make module names after --create-testdir
35735         optional.
35736         (func_create_testdir): If no module was specified, use nearly all
35737         modules.
35738
35739 2006-10-12  Jim Meyering  <jim@meyering.net>
35740
35741         Big performance improvement for fts-based tools that use FTS_NOSTAT.
35742         Avoid spurious inode-mismatch problems on non-POSIX file systems.
35743         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
35744         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
35745         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
35746         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
35747         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
35748         (fts_set_stat_required): New function.
35749         (fts_open): Defer the calls to fts_stat, if possible or requested.
35750         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
35751         into fts_stat itself.
35752         (fts_read): Perform any required (deferred) fts_stat call.
35753         (fts_build): Likewise, for the directory we're about to open and read.
35754         In the readdir loop, carefully decide whether each entry will require
35755         an eventual call to fts_stat, using dirent.d_type info if available.
35756         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
35757         a command line argument into this function.  Update all callers.
35758         Map a return value of FTS_DOT to FTS_D for a command line argument.
35759         * modules/fts (Depends-on): Add d-type.  Alphabetize.
35760         Thanks to Miklos Szeredi for his tenacity and for the initial
35761         bug report about "find" failing on a FUSE-based file system.
35762
35763         * lib/fts.c (fts_open): Use consistent indentation.
35764
35765 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
35766
35767         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
35768         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
35769         reported by Jim Meyering.  All uses of cache variables renamed
35770         to match Autoconf's.
35771         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
35772         the other one.
35773
35774         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
35775         Fix misspelling in diagnostic.
35776
35777 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
35778
35779         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
35780         defined.  Problem reported by Matthew Woehlke.
35781
35782         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
35783         Add support for Tandem NonStop R series.
35784         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
35785         Use new macro.
35786
35787         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
35788         (has_trailing_slash): Omit size arg; all callers changed.
35789         Omit 'inline', since it doesn't help performance and we'd
35790         need to configure it.
35791         Don't count //, ///, etc. as having a trailing slash.
35792         As a side effect, this removes a C99ism reported by Matthew Woehlke.
35793         (rpl_rename_dest_slash): On failure, use rename's errno rather
35794         than (in some cases) an incorrect or junk errno.
35795         Simplify code by removing need to compute length; this does
35796         cause it to make two passes instead of one over the file name,
35797         but it's worth it.
35798
35799         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
35800         change, since Autoconf's version may no longer be appropriate now
35801         that we are using CVS Autoconf's version.  Add support for Tandem.
35802
35803 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
35804             Bruno Haible  <bruno@clisp.org>
35805
35806         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
35807         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
35808         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
35809         gl_AC_TYPE_LONG_LONG.
35810
35811         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
35812         instead of HAVE_LONG_LONG.
35813         * lib/printf-args.c (printf_fetchargs): Likewise.
35814         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
35815         * lib/vasnprintf.c (VASNPRINTF): Likewise.
35816         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
35817         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
35818         gl_AC_TYPE_LONG_LONG.
35819
35820 2006-10-11  Bruno Haible  <bruno@clisp.org>
35821
35822         * m4/longlong.m4: Add comments.
35823         * m4/ulonglong.m4: Likewise.
35824
35825 2006-10-10  Bruno Haible  <bruno@clisp.org>
35826
35827         Make it possible to #define stpcpy, strdup to aliases.
35828         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
35829         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
35830
35831 2006-10-10  Bruno Haible  <bruno@clisp.org>
35832
35833         Make it possible to #define gcd to an alias.
35834         * lib/gcd.c: Include config.h.
35835
35836 2006-10-10  Bruno Haible  <bruno@clisp.org>
35837
35838         Make it possible to #define c_isascii to an alias.
35839         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
35840         defined. Undefine the macros before defining them, to avoid gcc
35841         warnings.
35842         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
35843         define NO_C_CTYPE_MACROS early.
35844
35845 2006-10-10  Bruno Haible  <bruno@clisp.org>
35846
35847         Make it possible to #define set_program_name to an alias.
35848         * lib/progname.c: Don't undefine set_program_name; instead, undefine
35849         ENABLE_RELOCATABLE early.
35850
35851 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
35852
35853         Port to Tandem NSK OSS, which has 64-bit signed int but at most
35854         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
35855         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
35856         More generally, don't assume that 64-bit signed int is available
35857         if unsigned int is, and vice versa.
35858         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
35859         unsigned symbols, not on their signed counterparts.
35860         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
35861         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
35862         (UINT64_C, UINTMAX_C):
35863         Likewise.
35864         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
35865         unsigned counterparts.
35866         (Have_long_long, Unsigned): New macros.
35867         (Int): Renamed from INT.
35868         (strtoimax): Use the new macros.
35869         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
35870         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
35871         * modules/inttypes (inttypes.h): Substitute
35872         HAVE_UNSIGNED_LONG_LONG_INT.
35873         * modules/stdint (stdint.h): Likewise.
35874         (Files): Add m4/ulonglong.m4.
35875
35876 2006-10-10  Bruno Haible  <bruno@clisp.org>
35877
35878         Fix a gcc -Wshadow warning.
35879         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
35880         to 'bucket'.
35881         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
35882         gl_linked_indexof_from_to): Likewise.
35883         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
35884         Likewise.
35885         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
35886         Likewise.
35887         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
35888         Reported by Eric Blake.
35889
35890 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
35891
35892         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
35893         for NetBSD.  Problem reported by Bruno Haible.
35894
35895 2006-10-09  Jim Meyering  <jim@meyering.net>
35896
35897         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
35898         Patch from Bruno Haible.
35899
35900 2006-10-09  Jim Meyering  <jim@meyering.net>
35901
35902         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
35903         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
35904         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
35905
35906 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
35907
35908         Don't include <config.h> twice; this doesn't work in some cases,
35909         e.g., when config.h has "#define intmax_t long long int" and
35910         we include <config.h>, <inttypes.h>, <config.h> in that order.
35911         Problem reported by Matthew Woehlke in:
35912         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
35913         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
35914         * lib/fts-cycle.c: Don't include config.h.
35915         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
35916         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
35917         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
35918         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
35919         inttypes.h.
35920         * lib/xstrtoumax.c: Likewise.
35921         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
35922         __strtol and the like, so that this module is more like its siblings.
35923         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
35924         Remove; no longer needed now that we assume gnulib inttypes.h.
35925
35926 2006-10-08  Bruno Haible  <bruno@clisp.org>
35927
35928         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
35929         option.
35930
35931 2006-10-07  Jim Meyering  <jim@meyering.net>
35932
35933         * modules/inttypes (inttypes.h): Revert what seems to have been
35934         an inadvertent part of today's change: use "|", not "/" in the
35935         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
35936
35937 2006-10-07  Bruno Haible  <bruno@clisp.org>
35938
35939         * modules/sublist: New file.
35940
35941 2006-10-07  Bruno Haible  <bruno@clisp.org>
35942
35943         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
35944         * modules/argz (argz.h): Likewise.
35945         * modules/arpa_inet (arpa/inet.h): Likewise.
35946         * modules/byteswap (byteswap.h): Likewise.
35947         * modules/configmake (configmake.h): Likewise.
35948         * modules/fcntl (fcntl.h): Likewise.
35949         * modules/fnmatch (fnmatch.h): Likewise.
35950         * modules/getopt (getopt.h): Likewise.
35951         * modules/glob (glob.h): Likewise.
35952         * modules/inttypes (inttypes.h): Likewise.
35953         * modules/netinet_in (netinet/in.h): Likewise.
35954         * modules/poll (poll.h): Likewise.
35955         * modules/stdbool (stdbool.h): Likewise.
35956         * modules/stdint (stdint.h): Likewise.
35957         * modules/sys_select (sys/select.h): Likewise.
35958         * modules/sys_socket (sys/socket.h): Likewise.
35959         * modules/sys_stat (sys/stat.h): Likewise.
35960         * modules/sysexits (sysexits.h): Likewise.
35961         * modules/unistd (unistd.h): Likewise.
35962         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35963         Add a "DO NOT EDIT" comment to the generated file.
35964         (func_import): Likewise for gnulib-comp.m4.
35965
35966 2006-10-07  Bruno Haible  <bruno@clisp.org>
35967
35968         * lib/gl_sublist.h: New file.
35969         * lib/gl_sublist.c: New file.
35970
35971 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
35972
35973         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
35974         name (relative to the original working directory) and the file
35975         name component (relative to the temporary working directory).  All
35976         callers changed.
35977         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
35978         * lib/mkdir-p.c (make_dir_parents): Likewise.
35979         * lib/mkdir-p.h (make_dir_parents): Likewise.
35980
35981 2006-10-06  Eric Blake  <ebb9@byu.net>
35982
35983         Define several macros for use by the clean-temp module.
35984         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
35985         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
35986         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
35987
35988         * lib/clean-temp.h (close_stream_temp): New declaration.
35989         * lib/clean-temp.c (includes): Pull in headers according to what
35990         other modules are in use.
35991         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
35992
35993 2006-10-06  Bruno Haible  <bruno@clisp.org>
35994
35995         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
35996         instead of fopen, fwriteerror.
35997
35998 2006-10-06  Bruno Haible  <bruno@clisp.org>
35999
36000         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
36001         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
36002         int.
36003         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
36004         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
36005         Return an error indicator.
36006         Suggested by Eric Blake.
36007
36008 2006-10-06  Bruno Haible  <bruno@clisp.org>
36009
36010         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
36011         Reported by Eric Blake.
36012
36013 2006-10-06  Bruno Haible  <bruno@clisp.org>
36014
36015         * modules/closeout (Description): Mention stderr too.
36016
36017 2006-10-06  Bruno Haible  <bruno@clisp.org>
36018         and Paul Eggert  <eggert@cs.ucla.edu>
36019
36020         * lib/closeout.c (close_stdout): Also close stderr.
36021         * lib/closeout.h: Update comment.
36022
36023 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
36024
36025         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
36026         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
36027         * lib/dirchownmod.c: Include lchown.h.
36028         * lib/lchown.c: Don't include files that lchown.h now includes.
36029         Don't declare chown, since lchown.h now does that.
36030         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
36031         (lchown): Define to rpl_chown if lchown is declared but
36032         does not exist.  Declare using a prototype if lchown is not
36033         declared.  Add a copyright notice.
36034         * lib/mkstemp.h: Include <unistd.h>.
36035         * lib/openat.c: Include lchown.h.
36036
36037         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
36038         we now test for that separately.
36039         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
36040         rather than O_NOFOLLOW, when testing whether it's possible to
36041         avoid a race condition reliably.
36042         * lib/savewd.c (savewd_chdir): Likewise.
36043
36044         Remove macros that are no longer needed now that stdint.h is
36045         reliable.
36046         * lib/fsusage.c (UINTMAX_MAX): Remove.
36047         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
36048         * lib/utimecmp.c (SIZE_MAX): Remove.
36049
36050         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
36051
36052         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
36053         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
36054         O_NOATIME works.
36055
36056 2006-10-05  Bruno Haible  <bruno@clisp.org>
36057
36058         * lib/gl_list.h (gl_sortedlist_search_from_to,
36059         gl_sortedlist_indexof_from_to): New declarations.
36060         (gl_list_implementation): New fields sortedlist_search_from_to,
36061         sortedlist_indexof_from_to.
36062         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
36063         inline functions.
36064         * lib/gl_list.c (gl_sortedlist_search_from_to,
36065         gl_sortedlist_indexof_from_to): New functions.
36066         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
36067         function.
36068         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
36069         (gl_array_sortedlist_search_from_to): New function.
36070         (gl_array_list_implementation): Update.
36071         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
36072         function.
36073         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
36074         (gl_carray_sortedlist_search_from_to): New function.
36075         (gl_carray_list_implementation): Update.
36076         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
36077         gl_linked_sortedlist_indexof_from_to): New functions.
36078         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
36079         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
36080         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
36081         gl_tree_sortedlist_indexof_from_to): New functions.
36082         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
36083         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
36084         Update.
36085         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
36086         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
36087         Update.
36088
36089 2006-10-05  Bruno Haible  <bruno@clisp.org>
36090
36091         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
36092         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
36093         (struct gl_list_implementation): Add fields search_from_to,
36094         indexof_from_to. Remove fields search, indexof.
36095         (gl_list_search): Use the search_from_to method.
36096         (gl_list_search_from, gl_list_search_from_to): New functions.
36097         (gl_list_indexof): Use the indexof_from_to method.
36098         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
36099         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
36100         (gl_list_search_from, gl_list_search_from_to): New functions.
36101         (gl_list_indexof): Use the indexof_from_to method.
36102         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
36103         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
36104         gl_array_indexof. Add start_index, end_index arguments.
36105         (gl_array_search_from_to): Renamed from gl_array_search. Add
36106         start_index, end_index arguments.
36107         (gl_array_remove, gl_array_list_implementation): Update.
36108         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
36109         gl_carray_indexof. Add start_index, end_index arguments.
36110         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
36111         start_index, end_index arguments.
36112         (gl_carray_remove, gl_carray_list_implementation): Update.
36113         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
36114         gl_linked_search. Add start_index, end_index arguments.
36115         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
36116         start_index, end_index arguments.
36117         (gl_linked_remove): Update.
36118         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
36119         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
36120         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
36121         field to 'size_t'.
36122         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
36123         gl_tree_search. Add start_index, end_index arguments.
36124         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
36125         start_index, end_index arguments.
36126         (gl_tree_remove): Update.
36127         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
36128         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
36129         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
36130         function.
36131         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
36132         gl_tree_search. Add start_index, end_index arguments.
36133         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
36134         start_index, end_index arguments.
36135         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
36136         Update.
36137         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
36138
36139 2006-10-05  Bruno Haible  <bruno@clisp.org>
36140
36141         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
36142
36143         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
36144         fwriteerror_temp): New declarations.
36145         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
36146         (descriptors): New variable.
36147         (cleanup): First, close the descriptors.
36148         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
36149         fclose_temp, fwriteerror_temp): New functions.
36150
36151 2006-10-04  Jim Meyering  <jim@meyering.net>
36152
36153         * lib/fts.c (fts_open): Tiny comment change.
36154
36155 2006-10-04  Bruno Haible  <bruno@clisp.org>
36156
36157         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
36158         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
36159         gl_LOCK_BODY.
36160         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
36161         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
36162         gl_LOCK_EARLY_BODY.
36163         (gl_LOCK): Require gl_LOCK_BODY.
36164
36165 2006-10-04  Bruno Haible  <bruno@clisp.org>
36166
36167         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
36168         (gl_oset_search_atleast): New declaration.
36169         (struct gl_oset_implementation): Add field 'search_atleast'.
36170         (gl_oset_search_atleast): New inline function.
36171         * lib/gl_oset.c (gl_oset_search_atleast): New function.
36172         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
36173         (gl_array_oset_implementation): Update.
36174         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
36175         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
36176         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
36177
36178 2006-10-04  Bruno Haible  <bruno@clisp.org>
36179
36180         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
36181
36182 2006-10-03  Bruno Haible  <bruno@clisp.org>
36183
36184         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
36185         from gl_avltreehash_list_implementation.
36186
36187 2006-10-03  Bruno Haible  <bruno@clisp.org>
36188
36189         * lib/gl_oset.c (gl_oset_add): Fix return type.
36190
36191 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
36192
36193         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
36194
36195 2006-10-02  Eric Blake  <ebb9@byu.net>
36196
36197         * modules/strnlen (Depends-on): Add extensions.
36198
36199 2006-10-02  Eric Blake  <ebb9@byu.net>
36200
36201         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
36202         definition in 2.60+.
36203
36204 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
36205
36206         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
36207         checks.
36208
36209 2006-10-02  Bruno Haible  <bruno@clisp.org>
36210
36211         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
36212         to the AUTOMAKE_OPTIONS.
36213         Reported by Jim Meyering.
36214
36215 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
36216
36217         Work around bug in Solaris 10 /proc file system:
36218         /proc/self/fd/NNN/.. isn't the parent directory of
36219         the directory whose file descriptor is NNN.  This needs to
36220         be worked around at run time, not compile time, since a
36221         program might be built on Solaris 8, where things work, and
36222         run on Solaris 10.
36223         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
36224         to use the following interface instead:
36225         (OPENAT_BUFFER_SIZE): New macro.
36226         (openat_proc_name): New function.
36227         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
36228         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
36229         Likewise.
36230         * lib/openat-proc.c: New file.
36231         * modules/openat (Files): Add lib/openat-proc.c.
36232         (Depends-on): Add same-inode, stdbool.
36233         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
36234
36235 2006-09-29  Bruno Haible  <bruno@clisp.org>
36236
36237         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
36238         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
36239         argument. Set stdout_closed before testing for ferror, not after.
36240         (fwriteerror, fwriteerror_no_ebadf): New functions.
36241
36242 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36243
36244         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
36245
36246 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
36247
36248         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
36249         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
36250
36251 2006-09-28  Jim Meyering  <jim@meyering.net>
36252
36253         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
36254         Include <unistd.h>.
36255
36256 2006-09-28  Bruno Haible  <bruno@clisp.org>
36257
36258         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
36259         * modules/linkedhash-list (Depends-on): Likewise.
36260         * modules/rbtreehash-list (Depends-on): Likewise.
36261
36262 2006-09-28  Bruno Haible  <bruno@clisp.org>
36263
36264         * lib/strndup.h: Simplify the redefinition of strndup.
36265         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
36266         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
36267
36268 2006-09-28  Bruno Haible  <bruno@clisp.org>
36269
36270         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
36271         * lib/gl_linkedhash_list.c: Likewise.
36272         * lib/gl_rbtreehash_list.c: Likewise.
36273
36274 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
36275
36276         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
36277         getaddrinfo.
36278
36279         * lib/__fpending.h: Don't include <stdio_ext.h> unless
36280         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
36281         it causes <stdio_ext.h> to cause a compile-time error.
36282         Problem reported by Nelson H. F. Beebe.
36283         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
36284         of HAVE_DECL___PENDING.
36285
36286         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
36287         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
36288         declaration.
36289
36290 2006-09-27  Jim Meyering  <jim@meyering.net>
36291
36292         This file could end up with a definition for a function
36293         named __strndup, rather than rpl_strndup on a system with
36294         incomplete weak_alias support.
36295         * lib/strndup.c (strndup): Rename from __strndup.
36296         Remove #defines that used to map __strndup to strndup.
36297         Don't use K&R prototypes.
36298         Remove LIBC-related code, since this file is not sync'd with glibc.
36299         * lib/strndup.h: Revamp, accordingly.
36300         * m4/strndup.m4: Modernize.
36301
36302 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
36303
36304         * modules/savewd (Depends-on): Add 'raise'.
36305         * lib/savewd.c: Include <signal.h>, for 'raise'.
36306
36307 2006-09-26  Jim Meyering  <jim@meyering.net>
36308
36309         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
36310         when we detect Darwin 8.7.0's acl_get_file bug.
36311         Rearrange to perform the new (below) run-test while $LIBS
36312         contains any acl-related library.  Set USE_ACL at the end.
36313         (gl_ACL_GET_FILE): New function.
36314
36315 2006-09-26  Eric Blake  <ebb9@byu.net>
36316
36317         * lib/verror.c: Include <config.h> unconditionally.
36318
36319 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
36320
36321         * modules/clock-time (Maintainer): Add self.
36322         * modules/getlogin_r (Depends-on): Add extensions.
36323
36324 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36325
36326         * modules/clock-time: New module.
36327         * modules/nanosleep (Depends-on): Add clock-time.
36328         * modules/gethrxtime (Depends-on): Likewise.
36329         * modules/gettime (Depends-on): Likewise.
36330         * modules/settime (Depends-on): Likewise.
36331
36332         * modules/fts-lgpl: Depend on openat.
36333         * modules/mkancesdirs: Depend on savewd.
36334         * modules/mkdir-p: Likewise.
36335
36336 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36337
36338         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
36339
36340         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
36341         `gl_have_arbitrary_file_name_length_limit' to
36342         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
36343         actually works between configure runs.
36344
36345 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36346             Bruno Haible  <bruno@clisp.org>
36347
36348         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
36349
36350 2006-09-25  Jim Meyering  <jim@meyering.net>
36351
36352         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
36353         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
36354
36355 2006-09-25  Eric Blake  <ebb9@byu.net>
36356
36357         * gnulib-tool (func_import, func_create_testdir): Fix typos in
36358         exec's in 2006-09-18 patch when shuffling fds.
36359
36360 2006-09-25  Bruno Haible  <bruno@clisp.org>
36361
36362         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
36363         Reported by Jim Meyering.
36364
36365 2006-09-24  Jim Meyering  <jim@meyering.net>
36366
36367         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
36368         compare a pointer against a literal "0".  That caused failures with
36369         at least HP-UX's hpcc.
36370
36371 2006-09-22  Simon Josefsson  <jas@extundo.com>
36372
36373         * modules/gc-sha1:
36374         * modules/gc-md4:
36375         * modules/gc-hmac-sha1:
36376         * modules/gc-hmac-md5:
36377         * modules/gc-des:
36378         * modules/gc-arcfour: Distribute more files.
36379
36380 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36381
36382         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
36383         (gl_linked_iterator_from_to): Initialize struct completely.
36384         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
36385         (gl_tree_iterator_from_to): Likewise
36386         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
36387         * lib/gl_array_list.c [lint] (gl_array_iterator)
36388         (gl_array_iterator_from_to): Likewise.
36389         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
36390         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
36391         (gl_carray_iterator_from_to): Likewise.
36392
36393         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
36394         * lib/md4.c (md4_process_block): Remove unused variable.
36395         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
36396         parentheses for clarity.
36397
36398 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36399
36400         * modules/bison-i18n (Depends-on): Add gettext.
36401
36402 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36403
36404         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
36405         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
36406         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
36407         also add missing comma that caused broken test.
36408         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
36409         stdlib.h, for `abort'.
36410         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
36411         variables.
36412         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
36413         include unistd.h if present, for `rmdir'.
36414         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
36415         variables.
36416         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
36417         in the process include standard headers for prototypes.
36418         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
36419         gets declared on GNU/Linux.
36420         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
36421         unistd.h, for `rmdir'.
36422         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
36423
36424         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
36425         always true.
36426         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
36427
36428         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
36429
36430 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36431
36432         * gnulib-tool (func_version): Create output all at once.  This
36433         may help avoid triggering unnecessary SIGPIPEs, and at any
36434         rate it doesn't hurt.
36435
36436 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36437             Bruno Haible  <bruno@clisp.org>
36438
36439         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
36440         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
36441         * m4/signed.m4 (bh_C_SIGNED): Likewise.
36442
36443         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
36444         (gl_FUNC_VASPRINTF): Invoke it.
36445
36446 2006-09-22  Bruno Haible  <bruno@clisp.org>
36447
36448         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
36449         getloadavg.c as first argument.
36450
36451 2006-09-22  Bruno Haible  <bruno@clisp.org>
36452
36453         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
36454         at the beginning of the gl_INIT macro.
36455         * modules/getloadavg (configure.ac): Pass $gl_source_base to
36456         gl_GETLOADAVG.
36457
36458 2006-09-22  Bruno Haible  <bruno@clisp.org>
36459
36460         * gnulib-tool (func_create_megatestdir): Don't include the config-h
36461         module.
36462         Suggested by Ralf Wildenhues.
36463
36464 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
36465
36466         Import this patch from libc:
36467
36468         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
36469
36470         * lib/regex_internal.c (re_string_reconstruct): Handle
36471         offset < pstr->valid_raw_len && pstr->offsets_needed case.
36472         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
36473         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
36474         re_string_context_at.
36475
36476         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
36477         now requires it.
36478         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
36479         gl_REGEX now does it for us.
36480         (gl_REGEX): Add test taken from
36481         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
36482
36483         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
36484         Check that large offsets work.  Modernize Autoconf usages.
36485         Prefer "yes" to mean a good thing rather than a bad.
36486         Don't put "#define mkstemp" in config.h, as this might interfere
36487         with standard system headers that "#define mkstemp mkstemp64".
36488
36489         * modules/mkstemp (Depends-on): Add extensions, so that
36490         mkstemp is visible on some platforms.
36491         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
36492         (Include): Change to "mkstemp.h" from <stdlib.h>.
36493         (Files): Add mkstemp.h.
36494
36495         * lib/mkstemp.h: New file, since some standard headers
36496         #define mkstemp.
36497         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
36498         Include "mkstemp.h".
36499         Make the _LIBC code resemble glibc original more,
36500         e.g., use K&R style.
36501         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
36502         (mkstemp): Remove, since mkstemp.h does this for us.
36503         * lib/stdlib--.h: Include mkstemp.h.
36504
36505         Import this patch from libc:
36506
36507         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
36508
36509         * lib/tempname.c (__gen_tempname): Change attempts_min
36510         into a macro.  Use preprocessor to decide how to initialize
36511         attempts [Coverity CID 67].
36512
36513 2006-09-20  Bruno Haible  <bruno@clisp.org>
36514
36515         * lib/mkdtemp.c: Import from libc.
36516         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
36517                 * sysdeps/posix/tempname.c (__gen_tempname): Change
36518                 attempts_min into a macro.  Use preprocessor to decide how to
36519                 initialize attempts [Coverity CID 67].
36520         2001-11-27  Paul Eggert  <eggert@twinsun.com>
36521                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
36522                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
36523
36524 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36525
36526         * gnulib-tool (func_exit): New function, to allow to pass the
36527         exit status portably through the trap.  Use everywhere.
36528         (--help, --version): Signal a write error.
36529         (trap): catch SIGPIPE, for write errors.
36530         Exit at the end of the trap, with the correct exit status.
36531
36532 2006-09-19  Karl Berry  <karl@gnu.org>
36533
36534         * doc/gnulib.texi: note about the license texinfo files.
36535
36536 2006-09-19  Eric Blake  <ebb9@byu.net>
36537
36538         * gnulib-tool: Avoid space-tab.
36539
36540 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
36541
36542         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
36543         that prevented coreutils 6.1 from building.  Problem reported
36544         by Petter Reinholdtsen.
36545
36546 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
36547
36548         * gnulib-tool (avoidlist): Fix typo that broke options like
36549         --avoid=lock that are used by coreutils bootstrap.
36550
36551 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
36552
36553         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
36554         more systematically.
36555
36556 2006-09-18  Jim Meyering  <jim@meyering.net>
36557
36558         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
36559
36560 2006-09-18  Bruno Haible  <bruno@clisp.org>
36561
36562         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
36563
36564 2006-09-18  Bruno Haible  <bruno@clisp.org>
36565
36566         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
36567         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
36568         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
36569         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
36570         * m4/gettext.m4: Require autoconf >= 2.52.
36571         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
36572         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
36573         of gl_cv_header_inttypes_h.
36574
36575 2006-09-18  Bruno Haible  <bruno@clisp.org>
36576
36577         * lib/javaversion.c: Include configmake.h.
36578
36579 2006-09-18  Bruno Haible  <bruno@clisp.org>
36580
36581         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
36582         avoid that the while loops be executed in a subshell.
36583
36584 2006-09-18  Bruno Haible  <bruno@clisp.org>
36585
36586         * MODULES.html.sh (func_module): Break long lines.
36587         Suggested by Bruce Korb <bkorb@gnu.org>.
36588
36589 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36590
36591         Speed up by a factor of 1.12.
36592         * gnulib-tool (nl): New variable.
36593         (func_import): Rewrite include directive extraction to only read each
36594         directive once.
36595
36596 2006-09-17  Bruno Haible  <bruno@clisp.org>
36597
36598         * modules/javaversion (Makefile.am): Remove DEFS setting.
36599         (Depends-on): Add configmake, for PKGDATADIR definition.
36600
36601 2006-09-17  Bruno Haible  <bruno@clisp.org>
36602
36603         * gnulib-tool (func_create_testdir): Rewrite all files at once.
36604
36605 2006-09-17  Bruno Haible  <bruno@clisp.org>
36606
36607         * gnulib-tool (func_append): New function, stolen from libtool.m4.
36608         (func_modules_transitive_closure, func_modules_add_dummy,
36609         func_modules_to_filelist, func_import, func_create_testdir,
36610         func_create_megatestdir, ...): Use it wherever possible.
36611         Suggested by Ralf Wildenhues.
36612
36613 2006-09-16  Karl Berry  <karl@gnu.org>
36614
36615         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
36616         to avoid sectioning errors.
36617         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
36618         [ifinfo]: blank line after @center-ed titles.
36619         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
36620         Spell FSF address consistently with others.
36621         (These changes approved by rms.)
36622
36623 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36624
36625         Speed up by a factor of 1.61.
36626         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
36627         already checked module names again.
36628
36629 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36630
36631         Speed up by a factor of 1.13.
36632         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
36633         for new_files, and the input to func_add_or_update.
36634
36635 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36636
36637         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
36638         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
36639
36640 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
36641
36642         * modules/mkancesdirs (Depends-on): Add fcntl.
36643         * modules/savewd: New file.
36644         * MODULES.html.sh (File system functions): Add savewd.
36645
36646         * modules/configmake (Makefile.am): Add support for the
36647         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
36648
36649 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
36650
36651         * m4/savewd.m4: New file.
36652
36653 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
36654
36655         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
36656         (dirchownmod): New arg FD.  All callers changed.
36657         Use FD rather than opening the directory ourself, as opening is
36658         now the caller's responsibility.
36659         * lib/dirchownmod.h: Likewise.
36660         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
36661         hosts that require <sys/types.h> before <sys/stat.h>.  Include
36662         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
36663         (test_dir): Remove.
36664         (mkancesdirs): Return length of prefix of FILE that has already
36665         been made, or -2 if there is a child doing the work.  Redo
36666         algorithm so that it is O(N) rather than O(N**2).  Optimize away
36667         ".", and treat ".." specially since it might stray back into
36668         already-created areas.  Use a subprocess if necessary.  New arg
36669         WD; all users changed.  MAKE_DIR function should now return 1
36670         if it creates a directory that is not readable.  Return -2 if
36671         a child process is spun off.
36672         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
36673         Adjust signature to match code.
36674         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
36675         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
36676         all users changed.
36677         * lib/savewd.c, lib/savewd.h: New files.
36678
36679 2006-09-15  Jim Meyering  <jim@meyering.net>
36680
36681         * modules/rename-dest-slash: New module.
36682         * MODULES.html.sh (posix_compat): Add it here.
36683
36684         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
36685
36686 2006-09-15  Jim Meyering  <jim@meyering.net>
36687
36688         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
36689         file.
36690
36691         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
36692
36693 2006-09-15  Jim Meyering  <jim@meyering.net>
36694
36695         * lib/rename-dest-slash.c (has_trailing_slash): Use
36696         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
36697         (rpl_rename_dest_slash): Perform the cheaper trailing slash
36698         test before testing whether SRC is a directory.
36699         Suggestions from Bruno Haible.
36700
36701         Avoid a warning about an unused variable.
36702         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
36703         into the #ifdef block where it's used.
36704
36705         * lib/rename-dest-slash.c: New file.
36706
36707 2006-09-14  Bruno Haible  <bruno@clisp.org>
36708
36709         * lib/allocsa.c: Include <config.h> unconditionally.
36710         * lib/asnprintf.c: Likewise.
36711         * lib/asprintf.c: Likewise.
36712         * lib/c-strcasecmp.c: Likewise.
36713         * lib/c-strcasestr.c: Likewise.
36714         * lib/c-strncasecmp.c: Likewise.
36715         * lib/c-strstr.c: Likewise.
36716         * lib/classpath.c: Likewise.
36717         * lib/clean-temp.c: Likewise.
36718         * lib/concatpath.c: Likewise.
36719         * lib/copy-file.c: Likewise.
36720         * lib/csharpcomp.c: Likewise.
36721         * lib/csharpexec.c: Likewise.
36722         * lib/execute.c: Likewise.
36723         * lib/fatal-signal.c: Likewise.
36724         * lib/findprog.c: Likewise.
36725         * lib/fwriteerror.c: Likewise.
36726         * lib/gl_array_list.c: Likewise.
36727         * lib/gl_array_oset.c: Likewise.
36728         * lib/gl_avltree_list.c: Likewise.
36729         * lib/gl_avltree_oset.c: Likewise.
36730         * lib/gl_avltreehash_list.c: Likewise.
36731         * lib/gl_carray_list.c: Likewise.
36732         * lib/gl_linked_list.c: Likewise.
36733         * lib/gl_linkedhash_list.c: Likewise.
36734         * lib/gl_list.c: Likewise.
36735         * lib/gl_oset.c: Likewise.
36736         * lib/gl_rbtree_list.c: Likewise.
36737         * lib/gl_rbtree_oset.c: Likewise.
36738         * lib/gl_rbtreehash_list.c: Likewise.
36739         * lib/imaxabs.c: Likewise.
36740         * lib/imaxdiv.c: Likewise.
36741         * lib/javacomp.c: Likewise.
36742         * lib/javaexec.c: Likewise.
36743         * lib/javaversion.c: Likewise.
36744         * lib/linebreak.c: Likewise.
36745         * lib/localcharset.c: Likewise.
36746         * lib/lock.c: Likewise.
36747         * lib/mbchar.c: Likewise.
36748         * lib/mbswidth.c: Likewise.
36749         * lib/mkdtemp.c: Likewise.
36750         * lib/pipe.c: Likewise.
36751         * lib/printf-args.c: Likewise.
36752         * lib/printf-parse.c: Likewise.
36753         * lib/progname.c: Likewise.
36754         * lib/progreloc.c: Likewise.
36755         * lib/readlink.c: Likewise.
36756         * lib/sh-quote.c: Likewise.
36757         * lib/stpcpy.c: Likewise.
36758         * lib/stpncpy.c: Likewise.
36759         * lib/strcasecmp.c: Likewise.
36760         * lib/strcasestr.c: Likewise.
36761         * lib/strcspn.c: Likewise.
36762         * lib/striconv.c: Likewise.
36763         * lib/strncasecmp.c: Likewise.
36764         * lib/strnlen1.c: Likewise.
36765         * lib/strstr.c: Likewise.
36766         * lib/strtok_r.c: Likewise.
36767         * lib/tls.c: Likewise.
36768         * lib/tmpdir.c: Likewise.
36769         * lib/unicodeio.c: Likewise.
36770         * lib/unsetenv.c: Likewise.
36771         * lib/vasnprintf.c: Likewise.
36772         * lib/vasprintf.c: Likewise.
36773         * lib/wait-process.c: Likewise.
36774         * lib/xallocsa.c: Likewise.
36775         * lib/xsetenv.c: Likewise.
36776         * lib/xstriconv.c: Likewise.
36777
36778 2006-09-13  Simon Josefsson  <jas@extundo.com>
36779
36780         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
36781         that internally, suggested by Ralf Wildenhues
36782         <Ralf.Wildenhues@gmx.de>.
36783
36784 2006-09-13  Simon Josefsson  <jas@extundo.com>
36785
36786         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
36787         @LIBOBJS@.
36788         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
36789
36790 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
36791
36792         * lib/_fpending.c: Include <config.h> unconditionally, since we no
36793         longer worry about uses that don't define HAVE_CONFIG_H.
36794         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
36795         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
36796         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
36797         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
36798         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
36799         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
36800         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
36801         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
36802         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
36803         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
36804         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
36805         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
36806         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
36807         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
36808         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
36809         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
36810         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
36811         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
36812         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
36813         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
36814         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
36815         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
36816         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
36817         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
36818         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
36819         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
36820         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
36821         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
36822         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
36823         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
36824         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
36825         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
36826         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
36827         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
36828         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
36829         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
36830         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
36831         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
36832         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
36833         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
36834         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
36835         Likewise.
36836
36837 2006-09-13  Eric Blake  <ebb9@byu.net>
36838
36839         * lib/getopt.c: Fix typo in last commit.
36840
36841 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
36842
36843         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
36844         dgettext.
36845
36846 2006-09-12  Jim Meyering  <jim@meyering.net>
36847
36848         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
36849         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
36850         Reported by Nelson H. F. Beebe.
36851
36852 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
36853
36854         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
36855         program_invocation_name and program_invocation_short_name are
36856         initialized.
36857         * lib/argp-namefrob.h: Move declarations of program_invocation_name
36858         and program_invocation_short_name to argp.h, so they are visible
36859         to user programs.
36860         * lib/argp.h: Likewise
36861
36862 2006-09-10  Bruno Haible  <bruno@clisp.org>
36863
36864         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
36865         m4/inttypes_h.m4, m4/uintmax_t.m4.
36866
36867 2006-09-10  Bruno Haible  <bruno@clisp.org>
36868
36869         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
36870         gl_AC_TYPE_UINTMAX_T.
36871
36872 2006-09-10  Bruno Haible  <bruno@clisp.org>
36873
36874         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
36875
36876 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
36877
36878         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
36879         convention.  Text proposed by Bruno Haible.
36880         (struct argp_option): Document the use of N_() wrappers.
36881
36882         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
36883         '\v', and translate the two parts separately, instead of feeding
36884         the whole string to gettext.  This allows to exclude
36885         '\v' from the strings visible to the translator by writing doc
36886         strings as N_("..") "\v" N_("..").
36887
36888 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
36889
36890         * config/srclist.txt: Undo latest change; the bug was fixed.
36891
36892 2006-09-09  Bruno Haible  <bruno@clisp.org>
36893
36894         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
36895         assignments if building a library without libtool.
36896         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
36897         in func_emit_lib_Makefile_am.
36898         (func_import): When building a static library libfoo.a, arrange to
36899         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
36900         (func_create_testdir): Likewise.
36901         * modules/gc (configure.ac, Makefile.am): If building statically,
36902         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
36903         * modules/iconvme (configure.ac, Makefile.am): Likewise.
36904         * modules/striconv (configure.ac, Makefile.am): Likewise.
36905         Based on a suggestion by Ralf Wildenhues.
36906
36907 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36908
36909         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
36910         Check for unistd.h too, since Autoconf doesn't assume POSIX.
36911         Also:
36912
36913         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36914         Add year_2050_test to catch glibc bug 2821
36915         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
36916
36917         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
36918         Prefer #ifdef to #if.
36919
36920         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
36921         Return from 'main' instead of calling 'exit'.
36922
36923 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36924
36925         * lib/mktime.c (guess_time_tm): Fix bug where mktime
36926         returned the maximum time_t value rather than (time_t) -1.
36927         Problem originally reported by William Bardwell
36928         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
36929
36930         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
36931         Moved to here ...
36932         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
36933         ... from here.
36934
36935 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36936
36937         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
36938         2821 is fixed.
36939
36940 2006-09-08  Jim Meyering  <jim@meyering.net>
36941
36942         Don't make generated files read-only.  That would bother too many
36943         people.  However, do retain the ability to work when targets are
36944         read-only: remove the destination and temporary files before writing
36945         them (when generated via sed or echo), or by using the -f option for
36946         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
36947         * modules/alloca-opt, modules/argz, modules/arpa_inet:
36948         * modules/byteswap, modules/configmake, modules/fcntl:
36949         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
36950         * modules/localcharset, modules/netinet_in, modules/poll:
36951         * modules/stdbool, modules/stdint, modules/sys_select:
36952         * modules/sys_socket, modules/sys_stat, modules/sysexits:
36953
36954 2006-09-08  Jim Meyering  <jim@meyering.net>
36955
36956         Avoid new build failure on FreeBSD 6.0.
36957         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
36958         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
36959         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
36960
36961 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36962
36963         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
36964
36965 2006-09-07  Jim Meyering  <jim@meyering.net>
36966
36967         Fix global typo in last change: use chmod u-w, not chmod u-x.
36968         Spotted by Paul Eggert and Bruce Korb.
36969         * modules/alloca-opt, modules/argz, modules/arpa_inet:
36970         * modules/byteswap, modules/configmake, modules/fcntl:
36971         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
36972         * modules/localcharset, modules/netinet_in, modules/poll:
36973         * modules/stdbool, modules/stdint, modules/sys_select:
36974         * modules/sys_socket, modules/sys_stat, modules/sysexits:
36975
36976 2006-09-06  Jim Meyering  <jim@meyering.net>
36977
36978         Make generated files be read-only.
36979         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
36980         Ensure that each generated file is now read-only.
36981         * modules/argz: Likewise.
36982         * modules/arpa_inet: Likewise.
36983         * modules/byteswap: Likewise.
36984         * modules/configmake: Likewise.
36985         * modules/fcntl: Likewise.
36986         * modules/fnmatch: Likewise.
36987         * modules/getopt: Likewise.
36988         * modules/glob: Likewise.
36989         * modules/inttypes: Likewise.
36990         * modules/netinet_in: Likewise.
36991         * modules/poll: Likewise.
36992         * modules/stdbool: Likewise.
36993         * modules/stdint: Likewise.
36994         * modules/sys_select: Likewise.
36995         * modules/sys_socket: Likewise.
36996         * modules/sys_stat: Likewise.
36997         * modules/sysexits: Likewise.
36998         * modules/localcharset: Same as above, but continue using temporary
36999         file named "t-$@" (why different?) rather than the "$@-t" used
37000         everywhere else.
37001
37002         * modules/sysexits (Makefile.am): Replace literal occurrences
37003         of "sysexit.h" more readable, and more consistent, "$@".
37004
37005 2006-09-06  Bruno Haible  <bruno@clisp.org>
37006
37007         * modules/striconv: New file.
37008         * modules/xstriconv: New file.
37009         * MODULES.html.sh (Internationalization functions): Add striconv,
37010         xstriconv.
37011
37012 2006-09-06  Bruno Haible  <bruno@clisp.org>
37013
37014         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
37015         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
37016         not using libtool correctly.
37017
37018 2006-09-06  Bruno Haible  <bruno@clisp.org>
37019
37020         * lib/striconv.h: New file.
37021         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
37022         iconvstring.c.
37023         * lib/xstriconv.h: New file.
37024         * lib/xstriconv.c: New file.
37025
37026 2006-09-06  Bruno Haible  <bruno@clisp.org>
37027
37028         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
37029         lib_..._LDFLAGS.
37030
37031 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37032
37033         * lib/argz_.h: Sync from Libtool.
37034
37035         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
37036                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
37037
37038         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
37039
37040 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
37041
37042         * modules/trim: New file.
37043
37044 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
37045
37046         * lib/trim.h: New file.
37047         * lib/trim.c: New file.
37048
37049 2006-09-05  Bruno Haible  <bruno@clisp.org>
37050
37051         * MODULES.html.sh (String handling): Add trim.
37052
37053 2006-09-04  Karl Berry  <karl@gnu.org>
37054
37055         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
37056         until next release.
37057
37058 2006-09-03  Bruno Haible  <bruno@clisp.org>
37059
37060         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
37061         correctly.
37062
37063 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37064
37065         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
37066         not gl_GETLOADAVG.  Omit unneeded semicolons.
37067         Problems reported by Ralf Wildenhues in
37068         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
37069         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
37070         at the end, which is the usual gnulib style.
37071
37072         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
37073         of doing all the work ourselves.
37074         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
37075         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
37076
37077 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37078
37079         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
37080         Problem reported by Ralf Wildenhues in
37081         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
37082
37083         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
37084         HAVE_STRUCT_STATFS_F_FSTYPENAME.
37085
37086 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37087
37088         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
37089         yesterday's patch by changing test -n to test -z.
37090
37091 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37092
37093         * modules/getloadavg (Files): Add m4/getloadavg.m4.
37094         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
37095         the former is now obsolescent.
37096
37097         * modules/chdir-long (Depends-on): Add fcntl.
37098
37099 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37100
37101         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
37102         obsolescent, and programs should use gnulib instead.
37103         * m4/getloadavg.m4: New file, with contents taken from Autoconf
37104         but with prefixes changed.
37105
37106 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37107
37108         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
37109         or stdbool.h, because they might not exist while configuring.
37110
37111         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
37112         Don't include unistd.h or limits.h; not needed, since chdir-long.h
37113         does that for us.
37114         (O_DIRECTORY): Remove.
37115
37116 2006-08-31  Eric Blake  <ebb9@byu.net>
37117
37118         * gnulib-tool: Don't let emacs change spaces to TAB.
37119
37120 2006-08-31  Bruno Haible  <bruno@clisp.org>
37121
37122         * gnulib-tool: When calling func_import more than once, do it in a
37123         subshell.
37124         Reported by Eric Blake <ebb9@byu.net>.
37125
37126 2006-08-31  Bruno Haible  <bruno@clisp.org>
37127
37128         * gnulib-tool (nl): Remove variable.
37129         (sed_transform_lib_file): Use more robust test for config-h module.
37130         (func_import): Fix typo in 2006-08-25 patch.
37131
37132 2006-08-31  Bruno Haible  <bruno@clisp.org>
37133
37134         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
37135         specified, augment Makefile.am variables instead of assigning them.
37136
37137 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37138
37139         Work around a bug in both the Linux and SunOS 64-bit kernels:
37140         nanosleep mishandles sleeps for longer than 2**31 seconds.
37141         Problem reported by Frank v Waveren in
37142         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
37143         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
37144         Check for nanosleep bug.
37145         (LIB_NANOSLEEP): Append clock_gettime library if needed.
37146
37147 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37148
37149         Work around a bug in both the Linux and SunOS 64-bit kernels:
37150         nanosleep mishandles sleeps for longer than 2**31 seconds.
37151         Problem reported by Frank v Waveren in
37152         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
37153         * lib/nanosleep.c (BILLION): New constant.
37154         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
37155         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
37156         implementation.
37157
37158 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37159
37160         * modules/nanosleep (Depends-on): Add gettime.
37161
37162 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37163         and Simon Josefsson  <jas@extundo.com>
37164         and Oskar Liljeblad  <oskar@osk.mine.nu>
37165
37166         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
37167         * gnulib-tool (func_import): New license type 'unmodifiable license
37168         text'.
37169         * modules/fdl: Use it.  Longer description.
37170         * module/gpl, module/lgpl: New files.
37171
37172 2006-08-30  Jim Meyering  <jim@meyering.net>
37173
37174         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
37175         shadowing the parameter.
37176
37177 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37178
37179         Sync from Libtool:
37180
37181         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37182
37183         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
37184         sharing with gnulib.  Report by Eric Blake.
37185
37186 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37187
37188         * modules/isapipe: New file.
37189         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
37190
37191 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37192
37193         * modules/configmake (Makefile.am): Add a comment, and omit
37194         the CONFIGMAKE_ prefix from generated macro names.  Suggested
37195         by Bruno Haible.
37196
37197 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37198
37199         * m4/isapipe.m4: New file.
37200
37201 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37202
37203         * lib/isapipe.c, lib/isapipe.h: New files.
37204
37205 2006-08-29  Jim Meyering  <jim@meyering.net>
37206
37207         * modules/configmake (Makefile.am): Make configmake.h depend on
37208         Makefile.  Otherwise, a stale configmake.h could hang around.
37209
37210 2006-08-29  Eric Blake  <ebb9@byu.net>
37211
37212         * lib/error.c (error_at_line, print_errno_message): Match libc, after
37213         resolution of upstream bug 3044.
37214
37215 2006-08-29  Bruno Haible  <bruno@clisp.org>
37216
37217         * modules/localcharset (Depends-on): Add configmake.
37218         (Makefile.am): Remove setting of LIBDIR through DEFS.
37219
37220 2006-08-29  Bruno Haible  <bruno@clisp.org>
37221
37222         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
37223         defined.
37224
37225 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37226
37227         * modules/fcntl: New file.
37228         * modules/chdir-safer (Depends-on): Add fcntl.
37229         * modules/fts: Likewise.
37230         * modules/mkdir-p: Likewise.
37231
37232         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
37233         This undoes the most recent change, since we're now addressing the
37234         problem in a different way.
37235
37236         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
37237         into output, since the output might be called Makefile.am even
37238         if $makefile_name is something different.
37239         (func_import): Use $makefile_am rather than
37240         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
37241         empty.
37242
37243         * modules/inttypes (Files): Add m4/inttypes-h.m4.
37244
37245 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37246
37247         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
37248         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
37249         recent change to stdint.m4, since we're now addressing the problem in a
37250         different way.
37251
37252 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37253
37254         * m4/fcntl_h.m4: New file.
37255
37256 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37257
37258         * lib/fcntl_.h: New file.
37259         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
37260         the fcntl module.
37261         * lib/dirchownmod.c: Likewise.
37262         * lib/fts.c: Likewise.
37263
37264         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
37265         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
37266         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
37267         just before including <inttypes.h>, to avoid circular inclusion.
37268
37269 2006-08-28  Jim Meyering  <jim@meyering.net>
37270
37271         * doc/visibility.texi: Actually read and correct the grammar of the
37272         sentence affected by yesterday's change.
37273
37274 2006-08-28  Eric Blake  <ebb9@byu.net>
37275
37276         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
37277         needs wrapper.
37278
37279 2006-08-28  Eric Blake  <ebb9@byu.net>
37280
37281         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
37282
37283 2006-08-28  Eric Blake  <ebb9@byu.net>
37284
37285         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
37286
37287 2006-08-28  Bruno Haible  <bruno@clisp.org>
37288
37289         * modules/c-strstr: New file, from GNU gettext.
37290         * MODULES.html.sh (String handling): Add c-strstr.
37291
37292 2006-08-28  Bruno Haible  <bruno@clisp.org>
37293
37294         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
37295         macros.
37296         Reported by Eric Blake.
37297
37298 2006-08-28  Bruno Haible  <bruno@clisp.org>
37299
37300         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
37301         (VASNPRINTF): Return a string of length > INT_MAX without failing.
37302         * lib/vasprintf.c: Include errno.h, limits.h.
37303         (EOVERFLOW): New fallback definition.
37304         (vasprintf): Test here whether the string length is > INT_MAX.
37305         * lib/vsnprintf.c: Include errno.h, limits.h.
37306         (EOVERFLOW): New fallback definition.
37307         (vsnprintf): Fix bug when generated string was too long for the buffer.
37308         Test here whether the string length is > INT_MAX.
37309
37310 2006-08-28  Bruno Haible  <bruno@clisp.org>
37311
37312         * lib/inttypes_.h (SCNX*): Remove definitions.
37313         Reported by Eric Blake.
37314
37315 2006-08-28  Bruno Haible  <bruno@clisp.org>
37316
37317         * lib/c-strstr.h: New file, from GNU gettext.
37318         * lib/c-strstr.c: New file, from GNU gettext.
37319
37320 2006-08-28  Bruno Haible  <bruno@clisp.org>
37321
37322         * gnulib-tool: Reorder some statements.
37323
37324 2006-08-28  Bruno Haible  <bruno@clisp.org>
37325
37326         * gnulib-tool: New option --makefile-name.
37327         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
37328         $makefile_name.
37329         (func_import): Write $makefile_name to the cache file, and read it from
37330         there unless explicitly specified. Use $makefile_name as file name
37331         instead of Makefile.am. Adjust the recommendations accordingly.
37332
37333 2006-08-28  Bruno Haible  <bruno@clisp.org>
37334
37335         * gnulib-tool (func_verify_module): Check against misapplying patch.
37336
37337 2006-08-28  Bruno Haible  <bruno@clisp.org>
37338
37339         * gnulib-tool (func_relativize, func_relconcat): New functions.
37340         Give an error if --local-dir is given with --update.
37341         Remove trailing slashes from $local_gnulib_dir.
37342         (func_import): Store the relativized $local_gnulib_dir in
37343         gnulib-cache.m4, and read it from there if not specified explicitly.
37344
37345 2006-08-28  Bruno Haible  <bruno@clisp.org>
37346
37347         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
37348         is the current directory. Respect also $local_gnulib_dir.
37349
37350 2006-08-28  Bruno Haible  <bruno@clisp.org>
37351             Simon Josefsson  <jas@extundo.com>
37352
37353         BeOS portability.
37354         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
37355
37356 2006-08-27  Jim Meyering  <jim@meyering.net>
37357
37358         * doc/visibility.texi: Remove duplicate word: "pointer".
37359
37360 2006-08-26  Bruno Haible  <bruno@clisp.org>
37361
37362         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
37363         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
37364         (Makefile.am): Create inttypes.h from inttypes_.h.
37365         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
37366
37367         * modules/imaxabs: New file.
37368
37369         * modules/imaxdiv: New file.
37370
37371 2006-08-26  Bruno Haible  <bruno@clisp.org>
37372
37373         * m4/inttypes.m4: New file.
37374         * m4/_inttypes_h.m4: Remove file.
37375         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
37376         PRI_MACROS_BROKEN.
37377         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
37378
37379         * m4/imaxabs.m4: New file.
37380
37381         * m4/imaxdiv.m4: New file.
37382
37383 2006-08-26  Bruno Haible  <bruno@clisp.org>
37384
37385         * lib/inttypes_.h: New file.
37386         * lib/inttypes.h: Remove file.
37387         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
37388
37389         * lib/imaxabs.c: New file.
37390
37391         * lib/imaxdiv.c: New file.
37392
37393 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37394
37395         New config-h module, so that "make" output needn't be cluttered
37396         by -DHAVE_CONFIG_H.
37397         * MODULES.html.sh (Support for building libraries and executables):
37398         Add config-h.
37399         * modules/config-h: New file.
37400         * gnulib-tool (nl, sed_transform_lib_file): New vars.
37401         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
37402         the config-h module is used.
37403
37404         New configmake module, so that "make" output needn't be cluttered
37405         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
37406         * MODULES.html.sh (Support for building libraries and executables):
37407         Add configmake.
37408         * modules/configmake: New file.
37409
37410 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37411
37412         * m4/config-h.m4: New file.
37413
37414 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
37415
37416         * config/srclist.txt: Add elisp-comp.
37417
37418 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
37419
37420         * MODULES.html.sh (Support for building libraries and executables):
37421         Add elisp-comp.
37422         * build-aux/elisp-comp: New file.
37423         * modules/elisp-comp: New file.
37424
37425 2006-08-24  Bruno Haible  <bruno@clisp.org>
37426
37427         * gnulib-tool (func_create_testdir): Use non-default values of
37428         sourcebase and m4base.
37429
37430 2006-08-24  Bruno Haible  <bruno@clisp.org>
37431
37432         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
37433         HTML structure.
37434
37435 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
37436
37437         * modules/openat (Depends-on): Add lchown.
37438
37439 2006-08-23  Bruno Haible  <bruno@clisp.org>
37440
37441         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
37442         of gl_LOCK_EARLY instead of gl_LOCK.
37443
37444 2006-08-23  Bruno Haible  <bruno@clisp.org>
37445
37446         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
37447         on OSF/1 to no.
37448         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
37449
37450 2006-08-23  Bruno Haible  <bruno@clisp.org>
37451
37452         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
37453         as unusable.
37454
37455         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
37456         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
37457         (gl_LOCK): New macro.
37458
37459 2006-08-22  Simon Josefsson  <jas@extundo.com>
37460
37461         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
37462         to md5 module.
37463
37464 2006-08-22  Simon Josefsson  <jas@extundo.com>
37465
37466         * MODULES.html.sh: Add "Support for maintaining and release
37467         projects".
37468
37469         * build-aux/gnupload: New file, from coreutils.
37470
37471 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37472
37473         Avoid the need for AC_LIBSOURCES in m4 macros.
37474         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
37475         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
37476         * modules/check-version (EXTRA_DIST): Add check-version.h.
37477         * modules/crc (EXTRA_DIST): Add crc.h.
37478         * modules/des (EXTRA_DIST): Add des.h.
37479         * modules/gc (EXTRA_DIST): Add gc.h.
37480         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
37481         * modules/getline (EXTRA_DIST): Add getline.h.
37482         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
37483         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
37484         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
37485         * modules/md2 (EXTRA_DIST): Add md2.h.
37486         * modules/md4 (EXTRA_DIST): Add md4.h.
37487         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
37488         * modules/read-file (EXTRA_DIST): Add read-file.h.
37489         * modules/readline (EXTRA_DIST): Add readline.h.
37490         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
37491         rijndael-api-fst.h.
37492
37493 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37494
37495         * m4/rijndael.m4 (gl_ARCFOUR):
37496         * m4/arctwo.m4 (gl_ARCTWO):
37497         * m4/check-version.m4 (gl_CHECK_VERSION):
37498         * m4/crc.m4 (gl_CRC):
37499         * m4/des.m4 (gl_DES):
37500         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
37501         * m4/gc.m4 (gl_GC):
37502         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
37503         * m4/getline.m4 (gl_FUNC_GETLINE):
37504         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
37505         * m4/hmac-md5.m4 (gl_HMAC_MD5):
37506         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
37507         * m4/md2.m4 (gl_MD2):
37508         * m4/md4.m4 (gl_MD4):
37509         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
37510         * m4/read-file.m4 (gl_FUNC_READ_FILE):
37511         * m4/readline.m4 (gl_FUNC_READLINE):
37512         * m4/rijndael.m4 (gl_RIJNDAEL):
37513         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
37514         to get the necessary .h files and whatnot.
37515
37516 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37517
37518         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
37519         gnulib rather than the other way around.
37520         * config/srclistvars.sh (COREUTILS): Remove.
37521
37522 2006-08-22  Jim Meyering  <jim@meyering.net>
37523
37524         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
37525
37526         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
37527
37528 2006-08-22  Eric Blake  <ebb9@byu.net>
37529
37530         * modules/regexprops-generic: New file.
37531         * MODULES.html.sh (Support for building documentation): List it.
37532
37533 2006-08-22  Eric Blake  <ebb9@byu.net>
37534
37535         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
37536         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
37537         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
37538         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
37539
37540 2006-08-22  Bruno Haible  <bruno@clisp.org>
37541
37542         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
37543         and lib_LTLIBRARIES like the other lib_* variables.
37544
37545 2006-08-22  Bruno Haible  <bruno@clisp.org>
37546
37547         * build-aux/x-to-1.in: New file, from GNU gettext.
37548
37549 2006-08-22  Bruno Haible  <bruno@clisp.org>
37550
37551         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
37552         <utmpx.h> exists.
37553
37554 2006-08-22  Bruno Haible  <bruno@clisp.org>
37555
37556         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
37557         <utmpx.h> exists.
37558
37559 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37560
37561         BeOS portability.
37562         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
37563         exist.
37564         Problem reported by Bruno Haible.
37565
37566 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37567
37568         Avoid the need for AC_LIBSOURCES in m4 macros.
37569         * modules/acl (EXTRA_DIST): Add acl.h.
37570         * modules/argmatch (Files): Add m4/argmatch.m4.
37571         (configure.ac): Add gl_ARGMATCH.
37572         (EXTRA_DIST): Renamed from lib_SOURCES, for
37573         consistency with the other modules.  Remove argmatch.c.
37574         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
37575         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
37576         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
37577         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
37578         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
37579         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
37580         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
37581         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
37582         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
37583         * modules/closeout (EXTRA_DIST): Add closeout.h.
37584         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
37585         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
37586         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
37587         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
37588         dirname.h; remove basename.c and stripslash.c.
37589         * modules/exclude (EXTRA_DIST): Add exclude.h.
37590         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
37591         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
37592         * modules/file-type (EXTRA_DIST): Add file-type.h.
37593         * modules/filemode (EXTRA_DIST): Add filemode.h.
37594         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
37595         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
37596         * modules/fpending (EXTRA_DIST): Add __fpending.h.
37597         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
37598         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
37599         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
37600         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
37601         * modules/getdate (EXTRA_DIST): Add getdate.c.
37602         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
37603         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
37604         * modules/getpass (EXTRA_DIST): Add getpass.h.
37605         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
37606         * modules/group-member (EXTRA_DIST): Add group-member.h.
37607         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
37608         * modules/hash (EXTRA_DIST): Add hash.h.
37609         * modules/human (EXTRA_DIST): Add human.h.
37610         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
37611         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
37612         * modules/lchown (EXTRA_DIST): Add lchown.h.
37613         * modules/long-options (EXTRA_DIST): Add long-options.h.
37614         * modules/lstat (EXTRA_DIST): Add lstat.h.
37615         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
37616         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
37617         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
37618         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
37619         * modules/memxor (EXTRA_DIST): Add memxor.h.
37620         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
37621         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
37622         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
37623         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
37624         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
37625         * modules/physmem (EXTRA_DIST): Add physmem.h.
37626         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
37627         * modules/posixver (EXTRA_DIST): Add posixver.h.
37628         * modules/quote (EXTRA_DIST): Add quote.h.
37629         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
37630         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
37631         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
37632         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
37633         regex_internal.h regexec.c.
37634         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
37635         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
37636         * modules/same (EXTRA_DIST): Add same.h.
37637         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
37638         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
37639         * modules/savedir (EXTRA_DIST): Add savedir.h.
37640         * modules/sha1 (EXTRA_DIST): Add sha1.h.
37641         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
37642         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
37643         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
37644         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
37645         * modules/strdup (EXTRA_DIST): Add strdup.h.
37646         * modules/strftime (EXTRA_DIST): Add strftime.h.
37647         * modules/strndup (EXTRA_DIST): Add strndup.h.
37648         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
37649         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
37650         * modules/time_r (EXTRA_DIST): Add time_r.h.
37651         * modules/timespec (EXTRA_DIST): Add timespec.h.
37652         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
37653         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
37654         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
37655         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
37656         * modules/userspec (EXTRA_DIST): Add userspec.h.
37657         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
37658         * modules/utimens (EXTRA_DIST): Add utimens.h.
37659         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
37660         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
37661         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
37662         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
37663         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
37664         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
37665         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
37666         * modules/yesno (EXTRA_DIST): Add yesno.h.
37667
37668 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37669
37670         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
37671
37672         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
37673         * m4/dev-ino.m4, same-inode.m4: Remove.
37674
37675         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
37676         * m4/acl.m4 (AC_FUNC_ACL):
37677         * m4/backupfile.m4 (gl_BACKUPFILE):
37678         * m4/c-strtod.m4 (gl_C99_STRTOLD):
37679         * m4/canon-host.m4 (gl_CANON_HOST):
37680         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
37681         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
37682         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
37683         * m4/cloexec.m4 (gl_CLOEXEC):
37684         * m4/close-stream.m4 (gl_CLOSE_STREAM):
37685         * m4/closeout.m4 (gl_CLOSEOUT):
37686         * m4/dirfd.m4 (gl_FUNC_DIRFD):
37687         * m4/dirname.m4 (gl_DIRNAME):
37688         * m4/exclude.m4 (gl_EXCLUDE):
37689         * m4/exitfail.m4 (gl_EXITFAIL):
37690         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
37691         * m4/file-type.m4 (gl_FILE_TYPE):
37692         * m4/filemode.m4 (gl_FILEMODE):
37693         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
37694         * m4/fpending.m4 (gl_FUNC_FPENDING):
37695         * m4/fprintftime.m4 (gl_FPRINTFTIME):
37696         * m4/fts.m4 (gl_FUNC_FTS):
37697         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
37698         * m4/getdate.m4 (gl_GETDATE):
37699         * m4/gethrxtime.m4 (gl_GETHRXTIME):
37700         * m4/getpagesize.m4 (gl_GETPAGESIZE):
37701         * m4/getpass.m4 (gl_FUNC_GETPASS):
37702         * m4/gettime.m4 (gl_GETTIME):
37703         * m4/getugroups.m4 (gl_GETUGROUPS):
37704         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
37705         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
37706         * m4/hard-locale.m4 (gl_HARD_LOCALE):
37707         * m4/hash.m4 (gl_HASH):
37708         * m4/idcache.m4 (gl_IDCACHE):
37709         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
37710         * m4/lchown.m4 (gl_FUNC_LCHOWN):
37711         * m4/long-options.m4 (gl_LONG_OPTIONS):
37712         * m4/lstat.m4 (gl_FUNC_LSTAT):
37713         * m4/md5.m4 (gl_MD5):
37714         * m4/memcasecmp.m4 (gl_MEMCASECMP):
37715         * m4/memcoll.m4 (gl_MEMCOLL):
37716         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
37717         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
37718         * m4/memxor.m4 (gl_MEMXOR):
37719         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
37720         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
37721         * m4/modechange.m4 (gl_MODECHANGE):
37722         * m4/mountlist.m4 (gl_MOUNTLIST):
37723         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
37724         * m4/openat.m4 (gl_FUNC_OPENAT):
37725         * m4/pathmax.m4 (gl_PATHMAX):
37726         * m4/physmem.m4 (gl_PHYSMEM):
37727         * m4/posixtm.m4 (gl_POSIXTM):
37728         * m4/posixver.m4 (gl_POSIXVER):
37729         * m4/quote.m4 (gl_QUOTE):
37730         * m4/quotearg.m4 (gl_QUOTEARG):
37731         * m4/readtokens.m4 (gl_READTOKENS):
37732         * m4/readutmp.m4 (gl_READUTMP):
37733         * m4/regex.m4 (gl_REGEX):
37734         * m4/safe-read.m4 (gl_SAFE_READ):
37735         * m4/safe-write.m4 (gl_SAFE_WRITE):
37736         * m4/same.m4 (gl_SAME):
37737         * m4/save-cwd.m4 (gl_SAVE_CWD):
37738         * m4/savedir.m4 (gl_SAVEDIR):
37739         * m4/settime.m4 (gl_SETTIME):
37740         * m4/sha1.m4 (gl_SHA1):
37741         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
37742         * m4/stat-macros.m4 (gl_STAT_MACROS):
37743         * m4/stat-time.m4 (gl_STAT_TIME):
37744         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
37745         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
37746         * m4/strdup.m4 (gl_FUNC_STRDUP):
37747         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
37748         * m4/strndup.m4 (gl_FUNC_STRNDUP):
37749         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
37750         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
37751         * m4/time_r.m4 (gl_TIME_R):
37752         * m4/timespec.m4 (gl_TIMESPEC):
37753         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
37754         * m4/unlinkdir.m4 (gl_UNLINKDIR):
37755         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
37756         * m4/userspec.m4 (gl_USERSPEC):
37757         * m4/utimecmp.m4 (gl_UTIMECMP):
37758         * m4/utimens.m4 (gl_UTIMENS):
37759         * m4/xalloc.m4 (gl_XALLOC):
37760         * m4/xgetcwd.m4 (gl_XGETCWD):
37761         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
37762         * m4/xreadlink.m4 (gl_XREADLINK):
37763         * m4/xstrtod.m4 (gl_XSTRTOD):
37764         * m4/yesno.m4 (gl_YESNO):
37765         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
37766         to get the necessary .h files and whatnot.
37767
37768 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
37769             Bruno Haible  <bruno@clisp.org>
37770
37771         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
37772         /bin/sh understanding of '!' conditional negation.
37773
37774 2006-08-21  Jim Meyering  <jim@meyering.net>
37775
37776         * modules/openat (Depends-on): Really alphabetize.
37777
37778         * modules/acl (Depends-on): Add error and quote.
37779
37780         * check-module (find_included_lib_files): Add at-func.c to the
37781         ok-to-include-more-than-once white list.
37782
37783         * modules/openat (Depends-on): Add lstat.  Alphabetize.
37784
37785 2006-08-21  Bruno Haible  <bruno@clisp.org>
37786
37787         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
37788         Emit a pkgdata_DATA variable only if some snippets add contents to it.
37789         Reported by Martin Lambers <marlam@marlam.de>.
37790
37791 2006-08-21  Bruno Haible  <bruno@clisp.org>
37792
37793         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
37794         specify an installation location, don't emit a noinst_LIBRARIES or
37795         noinst_LTLIBRARIES assignment.
37796
37797 2006-08-21  Bruno Haible  <bruno@clisp.org>
37798
37799         BeOS portability.
37800         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
37801         BeOS has mbrtowc() but no <wctype.h>.
37802
37803 2006-08-21  Bruno Haible  <bruno@clisp.org>
37804
37805         BeOS portability.
37806         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
37807         exist.
37808
37809 2006-08-21  Bruno Haible  <bruno@clisp.org>
37810
37811         BeOS portability.
37812         * lib/mbchar.h: Include <wctype.h> only if it exists.
37813
37814 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37815
37816         Remove files that are no longer needed by their respective modules.
37817         * m4/obstack.m4: Remove.
37818         * m4/strerror_r.m4: Remove.
37819         * m4/uint32_t.m4: Remove.
37820         * m4/uintptr_t.m4: Remove.
37821         * m4/ullong_max.m4: Remove.
37822         * m4/xstrtoimax.m4: Remove.
37823         * m4/xstrtoumax.m4: Remove.
37824
37825         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
37826         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
37827         dependencies now capture this.
37828
37829         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
37830         Do not use AC_LIBSOURCES, since gnulib modules now do this.
37831         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
37832         * m4/human.m4 (gl_HUMAN): Likewise.
37833         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
37834         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
37835
37836         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
37837
37838         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
37839         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
37840         stdint.
37841         * m4/human.m4 (gl_HUMAN): Likewise.
37842         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
37843         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
37844         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
37845         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
37846         * m4/xstrtol (gl_XSTRTOL): Likewise.
37847
37848         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
37849         AC_TYPE_LONG_LONG_INT.
37850         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
37851         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
37852         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
37853         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
37854
37855         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
37856         on stdbool.
37857
37858         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
37859         (gl_PREREQ_XSTRTOUL): Remove.
37860
37861         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
37862
37863         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
37864         mode.
37865
37866 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37867
37868         Add and change modules to make it easier for coreutils to use
37869         gnulib-tool.
37870         * modules/backupfile (Files): Remove m4/d-ino.m4.
37871         (Depends-on): Add d-ino.
37872         * modules/cycle-check (Depends-on): Add stdint.
37873         (lib_SOURCES): Add cycle-check.h.
37874         * modules/d-ino: New module.
37875         * modules/d-type: New module.
37876         * modules/error (Files): Remove m4/strerror_r.m4.
37877         * modules/filemode (Files): Add m4/st_dm_mode.m4.
37878         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
37879         m4/inttypes_h.m4, m4/uintmax_t.m4.
37880         (Depends-on): Add stdint.
37881         (lib_SOURCES): Add fsusage.h.
37882         * modules/getcwd (Files): Remove d-ino.m4.
37883         (Depends-on): Add d-ino.
37884         * modules/getndelim2 (Depends-on): Add stdint.
37885         * modules/glob (Files): Remove m4/d-type.m4.
37886         (Depends-on): Add d-type.
37887         * modules/host-os: New module.
37888         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
37889         m4/inttypes_h.m4, m4/uintmax_t.m4.
37890         * Depends-on: Add stdint.
37891         (lib_SOURCES): Add human.h.
37892         * modules/inttostr (Files): Remove m4/intmax_t.m4,
37893         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
37894         m4/uintmax_t.m4, m4/ulonglong.m4.
37895         (Depends-on): Add stdint.
37896         (EXTRA_DIST): Add inttostr.h.
37897         * modules/lchmod: New module.
37898         * modules/link-follow: New module.
37899         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
37900         (Depends-on): Add lchmod.
37901         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
37902         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
37903         (Depends-on): Add stdint.
37904         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
37905         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
37906         (Depends-on): Add stdint.
37907         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
37908         * modules/perl: New module.
37909         * modules/regex (Depends-on): Add stdint.
37910         * modules/rmdir-errno: New module.
37911         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
37912         m4/intmax_t.m4.
37913         (Depends-on): Add stdint.
37914         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
37915         m4/uintmax_t.m4.
37916         (Depends-on): Add stdint.
37917         * modules/unlink-busy: New module.
37918         * modules/utimecmp (Depends-on): Add stdint.
37919         * modules/uptime: New module.
37920         * modules/winsz-ioctl: New module.
37921         * modules/winsz-termios: New module.
37922         * modules/xnanosleep (Depends-on): Add nanosleep.
37923         * modules/ullong_max: Remove.
37924         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
37925         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
37926         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
37927         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
37928         (Depends-on): Add inttypes.
37929         (lib_SOURCES): Add xstrtol.h.
37930         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
37931         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
37932         * MODULES.html.sh: Move 'assert' into the assert section.
37933         Move 'dummy' into the linking section.
37934         Remove ullong_max.
37935         Add section for compatibility checks for POSIX:2001 functions,
37936         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
37937         winsz-ioctl, and winsz-termios into it.
37938         Add lchmod.
37939         Add top-level Misc section and put host-os, perl, and uptime
37940         into it.
37941
37942 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37943
37944         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
37945         now assume the stdint module.  Do not include inttypes.h.
37946         * lib/fsusage.h: Likewise.
37947         * lib/getndelim2.c: Likewise.
37948         * lib/human.h: Likewise.
37949         * lib/inttostr.h: Likewise.
37950         * lib/obstack.c: Likewise.
37951         * lib/regex_internal.h: Likewise.
37952         * lib/tempname.c: Likewise.
37953         * lib/utimecmp.c: Likewise.
37954         * lib/xstrtol.h: Likewise.
37955
37956         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
37957
37958         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
37959         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
37960         * lib/xtime.h: Likewise.
37961
37962 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
37963
37964         * modules/openat (Files): Add lib/fchmodat.c.
37965         Fixes problem reported by Jay Youngman.
37966
37967 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
37968
37969         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
37970         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
37971
37972 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
37973             Bruno Haible  <bruno@clisp.org>
37974
37975         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
37976         and is a script that invokes bison. Tighten the code. Add comments.
37977
37978 2006-08-18  Jim Meyering  <jim@meyering.net>
37979
37980         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
37981         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
37982         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
37983         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
37984
37985 2006-08-18  Bruno Haible  <bruno@clisp.org>
37986
37987         * modules/bison-i18n: New file.
37988         * MODULES.html.sh (Internationalization functions): Add it.
37989
37990 2006-08-18  Bruno Haible  <bruno@clisp.org>
37991
37992         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
37993         sys/statvfs.h. When getmntinfo was found, check its declaration and
37994         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
37995
37996 2006-08-18  Bruno Haible  <bruno@clisp.org>
37997
37998         * m4/bison-i18n.m4: New file, from bison.
37999
38000 2006-08-18  Bruno Haible  <bruno@clisp.org>
38001
38002         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
38003         (ME_DUMMY): Treat "kernfs" as a dummy.
38004         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
38005
38006 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38007
38008         Update from coreutils.
38009
38010         2006-08-15  Jim Meyering  <jim@meyering.net>
38011
38012         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
38013
38014         2006-01-17  Jim Meyering  <jim@meyering.net>
38015
38016         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
38017
38018         2006-01-11  Jim Meyering  <jim@meyering.net>
38019
38020         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
38021         Check for the lchmod function.
38022
38023 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38024
38025         Update from coreutils.
38026
38027         * lib/__fpending.h: Add copyright notice.
38028         * lib/fprintftime.h: Likewise.
38029         * lib/savedir.c: Use (C) in copyright notice.
38030         * lib/savedir.h: Likewise.
38031
38032         2006-08-15  Jim Meyering  <jim@meyering.net>
38033
38034         * lib/at-func.c: New file, with the logic of all emulated at-functions.
38035         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
38036         in support of the EXPECTED_ERRNO macro.
38037         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
38038         definitions.  Instead, define the appropriate symbols and include
38039         "at-func.c".
38040         * lib/mkdirat.c (mkdirat): Likewise.
38041         * lib/fchmodat.c (fchmodat): Likewise.
38042         (ENOSYS): Remove definition.
38043         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
38044         it.  Don't include "unistd--.h" -- it wasn't ever used.
38045
38046         2006-01-17  Jim Meyering  <jim@meyering.net>
38047
38048         Rewrite fts.c not to change the current working directory,
38049         by using openat, fstatat, fdopendir, etc..
38050
38051         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
38052         (HAVE_OPENAT_SUPPORT): Define.
38053         [_LIBC] (fchdir): Don't undef or define; no longer used.
38054         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
38055         Now, this `function' always succeeds, and consumes its file descriptor
38056         parameter -- so callers must not close such FDs.  Update callers.
38057         (diropen_fd, opendirat, cwd_advance_fd): New functions.
38058         (diropen): Add parameter, SP.  Adjust all callers.
38059         Implement using diropen_fd, rather than open.
38060         (fts_open): Initialize new member, fts_cwd_fd.
38061         Remove fts_rft-setting code.
38062         (fts_close): Close fts_cwd_fd, if necessary.
38063         (__opendir2): Define in terms of opendir or opendirat,
38064         depending on whether the FST_NOCHDIR flag is set.
38065         (fts_build): Since fts_safe_changedir consumes its FD, and since
38066         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
38067         and close the dup'd file descriptor upon failure.
38068         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
38069         (fts_safe_changedir): Tweak semantics to reflect that this function
38070         now calls cwd_advance_fd and hence consumes its FD argument.
38071         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
38072         [struct FTS] (fts_rft): Remove now-unused member.
38073         [struct FTS] (fts_cycle.state): Improve comment.
38074
38075         * lib/openat.c (openat_needs_fchdir): New function.
38076         * lib/openat.h (openat_needs_fchdir): Declare it.
38077
38078 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
38079
38080         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
38081         Problem and fix reported by Pádraig Brady in
38082         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
38083
38084 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38085
38086         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
38087
38088 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38089
38090         * lib/memcoll.c (memcoll): Optimize for the common case where the
38091         arguments are bytewise equal.
38092
38093 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38094
38095         * doc/regexprops-generic.texi: Add a copyright notice.
38096
38097 2006-08-15  Bruno Haible  <bruno@clisp.org>
38098
38099         * modules/tmpdir (License): Change to LGPL.
38100
38101 2006-08-15  Bruno Haible  <bruno@clisp.org>
38102
38103         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
38104         module.
38105
38106 2006-08-14  Simon Josefsson  <jas@extundo.com>
38107
38108         * config/srclist.txt: Add gnupload.
38109
38110 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38111
38112         Change copyright notice from LGPL 2 to GPL 2, since that's the
38113         standard form used in the gnulib repository.
38114         * tests/test-lock.c: Likewise.
38115         * tests/test-stdint.c: Likewise.
38116         * tests/test-tls.c: Likewise.
38117
38118         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
38119         prelude-manager.  User shorter URLs for GNU projects, without '?'.
38120         Add copyright notice.
38121
38122         * check-module: Add copyright notice.  Output a copyright
38123         notice if "--version" is specified.
38124         * modules/COPYING: New file.
38125         * tests/test-getaddrinfo.c: Add copyright notice.
38126         * tests/test-verify.c: Likewise.
38127
38128 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38129
38130         Change copyright notice from LGPL 2 to GPL 2, since that's the
38131         standard form used in the gnulib repository.
38132         * lib/lock.c: LGPL -> GPL.
38133         * lib/lock.h: Likewise.
38134         * lib/strnlen1.c: Likewise.
38135         * lib/strnlen1.h: Likewise.
38136         * lib/tls.c: Likewise.
38137         * lib/tls.h: Likewise.
38138         * lib/tmpdir.c: Likewise.
38139
38140         * lib/TODO: Remove; this belongs only in coreutils.
38141
38142 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38143
38144         Add copyright notices to long-enough files that lack them, since
38145         otherwise the files aren't clearly free.  Use the same notice that
38146         getdate.texi already uses.
38147         * doc/alloca-opt.texi: Add copyright notice.
38148         * doc/alloca.texi: Likewise.
38149         * doc/ctime.texi: Likewise.
38150         * doc/functions.texi: Likewise.
38151         * doc/gcd.texi: Likewise.
38152         * doc/gnulib-tool.texi: Likewise.
38153         * doc/inet_ntoa.texi: Likewise.
38154         * doc/visibility.texi: Likewise.
38155
38156         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
38157         * doc/quote.texi: Add copyright notice.
38158
38159         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
38160         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
38161         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
38162         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
38163         is now obsolete, and give a pointer to the Sun list.
38164         Add copyright notice.
38165
38166 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38167
38168         * config/srclistvars.sh: Add copyright notice.
38169
38170 2006-08-14  Eric Blake  <ebb9@byu.net>
38171
38172         Import the following change from libc:
38173
38174         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
38175
38176         Upstream bug 2997.
38177         * lib/misc/error.c: Add space between program name and message if file
38178         name is missing.
38179
38180 2006-08-12  Karl Berry  <karl@gnu.org>
38181
38182         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
38183         remove, these originate in gnulib now.
38184
38185 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38186
38187         * doc/Makefile (standards.info standards.html standards.dvi):
38188         Also depend on make-stds.texi.
38189
38190 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
38191
38192         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
38193         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
38194
38195         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
38196         in wchar_t.  Problem reported by Eric Blake.
38197
38198         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
38199         LEN is smaller than SIZE.  Suggested by Bruno Haible.
38200         Also, help the compiler to keep LEN in a register.
38201
38202 2006-08-11  Eric Blake  <ebb9@byu.net>
38203
38204         * users.txt: Sort.  Add tar.
38205
38206 2006-08-11  Bruno Haible  <bruno@clisp.org>
38207
38208         * users.txt: New file.
38209
38210 2006-08-11  Bruno Haible  <bruno@clisp.org>
38211
38212         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
38213         before <wchar.h>. Needed for OSF/1 and BSD/OS.
38214
38215 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38216
38217         * modules/snprintf (Depends-on): Remove minmax.
38218         (Maintainer): Add self and Bruno.
38219
38220 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38221
38222         * lib/.cppi-disable: Add snprintf.h, socket_.h.
38223         * lib/snprintf.c: Include <errno.h> and <limits.h>.
38224         (EOVERFLOW): Define if the system does not.
38225         Do not include "minmax.h"; it wasn't used.
38226         (snprintf): Don't assume size_t promotes to an unsigned type.
38227         Fix bug when generated string was too long for the buffer: the
38228         buffer's contents are supposed to be the initial prefix of the
38229         output.  Don't assume vasnprintf returns EOVERFLOW if the size
38230         exceeds INT_MAX; do the check ourselves.
38231
38232         Import the following changes from libc:
38233
38234         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
38235
38236         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
38237         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
38238         set wc to the byte which couldn't be converted.
38239         (re_string_reconstruct): Don't clear valid_raw_len before calling
38240         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
38241         tip_context using re_string_context_at.
38242
38243         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
38244
38245         * lib/posix/regex.h: g++ still cannot handled [restrict].
38246
38247         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
38248
38249         * lib/posix/regex.h: Remove special handling for VMS.
38250
38251 2006-08-10  Jim Meyering  <jim@meyering.net>
38252
38253         * modules/same-inode: New module.
38254         * modules/dev-ino: New module.
38255         * modules/cycle-check: Depend on these modules, rather than simply
38256         including their .h files.
38257         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
38258         required via m4/cycle-check.m4.
38259         * modules/same: Depend on new same-inode module, rather than
38260         including same-inode.h.
38261         * modules/chdir-safer: New file.
38262
38263         * modules/chown (Depends-on): Add stat-macros.
38264
38265 2006-08-10  Jim Meyering  <jim@meyering.net>
38266
38267         * m4/cycle-check.m4: New file.
38268         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
38269         * m4/dev-ino.m4, m4/same-inode.m4: New files.
38270
38271 2006-08-10  Eric Blake  <ebb9@byu.net>
38272
38273         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
38274         in from original proposal.
38275
38276 2006-08-10  Eric Blake  <ebb9@byu.net>
38277         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
38278
38279         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
38280         namespace.
38281
38282 2006-08-10  Bruno Haible  <bruno@clisp.org>
38283
38284         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
38285         as well.
38286
38287 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38288
38289         Sync from coreutils.
38290
38291         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
38292
38293         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
38294         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
38295
38296 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38297
38298         * modules/restrict: Remove; no longer needed now that we assume
38299         Autoconf 2.59 or later.
38300         * MODULES.html.sh: Remove 'restrict'.
38301         * modules/argp (Depends-on): Remove 'restrict'.
38302         * modules/base64 (Depends-on): Likewise.
38303         * modules/gc (Depends-on): Likewise.
38304         * modules/getaddrinfo (Depends-on): Likewise.
38305         * modules/glob (Depends-on): Likewise.
38306         * modules/inet_ntop (Depends-on): Likewise.
38307         * modules/inet_pton (Depends-on): Likewise.
38308         * modules/memxor (Depends-on): Likewise.
38309         * modules/regex (Depends-on): Likewise.
38310         * modules/strtok_r (Depends-on): Likewise.
38311         * modules/time_r (Depends-on): Likewise.
38312
38313 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38314
38315         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
38316         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
38317         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
38318         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
38319         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
38320         * m4/memxor.m4 (gl_MEMXOR): Likewise.
38321         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
38322         gl_C_RESTRICT replaced by AC_C_RESTRICT.
38323
38324         Merge from coreutils.
38325         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
38326         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
38327         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
38328         * m4/time_r.m4 (gl_TIME_R): Likewise.
38329
38330 2006-08-09  Karl Berry  <karl@gnu.org>
38331
38332         * config/srclist.txt: no more gettext-tools, per Bruno.
38333
38334 2006-08-08  Eric Blake  <ebb9@byu.net>
38335
38336         * modules/verror: New module.
38337         * MODULES.html.sh: Document it.
38338
38339 2006-08-08  Eric Blake  <ebb9@byu.net>
38340
38341         * lib/verror.h, lib/verror.c: New files.
38342
38343 2006-08-08  Eric Blake  <ebb9@byu.net>
38344
38345         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
38346         verror_at_line output complies with GNU Coding Standards even when
38347         file is NULL.
38348
38349 2006-08-07  Bruno Haible  <bruno@clisp.org>
38350
38351         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
38352         versions of AIX.
38353         Reported by Ralf Wildenhues.
38354
38355 2006-08-07  Bruno Haible  <bruno@clisp.org>
38356
38357         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
38358         in an AC_DEFUN. Needed so that the autoconf snippets can use
38359         AC_REQUIRE.
38360
38361 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38362
38363         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38364         Initialize pkgdata_DATA.
38365         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
38366         overriding it.
38367
38368 2006-08-06  Eric Blake  <ebb9@byu.net>
38369
38370         * lib/error.h: Fold in some upstream changes from glibc.
38371         * lib/error.c: Likewise.
38372
38373 2006-08-04  Bruno Haible  <bruno@clisp.org>
38374
38375         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38376         Make the mostlyclean-local rule depend on mostlyclean-generic.
38377         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
38378
38379 2006-07-31  Bruno Haible  <bruno@clisp.org>
38380
38381         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
38382         <stdlib.h>, <string.h>.
38383
38384 2006-07-30  Bruno Haible  <bruno@clisp.org>
38385
38386         * modules/readlink (License): Change to LGPL.
38387
38388 2006-07-30  Bruno Haible  <bruno@clisp.org>
38389
38390         * modules/javaversion (Makefile.am): Distribute javaversion.java and
38391         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
38392         set PKGDATADIR to point to it.
38393
38394 2006-07-30  Bruno Haible  <bruno@clisp.org>
38395
38396         * modules/csharpexec (configure.ac): Comment out macro invocation.
38397         * modules/javaexec (configure.ac): Likewise.
38398         * modules/javacomp-script (configure.ac): Likewise.
38399
38400         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
38401
38402 2006-07-30  Bruno Haible  <bruno@clisp.org>
38403
38404         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
38405         linked-list.
38406
38407 2006-07-30  Bruno Haible  <bruno@clisp.org>
38408
38409         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
38410
38411 2006-07-30  Bruno Haible  <bruno@clisp.org>
38412
38413         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38414         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
38415         get removed.
38416
38417 2006-07-29  Bruno Haible  <bruno@clisp.org>
38418
38419         Make it possible for gnulib-tool to work with locally modified or
38420         augmented gnulib repositories.
38421         * gnulib-tool (func_usage): Document --local-dir option.
38422         (local_gnulib_dir): New variable.
38423         Handle --local-dir option.
38424         (func_lookup_file): New function.
38425         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
38426         (func_get_description, func_get_filelist, func_get_description,
38427         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
38428         func_get_automake_snippet, func_get_include_directive,
38429         func_get_license, func_get_maintainer): Use func_lookup_file.
38430         (func_import, func_create_testdir): Use func_lookup_file.
38431
38432 2006-07-29  Bruno Haible  <bruno@clisp.org>
38433
38434         * modules/setenv (Depends-on): Add unistd.
38435
38436 2006-07-29  Bruno Haible  <bruno@clisp.org>
38437
38438         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
38439
38440 2006-07-29  Bruno Haible  <bruno@clisp.org>
38441
38442         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
38443
38444 2006-07-29  Bruno Haible  <bruno@clisp.org>
38445
38446         * gnulib-tool (import, update): If there is no Makefile.am, look at
38447         aclocal.m4, instead of bailing out.
38448
38449 2006-07-29  Bruno Haible  <bruno@clisp.org>
38450
38451         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
38452         Categorize the options by when they are useful.
38453
38454 2006-07-29  Bruno Haible  <bruno@clisp.org>
38455
38456         * gnulib-tool (func_usage): Document option --no-libtool.
38457         Handle option --no-libtool.
38458         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
38459         for changed semantics of $libtool variable.
38460         (func_import): Likewise. If libtool is not used, show this through
38461         an option --no-libtool.
38462         (func_create_testdir): Update.
38463
38464 2006-07-29  Bruno Haible  <bruno@clisp.org>
38465
38466         * gnulib-tool (func_import): Extend error message about missing
38467         --doc-base.
38468
38469 2006-07-29  Bruno Haible  <bruno@clisp.org>
38470
38471         * gnulib-tool (func_import): Don't create the $docbase directory if
38472         there is no file to store there.
38473
38474 2006-07-29  Bruno Haible  <bruno@clisp.org>
38475
38476         * gnulib-tool (autoconf_minversion): If a --dir option is given and
38477         relevant, look for configure.ac there, not in the current directory.
38478         Also use a simple search for AC_PREREQ, not "autoconf --trace".
38479
38480 2006-07-29  Bruno Haible  <bruno@clisp.org>
38481
38482         * gnulib-tool (SORT): New variable.
38483         (func_usage): Undocument --assume-autoconf option.
38484         Remove --assume-autoconf option handling.
38485         (autoconf_minversion): Determine from the contents of configure.ac.
38486         (func_import): Remove autoconf_minversion handling.
38487         Suggested by Eric Blake.
38488
38489 2006-07-29  Bruno Haible  <bruno@clisp.org>
38490
38491         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
38492
38493 2006-07-29  Bruno Haible  <bruno@clisp.org>
38494
38495         * config/srclist.txt (*setenv.[ch]): Remove rules.
38496
38497 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38498
38499         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
38500
38501 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38502
38503         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
38504         arpa/inet.h.
38505
38506 2006-07-28  Simon Josefsson  <jas@extundo.com>
38507
38508         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
38509         * modules/inet_pton (Depends-on): Likewise.
38510
38511 2006-07-28  Simon Josefsson  <jas@extundo.com>
38512
38513         * m4/netinet_in_h.m4: New file.
38514
38515 2006-07-28  Simon Josefsson  <jas@extundo.com>
38516
38517         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
38518         #include's.
38519
38520 2006-07-28  Simon Josefsson  <jas@extundo.com>
38521
38522         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
38523         #include's.
38524
38525 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
38526
38527         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
38528         setgid on directories only if they set these bits.
38529         * lib/modechange.h: Remove obsolete comment about masks.
38530
38531 2006-07-28  Eric Blake  <ebb9@byu.net>
38532
38533         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
38534         macro expansion.
38535
38536 2006-07-28  Bruno Haible  <bruno@clisp.org>
38537
38538         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
38539
38540 2006-07-28  Bruno Haible  <bruno@clisp.org>
38541
38542         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
38543
38544 2006-07-28  Bruno Haible  <bruno@clisp.org>
38545
38546         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
38547         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
38548         Define fallbacks.
38549         Avoids link error on FreeBSD 4.x.
38550         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
38551
38552         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
38553         encoding.
38554         * lib/mbswidth.c (iswcntrl): Likewise.
38555
38556 2006-07-27  Bruno Haible  <bruno@clisp.org>
38557
38558         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
38559         test.
38560
38561 2006-07-27  Bruno Haible  <bruno@clisp.org>
38562
38563         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
38564         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
38565         defined.
38566
38567 2006-07-26  Eric Blake  <ebb9@byu.net>
38568
38569         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
38570
38571 2006-07-26  Eric Blake  <ebb9@byu.net>
38572
38573         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
38574         like mingw that lack mkstemp.
38575         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
38576         avoid compilation warning on mingw.
38577
38578 2006-07-26  Bruno Haible  <bruno@clisp.org>
38579
38580         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
38581         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
38582         INT_FAST*_MIN, INTPTR_MIN.
38583
38584 2006-07-25  Bruno Haible  <bruno@clisp.org>
38585
38586         * modules/version-etc (Depends-on): Add stdarg.
38587
38588 2006-07-25  Bruno Haible  <bruno@clisp.org>
38589
38590         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
38591         complex commands.
38592
38593 2006-07-25  Bruno Haible  <bruno@clisp.org>
38594
38595         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
38596         defined in <stdarg.h> or config.h.
38597
38598 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
38599
38600         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
38601         (gl_STDIO_SAFER): Remove.
38602
38603 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
38604
38605         * MODULES.html.sh (File stream based Input/Output):
38606         Add fopen-safer, tmpfile-safer; remove stdio-safer.
38607         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
38608         * modules/fopen-safer, modules/tmpfile-safer: New files.
38609         * modules/stdio-safer: Remove.
38610
38611 2006-07-24  Bruno Haible  <bruno@clisp.org>
38612
38613         * modules/tmpdir: New file.
38614         * MODULES.html.sh (File system functions): Add it.
38615
38616 2006-07-24  Bruno Haible  <bruno@clisp.org>
38617
38618         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
38619         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
38620
38621 2006-07-24  Bruno Haible  <bruno@clisp.org>
38622
38623         * modules/clean-temp: New file.
38624
38625 2006-07-24  Bruno Haible  <bruno@clisp.org>
38626
38627         * m4/tmpdir.m4: New file, from GNU gettext.
38628
38629 2006-07-24  Bruno Haible  <bruno@clisp.org>
38630
38631         * lib/tmpdir.h: New file, from GNU gettext.
38632         * lib/tmpdir.c: New file, from GNU gettext.
38633
38634 2006-07-24  Bruno Haible  <bruno@clisp.org>
38635
38636         * lib/clean-temp.h: New file, from GNU gettext.
38637         * lib/clean-temp.c: New file, from GNU gettext.
38638
38639 2006-07-23  Eric Blake  <ebb9@byu.net>
38640
38641         * modules/stdio-safer (Files): Add tmpfile-safer.c.
38642         (Depends-on): Add binary-io.
38643
38644 2006-07-23  Eric Blake  <ebb9@byu.net>
38645
38646         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
38647
38648 2006-07-23  Eric Blake  <ebb9@byu.net>
38649
38650         * lib/tmpfile-safer.c: New file.
38651         * lib/stdio-safer.h (fopen_safer): Add prototype.
38652         * lib/stdio--.h (tmpfile): Make safer.
38653
38654 2006-07-23  Bruno Haible  <bruno@clisp.org>
38655
38656         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
38657         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
38658         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
38659         gl_linked_remove_at): Use it.
38660
38661 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38662         and Simon Josefsson <jas@extundo.com>
38663
38664         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
38665
38666         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
38667
38668 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38669
38670         * modules/close-stream: New file.
38671         * modules/closeout (Description): Make it clear that it exits
38672         with a diagnostic on error.
38673         (Depends-on): Add close-stream.  Remove fpending, stdbool.
38674         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
38675
38676 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38677
38678         * m4/close-stream.m4: New file.
38679
38680 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38681
38682         * lib/close-stream.c, lib/close-stream.h: New files.
38683
38684 2006-07-22  Bruno Haible  <bruno@clisp.org>
38685
38686         Merge from GNU gettext 0.15.
38687
38688         2006-05-01  Bruno Haible  <bruno@clisp.org>
38689
38690                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
38691
38692         2006-07-22  Bruno Haible  <bruno@clisp.org>
38693
38694                 * modules/javaversion: New file.
38695                 * MODULES.html.sh (Java): Add javaversion.
38696
38697         2006-03-12  Bruno Haible  <bruno@clisp.org>
38698
38699                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
38700
38701         2005-12-04  Bruno Haible  <bruno@clisp.org>
38702
38703                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
38704                 (untested).
38705
38706         2006-06-21  Bruno Haible  <bruno@clisp.org>
38707
38708                 Avoid warnings from recent versions of mcs.
38709                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
38710                 -o, -L, -r any more. Use options documented since mcs-1.0
38711                 instead. Similarly for -g.
38712
38713         2005-12-04  Bruno Haible  <bruno@clisp.org>
38714
38715                 * build-aux/csharpcomp.sh.in: Suffix for resources is
38716                 .resources, not .resource.
38717
38718         2005-07-09  Bruno Haible  <bruno@clisp.org>
38719
38720                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
38721                 add a .dll suffix.
38722                 Reported by Mark Junker <mjscod@gmx.de>.
38723
38724         2006-07-22  Bruno Haible  <bruno@clisp.org>
38725
38726                 * modules/gettext: Upgrade to gettext-0.15.
38727                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
38728                 m4/visibility.m4.
38729                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
38730
38731 2006-07-22  Bruno Haible  <bruno@clisp.org>
38732
38733         Merge from GNU gettext 0.15.
38734
38735         2006-03-25  Bruno Haible  <bruno@clisp.org>
38736
38737                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
38738
38739         2006-07-21  Bruno Haible  <bruno@clisp.org>
38740
38741                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
38742                 "1.1".
38743
38744         2006-05-09  Bruno Haible  <bruno@clisp.org>
38745
38746                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
38747                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
38748                 for the conftestver execution.
38749
38750         2006-05-01  Bruno Haible  <bruno@clisp.org>
38751
38752                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
38753                 optional target-version argument. Verify that the compiler
38754                 groks source of the specified source-version, or add -source
38755                 option as necessary. Verify that the compiler produces
38756                 bytecode in the specified target-version, or add -target and
38757                 -source options as necessary. Make the result of the test
38758                 available as variable CONF_JAVAC. Also log error output in
38759                 config.log.
38760
38761         2006-03-11  Bruno Haible  <bruno@clisp.org>
38762
38763                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
38764
38765         2006-05-09  Bruno Haible  <bruno@clisp.org>
38766
38767                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
38768                 CLASSPATH_SEPARATOR to a semicolon.
38769
38770         2006-03-12  Bruno Haible  <bruno@clisp.org>
38771
38772                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
38773                 available as variable CONF_JAVA, for subsequent autoconf
38774                 tests. Also log error output in config.log.
38775
38776         2006-07-19  Bruno Haible  <bruno@clisp.org>
38777
38778                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
38779                 that getline works on glibc2 systems. Needed to avoid trouble
38780                 in relocatable.c.
38781                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
38782
38783         2005-12-04  Bruno Haible  <bruno@clisp.org>
38784
38785                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
38786                 launcher (untested).
38787
38788         2005-12-04  Bruno Haible  <bruno@clisp.org>
38789
38790                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
38791
38792         2006-07-22  Bruno Haible  <bruno@clisp.org>
38793
38794                 * gettext.m4: Update from GNU gettext-0.15.
38795                 * nls.m4: Likewise.
38796                 * po.m4: Likewise.
38797                 * inttypes-pri.m4: Likewise.
38798                 * inttypes-h.m4: Renamed from inttypes.m4.
38799                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
38800
38801 2006-07-22  Bruno Haible  <bruno@clisp.org>
38802
38803         Merge from GNU gettext 0.15.
38804
38805         2005-07-05  Bruno Haible  <bruno@clisp.org>
38806
38807                 * printf-args.c (printf_fetchargs): Work around broken
38808                 definition of wint_t on mingw.
38809
38810         2005-02-12  Bruno Haible  <bruno@clisp.org>
38811
38812                 * xallocsa.h: Add extern "C" for C++.
38813
38814         2006-05-17  Bruno Haible  <bruno@clisp.org>
38815
38816                 Cygwin portability.
38817                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
38818
38819         2006-04-30  Bruno Haible  <bruno@clisp.org>
38820
38821                 * progreloc.c: Include <mach-o/dyld.h> if available.
38822                 (find_executable): Use _NSGetExecutablePath when possible.
38823
38824         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
38825
38826                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
38827                 function.
38828
38829         2005-12-29  Bruno Haible  <bruno@clisp.org>
38830
38831                 * progreloc.c (set_program_name_and_installdir): Fix
38832                 compilation error.
38833
38834         2005-12-04  Bruno Haible  <bruno@clisp.org>
38835
38836                 Cygwin portability.
38837                 * progreloc.c: Include <windows.h> also on Cygwin.
38838                 (find_executable): Add support for Cygwin.
38839                 (set_program_name_and_installdir): Handle also platforms with
38840                 nonempty EXEEXT.
38841
38842         2006-07-11  Bruno Haible  <bruno@clisp.org>
38843
38844                 * javacomp.c: Fix a comment.
38845                 Reported by Jim Meyering.
38846
38847         2006-04-30  Bruno Haible  <bruno@clisp.org>
38848
38849                 * javacomp.h (compile_java_class): Add source_version,
38850                 target_version arguments.
38851                 * javacomp.c: Rewritten to choose only a compiler that
38852                 respects the specified source_version and target_version.
38853
38854         2006-06-27  Bruno Haible  <bruno@clisp.org>
38855
38856                 Assume correct S_ISDIR macro.
38857                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
38858
38859         2006-07-22  Bruno Haible  <bruno@clisp.org>
38860
38861                 * javaversion.h: New file, from GNU gettext.
38862                 * javaversion.c: New file, from GNU gettext.
38863                 * javaversion.java: New file, from GNU gettext.
38864                 * javaversion.class: New file, from GNU gettext.
38865
38866         2006-05-17  Bruno Haible  <bruno@clisp.org>
38867
38868                 Cygwin portability.
38869                 * javaexec.c (execute_java_class): Test for jview program
38870                 also on Cygwin.
38871
38872         2006-04-09  Bruno Haible  <bruno@clisp.org>
38873
38874                 * fatal-signal.c: Don't include string.h.
38875                 (at_fatal_signal): Use a copying loop instead of memcpy.
38876
38877         2005-12-04  Bruno Haible  <bruno@clisp.org>
38878
38879                 * csharpexec.c: Add support for 'clix' launcher (untested).
38880                 (execute_csharp_using_sscli): New function.
38881                 (execute_csharp_program): Call it.
38882
38883         2006-06-21  Bruno Haible  <bruno@clisp.org>
38884
38885                 Avoid warnings from recent versions of mcs.
38886                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
38887                 -o, -L, -r any more. Use options documented since mcs-1.0
38888                 instead. Similarly for -g.
38889
38890         2005-07-09  Bruno Haible  <bruno@clisp.org>
38891
38892                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
38893                 add a .dll suffix.
38894                 Reported by Mark Junker <mjscod@gmx.de>.
38895
38896         2006-06-17  Bruno Haible  <bruno@clisp.org>
38897
38898                 * config.charset: Update for NetBSD 3.0.
38899
38900         2006-05-17  Bruno Haible  <bruno@clisp.org>
38901
38902                 Cygwin portability.
38903                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
38904
38905         2006-05-16  Bruno Haible  <bruno@clisp.org>
38906
38907                 * localcharset.c [CYGWIN]: Include <windows.h>.
38908                 (get_charset_aliases): For Cygwin, return the same CPxxx
38909                 aliases list as under WIN32.
38910                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
38911                 the environment variables. Fall back to GetACP().
38912
38913         2006-04-05  Bruno Haible  <bruno@clisp.org>
38914
38915                 * config.charset: Update Juan Manuel Guerrero's address.
38916
38917         2005-02-12  Bruno Haible  <bruno@clisp.org>
38918
38919                 * allocsa.h: Add extern "C" for C++.
38920
38921         2005-02-10  Bruno Haible  <bruno@clisp.org>
38922
38923                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
38924                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
38925
38926         2006-07-22  Bruno Haible  <bruno@clisp.org>
38927
38928                 * gettext.h: Update to GNU gettext-0.15.
38929
38930 2006-07-22  Bruno Haible  <bruno@clisp.org>
38931
38932         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
38933         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
38934         lib-prefix.m4, longdouble.m4, ssize_t.m4.
38935
38936 2006-07-21  Eric Blake  <ebb9@byu.net>
38937
38938         * modules/stdlib-safer: New file.
38939         * MODULES.html.sh (File stream based Input/Output): Add
38940         stdlib-safer.
38941
38942 2006-07-21  Eric Blake  <ebb9@byu.net>
38943
38944         * lib/stdlib-safer.h: New file from coreutils, required by
38945         stdlib--.h.
38946
38947 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
38948
38949         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
38950
38951 2006-07-20  Bruno Haible  <bruno@clisp.org>
38952
38953         * gnulib-tool: Recognize new option --assume-autoconf.
38954         (autoconf_minversion): New variable.
38955         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
38956
38957 2006-07-20  Bruno Haible  <bruno@clisp.org>
38958
38959         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
38960
38961 2006-07-19  Derek R. Price  <derek@ximbiot.com>
38962
38963         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
38964         Reindent and repaginate.
38965
38966 2006-07-19  Derek Price  <derek@ximbiot.com>
38967
38968         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
38969         Correct grammar.
38970
38971 2006-07-17  Bruno Haible  <bruno@clisp.org>
38972
38973         * modules/list: New file.
38974         * modules/array-list: New file.
38975         * modules/carray-list, modules/carray-list-tests: New files.
38976         * modules/linked-list, modules/linked-list-tests: New files.
38977         * modules/avltree-list, modules/avltree-list-tests: New files.
38978         * modules/rbtree-list, modules/rbtree-list-tests: New files.
38979         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
38980         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
38981         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
38982         * modules/oset: New file.
38983         * modules/array-oset: New file.
38984         * modules/avltree-oset, modules/avltree-oset-tests: New files.
38985         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
38986         * tests/test-carray_list.c: New file.
38987         * tests/test-linked_list.c: New file.
38988         * tests/test-avltree_list.c: New file.
38989         * tests/test-rbtree_list.c: New file.
38990         * tests/test-linkedhash_list.c: New file.
38991         * tests/test-avltreehash_list.c: New file.
38992         * tests/test-rbtreehash_list.c: New file.
38993         * tests/test-avltree_oset.c: New file.
38994         * tests/test-rbtree_oset.c: New file.
38995         * MODULES.html.sh (Container data structures): New section.
38996
38997 2006-07-17  Bruno Haible  <bruno@clisp.org>
38998
38999         * m4/gl_list.m4: New file.
39000
39001 2006-07-17  Bruno Haible  <bruno@clisp.org>
39002
39003         * lib/gl_list.h: New file.
39004         * lib/gl_list.c: New file.
39005         * lib/gl_array_list.h: New file.
39006         * lib/gl_array_list.c: New file.
39007         * lib/gl_carray_list.h: New file.
39008         * lib/gl_carray_list.c: New file.
39009         * lib/gl_linked_list.h: New file.
39010         * lib/gl_linked_list.c: New file.
39011         * lib/gl_anylinked_list1.h: New file.
39012         * lib/gl_anylinked_list2.h: New file.
39013         * lib/gl_avltree_list.h: New file.
39014         * lib/gl_avltree_list.c: New file.
39015         * lib/gl_anyavltree_list1.h: New file.
39016         * lib/gl_anyavltree_list2.h: New file.
39017         * lib/gl_rbtree_list.h: New file.
39018         * lib/gl_rbtree_list.c: New file.
39019         * lib/gl_anyrbtree_list1.h: New file.
39020         * lib/gl_anyrbtree_list2.h: New file.
39021         * lib/gl_anytree_list1.h: New file.
39022         * lib/gl_anytree_list2.h: New file.
39023         * lib/gl_linkedhash_list.h: New file.
39024         * lib/gl_linkedhash_list.c: New file.
39025         * lib/gl_anyhash_list1.h: New file.
39026         * lib/gl_anyhash_list2.h: New file.
39027         * lib/gl_avltreehash_list.h: New file.
39028         * lib/gl_avltreehash_list.c: New file.
39029         * lib/gl_rbtreehash_list.h: New file.
39030         * lib/gl_rbtreehash_list.c: New file.
39031         * lib/gl_anytreehash_list1.h: New file.
39032         * lib/gl_anytreehash_list2.h: New file.
39033
39034         * lib/gl_oset.h: New file.
39035         * lib/gl_oset.c: New file.
39036         * lib/gl_array_oset.h: New file.
39037         * lib/gl_array_oset.c: New file.
39038         * lib/gl_avltree_oset.h: New file.
39039         * lib/gl_avltree_oset.c: New file.
39040         * lib/gl_rbtree_oset.h: New file.
39041         * lib/gl_rbtree_oset.c: New file.
39042         * lib/gl_anytree_oset.h: New file.
39043
39044 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39045
39046         * m4/mkancesdirs.m4: New file.
39047         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
39048         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
39049         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
39050         it.
39051
39052 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39053
39054         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
39055         * lib/mkancesdirs.h: New files.
39056         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
39057         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
39058         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
39059         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
39060         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
39061         callers changed.  Revamp internals significantly, by not
39062         attempting to create directories that are temporarily more
39063         permissive than the final results.  Do not attempt to use
39064         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
39065         This removes some race conditions, fixes some bugs, and simplifies
39066         things.  Use new dirchownmod function to do owner and mode changes.
39067         * lib/mkdir-p.h: Likewise.
39068         * lib/modechange.c (octal_to_mode): New function.
39069         (struct mode_change): New member mentioned.
39070         (make_node_op_equals): New arg mentioned.  All callers changed.
39071         (mode_compile): Keep track of which mode bits the user has explicitly
39072         mentioned.
39073         (mode_adjust): New arg DIR, so that we implement the X op correctly.
39074         New arg PMODE_BITS, to keep track of which mode bits the user
39075         mentioned; it treats S_ISUID and S_ISGID speciall.
39076         All callers changed.
39077         * lib/modechange.h: Likewise.
39078
39079 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39080
39081         * MODULES.html.sh: Add mkancestors.
39082         * modules/mkancesdirs: New module.
39083         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
39084         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
39085         The chdir-safer and afs files are now orphans; I'll remove them
39086         unless someone speaks up.
39087         Add lib/dirchownmod.c, lib/dirchownmod.h.
39088         (Depends-on): Remove alloca, chown, save-cwd, dirname.
39089         Add lchown, mkancesdirs.
39090         (Maintainer): Add self.
39091
39092 2006-07-15  Karl Berry  <karl@gnu.org>
39093
39094         * gnulib-tool: help message wording/arrangement.
39095
39096 2006-07-14  Simon Josefsson  <jas@extundo.com>
39097
39098         * doc/gnulib.texi (Libtool and Windows): New section.
39099
39100 2006-07-12  Simon Josefsson  <jas@extundo.com>
39101
39102         * modules/gendocs (License): Fix license, approved by Karl.
39103
39104 2006-07-12  Eric Blake  <ebb9@byu.net>
39105
39106         * MODULES.html.sh: Add gendocs.
39107
39108 2006-07-11  Eric Blake  <ebb9@byu.net>
39109
39110         * modules/fdl: New module, to install doc/fdl.texi.
39111         * MODULES.html.sh: Add new section for documentation modules.
39112         * gnulib-tool: Avoid space-tab.
39113         (--doc-base): New option, to manage files from doc.
39114
39115 2006-07-11  Eric Blake  <ebb9@byu.net>
39116
39117         * m4/absolute-header.m4: Fix comments to match recent change.
39118
39119 2006-07-11  Eric Blake  <ebb9@byu.net>
39120
39121         * gnulib-tool: List --doc-base before --tests-base.
39122
39123 2006-07-11  Derek R. Price  <derek@ximbiot.com>
39124
39125         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
39126
39127 2006-07-11  Bruno Haible  <bruno@clisp.org>
39128
39129         * README: Mention where to put documentation.
39130
39131 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39132
39133         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
39134
39135 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
39136
39137         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
39138         to stdint.m4.
39139
39140 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
39141
39142         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
39143         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
39144         "no/such/file/stdint.h" when there is no such file, so that
39145         the resulting C code can be parsed by dodgy compilers.
39146         Problems reported by Bob Proulx.
39147
39148 2006-07-10  Derek R. Price  <derek@ximbiot.com>
39149
39150         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
39151         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
39152         macros into the GNU _D_EXACT_NAMLEN.
39153         * lib/savedir.c:  Likewise.
39154         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
39155
39156 2006-07-10  Derek R. Price  <derek@ximbiot.com>
39157         and Paul Eggert  <eggert@cs.ucla.edu>
39158
39159         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
39160         * m4/savedir.m4:
39161         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
39162         macros into the GNU _D_EXACT_NAMLEN.
39163
39164 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39165
39166         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
39167         around the absolute name, to work around a problem with the HP-UX
39168         11.23 native C compiler, reported by Bob Proulx.
39169
39170 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39171
39172         * doc/maintain.texi, make-stds.texi: Sync from
39173         <http://savannah.gnu.org/projects/gnustandards>.
39174
39175 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39176
39177         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
39178
39179 2006-07-09  Jim Meyering  <jim@meyering.net>
39180
39181         * m4/glob.m4: Remove a doubled word in a comment.
39182
39183 2006-07-09  Jim Meyering  <jim@meyering.net>
39184
39185         * lib/argp-pv.c: Remove a doubled word in a comment.
39186         * lib/check-version.c (check_version): Likewise.
39187         * lib/javacomp.c (compile_java_class): Likewise.
39188
39189 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
39190
39191         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
39192         for the benefit of people using Autoconf 2.60.  If you want to
39193         support older Autoconf versions you can copy m4/onceonly_2_57.m4
39194         (or m4/onceonly.m4, if pre-2.57) manually.
39195
39196 2006-07-08  Jim Meyering  <jim@meyering.net>
39197
39198         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
39199         comment.
39200         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
39201         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
39202         comment.
39203
39204 2006-07-08  Jim Meyering  <jim@meyering.net>
39205
39206         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
39207
39208 2006-07-07  Simon Josefsson  <jas@extundo.com>
39209
39210         * tests/test-crc.c: Change expected crc value, the test vector
39211         were probably computed using the old broken crc.c?
39212
39213 2006-07-06  Simon Josefsson  <jas@extundo.com>
39214
39215         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
39216         now the canonical place for the M4 file).
39217
39218         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
39219         from the sys_socket dependency now.
39220
39221         * modules/inet_pton (Files): Ditto.
39222
39223         * modules/inet_ntop (Files): Ditto.
39224
39225 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
39226
39227         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
39228         not gl_PREREQ_GETUSERSHELL.
39229
39230 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39231
39232         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
39233         with only one argument, for Autoconf 2.60.
39234         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
39235         expand to nothing, so add a shell command to avoid syntax error.
39236         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
39237
39238 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39239
39240         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
39241
39242 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39243
39244         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
39245         no longer needed.  Check for isblank decl.
39246         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
39247         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
39248         of existence.
39249
39250 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39251
39252         * lib/getloadavg.c: Use __VMS, not VMS.
39253         * lib/getopt.c: Likewise.
39254         * lib/getpagesize.h: Likewise.
39255         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
39256         and probably does not work.
39257
39258 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39259
39260         * lib/.cppi-disable: Add wcwidth.
39261         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
39262         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
39263         (ISGRAPH): Remove.  All uses changed to isgraph.
39264         (FOLD) [!defined _LIBC]: Remove special case.
39265         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
39266         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
39267         HAVE_ISBLANK.
39268         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
39269         case.
39270
39271 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
39272
39273         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
39274         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
39275         brackets.  Other minor changes to suppress some compiler
39276         warnings.
39277
39278 2006-07-06  Derek R. Price  <derek@ximbiot.com>
39279         and Paul Eggert  <eggert@cs.ucla.edu>
39280
39281         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
39282         of invoking obsolescent AC_HEADER_DIRENT macro.
39283         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
39284         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
39285         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
39286         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
39287         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
39288         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
39289         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
39290         * m4/readdir.m4: Remove; no longer needed.
39291
39292 2006-07-06  Derek R. Price  <derek@ximbiot.com>
39293         and Paul Eggert  <eggert@cs.ucla.edu>
39294
39295         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
39296         Don't worry about this obsolete case any more.
39297         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
39298         directories.
39299         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
39300         worry about this obsolete case any more.
39301         * lib/fts.c: Likewise.
39302         * lib/getcwd.c: Likewise.
39303         * lib/glob.h: Likewise.
39304         * lib/savedir.c: Likewise.
39305
39306 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39307
39308         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
39309         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
39310         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
39311         needed.
39312         All uses removed.
39313         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39314         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
39315         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
39316         needed.
39317         * m4/getdate.m4 (gl_GETDATE): Likewise.
39318         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
39319         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
39320         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
39321         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39322         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
39323         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39324         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
39325         needed.
39326
39327 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39328
39329         * lib/memcasecmp.c: Include <limits.h>.
39330         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
39331         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
39332         Don't assume isdigit succeeds only on '0' through '9'.
39333
39334 2006-07-05  Eric Blake  <ebb9@byu.net>
39335
39336         * modules/getaddrinfo (Depends-on): Add snprintf.
39337
39338 2006-07-05  Eric Blake  <ebb9@byu.net>
39339
39340         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
39341         to avoid 'header present but could not be compiled' on cygwin.
39342
39343 2006-07-05  Eric Blake  <ebb9@byu.net>
39344
39345         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
39346         missing from netdb.h.
39347         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
39348
39349 2006-07-05  Derek R. Price  <derek@ximbiot.com>
39350
39351         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
39352         no longer needed.
39353         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
39354         * m4/getdate.m4 (gl_GETDATE): Likewise.
39355         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
39356         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
39357         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
39358         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39359         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39360
39361 2006-07-05  Derek R. Price  <derek@ximbiot.com>
39362
39363         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
39364         All uses of is_space replaced by isspace.
39365         * lib/exit.h: Don't talk about STDC_HEADERS.
39366         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
39367         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
39368         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
39369         replaced by isprint etc.
39370         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
39371         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
39372         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
39373         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
39374         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
39375         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
39376
39377 2006-07-05  Bruno Haible  <bruno@clisp.org>
39378
39379         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
39380         the function exists, before testing against AIX.
39381         Reported by Martin Lambers <marlam@marlam.de>.
39382
39383 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
39384
39385         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
39386         From Mark D. Baushke.
39387
39388 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
39389
39390         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
39391         to the absolute name, not just one, to bypass Sun C 5.8's
39392         "warning: #include of /usr/include/... may be non-portable".
39393
39394 2006-07-04  Eric Blake  <ebb9@byu.net>
39395
39396         * modules/dirname-tests: New test module.
39397         * tests/test-dirname.c: New file, replacing dirname.c
39398         TEST_DIRNAME section that was recently deleted.
39399
39400 2006-07-04  Bruno Haible  <bruno@clisp.org>
39401
39402         Assume ANSI C header files and <ctype.h> functions.
39403         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
39404         (mbsnwidth): Use isprint, iscntrl instead.
39405
39406 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39407
39408         Merge from coreutils.
39409         * MODULES.html.sh: Add xstrtold.
39410         * modules/xstrtold: New file.
39411         * modules/cycle-check (Files): Add lib/same-inode.h.
39412         * modules/dirname (Files): Add m4/double-slash-root.m4.
39413         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
39414         * modules/mkdir-p (Files): Add lib/same-inode.h.
39415         * modules/same (Files): Add lib/same-inode.h.
39416
39417 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39418
39419         * m4/absolute-header.m4: Renamed from full-header-path.m4.
39420         This is to keep the terminology clean; POSIX talks about
39421         "absolute pathnames", not "full pathnames", but the GNU
39422         Coding Standards say to use "path" for something else;
39423         so use "absolute" to keep both sides happy.
39424         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
39425         Set gl_absolute_header, not gl_full_header_path.
39426         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
39427         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
39428         All uses changed.
39429
39430         Merge from coreutils.
39431
39432         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
39433
39434         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
39435         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
39436         want to require the building of c-strtod.o.
39437         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
39438         needs -lm directly.
39439         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
39440
39441         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
39442
39443         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
39444         --as-needed option if available.  Problem reported by Albert Chin in
39445         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
39446         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
39447         cc merely issues a bunch of annoying warnings for --as-needed
39448         (this problem was reported by Bob Proulx).  Also, try linking with
39449         -lm to detect a bug in binutils 2.16 (this problem was reported
39450         by Ralf Wildenhues).
39451
39452         2006-06-18  Jim Meyering  <jim@meyering.net>
39453
39454         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
39455         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
39456         macro.
39457         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
39458         also check for glibc-2.4's abort-inducing bug.
39459
39460         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
39461         Low-probability clean-up should be to use rmdir to get rid of
39462         the just-created directory, not unlink.
39463
39464         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
39465         configure fail, and request a bug report to inform us about it.
39466         Add a comment that, barring reports to the contrary, in 2007 we'll
39467         assume ftruncate is universally available.
39468
39469         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
39470
39471         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
39472
39473         2006-03-12  Jim Meyering  <jim@meyering.net>
39474
39475         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
39476         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
39477         * m4/same.m4 (gl_SAME): Likewise.
39478         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
39479
39480         2006-03-11  Eric Blake  <ebb9@byu.net>
39481
39482         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
39483         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
39484         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
39485         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
39486
39487 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39488
39489         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
39490         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
39491         reported by Mark D. Baushke, one in
39492         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
39493
39494         Merge from coreutils.
39495
39496         * lib/.cppi-disable: Add stdint_.h.
39497         * lib/.cvsignore: Add stdint.h.
39498
39499         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
39500
39501         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
39502         both double and long double versions.
39503         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
39504         * lib/xstrtold.c: New file.
39505         * lib/xstrtod.h (xstrtold): New decl.
39506
39507         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
39508
39509         * lib/filemode.c (setst): Remove.
39510         (strmode): Rewrite to avoid setst.  This makes the code shorter,
39511         (arguably) clearer, and the generated code is a bit smaller on my
39512         Debian GNU/Linux stable x86 host.
39513
39514         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
39515
39516         * lib/filemode.c: Include "filemode.h" first, to test the interface.
39517         Assume that filemode.h includes sys/types.h and sys/stat.h.
39518         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
39519         (ftypelet): Reorder to put common cases first, for efficiency.
39520         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
39521         to do 'M'.
39522         (strmode): Renamed from mode_string, and now stores 12 bytes instead
39523         of 10, for compatibility with FreeBSD.  All callers changed.
39524         (filemodestring): Now stores 12 bytes instead of 10, and sets file
39525         types that can't be deduced solely from st_mode.  First arg is now a
39526         const pointer.
39527         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
39528         (strmode): Renamed from mode_string.
39529         (filemodestring): New decl.
39530         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
39531         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
39532         needed.
39533         (S_ISPORT, S_ISWHT): New macros, if not already defined.
39534
39535         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
39536
39537         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
39538         fsusage.h now does that.  Include fsusage.h first, to test interface.
39539         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
39540         at most one method (the old code could have generated decls that
39541         didn't conform to C89, not that this was ever exercised).
39542         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
39543
39544         2006-03-19  Jim Meyering  <jim@meyering.net>
39545
39546         Work even in a chroot where d_ino values for entries in "/"
39547         don't match the stat.st_ino values for the same names.
39548         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
39549         number, iterate through all entries again, using lstat instead.
39550         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
39551         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
39552
39553         * lib/getcwd.c (__getcwd): Clarify a comment.
39554         Use memcpy in place of a call to strcpy.
39555
39556         2006-03-12  Jim Meyering  <jim@meyering.net>
39557
39558         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
39559         matches that of the current directory (which we're about to chdir ".."
39560         out of), then save the dev-ino of the parent, instead.
39561
39562         * lib/same-inode.h (SAME_INODE): New file/macro.
39563         * lib/chdir-safer.c (SAME_INODE): Remove definition.
39564         Include "same-inode.h", instead.
39565         * lib/same.c: Likewise.
39566         * lib/cycle-check.h: Include "same-inode.h".
39567         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
39568         * lib/cycle-check.c (SAME_INODE): Remove definition.
39569         * lib/root-dev-ino.h: Include "same-inode.h".
39570
39571         2006-03-11  Eric Blake  <ebb9@byu.net>
39572
39573         * lib/same.c (same_name): s/base_name/last_component/
39574         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
39575         * lib/filenamecat.c (file_name_concat): Likewise.
39576
39577         2006-03-11  Eric Blake  <ebb9@byu.net>,
39578                     Paul Eggert  <eggert@cs.ucla.edu>
39579
39580         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
39581         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
39582         drive prefix.
39583         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
39584         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
39585         (last_component): New method.
39586         * lib/dirname.c (dir_len): Determine when drive letters need a
39587         subsequent slash.  Preserve // when it is special.
39588         (dir_name): Don't append dot when drive letter is absolute.
39589         [TEST_DIRNAME]: Move into a full-blown gnulib test.
39590         * lib/basename.c (base_name): New semantics - malloc the result.
39591         Preserve // when it is special.  Preserve relative files that look
39592         like drive letters.
39593         (base_len): Preserve // when it is special.
39594         (last_component): New method, similar to old base_name semantics.
39595         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
39596         base_name.  Strip redundant slashes from ///.
39597
39598 2006-07-03  Jim Meyering  <jim@meyering.net>
39599
39600         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
39601         macro is used before the first cycle_check call.
39602
39603 2006-07-03  Eric Blake  <ebb9@byu.net>
39604
39605         * modules/dirname (Depends-on): Add xstrndup.
39606
39607 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
39608
39609         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
39610         test cases, so that config.log is a bit easier to follow.
39611
39612 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
39613
39614         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
39615         both are 64 bits, since this seems to be the tradition, and this
39616         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
39617         we ever run into a host that prefers long long to long in this
39618         case, we'll need another configure-time test.  Problem reported by
39619         Jim Meyering.
39620
39621 2006-07-02  Eric Blake  <ebb9@byu.net>
39622
39623         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
39624
39625 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39626
39627         * modules/inttypes (Depends-on): No longer depends on stdint.
39628         * modules/stdint (Description): Say more about assumptions.
39629         Say that the fast types might differ.  Say macros are used.
39630         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
39631         (Makefile.am): Revise list of substituted symbols to match
39632         new stdint.m4.
39633         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
39634         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
39635         * tests/test-stdint.c (verify_same_types)
39636         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
39637         the code conforms to C99/C89.
39638         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
39639         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
39640
39641 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39642
39643         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
39644         but fix a bug, by requiring at least 64 bits.
39645         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
39646         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
39647         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
39648         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
39649
39650         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
39651         changes.  Make 2.59 a prerequisite.  Check and substitute for
39652         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
39653         inttypes.h.  Do not use special include files; just use the
39654         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
39655         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
39656         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
39657         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
39658         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
39659         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
39660         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
39661         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
39662         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
39663         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
39664         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
39665         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
39666         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
39667         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
39668         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
39669         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
39670         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
39671         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
39672         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
39673         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
39674         WINT_MAX.  Check for C99 conformance more strictly, by detecting
39675         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
39676         not check for things that C99 does not require, e.g., int8_t.  If
39677         a test isn't needed unless <stdint.h> isn't working, and is
39678         unlikely to be needed for any other reason, then don't do it
39679         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
39680         size_t, since we assume C89 freestanding at least.  Do not check
39681         for sig_atomic_t, wchar_t, or wint_t, since the code now does
39682         the right thing even if the types are not defined.  Instead use:
39683         (gl_STDINT_TYPE_PROPERTIES): New macro.
39684         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
39685         testing whether <sys/types.h> clashes, as Autoconf does this for
39686         us now.  All uses removed.
39687         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
39688         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
39689         (gl_CHECK_TYPE_SAME):
39690         Remove; no longer needed.
39691         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
39692         exists, since we'll return 0 anyway in that case.
39693         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
39694
39695 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39696
39697         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
39698         possible collision with system files.
39699         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
39700         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
39701         WCHAR_MIN and WCHAR_MAX in this case.
39702         (<stddef.h>): Do not include; no longer needed.
39703         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
39704         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
39705         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
39706         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
39707         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
39708         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
39709         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
39710         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
39711         !defined(__c99))]: Include in this case too, since it's harmless
39712         now.
39713         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
39714         dangerous to do so.
39715         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
39716         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
39717         (_STDINT_MIN, _STDINT_MAX): New macros.
39718         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
39719         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
39720         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
39721         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
39722         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
39723         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
39724         macros, not typedefs; this simplifies things quite a bit.
39725         Use long int for all types narrower than int64_t.
39726         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
39727         Define in terms of long long int or int64_t or long int,
39728         not int64_t or int32_t.  This saves some compile-time testing.
39729         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
39730         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
39731         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
39732         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
39733         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
39734         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
39735         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
39736         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
39737         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
39738         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
39739         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
39740         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
39741         undef any previous version and define our own version, for
39742         simplicity and consistency with the new macros for types.
39743         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
39744         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
39745         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
39746         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
39747         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
39748         @WINT_T_SUFFIX@ to keep things simple here.
39749         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
39750         Simplify by assuming typical 8/16/32/64 host, since we're
39751         already doing that elsewhere anyway.
39752         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
39753         and assume long long int is 64 bits if available.  This
39754         speeds up 'configure'.
39755
39756 2006-07-01  Eric Blake  <ebb9@byu.net>
39757
39758         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
39759         Reported by Andreas Buening.
39760
39761 2006-07-01  Eric Blake  <ebb9@byu.net>
39762
39763         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
39764
39765 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
39766
39767         * lib/getaddrinfo.c: fixed typo
39768
39769 2006-06-29  Jim Meyering  <jim@meyering.net>
39770
39771         * modules/strftime (Maintainer): Add my name, since with the
39772         FPRINTFTIME changes strftime.c has forked from glibc.
39773
39774 2006-06-29  Eric Blake  <ebb9@byu.net>
39775
39776         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
39777
39778 2006-06-29  Eric Blake  <ebb9@byu.net>
39779
39780         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
39781
39782 2006-06-29  Eric Blake  <ebb9@byu.net>
39783
39784         * lib/stat_.h: New file.
39785
39786 2006-06-29  Eric Blake  <ebb9@byu.net>
39787
39788         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
39789         unused static function.
39790
39791 2006-06-29  Eric Blake  <ebb9@byu.net>
39792
39793         * doc/functions.texi (Function Portability): Document missing lstat
39794         on mingw.
39795
39796 2006-06-29  Eric Blake  <ebb9@byu.net>
39797
39798         * MODULES.html.sh: Add sys_stat.
39799         * modules/sys_stat: New module.
39800         * modules/mkstemp (Depends-on): Add sys_stat.
39801
39802 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39803
39804         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
39805
39806 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39807
39808         * m4/c-bs-a.m4: Removed.
39809
39810 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39811
39812         * lib/strftime.c: Assume strftime() exists.
39813
39814 2006-06-29  Derek Price  <derek@ximbiot.com>
39815
39816         * modules/c-bs-a: Removed - \a is C89.
39817         * MODULES.html.sh: Remove c-bs-a.
39818
39819 2006-06-29  Bruno Haible  <bruno@clisp.org>
39820
39821         * modules/wcwidth (License): Change to LGPL.
39822
39823 2006-06-28  Simon Josefsson  <jas@extundo.com>
39824
39825         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
39826         on _WIN32.
39827
39828         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
39829         getnameinfo.
39830
39831 2006-06-28  Simon Josefsson  <jas@extundo.com>
39832
39833         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
39834
39835 2006-06-28  Simon Josefsson  <jas@extundo.com>
39836
39837         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
39838         functions there.  It will succeed on Windows XP, but on Windows
39839         2000 and (presumably) earlier, it will fail, and use the internal
39840         re-implementation.
39841         (use_win32_p): New function.
39842         (getaddrinfo): Use strtoul on servname, to support numeric ports.
39843         Support AI_NUMERICSERV to disable getservbyname.
39844         (getnameinfo): New function, only supports
39845         NI_NUMERICHOST|NI_NUMERICSERV for now.
39846
39847         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
39848         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
39849         getnameinfo.
39850
39851 2006-06-28  Eric Blake  <ebb9@byu.net>
39852
39853         * modules/wcwidth: New file.
39854         * modules/mbchar (Depends-on): Add wcwidth.
39855         * modules/mbswidth (Depends-on): Add wcwidth.
39856         * MODULES.html.sh: Add wcwidth.
39857
39858 2006-06-28  Eric Blake  <ebb9@byu.net>
39859
39860         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
39861         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
39862
39863 2006-06-28  Eric Blake  <ebb9@byu.net>
39864
39865         * lib/xvasprintf.h: Fix comments.
39866
39867 2006-06-28  Eric Blake  <ebb9@byu.net>
39868
39869         * lib/mbchar.h (wcwidth): Include wcwidth.h.
39870         * lib/mbswidth.c (wcwidth): Move from here...
39871         * lib/wcwidth.h: ...to this new file.
39872
39873 2006-06-28  Derek R. Price  <derek@ximbiot.com>
39874
39875         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
39876
39877         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
39878         it's obsolete.
39879         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
39880
39881 2006-06-28  Derek R. Price  <derek@ximbiot.com>
39882
39883         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
39884         Autoconf 2.60 says this stuff was obsolete.
39885
39886 2006-06-28  Bruno Haible  <bruno@clisp.org>
39887
39888         * modules/wcwidth (Files): Add m4/wchar_t.m4.
39889
39890 2006-06-28  Bruno Haible  <bruno@clisp.org>
39891
39892         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
39893         gt_TYPE_WCHAR_T.
39894
39895 2006-06-28  Bruno Haible  <bruno@clisp.org>
39896
39897         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
39898         declaration for wcwidth.
39899         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
39900
39901 2006-06-28  Bruno Haible  <bruno@clisp.org>
39902
39903         * lib/mkdtemp.c [MINGW]: Include <io.h>.
39904         (mkdir): Define using _mkdir.
39905
39906 2006-06-28  Bruno Haible  <bruno@clisp.org>
39907
39908         * lib/getaddrinfo.h: Fix POSIX URL.
39909         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
39910         _WIN32.
39911         (use_win32_p): Make static.
39912         (getaddrinfo): Reject service name if it is empty or does not consist
39913         solely of decimal digits, or if its value is > 65535.
39914         (getnameinfo): Remove useless casts.
39915
39916 2006-06-27  Simon Josefsson  <jas@extundo.com>
39917
39918         * modules/sys_select: New file, suggested by Bruno Haible, Paul
39919         Eggert and Martin Lambers.
39920
39921 2006-06-27  Simon Josefsson  <jas@extundo.com>
39922
39923         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
39924         Eggert and Martin Lambers.
39925
39926 2006-06-27  Bruno Haible  <bruno@clisp.org>
39927
39928         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
39929         result to 0, not to empty.
39930         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
39931
39932 2006-06-27  Bruno Haible  <bruno@clisp.org>
39933
39934         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
39935
39936 2006-06-26  Simon Josefsson  <jas@extundo.com>
39937
39938         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
39939         present.
39940
39941 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
39942
39943         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
39944         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
39945         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
39946
39947 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
39948
39949         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
39950
39951 2006-06-26  Bruno Haible  <bruno@clisp.org>
39952
39953         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
39954
39955 2006-06-26  Bruno Haible  <bruno@clisp.org>
39956
39957         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
39958
39959 2006-06-26  Bruno Haible  <bruno@clisp.org>
39960
39961         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
39962         SGI C compiler in pre-C99 mode.
39963         Suggested by Mark D. Baushke and Larry Jones.
39964
39965 2006-06-26  Bruno Haible  <bruno@clisp.org>
39966
39967         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
39968         WCHAR_MAX.
39969         Reported by Mark D. Baushke and Larry Jones.
39970
39971 2006-06-26  Bruno Haible  <bruno@clisp.org>
39972
39973         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
39974         in pre-C99 mode.
39975         Suggested by Mark D. Baushke and Larry Jones.
39976
39977 2006-06-23  Simon Josefsson  <jas@extundo.com>
39978             Bruno Haible  <bruno@clisp.org>
39979
39980         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
39981         Emit mostlyclean-local rule.
39982         (func_emit_tests_Makefile_am): Likewise.
39983         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
39984
39985 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
39986
39987         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
39988
39989 2006-06-23  Bruno Haible  <bruno@clisp.org>
39990
39991         * tests/test-stdint.c: Update to match ISO C 99 Technical
39992         Corrigendum 1.
39993
39994 2006-06-23  Bruno Haible  <bruno@clisp.org>
39995
39996         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
39997
39998 2006-06-23  Bruno Haible  <bruno@clisp.org>
39999
40000         * lib/stdint_.h: Treat IRIX like OpenBSD.
40001
40002 2006-06-23  Bruno Haible  <bruno@clisp.org>
40003
40004         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
40005         ISO C 99 Technical Corrigendum 1.
40006
40007 2006-06-22  Simon Josefsson  <jas@extundo.com>
40008
40009         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
40010         MinGW.
40011
40012 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
40013
40014         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
40015         needed.  Some compiler complained about some of them.  Problem reported
40016         by Larry Jones in
40017         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
40018
40019 2006-06-21  Simon Josefsson  <jas@extundo.com>
40020
40021         * tests/test-getaddrinfo.c: New file.
40022
40023         * modules/getaddrinfo-tests: New file.
40024
40025         * MODULES.html.sh: Add inet_pton.
40026
40027         * modules/inet_pton: New file.
40028
40029 2006-06-21  Simon Josefsson  <jas@extundo.com>
40030
40031         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
40032         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
40033         of using the (limited) gnulib implementation on Windows XP.
40034
40035         * m4/inet_pton.m4: New file.
40036
40037 2006-06-21  Simon Josefsson  <jas@extundo.com>
40038
40039         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
40040         variable.
40041
40042         * lib/socket_.h: Don't define WINVER.
40043
40044         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
40045         slightly modified to work in gnulib.
40046
40047 2006-06-21  Simon Josefsson  <jas@extundo.com>
40048
40049         * doc/gnulib.texi (Windows sockets): Add.
40050
40051 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
40052
40053         * lib/read-file.c (fread_file): Start with buffer allocation of
40054         0 bytes rather than 1 byte; this simplifies the code.
40055         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
40056         code to free buffer and save/restore errno.
40057         (internal_read_file): Remove unused local.
40058
40059 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
40060
40061         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
40062         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
40063         Problem reported by Denis Excoffier in
40064         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
40065
40066 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40067
40068         * modules/sys_socket, modules/socklen: Include sys/types since
40069         FreeBSD 4.x's sys/socket.h needs it.
40070
40071 2006-06-19  Simon Josefsson  <jas@extundo.com>
40072
40073         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
40074
40075 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
40076
40077         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
40078
40079 2006-06-19  Bruno Haible  <bruno@clisp.org>
40080
40081         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
40082         and FULL_PATH_INTTYPES_H in angle brackets.
40083         Reported by Mark D. Baushke <mdb@gnu.org>.
40084
40085 2006-06-17  Eric Blake  <ebb9@byu.net>
40086
40087         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
40088         errno.
40089
40090 2006-06-17  Bruno Haible  <bruno@clisp.org>
40091
40092         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
40093         <sys/inttypes.h>.
40094
40095 2006-06-17  Bruno Haible  <bruno@clisp.org>
40096
40097         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
40098         whether errno is declared. Assume <errno.h> declares errno.
40099
40100 2006-06-17  Bruno Haible  <bruno@clisp.org>
40101
40102         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
40103
40104 2006-06-17  Bruno Haible  <bruno@clisp.org>
40105
40106         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
40107         problem on Solaris 2.5.1.
40108
40109 2006-06-16  Eric Blake  <ebb9@byu.net>
40110
40111         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
40112         * lib/unicodeio.c [!defined errno]: Likewise.
40113         * lib/strtol.c [!defined errno]: Likewise.
40114         * lib/strtod.c [!defined errno]: Likewise.
40115
40116 2006-06-15  Eric Blake  <ebb9@byu.net>
40117
40118         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
40119
40120 2006-06-15  Eric Blake  <ebb9@byu.net>
40121
40122         * config/srclist.txt (ssize_t.m4): Lose sync.
40123
40124 2006-06-15  Bruno Haible  <bruno@clisp.org>
40125
40126         * modules/stdint (Files): Include m4/full-header-path.m4,
40127         m4/size_max.m4, m4/wchar_t.m4.
40128         (Makefile.am): Many more substitutions.
40129         * modules/stdint-tests: New file.
40130         * tests/test-stdint.c: New file.
40131
40132 2006-06-15  Bruno Haible  <bruno@clisp.org>
40133
40134         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
40135         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
40136         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
40137         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
40138         gl_CHECK_TYPE_SAME): New macros.
40139
40140 2006-06-15  Bruno Haible  <bruno@clisp.org>
40141
40142         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
40143
40144 2006-06-15  Bruno Haible  <bruno@clisp.org>
40145
40146         * lib/stdint_.h: Rewritten to be fully auto-configured.
40147         Fixes bug on HP-UX/IA64.
40148
40149 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
40150
40151         * lib/getdate.y (__attribute__): Don't define if already defined.
40152         Problem reported by Larry Jones.
40153         * lib/utimens.c (__attribute__): Likewise.
40154
40155 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
40156
40157         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
40158         reported by Andreas Schwab.
40159
40160 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40161             Bruno Haible  <bruno@clisp.org>
40162
40163         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
40164         check for the declaration of strnlen and a run test that exposes the
40165         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
40166         rpl_strndup.
40167
40168 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40169             Bruno Haible  <bruno@clisp.org>
40170
40171         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
40172
40173 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40174
40175         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
40176         compile test, for Tru64 4.0D.
40177
40178 2006-05-28  Karl Berry  <karl@gnu.org>
40179
40180         * config/srclist.txt (printf-args.c): lose sync.
40181
40182 2006-05-26  Martin Lambers  <marlam@marlam.de>
40183
40184         * lib/getpass.c: Updates the test for the native W32 API, and adds
40185         missing includes, thus fixing compilation warnings.
40186
40187 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
40188
40189         * lib/exclude.c (exclude_fnmatch): New function.
40190         (excluded_file_name): Call exclude_fnmatch.
40191         * lib/exclude.h (excluded_file_name): New prototype
40192
40193 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
40194
40195         * lib/tempname.c (small_open, large_open): New macros.
40196         (__open, __open64) [!_LIBC]: Remove.
40197         (__gen_tempname): Use small_open and large_open instead of __open
40198         and __open64.  This fixes a portability bug on HP-UX 11.11i
40199         reported by Simon Wing-Tang in
40200         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
40201
40202 2006-05-24  Bruno Haible  <bruno@clisp.org>
40203
40204         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
40205         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
40206         Reported by Thorsten Maerz <torte@netztorte.de> via
40207         Aaron Stone <aaron@serendipity.cx>.
40208
40209 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
40210
40211         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
40212         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
40213         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
40214         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
40215         not really conditional on the cache.
40216         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
40217
40218 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
40219
40220         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
40221         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
40222         (my_usleep): Don't mishandle maximum value.
40223
40224 2006-05-19  Jim Meyering  <jim@meyering.net>
40225
40226         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
40227
40228 2006-05-17  Bruno Haible  <bruno@clisp.org>
40229
40230         Cygwin portability.
40231         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
40232
40233 2006-05-17  Bruno Haible  <bruno@clisp.org>
40234
40235         * lib/stdint_.h: Fix recognition of Cygwin.
40236
40237 2006-05-15  Bruno Haible  <bruno@clisp.org>
40238
40239         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
40240         on libtool patch by Ralf Wildenhues.
40241
40242 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
40243
40244         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
40245         test for C99 conformance; (bool) 0.5 is an integer constant
40246         expression, but (bool) -0.5 is not.  Problem reported by Fedor
40247         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
40248
40249 2006-05-11  Simon Josefsson  <jas@extundo.com>
40250
40251         * m4/xvasprintf.m4: Fix obvious typo.
40252
40253 2006-05-11  Jim Meyering  <jim@meyering.net>
40254
40255         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
40256         James Lemley.
40257
40258 2006-05-10  Simon Josefsson  <jas@extundo.com>
40259
40260         * lib/md4.c: Typo fix, update copyright years.
40261         (K1, K2): Don't use L because it turn computations into 64-bit on
40262         64-bit platforms.
40263
40264 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
40265
40266         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
40267         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
40268         unwanted sign propagation, e.g., on hosts with 64-bit int.
40269         There still are some problems with reeelly weird theoretical hosts
40270         (e.g., 33-bit int) but it's not worth worrying about now.
40271         * lib/sha1.c (rol): Likewise.
40272         (K1, K2, K3, K4): Remove unnecessary L suffix.
40273
40274 2006-05-10  Bruno Haible  <bruno@clisp.org>
40275
40276         * lib/des.c: Cast to avoid warnings.
40277
40278 2006-05-09  Bruno Haible  <bruno@clisp.org>
40279
40280         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
40281         (Depends-on): Depend also on xsize, stdarg.
40282         (configure.ac): Add gl_XVASPRINTF.
40283
40284 2006-05-09  Bruno Haible  <bruno@clisp.org>
40285
40286         * m4/xvasprintf.m4: New file.
40287
40288 2006-05-09  Bruno Haible  <bruno@clisp.org>
40289
40290         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
40291         (EOVERFLOW): Define fallback value.
40292         (xstrcat): New function.
40293         (xvasprintf): Recognize the special case of a string concatenation.
40294
40295 2006-05-08  Eric Blake  <ebb9@byu.net>
40296
40297         * gnulib-tool (func_version): Base copyright year on CVS date.
40298         (func_emit_copyright_notice): New function.
40299         (func_emit_lib_Makefile_am): Use it.
40300         (func_emit_tests_Makefile_am): Likewise.
40301         (func_import): Likewise.
40302
40303 2006-05-08  Bruno Haible  <bruno@clisp.org>
40304
40305         * modules/stdarg: New file.
40306         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
40307
40308 2006-05-08  Bruno Haible  <bruno@clisp.org>
40309
40310         * m4/stdarg.m4: New file, from GNU gettext.
40311
40312 2006-05-08  Bruno Haible  <bruno@clisp.org>
40313
40314         * config/srclist.txt (build-aux/config.rpath): different from latest
40315         release.
40316
40317 2006-05-08  Bruno Haible  <bruno@clisp.org>
40318
40319         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
40320
40321 2006-05-05  Jim Meyering  <jim@meyering.net>
40322
40323         * m4/warning.m4: New file, derived from bison's file by the same name.
40324
40325 2006-05-03  Bruno Haible  <bruno@clisp.org>
40326
40327         * lib/stdint_.h: Shorter URL.
40328         * lib/inttypes.h: Likewise.
40329
40330 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40331
40332         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
40333
40334 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40335
40336         * lib/verify.h: Document the internals better.  Most of this change
40337         was written by Bruno Haible.
40338
40339 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40340
40341         * doc/verify.texi: New file, partly based on a proposal by
40342         Bruno Haible.
40343
40344 2006-05-02  Bruno Haible  <bruno@clisp.org>
40345
40346         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
40347         test from here...
40348         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
40349
40350 2006-04-29  Bruno Haible  <bruno@clisp.org>
40351
40352         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
40353         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
40354
40355 2006-04-29  Bruno Haible  <bruno@clisp.org>
40356
40357         * gnulib-tool: Make --update option actually work.
40358
40359 2006-04-29  Bruno Haible  <bruno@clisp.org>
40360
40361         * doc/gcd.texi: New file.
40362         * doc/gnulib.texi: Include it.
40363
40364 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
40365
40366         * lib/getdate.y (get_date): When adding relative date, start with the
40367         initial time, not with the result of the first mktime call.
40368
40369 2006-04-25  Bruno Haible  <bruno@clisp.org>
40370
40371         * gnulib-tool (func_import): Output the include directives in three
40372         blocks, sorted separately.
40373         Reported by Ben Pfaff <blp@cs.stanford.edu>.
40374
40375 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
40376
40377         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
40378         to define main with arguments, for C++.  Reported by Eric Blake.
40379         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
40380         Prefer 'int main ()' to 'int main (void)', for C++.
40381         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
40382         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
40383         for 'main', for C99 and C++.
40384
40385 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
40386
40387         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
40388         Don't assume that exit status -1 is valid.
40389         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
40390         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
40391         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
40392         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
40393         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
40394         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
40395         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
40396         functions can be used without declaring them, or that you can
40397         exit with status -1.
40398         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
40399
40400 2006-04-24  Karl Berry  <karl@gnu.org>
40401
40402         * config/srclist.txt (longdouble.m4): sync lost.
40403
40404 2006-04-24  Eric Blake  <ebb9@byu.net>
40405
40406         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
40407
40408 2006-04-24  Bruno Haible  <bruno@clisp.org>
40409
40410         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
40411         poll() implementation in AIX.
40412         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40413
40414 2006-04-24  Bruno Haible  <bruno@clisp.org>
40415
40416         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
40417         assigned exactly once.
40418
40419 2006-04-23  Claudio Fontana  <claudio@gnu.org>
40420             Bruno Haible  <bruno@clisp.org>
40421
40422         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
40423         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
40424         for AM_CPPFLAGS.
40425
40426 2006-04-23  Bruno Haible  <bruno@clisp.org>
40427
40428         * modules/copy-file: Depend on unistd.
40429         * modules/execute: Likewise.
40430         * modules/fatal-signal: Likewise.
40431         * modules/findprog: Likewise.
40432         * modules/mkdtemp : Likewise.
40433         * modules/pipe: Likewise.
40434         * modules/wait-process: Likewise.
40435
40436 2006-04-23  Bruno Haible  <bruno@clisp.org>
40437
40438         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
40439         condition was already detected.
40440         Reported by Ben Pfaff <blp@cs.stanford.edu>.
40441
40442 2006-04-23  Bruno Haible  <bruno@clisp.org>
40443
40444         * lib/copy-file.c: Include <unistd.h> unconditionally.
40445         * lib/execute.c: Likewise.
40446         * lib/fatal-signal.c: Likewise.
40447         * lib/findprog.c: Likewise.
40448         * lib/mkdtemp.c: Likewise.
40449         * lib/pipe.h: Likewise.
40450         * lib/pipe.c: Likewise.
40451         * lib/wait-process.h: Likewise.
40452
40453 2006-04-23  Bruno Haible  <bruno@clisp.org>
40454
40455         * gnulib-tool (func_usage): Fix --import description. Document
40456         --update.
40457         (func_import): Create temporary file in a temporary directory, if
40458         --dry-run is specified. Silence errors from 'grep' when there are no
40459         m4 files in $m4dir.
40460         (func_create_testdir): Silence errors from 'grep' when there are no
40461         m4 files in $m4dir.
40462         Reported by Karl Berry <karl@freefriends.org>.
40463
40464 2006-04-20  Bruno Haible  <bruno@clisp.org>
40465
40466         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
40467         one argument, so that the code will be portable to Autoconf 2.60.
40468         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
40469         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
40470         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
40471
40472 2006-04-19  Derek Price  <derek@ximbiot.com>
40473             Eric Blake  <ebb9@byu.net>
40474
40475         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
40476         rather than "/full/path.h".  Update comment to match.  Shorten &
40477         generalize m4_translit call via AS_TR_CPP.
40478
40479 2006-04-19  Derek Price  <derek@ximbiot.com>
40480             Eric Blake  <ebb9@byu.net>
40481
40482         * lib/inttypes.h: Correct grammar in comment.
40483
40484 2006-04-18  Derek Price  <derek@ximbiot.com>
40485             Paul Eggert  <eggert@cs.ucla.edu>
40486
40487         * modules/inttypes: New file.
40488         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
40489
40490 2006-04-18  Derek Price  <derek@ximbiot.com>
40491             Paul Eggert  <eggert@cs.ucla.edu>
40492
40493         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
40494         New files.
40495
40496 2006-04-18  Derek Price  <derek@ximbiot.com>
40497             Paul Eggert  <eggert@cs.ucla.edu>
40498
40499         * lib/inttypes.h: New file.
40500         * lib/strtoimax.c: Assume <inttypes.h>.
40501
40502 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
40503
40504         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
40505         isn't mounted.  Problem reported by Kir Kolyshkin.
40506
40507 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
40508
40509         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
40510         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
40511         Derek R. Price.
40512         * lib/regex.h (RE_DUP_MAX): Update comment to match current
40513         implementation.
40514
40515 2006-04-12  Eric Blake  <ebb9@byu.net>
40516
40517         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
40518         is now done automatically by the corresponding Autoconf macro.
40519
40520 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
40521
40522         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
40523         time_r.h.
40524
40525 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40526
40527         Merge regex changes from libc, removing some of our
40528         POSIX-conformance changes that were rejected and redoing them in a
40529         less-intrusive way.
40530
40531         * lib/regcomp.c (re_compile_internal, init_dfa):
40532         Length arg is now size_t, not Idx.  All uses changed.
40533         (peek_token): Forward decl now says internal_function.
40534         (__re_error_msgid, __re_error_msgid_idx):
40535         Now static rather than extern with attribute_hidden.
40536         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
40537         For some reason libc prefers K&R style defns for external functions.
40538         (regerror) [!defined _LIBC]: Likewise.
40539         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
40540         (seek_collating_symbol_entry, lookup_collation_sequence_value):
40541         (build_range_exp, build_collating_symbol):
40542         Use K&R-style defn.
40543         (re_compile_fastmap): Use '\0' to memset, not 0.
40544         (utf8_sb_map): Make the calculations more obvious.
40545         (init_dfa, parse_bracket_exp, build_charclass_op):
40546         Call calloc and cast result, as glibc does.
40547         (init_word_char, fetch_token, peek_token, peek_token_bracket):
40548         (build_range_exp, build_collating_symbol):
40549         Now internal functions.
40550
40551         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
40552
40553         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
40554         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
40555         Don't depend on VMS; depend on __VMS instead, for POSIX
40556         namespace cleanness.
40557         (regoff_t): Define to ssize_t, not long int.
40558
40559         Remove the REG_ macros named below.  Instead, make the old names
40560         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
40561         __USE_GNU_REGEX.
40562         (REG_BACKSLASH_ESCAPE_IN_LISTS):
40563         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
40564         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
40565         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
40566         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
40567         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
40568         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
40569         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
40570         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
40571         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
40572         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
40573         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
40574         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
40575         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
40576         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
40577         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
40578         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
40579         (REG_NREGS):
40580         Remove.  All uses replaced by the old RE_* names.
40581         (RE_BACKSLASH_ESCAPE_IN_LISTS):
40582         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
40583         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
40584         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
40585         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
40586         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
40587         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
40588         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
40589         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
40590         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
40591         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
40592         Don't bother having these macros be independent of each others'
40593         values, since they no longer exist in the POSIX name space.
40594
40595         Rename the following member names back to their old names,
40596         unless !__USE_GNU_REGEX.  All uses changed back.
40597         (buffer): Renamed from re_buffer.
40598         (allocated): Renamed from re_allocated.
40599         (used): Renamed from re_used.
40600         (syntax): Renamed from re_syntax.
40601         (fastmap): Renamed from re_fastmap.
40602         (translate): Renamed from re_translate.
40603         (can_be_null): Renamed from re_can_be_null.
40604         (regs_allocated): Renamed from re_regs_allocated.
40605         (fastmap_accurate): Renamed from re_fastmap_accurate.
40606         (no_sub): Renamed from re_no_sub.
40607         (not_bol): Renamed from re_not_bol.
40608         (not_eol): Renamed from re_not_eol.
40609         (newline_anchor): Renamed from re_newline_anchor.
40610         (num_regs): Renamed from rm_num_regs.
40611         (start): Renamed from rm_start.
40612         (end): Renamed from rm_end.
40613
40614         (free_state): Move up a bit.
40615
40616         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
40617         #define to be empty.
40618         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
40619         when that is what is intended.
40620         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
40621         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
40622         (MAX): New macro.
40623         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
40624         All uses changed back to re_malloc, etc.  It's now the caller's
40625         responsibility to check for overflow; all callers changed.
40626         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
40627         (re_x2nrealloc): Remove.
40628         (free_state): Remove decl.
40629
40630         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
40631         (re_set_registers, re_exec):
40632         Use K&R-style defn.
40633
40634         2006-01-31  Roland McGrath  <roland@redhat.com>
40635
40636         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
40637         Reported by Mike Frysinger <vapier@gentoo.org>.
40638
40639         2006-01-15  Andreas Jaeger  <aj@suse.de>
40640
40641         [BZ #1950]
40642         * lib/regex_internal.c (re_string_reconstruct): Adjust for
40643         build_wcs_upper_buffer change.
40644         (build_wcs_upper_buffer): Change return type.
40645
40646         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
40647
40648         * lib/regex_internal.h: Include <stdint.h> if available.
40649
40650         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
40651
40652         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
40653
40654         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
40655
40656         * lib/regcomp.c: Adjust for changed secondary hash function.
40657
40658         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
40659
40660         * lib/regex.h: Pretty printing.
40661         Clean up namespace a bit.
40662
40663         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
40664
40665         * lib/regexec.c (update_cur_sifted_state, check_arrival,
40666         check_arrival_add_next_nodes): Avoid using uninitialized variable.
40667
40668         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
40669                     Ulrich Drepper  <drepper@redhat.com>
40670
40671         [BZ #1302]
40672         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
40673         changed.
40674         (bitset_word_t): Renamed from bitset_word.  All uses changed.
40675
40676         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
40677
40678         [BZ #281]
40679         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
40680         * lib/regcomp.c: Remove unnecessary uses of
40681         unsigned RE_TRANSLATE_TYPE.
40682         * lib/regex_internal.h: Likewise.
40683         * lib/regex_internal.c: Likewise.
40684         * lib/regexec.c: Likewise.
40685         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
40686
40687         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
40688
40689         * lib/regexec.c (find_recover_state): Remove unnecessary
40690         initialization.
40691         (transit_state_bkref): Make DFA a const pointer.
40692         (get_subexp): Likewise.
40693         (check_arrival): Likewise.
40694         (update_cur_sifted_state): Likewise.
40695         (re_search_internal): Likewise.
40696         (prune_impossible_nodes): Likewise.
40697         (acquire_init_state_context): Likewise.
40698         (proceed_next_node): Likewise.
40699         (set_regs): Likewise.
40700         (free_fail_stack_return): Likewise.
40701         (check_arrival_expand_ecl): Mark DFA parameter as const.
40702         (check_arrival_expand_ecl_sub): Likewise.
40703         (check_subexp_limits): Likewise.
40704         (sub_epsilon_src_nodes):  Likewise.
40705         (add_epsilon_src_nodes):  Likewise.
40706         (merge_state_array): Likewise.
40707         (update_regs): Likewise.
40708         (build_trtable): Likewise.
40709         (sift_states_backward): Mark MCTX parameter as const.
40710         (build_sifted_states): Likewise.
40711         (update_cur_sifted_state): Likewise.
40712         (sift_states_mkref): Likewise.
40713         (check_arrival_expand_ecl): Mark eclosure as const.
40714         (check_dst_limits_calc_pos_1): Likewise.
40715         * lib/regex_internal.h (re_match_context_t): Make dfa a const
40716         pointer.
40717
40718         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
40719
40720         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
40721         (transit_state_sb): Likewise.
40722         (transit_state_mb): Likewise.
40723         (sift_states_iter_mb): Likewise.
40724         (check_arrival_add_next_nodes): Likewise.
40725         (check_node_accept_bytes): Change first parameter to pointer-to-const.
40726         [_LIBC] (re_search_2_stub): Use mempcpy.
40727
40728         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
40729         mbrtowc for very simple UTF-8 case.
40730
40731         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
40732         a pointer-to-const.
40733         (re_acquire_state_context): Likewise.
40734         * lib/regex_internal.h: Adjust prototypes.
40735
40736         * lib/regex.c: Prevent using C++ compilers.
40737
40738         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
40739         (re_acquire_state_context): Likewise.
40740
40741 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40742
40743         * modules/regex (Depends-on): Add ssize_t.
40744
40745 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40746
40747         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
40748         translation table.
40749
40750 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40751
40752         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
40753
40754 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
40755             Bruno Haible  <bruno@clisp.org>
40756
40757         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
40758         <sys/types.h> and <inttypes.h>.
40759
40760 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40761
40762         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
40763         `__error_t_defined', so argp.h will not typedef the former.
40764
40765 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
40766
40767         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
40768         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
40769         glibc names.  Even if glibc is changed to conform to POSIX, the
40770         traditional names will be available anyway, since regex depends on
40771         the extensions module.  Also, fix a longstanding typo in the
40772         implementation of Spencer ERE test #75 from grep 2.3.  Problems
40773         reported by Emanuele Giaquinta.  Also, change sense of cached
40774         variable, so that the message makes sense.
40775
40776 2006-03-24  Simon Josefsson  <jas@extundo.com>
40777
40778         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
40779         including some doc fixes.
40780         (base64_encode_alloc): Fix +1 bug on allocation failures.
40781
40782 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40783
40784         * lib/base64.c (base64_encode): Do not read past end of array with
40785         unsanitized input on systems with CHAR_BIT > 8.
40786
40787 2006-03-24  Eric Blake  <ebb9@byu.net>
40788
40789         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
40790
40791 2006-03-22  Karl Berry  <karl@gnu.org>
40792
40793         * config/srclist.txt (*setenv.[ch]): get from coreutils.
40794         * config/srclistvars.sh (COREUTILS): new var.
40795
40796 2006-03-17  Jim Meyering  <jim@meyering.net>
40797
40798         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
40799         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
40800
40801 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
40802
40803         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
40804         no longer needs it.  Instead, check that regoff_t is as least
40805         as wide as ptrdiff_t.
40806
40807         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
40808         so that our regex.h stays compatible with the installed regex.
40809         This is helpful for installers who configure --without-included-regex.
40810         Problem reported by Emanuele Giaquinta.
40811
40812 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
40813
40814         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
40815         Typedef to long int, not to off_, as POSIX will likely change
40816         in that direction.
40817
40818 2006-03-15  Eric Blake  <ebb9@byu.net>
40819
40820         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
40821
40822 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
40823
40824         * lib/argp-help.c (validate_uparams): Fix typo
40825         * lib/argp-parse.c (argp_default_options): Consistently begin help
40826         messages with a lowercase letter.
40827
40828 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
40829
40830         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
40831         overrun buffers and shouldn't be used (much as gets shouldn't be
40832         used).
40833         * lib/time_r.c (asctime_r, ctime_r): Likewise.
40834
40835 2006-03-08  Simon Josefsson  <jas@extundo.com>
40836
40837         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
40838         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40839
40840 2006-03-08  Simon Josefsson  <jas@extundo.com>
40841
40842         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
40843         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40844
40845 2006-03-08  Simon Josefsson  <jas@extundo.com>
40846
40847         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
40848         signal that configure disabled the device.
40849
40850 2006-03-08  Simon Josefsson  <jas@extundo.com>
40851
40852         * build-aux/maint.mk: Fix refresh-po, to handle no translated
40853         languages.
40854
40855 2006-03-07  Simon Josefsson  <jas@extundo.com>
40856
40857         * modules/getopt (Depends-on): Add unistd.
40858
40859         * modules/unistd: New file.
40860
40861 2006-03-07  Simon Josefsson  <jas@extundo.com>
40862
40863         * modules/gc-random: New file.
40864
40865 2006-03-07  Simon Josefsson  <jas@extundo.com>
40866
40867         * m4/unistd_h.m4: New file.
40868
40869 2006-03-07  Simon Josefsson  <jas@extundo.com>
40870
40871         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
40872         test to be side-effect free by storing the result in the cache
40873         variable gl_cv_lib_readline, and moving the assignment of
40874         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
40875         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40876
40877 2006-03-07  Simon Josefsson  <jas@extundo.com>
40878
40879         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
40880         error on missing devices (the functions will return an error).
40881
40882         * m4/gc.m4: Move random stuff to gc-random.m4
40883
40884 2006-03-07  Simon Josefsson  <jas@extundo.com>
40885
40886         * lib/unistd_.h: New file.
40887
40888 2006-03-07  Simon Josefsson  <jas@extundo.com>
40889
40890         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
40891
40892 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
40893
40894         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
40895         Problem reported by Juan Manuel Guerrero.
40896
40897 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
40898
40899         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
40900         the unistd module.
40901         * lib/getlogin_r.c: Likewise.
40902         * lib/getlogin_r.h: Likewise.
40903         * lib/glob.c: Likewise.
40904         * lib/pagealign_alloc.c: Likewise.
40905         * lib/unistd_.h: Remove; no longer needed.
40906
40907 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
40908
40909         * MODULES.html.sh (Support for systems lacking POSIX:2001):
40910         Add unistd.
40911         * modules/c-stack (Depends-on): Add unistd.
40912         * modules/getlogin_r: Likewise.
40913         * modules/glob: Likewise.
40914         * modules/pagealign_alloc: Likewise.
40915         * modules/unistd (Files): Remove lib/unistd_.h.
40916         (EXTRA_DIST): Remove.
40917         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
40918         need unistd_.h.
40919         (MOSTLYCLEANFILES): Remove unistd.h-t.
40920
40921 2006-03-03  Simon Josefsson  <jas@extundo.com>
40922
40923         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
40924
40925 2006-03-03  Simon Josefsson  <jas@extundo.com>
40926
40927         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
40928         libidn and bison.
40929
40930 2006-03-03  Simon Josefsson  <jas@extundo.com>
40931
40932         * build-aux/maint.mk: Add indent target.
40933
40934 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
40935
40936         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
40937         our replacement poll.h in any case, to avoid a differing
40938         declaration from a system header.  Seen on AIX.
40939
40940 2006-03-01  Simon Josefsson  <jas@extundo.com>
40941
40942         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
40943         <kasal@ucw.cz>.
40944
40945 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
40946
40947         * modules/gettime (Depends-on): Add extensions module.
40948         * modules/nanosleep (Depends-on): Likewise.
40949         * modules/settime (Depends-on): Likewise.
40950
40951 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
40952
40953         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
40954         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
40955         pedantically.
40956         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
40957         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
40958
40959         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
40960         not "==".  Reported by Ralf Wildenhues.
40961
40962 2006-03-01  Karl Berry  <karl@gnu.org>
40963
40964         * doc/Copyright/request-*: new files, synced from gnuorg.
40965
40966 2006-03-01  Karl Berry  <karl@gnu.org>
40967
40968         * config/srclist.txt (Copyright/*): new entries.
40969
40970 2006-02-28  Simon Josefsson  <jas@extundo.com>
40971
40972         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
40973
40974 2006-02-27  Simon Josefsson  <jas@extundo.com>
40975
40976         * lib/base64.h: Indent #define's.  From Jim Meyering
40977         <jim@meyering.net>.
40978
40979 2006-02-27  Jim Meyering  <jim@meyering.net>
40980
40981         Revert the change of 2006-02-24, so these files can continue
40982         to be sync'd from gettext.
40983         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
40984         of `config.h'.
40985
40986 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
40987
40988         * modules/intprops: New file.
40989         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
40990         Add intprops.
40991         * modules/getloadavg (Files): Remove lib/intprops.h.
40992         (Depends-on): Add intprops.
40993         * modules/human: Likewise.
40994         * modules/inttostr: Likewise.
40995         * modules/openat: Likewise.
40996         * modules/sig2str: Likewise.
40997         * modules/userspec: Likewise.
40998         * modules/utimecmp: Likewise.
40999         * modules/xnanosleep: Likewise.
41000         * modules/xstrtol: Likewise.
41001
41002 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
41003
41004         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
41005         * modules/lock-tests (TESTS): Use $(EXEEXT).
41006         * modules/tls-tests: Likewise.
41007         * modules/argp-tests: Likewise.
41008         (check_PROGRAMS): New var, replacing...
41009         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
41010
41011 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41012
41013         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
41014         `config.h'.
41015
41016 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
41017
41018         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
41019
41020 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41021
41022         Sync from coreutils.
41023         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
41024         gl_CHDIR_SAFER.
41025
41026 2006-02-22  Jim Meyering  <jim@meyering.net>
41027
41028         Sync from coreutils.
41029         * m4/chdir-safer.m4: New file.
41030
41031 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
41032
41033         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
41034         AT_FDCWD exceeds INT_MAX.
41035         * lib/openat.h (AT_FDCWD): Likewise.
41036
41037 2006-02-17  Eric Blake  <address@hidden>
41038
41039         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
41040
41041 2006-02-16  Simon Josefsson  <jas@extundo.com>
41042
41043         * modules/getaddrinfo (Depends-on): Add sys_socket.
41044
41045 2006-02-15  Simon Josefsson  <jas@extundo.com>
41046
41047         * build-aux/maint.mk: Add dsyntax-check rule.
41048
41049 2006-02-15  Eric Blake  <ebb9@byu.net>
41050
41051         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
41052         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
41053         'present but cannot compile' warnings on cygwin.
41054         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
41055         use ws2tcpip.h if sys/socket.h works.
41056         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
41057         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
41058
41059 2006-02-14  Simon Josefsson  <jas@extundo.com>
41060
41061         * modules/maintainer-makefile (Files): Rename.
41062
41063         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
41064         and (the local) Makefile.cfg to maint-cfg.mk.
41065
41066         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
41067         to the latter.
41068
41069         * modules/maintainer-makefile: New module.
41070
41071         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
41072         severaly stripped to make it possible to build it up from scratch
41073         with reliable tests.
41074
41075         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
41076         fixes to permit overriding the default actions when configure and
41077         makefile are not available.
41078
41079 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
41080
41081         Sync from coreutils.
41082         * modules/lstat (Depends-on): Don't depend on xalloc.
41083         (License): Change from GPL to LGPL, since this is now simply a
41084         replacement for a libc function.
41085
41086 2006-02-14  Jim Meyering  <jim@meyering.net>
41087
41088         Sync from coreutils.
41089
41090         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
41091         failure on deficient systems, and simplify gnulib lgpl dependencies.
41092         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
41093         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
41094
41095         * lib/xalloc-die.c: Remove unused definition of N_.
41096
41097 2006-02-14  Jim Meyering  <jim@meyering.net>
41098
41099         Sync from coreutils.
41100         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
41101         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
41102         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
41103         double-quote uses of that variable, to accommodate the rare case in
41104         which getmntent is available in none of the libraries checked.  This
41105         happens at least on FreeBSD 5.0.
41106
41107 2006-02-13  Simon Josefsson  <jas@extundo.com>
41108
41109         * gnulib-tool (Usage): Fix --import, from
41110         karl@freefriends.org (Karl Berry).
41111
41112 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
41113
41114         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
41115
41116 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
41117
41118         * lib/argp-namefrob.h: Restore changes accidentally lost during the
41119         "autoupdate" on 2005-12-12.
41120
41121 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
41122
41123         * modules/closeout (Depends-on): Remove atexit.
41124
41125 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
41126
41127         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
41128         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
41129
41130 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
41131
41132         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
41133         __EXTENSIONS__ if this causes compilation to fail.  Problem
41134         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
41135         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
41136
41137 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
41138
41139         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
41140         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
41141         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
41142         All uses changed.
41143
41144 2006-01-26  Simon Josefsson  <jas@extundo.com>
41145
41146         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
41147         prototype is visible on mingw32.
41148
41149         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
41150         for mingw32.
41151
41152         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
41153         mingw32).
41154
41155 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
41156
41157         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
41158         attempt to open for write; this always fails, at least on POSIX
41159         hosts.  This reinstates the 2006-01-09 change, which was
41160         inadvertently removed.
41161
41162 2006-01-26  Bruno Haible  <bruno@clisp.org>
41163
41164         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
41165         Reported by Paul Eggert.
41166
41167 2006-01-26  Bruno Haible  <bruno@clisp.org>
41168             Paul Eggert  <eggert@cs.ucla.edu>
41169
41170         * lib/stdbool_.h (_Bool)
41171         [(! (defined __cplusplus || defined __BEOS__)
41172           && !defined __GNUC__
41173           && !(defined __HP_cc || defined __xlc__
41174                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
41175                || defined __sgi))]:
41176         #define to signed char in these cases too; this simplifies
41177         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
41178         etc., separately) and makes it more conservative.
41179
41180 2006-01-25  Simon Josefsson  <jas@extundo.com>
41181
41182         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
41183         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
41184         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
41185
41186 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
41187
41188         * lib/argp-namefrob.h: Bugfix. Remove stray #
41189
41190 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
41191
41192         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
41193         so that we test the test.
41194         Check for yet another HP-UX cc bug involving *bool |= bool.
41195
41196 2006-01-25  Karl Berry  <karl@gnu.org>
41197
41198         * config/srclist.txt (vasnprintf.c): sync lost.
41199
41200 2006-01-25  Jim Meyering  <jim@meyering.net>
41201
41202         Sync from the stable (b5) branch of coreutils:
41203
41204         * lib/fts.c (fts_children): Don't let close() clobber errno from
41205         failed fchdir().
41206
41207         * lib/fts.c (fts_stat): When following a symlink-to-directory,
41208         don't necessarily interpret stat-fails+lstat-succeeds as indicating
41209         a dangling symlink.  That can also happen at least for ELOOP.
41210         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
41211         FYI, this bug predates the inclusion of fts.c in coreutils.
41212
41213         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
41214         in their own block, so pre-c99 compilers don't object.
41215
41216         Avoid the double-free (first in fts_read, second in fts_close) that
41217         would occur when an `active' directory is made inaccessible (e.g.,
41218         via chmod a-x) during a traversal.
41219         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
41220         before returning.  Reproduce this failure by
41221         mkdir -p a/b; cd a; chmod a-x . b
41222         Reported by Stavros Passas.
41223
41224 2006-01-25  Jim Meyering  <jim@meyering.net>
41225
41226         * lib/fileblocks.c: Remove more useless parentheses.
41227         * lib/readutmp.h: Likewise.
41228
41229 2006-01-25  Bruno Haible  <bruno@clisp.org>
41230
41231         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
41232         warnings.
41233         Reported by Paul Eggert.
41234
41235 2006-01-25  Bruno Haible  <bruno@clisp.org>
41236
41237         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
41238         rid of a trap command. For Solaris sh.
41239         Reported by Mark D. Baushke <mdb@gnu.org>.
41240
41241 2006-01-24  Simon Josefsson  <jas@extundo.com>
41242
41243         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
41244         Bruno.
41245
41246 2006-01-24  Karl Berry  <karl@gnu.org>
41247
41248         * config/srclist.txt (argp-namefrob.h): sync lost.
41249
41250 2006-01-24  Jim Meyering  <jim@meyering.net>
41251
41252         * modules/openat (Files): Add lib/intprops.h.
41253         From Mark D. Baushke.
41254
41255 2006-01-24  Jim Meyering  <jim@meyering.net>
41256
41257         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
41258         Reported by Mark D. Baushke.
41259
41260 2006-01-24  Jim Meyering  <jim@meyering.net>
41261
41262         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
41263
41264 2006-01-24  Bruno Haible  <bruno@clisp.org>
41265
41266         * modules/strnlen (Maintainer): Change from glibc to all.
41267
41268 2006-01-24  Bruno Haible  <bruno@clisp.org>
41269
41270         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
41271         Patch by Paul Eggert.
41272
41273 2006-01-24  Bruno Haible  <bruno@clisp.org>
41274
41275         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
41276         already has it.
41277         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
41278         2005-11-26.
41279
41280         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
41281         'signed char' to avoid problems with the built-in _Bool type.
41282         Reported by Paul Eggert on 2005-11-26.
41283
41284 2006-01-24  Bruno Haible  <bruno@clisp.org>
41285
41286         * gnulib-tool (func_import): Avoid constructing complicated sed
41287         expressions inside backquote.
41288         Report and solution by Mark D. Baushke <mdb@gnu.org>.
41289
41290 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
41291
41292         These changes imported from libc.
41293         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
41294         test and two separate function calls.
41295         * lib/strndup.c (__strndup): Add libc_hidden_def.
41296
41297 2006-01-23  Simon Josefsson  <jas@extundo.com>
41298
41299         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
41300         Remove the test_*_SOURCES variable: automake infers it by default.
41301         * modules/tls-tests: Likewise.
41302
41303 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41304
41305         Work around porting bugs reported by Dieter in
41306         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
41307         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
41308         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
41309         Include "getopt.h" first, to check interface.
41310         (getenv): Declare only if defined HAVE_DECL_GETENV &&
41311         !HAVE_DECL_GETENV.
41312         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
41313         (__strndup): Revert to K&R-style function dfns, the glibc style.
41314         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
41315         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
41316         Include strnlen.h first, to get prototype properly.
41317         (strnlen): Renamed from __strnlen.
41318         Remove weak alias.
41319
41320 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41321
41322         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
41323
41324 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41325
41326         * config/srclist.txt: Adjust to reflect glibc reorganization.
41327         This affects only comments.
41328
41329 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
41330
41331          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
41332          Reported by Bruce Korb <bkorb@gnu.org>.
41333
41334 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
41335
41336         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
41337         to pacify gcc -Wswitch-default.
41338
41339 2006-01-22  Bruno Haible  <bruno@clisp.org>
41340
41341         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
41342         temporary buffer for sprintf, take into account the precision also
41343         for 'd', 'i', 'u', 'o', 'x', 'X'.
41344
41345 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
41346
41347         * modules/argp-tests: New module
41348         * tests/test-argp.c: New file
41349         * tests/test-argp-2.sh: New file
41350
41351 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
41352
41353         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
41354         (__argp_base_name): Removed
41355         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
41356         typo.
41357         (__argp_base_name): Provide macro definition or extern declaration
41358         depending on the configuration
41359
41360 2006-01-20  Simon Josefsson  <jas@extundo.com>
41361
41362         * modules/inet_ntop (Depends-on): Depend on sys_socket.
41363
41364 2006-01-20  Simon Josefsson  <jas@extundo.com>
41365
41366         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
41367
41368 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
41369
41370         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
41371         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
41372         Suggested by Bruno Haible.
41373
41374 2006-01-20  Karl Berry  <karl@gnu.org>
41375
41376         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
41377         until changes propagate, I guess.
41378
41379 2006-01-19  Simon Josefsson  <jas@extundo.com>
41380
41381         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
41382
41383 2006-01-19  Simon Josefsson  <jas@extundo.com>
41384
41385         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
41386
41387 2006-01-19  Simon Josefsson  <jas@extundo.com>
41388
41389         * gnulib-tool: Set check_PROGRAMS.
41390
41391         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
41392         modules/des-tests, modules/gc-arcfour-tests,
41393         modules/gc-arctwo-tests, modules/gc-des-tests,
41394         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
41395         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
41396         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
41397         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
41398         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
41399         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
41400         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
41401         test_*_SOURCES.
41402
41403 2006-01-18  Simon Josefsson  <jas@extundo.com>
41404
41405         * modules/socklen (Depends-on): Depend on sys_socket.
41406
41407 2006-01-18  Simon Josefsson  <jas@extundo.com>
41408
41409         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
41410         modules/des-tests, modules/gc-arcfour-tests,
41411         modules/gc-arctwo-tests, modules/gc-des-tests,
41412         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
41413         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
41414         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
41415         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
41416         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
41417         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
41418         $(EXEEXT) to automake TESTS variable, for mingw32.
41419
41420 2006-01-17  Simon Josefsson  <jas@extundo.com>
41421
41422         * modules/socklen (Include): Need sys/socket.h.
41423
41424 2006-01-17  Bruno Haible  <bruno@clisp.org>
41425
41426         * modules/ssize_t (Include): Add <sys/types.h>.
41427
41428 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
41429
41430         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
41431         it's not portable and it doesn't work with cross-compiles.
41432         Problem reported by Bruno Haible.  Fix missing-$ typo in
41433         'test "gl_cv_ignore_unused_libraries" ...' that prevented
41434         -zignore from being used with Sun's C compiler.
41435
41436 2006-01-12  Simon Josefsson  <jas@extundo.com>
41437
41438         * lib/base64.c: Fix warning, reported by Bruno Haible
41439         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
41440
41441 2006-01-12  Bruno Haible  <bruno@clisp.org>
41442
41443         * modules/ldd: New file.
41444         * build-aux/ldd.sh.in: New file.
41445         * MODULES.html.sh (Support for building libraries and executables): Add
41446         ldd.
41447
41448 2006-01-12  Bruno Haible  <bruno@clisp.org>
41449
41450         * m4/ldd.m4: New file.
41451
41452 2006-01-12  Bruno Haible  <bruno@clisp.org>
41453
41454         * gnulib-tool (func_import, func_create_testdir): Don't go into an
41455         endless loop while replacing $auxdir with build-aux.
41456
41457 2006-01-11  Simon Josefsson  <jas@extundo.com>
41458
41459         * lib/stdint_.h (SIZE_MAX): Add missing (.
41460
41461 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
41462
41463         Sync from coreutils.
41464         * lib/md5.c: Fix commentary typos.
41465         (alignof, UNALIGNED_P): No need for a GCC-specific version.
41466         * lib/md5.h (__attribute__): Remove; unused.
41467         * lib/sha1.c: Fix commentary to match md5 better.
41468         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
41469         so that we don't need to worry about alignment.  All uses changed.
41470         This merges the 2005-10-28 md5 change into sha1.
41471
41472 2006-01-11  Jim Meyering  <jim@meyering.net>
41473
41474         Sync from coreutils.
41475         * lib/md5.c (OP): Fix spacing.
41476
41477 2006-01-11  Bruno Haible  <bruno@clisp.org>
41478
41479         Ensure automatic ordering between gl_LOCK and gl_ARGP.
41480         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
41481         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
41482
41483 2006-01-11  Bruno Haible  <bruno@clisp.org>
41484
41485         Ensure automatic ordering between gl_LOCK and gl_ARGP.
41486         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
41487         the "early" section as well.
41488
41489 2006-01-11  Bruno Haible  <bruno@clisp.org>
41490
41491         Avoid "ar: no archive members specified" error on MacOS X.
41492         * gnulib-tool (func_modules_add_dummy): New function.
41493         (func_import, func_create_testdir): Invoke it.
41494
41495 2006-01-11  Bruno Haible  <bruno@clisp.org>
41496
41497         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
41498         with $auxdir in AC_CONFIG_FILES statements.
41499
41500 2006-01-11  Bruno Haible  <bruno@clisp.org>
41501
41502         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
41503         Initialize also noinst_HEADERS to empty.
41504
41505 2006-01-11  Bruno Haible  <bruno@clisp.org>
41506
41507         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
41508         variables.
41509         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
41510         autoreconf.
41511
41512 2006-01-11  Bruno Haible  <bruno@clisp.org>
41513
41514         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
41515         overridable by the user.
41516         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41517
41518 2006-01-10  Simon Josefsson  <jas@extundo.com>
41519
41520         * modules/sys_socket: New file.
41521
41522 2006-01-10  Simon Josefsson  <jas@extundo.com>
41523
41524         * m4/sys_socket_h.m4: New file.
41525
41526 2006-01-10  Simon Josefsson  <jas@extundo.com>
41527
41528         * lib/socket_.h: New file.
41529
41530 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41531
41532         * modules/readutmp (Maintainer): Add myself.
41533
41534 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41535
41536         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
41537         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
41538         People who are still concerned with buggy memcmp implementations
41539         can invoke gl_FUNC_MEMCMP themselves.
41540
41541 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41542
41543         * lib/regex_internal.h (BITSET_WORD_BITS):
41544         Work around a bug in 64-bit PGC (before version 6.1-2), where the
41545         preprocessor mishandles large unsigned values as if they were signed.
41546         Problem reported by Claudio Fontana in
41547         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
41548
41549 2006-01-10  Jim Meyering  <jim@meyering.net>
41550
41551         Avoid the double-free (first in fts_read, second in fts_close) that
41552         would occur when an `active' directory is made inaccessible (e.g.,
41553         via chmod a-x) during a traversal.
41554         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
41555         before returning.  Reproduce this failure by
41556         mkdir -p a/b; cd a; chmod a-x . b
41557         Reported by Stavros Passas.
41558
41559         Sync from coreutils.
41560         * lib/sha1.c: Tweak grammar in a comment.
41561
41562 2006-01-10  Jim Meyering  <jim@meyering.net>
41563
41564         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
41565         Patch by Joerg Sonnenberger.
41566
41567 2006-01-10  Bruno Haible  <bruno@clisp.org>
41568
41569         * modules/readutmp: Depend on module free.
41570         * modules/strtok_r: Depend on module restrict.
41571
41572 2006-01-10  Bruno Haible  <bruno@clisp.org>
41573
41574         * modules/gettext (configure.ac): Add an invocation of
41575         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
41576
41577 2006-01-10  Bruno Haible  <bruno@clisp.org>
41578
41579         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
41580         Reported by Werner Lemberg <wl@gnu.org>.
41581
41582 2006-01-10  Bruno Haible  <bruno@clisp.org>
41583
41584         * lib/localcharset.c: Update from GNU gettext.
41585
41586 2006-01-10  Bruno Haible  <bruno@clisp.org>
41587
41588         * lib/argp.h (__const): Remove macro. Use const instead.
41589         * lib/argp-fmtstream.h (__const): Likewise.
41590         * lib/glob_.h (__const): Remove macro.
41591         * lib/glob-libc.h: Use const instead of __const.
41592
41593 2006-01-10  Bruno Haible  <bruno@clisp.org>
41594
41595         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
41596         variable.
41597         Needed to avoid an automake error regarding the 'gettext' module.
41598
41599 2006-01-09  Simon Josefsson  <jas@extundo.com>
41600
41601         * modules/inet_ntop (Depends-on): Add restrict.
41602
41603 2006-01-09  Simon Josefsson  <jas@extundo.com>
41604
41605         * modules/gc-rijndael-tests (License): Put under LGPL.
41606
41607         * modules/gc-des-tests (License): Likewise.
41608
41609         * modules/gc-arcfour-tests (License): Likewise.
41610
41611         * modules/gc-arctwo-tests (License): Likewise.
41612
41613         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
41614
41615         * modules/gc-hmac-sha1-tests (Files): Likewise.
41616
41617         * modules/gc-hmac-md5-tests (License): Likewise.
41618
41619         * modules/gc-sha1-tests (License): Likewise.
41620
41621         * modules/gc-md5-tests (License): Likewise.
41622
41623         * modules/gc-md4-tests (License): Likewise.
41624
41625         * modules/gc-md2-tests (License): Likewise.
41626
41627         * modules/gc-tests (License): Likewise.
41628
41629         * modules/des-tests (License): Likewise.
41630
41631         * modules/md4-tests (License): Likewise.
41632
41633         * modules/md2-tests (License): Likewise.
41634
41635 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41636
41637         Sync from coreutils:
41638
41639         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
41640         * modules/lib-ignore: New file.
41641         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
41642         chdir-safer.m4, lchmod.m4.
41643         * modules/openat: Add mkdirat.c, openat-priv.h.
41644
41645 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41646
41647         Sync from coreutils.
41648         * m4/lib-ignore.m4: New file.
41649         * m4/lchmod.m4: New file.
41650
41651 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41652
41653         Sync from coreutils.
41654         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
41655         for write access: POSIX says that must fail.
41656         * lib/fts.c (diropen): Likewise.
41657         * lib/save-cwd.c (save_cwd): Likewise.
41658         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
41659         well, for minor improvements on hosts that lack O_DIRECTORY.
41660         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
41661         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
41662         Fall back on chown if open failed with EACCES.
41663
41664         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
41665         Report an error at compile-time if only a 1-second nominal clock
41666         resolution is found.
41667
41668         * lib/lchmod.h: New file.
41669         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
41670         (make_dir_parents): Use lchown rather than chown, and
41671         lchmod rather than chmod.
41672
41673         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
41674         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
41675         "proc" reported by n0dalus.
41676
41677         * lib/mountlist.c: Include <limits.h>.
41678         (dev_from_mount_options)
41679         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
41680         New function.  It no longer assumes "dev=" has the System V meaning
41681         on Linux (since it doesn't).  It also parses "dev=" more carefully.
41682         (read_file_system_list)
41683         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
41684         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
41685         dev= in that case.
41686
41687         * lib/posixtm.h (PDS_PRE_2000): New macro.
41688         * lib/posixtm.c (year): Arg is now syntax_bits rather than
41689         allow_century.  All usages changed.  Reject dates outside the range
41690         1969-1999 if PDS_PRE_2000 is used.
41691
41692 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41693
41694         Sync from coreutils.
41695         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
41696         (Time of day items): Mention the possibility of leap seconds.
41697         Problem reported by Dr. David Alan Gilbert.
41698
41699 2006-01-09  Jim Meyering  <jim@meyering.net>
41700
41701         Sync from coreutils.
41702
41703         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
41704
41705         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
41706
41707         * lib/modechange.c (mode_compile): Reject an invalid mode string
41708         that starts with an octal digit.  From Andreas Gruenbacher.
41709
41710         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
41711         and dup to open_safer and dup_safer, respectively.
41712         (openat_permissive): Fix typo in comment.
41713
41714         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
41715         "gettext.h"; either no longer needed or are guaranteed by openat.h.
41716         (_): Remove; no longer needed.
41717         (openat): Renamed from rpl_openat; no need for rpl_openat
41718         since openat.h renames openat for us.
41719         Replace most of the body with a call to openat_permissive,
41720         to avoid duplicate code.
41721         Port to (probably hypothetical) environments were mode_t is
41722         wider than int.
41723         (openat_permissive): Require mode arg, so that we can check
41724         types better.  Put it just after flags.  Change cwd failure
41725         indicator from pointer-to-bool to pointer-to-errno-value.
41726         All callers changed.
41727         Invoke openat_save_fail and/or openat_restore_fail if
41728         cwd_errno is null, so that openat can call us.
41729         (openat_permissive, fdopendir, fstatat, unlinkat):
41730         Simplify errno handling to avoid some duplicate code,
41731         as it's OK to set errno on success.
41732         * lib/openat.h: Revamp code so that function macros depend on
41733         __OPENAT_PREFIX only, not also on AT_FDCWD.
41734         (openat_ro): Remove.  Caller changed to use openat_permissive.
41735         (openat_permissive): Now a macro, if not a function.
41736         (openat_restore_fail, openat_save_fail): Now always functions,
41737         since mkdirat needs them even if __OPENAT_PREFIX is defined.
41738
41739         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
41740         and openat.c.
41741         * lib/mkdirat.c: Include openat-priv.h.
41742         Remove definitions of macros defined therein.
41743         * lib/openat.c: Likewise.
41744
41745         * lib/mkdirat.c (mkdirat): New file and function.
41746         * lib/openat.h (mkdirat): Declare.
41747
41748         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
41749
41750         * lib/openat.h (openat_permissive): Declare.
41751         (openat_ro): Define.
41752
41753         * lib/openat.c (EXPECTED_ERRNO): New macro.
41754         (openat_permissive): New function -- used in remove.c rewrite.
41755         (all functions): Set errno just before returning, only if there
41756         was an actual failure.
41757         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
41758
41759         Emulate openat-family functions using Linux's procfs, if possible.
41760         Idea and some code based on Ulrich Drepper's glibc changes.
41761
41762         * lib/openat.c: (BUILD_PROC_NAME): New macro.
41763         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
41764         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
41765         before falling back on save_cwd and restore_cwd.
41766         (fdopendir, fstatat, unlinkat): Likewise.
41767
41768         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
41769         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
41770
41771         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
41772         as second argument to va_arg.  Otherwise, some versions of gcc
41773         warn that `if this code is reached, the program will abort'.
41774
41775 2006-01-09  Jim Meyering  <jim@meyering.net>
41776
41777         Sync from coreutils.
41778         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
41779         Require openat-priv.h.
41780
41781 2006-01-09  Bruno Haible  <bruno@clisp.org>
41782
41783         * modules/strnlen (Include): Use strnlen.h.
41784
41785 2006-01-09  Bruno Haible  <bruno@clisp.org>
41786
41787         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
41788
41789 2006-01-09  Bruno Haible  <bruno@clisp.org>
41790
41791         * lib/sysexit_.h (EX_OK): New macro.
41792         Suggested by Martin Lambers <marlam@marlam.de>.
41793
41794 2006-01-09  Bruno Haible  <bruno@clisp.org>
41795
41796         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
41797         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
41798
41799 2006-01-09  Bruno Haible  <bruno@clisp.org>
41800
41801         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
41802         numbers.
41803
41804 2006-01-09  Bruno Haible  <bruno@clisp.org>
41805
41806         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
41807         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
41808         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
41809         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
41810
41811 2006-01-09  Bruno Haible  <bruno@clisp.org>
41812
41813         * build-aux/javacomp.sh.in: New file, moved from lib/.
41814         * modules/javacomp-script (Files): Update.
41815         (configure.ac): Add AC_CONFIG_FILES invocation.
41816         (EXTRA_DIST): Remove variable.
41817
41818         * build-aux/javaexec.sh.in: New file, moved from lib/.
41819         * modules/javaexec (Files): Update.
41820         (configure.ac): Add AC_CONFIG_FILES invocation.
41821         (EXTRA_DIST): Remove javaexec.sh.in.
41822
41823         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
41824         * modules/csharpcomp-script (Files): Update.
41825         (configure.ac): Add AC_CONFIG_FILES invocation.
41826         (EXTRA_DIST): Remove variable.
41827
41828         * build-aux/csharpexec.sh.in: New file, moved from lib/.
41829         * modules/csharpexec (Files): Update.
41830         (configure.ac): Add AC_CONFIG_FILES invocation.
41831         (EXTRA_DIST): Remove csharpexec.sh.in.
41832
41833 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
41834
41835         Sync from coreutils.
41836
41837         Add POSIX ACL support
41838         * lib/acl.h (copy_acl, set_acl): Add declarations.
41839         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
41840         systems other than Linux.
41841         (chmod_or_fchmod): New function: use fchmod when possible,
41842         and chmod otherwise.
41843         (file_has_acl): Add a POSIX ACL implementation, with a
41844         Linux-specific subcase.
41845         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
41846         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
41847         acls are unsupported.
41848         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
41849         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
41850         are unsupported.
41851
41852 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
41853
41854         Sync from coreutils.
41855         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
41856
41857 2006-01-07  Bruno Haible  <bruno@clisp.org>
41858
41859         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
41860         gl_EARLY.
41861
41862 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
41863
41864         * lib/strftime.c (tzname): Don't declare if it is already #defined.
41865         Problem reported for Mingw by Mark Junker.
41866
41867 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
41868
41869         * README: Gnulib normally doesn't generate a tarball.
41870
41871 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
41872
41873         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
41874         long int, not int, for nanosecond counts, so that people who are
41875         used to POSIX struct timespec won't be surprised.  Reported by Jim
41876         Meyering.
41877
41878 2005-12-28  Bruno Haible  <bruno@clisp.org>
41879
41880         * build-aux/config.rpath: Update from GNU gettext.
41881
41882 2005-12-16  Jim Meyering  <jim@meyering.net>
41883
41884         * modules/fprintftime: New module.
41885         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
41886
41887 2005-12-16  Jim Meyering  <jim@meyering.net>
41888
41889         * m4/fprintftime.m4: New file.
41890
41891 2005-12-16  Jim Meyering  <jim@meyering.net>
41892
41893         * lib/fprintftime.c, lib/fprintftime.h: New files.
41894
41895 2005-12-15  Simon Josefsson  <jas@extundo.com>
41896
41897         * modules/socklen (configure.ac): Fix M4 macro name, to align with
41898         new m4/socklen.m4.
41899
41900 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
41901
41902         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
41903         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
41904
41905 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
41906
41907         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
41908         * lib/argp-help.c (fill_in_uparams): Check if the constructed
41909         struct uparams is valid. Fall back to the default values if it is
41910         not.
41911
41912 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
41913
41914         * modules/argp (Files): Add argp-pin.c
41915         (Depends-on): dirname
41916         (lib_SOURCES): Add argp-pin.c
41917
41918 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
41919
41920         * m4/argp.m4:  Check if program_invocation_name and
41921         program_invocation_short_name are declared and define appropriate
41922         macros if they are not.
41923
41924 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
41925
41926         * lib/argp-help.c (__argp_base_name): New function
41927         (__argp_short_program_name): Rewrite using __argp_base_name
41928         * lib/argp-namefrob.h: Define program_invocation_name and
41929         program_invocation_short_name if requested
41930         (__argp_base_name): Add prototype
41931         * lib/argp-parse.c (argp_def): Use gettext wrappers
41932         (argp_default_parser): Use __argp_base_name
41933         * lib/argp-pin.c: New file. Defines program_invocation_name and
41934         program_invocation_short_name on systems that lack them.
41935
41936 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
41937
41938         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
41939         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
41940         porting problem reported by Georg Schwarz in
41941         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
41942
41943 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
41944
41945         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
41946         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
41947         porting problem reported by Georg Schwarz in
41948         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
41949
41950 2005-12-05  Bruno Haible  <bruno@clisp.org>
41951
41952         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
41953         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
41954         Reported by Mark Junker <mjscod@gmx.de>.
41955
41956 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
41957
41958         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
41959         Use implementation from Albert Chin, with some
41960         comments/corrections by Stepan Kasal and myself.
41961
41962 2005-12-02  Bruno Haible  <bruno@clisp.org>
41963
41964         * gnulib-tool (func_import): Accept GPLed build tool modules when
41965         --lgpl is given.
41966         * modules/csharpcomp-script: New file.
41967         * modules/csharpcomp: Depend on it.
41968         * modules/javacomp-script: New file.
41969         * modules/javacomp: Depend on it.
41970         Suggested by Simon Josefsson.
41971
41972 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
41973
41974         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
41975         statement, to work around an HP-UX 10.20 compiler bug reported by
41976         Peter O'Gorman.
41977
41978 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
41979
41980         * modules/savedir (Depends-on): Add openat.
41981
41982 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
41983
41984         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
41985         (uintmax_t) [defined uintmax_t]: Do not declare.
41986         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
41987         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
41988         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
41989         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
41990         sake of portability to weird hosts that C allows (though we don't
41991         know of any practical examples).
41992
41993         * lib/savedir.h (fdsavedir): New decl.
41994         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
41995         contains most of the former guts of savedir.
41996         (savedir): Use savedirstream.
41997         Include "openat.h".
41998
41999 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
42000
42001         * modules/obstack (Files): Add m4/ulonglong.m4.
42002         Problem reported by Davide Angelocola.
42003
42004 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
42005
42006         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
42007         coreutils no longer futzes with rounding modes.
42008
42009 2005-11-14  Jim Meyering  <jim@meyering.net>
42010
42011         * lib/mkstemp-safer.c: Include <config.h>, required for possible
42012         replacement of mkstemp.
42013
42014 2005-11-10  Simon Josefsson  <jas@extundo.com>
42015
42016         * lib/readline.c: Remove EOL.
42017
42018 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42019
42020         * modules/gethrxtime (Depends-on): Add gettime.
42021
42022 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42023
42024         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
42025         or gettimeofday; no longer needed.
42026
42027 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42028
42029         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
42030         time business.
42031         (gethrxtime) [! (HAVE_NANOUPTIME
42032         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
42033         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
42034         our own approximation.
42035
42036 2005-11-08  Eric Blake  <ebb9@byu.net>
42037
42038         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
42039
42040 2005-11-08  Eric Blake  <ebb9@byu.net>
42041
42042         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
42043
42044 2005-11-04  Bruno Haible  <bruno@clisp.org>
42045
42046         * gnulib-tool: Implement --update mode.
42047
42048 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42049
42050         Fix porting problem reported by Theodoros V. Kalamatianos.
42051         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
42052         Don't assume that futimes failing means we must fail.
42053
42054 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42055
42056         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
42057         variables to suggest the intended function of the PATH_MAX check.
42058
42059 2005-10-30  Kean Johnston  <jkj@sco.com>
42060
42061         Trivial changes to support SCO systems.
42062         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
42063         as PATH_MAX.
42064         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
42065         where __ptr is null when no I/O is pending.
42066
42067 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
42068
42069         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
42070         leave errno alone.  Problem reported by Dmitry V. Levin.
42071
42072 2005-10-28  Simon Josefsson  <jas@extundo.com>
42073
42074         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
42075         Test more.
42076
42077         * tests/test-gc-md2.c, tests/test-md2.c: New files.
42078
42079         * modules/md2, modules/md2-tests: New files.
42080
42081 2005-10-28  Simon Josefsson  <jas@extundo.com>
42082
42083         * m4/inet_ntop.m4: More tests.
42084
42085         * m4/gc-md2.m4, md2.m4: New file.
42086
42087 2005-10-28  Simon Josefsson  <jas@extundo.com>
42088
42089         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
42090         "restrict" keywords, as per POSIX.  Protect the function
42091         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
42092         Don't use K&R prototypes.  Check the sprintf return values.
42093         Re-define EAFNOSUPPORT if not present.  Indent.
42094
42095         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
42096         suggested by Bruno Haible <bruno@clisp.org>.
42097
42098         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
42099
42100         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
42101
42102         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
42103         libgcrypt).
42104
42105         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
42106
42107         * lib/md2.h, lib/md2.c: New files.
42108
42109 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
42110
42111         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
42112         errno alone.  Problem reported by Frederic Jolliton.
42113
42114 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
42115
42116         * modules/verify (License): Change from GPL to LGPL.  This is a
42117         tiny module and there are apparently near-equivalents that are
42118         under the BSD license.
42119
42120 2005-10-24  Simon Josefsson  <jas@extundo.com>
42121
42122         * modules/sha1: Relicense to LGPL.
42123
42124 2005-10-24  Simon Josefsson  <jas@extundo.com>
42125
42126         * lib/md4.h: Shrink buffer size, now that we changed the type.
42127
42128 2005-10-23  Simon Josefsson  <jas@extundo.com>
42129
42130         * gnulib-tool (func_import): Fix --tests-base.
42131
42132 2005-10-22  Simon Josefsson  <jas@extundo.com>
42133
42134         * modules/arcfour (Depends-on): Need stdint.
42135
42136 2005-10-22  Simon Josefsson  <jas@extundo.com>
42137
42138         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
42139         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
42140
42141 2005-10-22  Simon Josefsson  <jas@extundo.com>
42142
42143         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
42144         suggested by Bruno Haible <bruno@clisp.org>.
42145
42146 2005-10-22  Simon Josefsson  <jas@extundo.com>
42147
42148         * lib/crc.h: Include stddef.h, for size_t.
42149
42150 2005-10-22  Simon Josefsson  <jas@extundo.com>
42151
42152         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
42153         arcfour_context struct (simplify test vector testing in GNU
42154         Shishi).
42155
42156 2005-10-21  Simon Josefsson  <jas@extundo.com>
42157
42158         * modules/des, modules/des-tests: New files.
42159
42160         * modules/gc-des, modules/gc-des-tests: New files.
42161
42162         * tests/test-des.c, tests/test-gc-des.c: New file.
42163
42164 2005-10-21  Simon Josefsson  <jas@extundo.com>
42165
42166         * modules/arctwo, modules/arctwo-tests: New files.
42167
42168         * tests/test-arctwo.c: New file.
42169
42170         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
42171
42172         * tests/test-gc-arctwo.c: New file.
42173
42174 2005-10-21  Simon Josefsson  <jas@extundo.com>
42175
42176         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
42177         Bruno Haible <bruno@clisp.org>.
42178
42179         * m4/gc-des.m4: New file.
42180
42181 2005-10-21  Simon Josefsson  <jas@extundo.com>
42182
42183         * m4/arctwo.m4: New file.
42184
42185         * m4/gc-arctwo.m4: New file.
42186
42187 2005-10-21  Simon Josefsson  <jas@extundo.com>
42188
42189         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
42190         block.
42191
42192 2005-10-21  Simon Josefsson  <jas@extundo.com>
42193
42194         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
42195         <bruno@clisp.org>.
42196
42197         * lib/hmac-sha1.c (hmac_sha1): Likewise.
42198
42199         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
42200         Bruno Haible <bruno@clisp.org>.
42201
42202         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
42203         <bruno@clisp.org>.
42204
42205 2005-10-21  Simon Josefsson  <jas@extundo.com>
42206
42207         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
42208
42209 2005-10-21  Simon Josefsson  <jas@extundo.com>
42210
42211         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
42212
42213 2005-10-21  Simon Josefsson  <jas@extundo.com>
42214
42215         * lib/des.h, lib/des.c: New files.
42216
42217         * lib/gc-gnulib.c: Support DES.c
42218
42219 2005-10-21  Simon Josefsson  <jas@extundo.com>
42220
42221         * lib/arctwo.h, lib/arctwo.c: New files.
42222
42223         * lib/gc-gnulib.c: Support ARCTWO.
42224
42225 2005-10-21  Simon Josefsson  <jas@extundo.com>
42226
42227         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
42228         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
42229
42230 2005-10-21  Simon Josefsson  <jas@extundo.com>
42231
42232         * gnulib-tool (func_import, func_create_testdir): Define automake
42233         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
42234         Makefile.am snippet),
42235         suggested by Bruno Haible <bruno@clisp.org>.
42236
42237         * modules/gc (Makefile.am): Use it.
42238
42239 2005-10-21  Bruno Haible  <bruno@clisp.org>
42240
42241         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
42242         patch.
42243
42244 2005-10-19  Simon Josefsson  <jas@extundo.com>
42245
42246         * tests/test-gc-rijndael.c: New file.
42247
42248         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
42249
42250 2005-10-19  Simon Josefsson  <jas@extundo.com>
42251
42252         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
42253         interface too.
42254
42255 2005-10-19  Simon Josefsson  <jas@extundo.com>
42256
42257         * tests/test-gc-arcfour.c: New file.
42258
42259         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
42260
42261 2005-10-19  Simon Josefsson  <jas@extundo.com>
42262
42263         * modules/gc-md4, modules/gc-md4-tests: New file.
42264
42265         * tests/test-gc-md4.c: New file.
42266
42267 2005-10-19  Simon Josefsson  <jas@extundo.com>
42268
42269         * m4/gc-md4.m4: New file.
42270
42271 2005-10-19  Simon Josefsson  <jas@extundo.com>
42272
42273         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
42274         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
42275         <kasal@ucw.cz>.
42276
42277 2005-10-19  Simon Josefsson  <jas@extundo.com>
42278
42279         * m4/gc-arcfour.m4: New file.
42280
42281         * m4/gc-rijndael.m4: New file.
42282
42283 2005-10-19  Simon Josefsson  <jas@extundo.com>
42284
42285         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
42286
42287 2005-10-19  Simon Josefsson  <jas@extundo.com>
42288
42289         * lib/gc-gnulib.c: Support ARCFOUR.
42290
42291 2005-10-19  Simon Josefsson  <jas@extundo.com>
42292
42293         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
42294         support.
42295
42296         * lib/gc.h: Add ECB enum type.
42297
42298         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
42299
42300 2005-10-18  Simon Josefsson  <jas@extundo.com>
42301
42302         * tests/test-md5.c: New file.
42303
42304         * modules/md5-tests: New file.
42305
42306 2005-10-18  Simon Josefsson  <jas@extundo.com>
42307
42308         * tests/test-md4.c: New file.
42309
42310         * modules/md4, modules/md4-tests: New files.
42311
42312 2005-10-18  Simon Josefsson  <jas@extundo.com>
42313
42314         * m4/md4.m4: New file.
42315
42316 2005-10-18  Simon Josefsson  <jas@extundo.com>
42317
42318         * lib/md4.h, lib/md4.c: New files, based on md5.?.
42319
42320 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
42321
42322         * gnulib-tool (func_create_testdir): Omit the second check whether
42323         BUILT_SOURCES in nonempty.
42324
42325 2005-10-17  Simon Josefsson  <jas@extundo.com>
42326
42327         * tests/test-rijndael.c: New file.
42328
42329 2005-10-17  Simon Josefsson  <jas@extundo.com>
42330
42331         * modules/sha1: Depend on stdint instead of md5.
42332
42333         * modules/md5: Depend on stdint, remove uint32_t.
42334
42335 2005-10-17  Simon Josefsson  <jas@extundo.com>
42336
42337         * modules/gc-sha1-tests: New file.
42338
42339         * tests/test-gc-sha1.c: New file.
42340
42341 2005-10-17  Simon Josefsson  <jas@extundo.com>
42342
42343         * m4/md5.m4: Remove call to uint32_t.m4.
42344
42345 2005-10-17  Simon Josefsson  <jas@extundo.com>
42346
42347         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
42348
42349         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
42350         md5.h.
42351
42352         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
42353
42354         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
42355
42356 2005-10-17  Simon Josefsson  <jas@extundo.com>
42357
42358         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
42359
42360 2005-10-17  Simon Josefsson  <jas@extundo.com>
42361
42362         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
42363
42364 2005-10-17  Simon Josefsson  <jas@extundo.com>
42365
42366         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
42367
42368         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
42369
42370 2005-10-17  Bruno Haible  <bruno@clisp.org>
42371
42372         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
42373         that it can also be used in a test.
42374
42375 2005-10-16  Bruno Haible  <bruno@clisp.org>
42376
42377         * gnulib-tool (func_emit_tests_Makefile_am): Also define
42378         TESTS_ENVIRONMENT, so that individual tests can augment it.
42379
42380         * gnulib-tool (func_create_testdir): Use an intermediate target for
42381         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
42382         macros, like $(ALLOCA_H), which cannot be passed through the command
42383         line.
42384
42385 2005-10-15  Simon Josefsson  <jas@extundo.com>
42386
42387         * modules/rijndael-tests: New file.
42388
42389         * modules/rijndael: New file.
42390
42391 2005-10-15  Simon Josefsson  <jas@extundo.com>
42392
42393         * m4/rijndael.m4: New file.
42394
42395 2005-10-15  Simon Josefsson  <jas@extundo.com>
42396
42397         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
42398
42399         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
42400
42401 2005-10-14  Simon Josefsson  <jas@extundo.com>
42402
42403         * tests/test-arcfour.c: New file.
42404
42405         * modules/arcfour, modules/arcfour-tests: New files.
42406
42407 2005-10-14  Simon Josefsson  <jas@extundo.com>
42408
42409         * m4/arcfour.m4: New file.
42410
42411 2005-10-14  Simon Josefsson  <jas@extundo.com>
42412
42413         * lib/arcfour.h, lib/arcfour.c: New files.
42414
42415 2005-10-14  Roland McGrath  <roland@redhat.com>
42416
42417         Import from libc.  [BZ #1331]
42418         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
42419         macro argument.
42420         Reported by Matej Vela <vela@debian.org>.
42421
42422 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42423
42424         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
42425         include <wchar.h>; no longer needed.
42426
42427 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42428
42429         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
42430
42431 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
42432         and  Ulrich Drepper  <drepper@redhat.com>
42433
42434         Import from libc.
42435         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
42436         instead of inline stream orientation test and two separate
42437         function calls.  Pay no attention to USE_IN_LIBIO.
42438
42439 2005-10-13  Simon Josefsson  <jas@extundo.com>
42440
42441         * modules/gc-hmac-md5-tests: New file.
42442
42443         * tests/test-gc-hmac-sha1.c: New file.
42444
42445         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
42446
42447         * modules/gc-hmac-md5-tests: New file.
42448
42449         * tests/test-gc-md5.c: New file.
42450
42451         * modules/gc-md5-tests: New file.
42452
42453 2005-10-13  Simon Josefsson  <jas@extundo.com>
42454
42455         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
42456         Move memory allocation outside of loop.
42457
42458 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
42459
42460         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
42461         intermediate directory is in a read-only file system.  Problem
42462         reported by Eric Blake.
42463
42464 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
42465
42466         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
42467
42468 2005-10-12  Simon Josefsson  <jas@extundo.com>
42469
42470         * tests/test-hmac-sha1.c: New file.
42471
42472         * modules/hmac-sha1-tests: New file.
42473
42474         * modules/hmac-sha1: New file.
42475
42476 2005-10-12  Simon Josefsson  <jas@extundo.com>
42477
42478         * modules/gc-sha1: New file.
42479
42480 2005-10-12  Simon Josefsson  <jas@extundo.com>
42481
42482         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
42483
42484         * tests/test-gc-pbkdf2-sha1.c: New file.
42485
42486 2005-10-12  Simon Josefsson  <jas@extundo.com>
42487
42488         * modules/gc-md5, modules/gc-hmac-md5: New files.
42489
42490         * modules/gc (Files): Remove md5, memxor and hmac files.
42491
42492 2005-10-12  Simon Josefsson  <jas@extundo.com>
42493
42494         * m4/gc-pbkdf2-sha1.m4: New file.
42495
42496         * m4/gc-hmac-sha1.m4: New file.
42497
42498         * m4/gc-sha1: New file.
42499
42500         * m4/hmac-sha1.m4: New file.
42501
42502 2005-10-12  Simon Josefsson  <jas@extundo.com>
42503
42504         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
42505
42506         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
42507
42508 2005-10-12  Simon Josefsson  <jas@extundo.com>
42509
42510         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
42511         suggested by Bruno Haible <bruno@clisp.org>.
42512
42513 2005-10-12  Simon Josefsson  <jas@extundo.com>
42514
42515         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
42516
42517 2005-10-12  Simon Josefsson  <jas@extundo.com>
42518
42519         * lib/gc-pbkdf2-sha1.c: New file.
42520
42521         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
42522
42523 2005-10-12  Simon Josefsson  <jas@extundo.com>
42524
42525         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
42526
42527         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
42528
42529 2005-10-12  Simon Josefsson  <jas@extundo.com>
42530
42531         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
42532         GC_USE_HMAC_MD5, respectively.
42533
42534         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
42535         (gc_md5): Fix typo.
42536
42537         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
42538
42539         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
42540
42541         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
42542
42543 2005-10-12  Bruno Haible  <bruno@clisp.org>
42544
42545         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
42546         Reported by Stepan Kasal <kasal@ucw.cz>.
42547
42548 2005-10-11  Simon Josefsson  <jas@extundo.com>
42549
42550         * tests/test-crc.c: New file.
42551
42552         * modules/crc, modules/crc-tests: New files.
42553
42554 2005-10-11  Simon Josefsson  <jas@extundo.com>
42555
42556         * m4/crc.m4: New file.
42557
42558 2005-10-11  Simon Josefsson  <jas@extundo.com>
42559
42560         * lib/gc.h: Add gc_hash and gc_hash_buffer.
42561
42562         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
42563
42564         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
42565
42566 2005-10-11  Simon Josefsson  <jas@extundo.com>
42567
42568         * lib/crc.h, lib/crc.c: New files.
42569
42570         * lib/gc.h (gc_hash_buffer): Add doc.
42571
42572 2005-10-11  Bruno Haible  <bruno@clisp.org>
42573
42574         * modules/c-strcasestr: New file.
42575         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
42576
42577 2005-10-11  Bruno Haible  <bruno@clisp.org>
42578
42579         * modules/c-strcase: New file.
42580         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
42581
42582 2005-10-11  Bruno Haible  <bruno@clisp.org>
42583
42584         * lib/strcasecmp.c: Include limits.h.
42585         (strcasecmp): Avoid integer overflow on exotic platforms.
42586         * lib/strncasecmp.c: Include limits.h.
42587         (strncasecmp): Avoid integer overflow on exotic platforms.
42588         Reported by Paul Eggert.
42589
42590 2005-10-11  Bruno Haible  <bruno@clisp.org>
42591
42592         * lib/c-strcasestr.h: New file, from GNU gettext.
42593         * lib/c-strcasestr.c: New file, from GNU gettext.
42594
42595 2005-10-11  Bruno Haible  <bruno@clisp.org>
42596
42597         * lib/c-strcase.h: New file, from GNU gettext.
42598         * lib/c-strcasecmp.c: New file, from GNU gettext.
42599         * lib/c-strncasecmp.c: New file, from GNU gettext.
42600
42601 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
42602
42603         * modules/mempcpy (License): GPL -> LGPL.
42604         * modules/strchrnul (License): Likewise.
42605         * modules/sysexits (License): Likewise.
42606
42607 2005-10-08  Simon Josefsson  <jas@extundo.com>
42608
42609         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
42610
42611 2005-10-07  Simon Josefsson  <jas@extundo.com>
42612
42613         * m4/memxor.m4: Remove gl_C_RESTRICT call.
42614
42615 2005-10-06  Simon Josefsson  <jas@extundo.com>
42616
42617         * tests/test-hmac-md5.c: New file.
42618
42619         * modules/hmac-md5-tests: New file.
42620
42621         * modules/hmac-md5: New file.
42622
42623 2005-10-06  Simon Josefsson  <jas@extundo.com>
42624
42625         * m4/hmac-md5.m4: New file.
42626
42627         * m4/memxor.m4: Require gl_C_RESTRICT.
42628
42629 2005-10-06  Simon Josefsson  <jas@extundo.com>
42630
42631         * lib/memxor.c (memxor): Avoid casts and warnings.
42632
42633 2005-10-06  Simon Josefsson  <jas@extundo.com>
42634
42635         * lib/hmac-md5.c: New file.
42636
42637         * lib/hmac.h: New file.
42638
42639 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
42640
42641         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
42642         promotes to int, not unsigned int, to catch the AIX 5.3
42643         compiler bug.
42644
42645 2005-10-05  Simon Josefsson  <jas@extundo.com>
42646
42647         * modules/memxor: New file.
42648
42649         * modules/iconv (Files): Move config.rpath to havelib, it is used
42650         there.
42651
42652         * modules/havelib (Files): Add config.rpath.
42653
42654 2005-10-05  Simon Josefsson  <jas@extundo.com>
42655
42656         * m4/memxor.m4: New file.
42657
42658 2005-10-05  Simon Josefsson  <jas@extundo.com>
42659
42660         * lib/memxor.c (memxor): Fix compiler error.
42661
42662         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
42663         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
42664
42665         * lib/memxor.h, lib/memxor.c: New files.
42666
42667         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
42668         we assume all systems have it, suggested by Jim Meyering
42669         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
42670         any systems lack sys/socket.h; mingw32 is known to lack it, but we
42671         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
42672         same reasons.
42673
42674 2005-10-05  Simon Josefsson  <jas@extundo.com>
42675
42676         * config/srclist.txt: Add glibc bug 1423 for md5.h.
42677
42678 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
42679
42680         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
42681         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
42682         needed, since the source code now assumes these .h files.
42683
42684 2005-10-05  Derek Price  <derek@ximbiot.com>
42685
42686         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
42687
42688 2005-10-05  Bruno Haible  <bruno@clisp.org>
42689
42690         * modules/stdint (License): Change to LGPL.
42691
42692 2005-10-04  Simon Josefsson  <jas@extundo.com>
42693
42694         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
42695         D. Baushke" <mdb@gnu.org>.
42696
42697 2005-10-04  Bruno Haible  <bruno@clisp.org>
42698
42699         * lib/verify.h (verify_true): Provide alternative definition for C++.
42700
42701 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
42702
42703         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
42704         (SSIZE_MAX): New macro, if not already defined.
42705         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
42706         than 2 GiB.
42707
42708 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42709
42710         Sync from coreutils.
42711         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
42712         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
42713         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
42714         ULLONG_MAX doesn't work with 2.7.2.1.
42715
42716 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42717
42718         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
42719         From Ben Pfaff.
42720
42721         * modules/exclude (Depends-on): Depend on verify.
42722         * modules/strtoimax (Depends-on): Likewise.
42723         * modules/utimecmp (Depends-on): Likewise.
42724
42725 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42726
42727         * lib/exclude.c: Include verify.h.
42728         (verify): Remove.  All callers changed to use verify.h's version.
42729         * lib/strtoimax.c: Likewise.
42730         * lib/utimecmp.c: Likewis.e
42731
42732         Sync from coreutils.
42733         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
42734         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
42735         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
42736         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
42737         bother returning ENOSYS if settimeofday or stime fails; just let
42738         them return whatever errno they want to return.
42739         * lib/utimens.c: Include unistd.h, for dup2.
42740         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
42741         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
42742
42743 2005-10-02  Jim Meyering  <jim@meyering.net>
42744
42745         Sync from coreutils.
42746         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
42747         from glibc-2.2.5 that fails for read-only files.
42748
42749 2005-10-02  Jim Meyering  <jim@meyering.net>
42750
42751         Sync from coreutils.
42752         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
42753         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
42754         `#if HAVE_CONFIG_H'.
42755         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
42756         Remove AT_FDCWD test.
42757         Do not consume the fd unless successful.
42758         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
42759         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
42760         block, so that we don't even try to compile it if settimeofday is
42761         available.  This works around a compilation failure on OSF1 V5.1,
42762         due to stime requiring a `long int*' while tv_sec is `int'.
42763
42764 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
42765
42766         Sync from coreutils.
42767         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
42768         against `yes', rather than just testing for nonempty.
42769
42770 2005-10-01  Simon Josefsson  <jas@extundo.com>
42771
42772         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
42773         and Darwin.
42774
42775         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
42776         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
42777         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
42778         freeaddrinfo and gai_strerror are declared by the POSIX headers.
42779         Check if struct addrinfo is declared.
42780
42781 2005-10-01  Simon Josefsson  <jas@extundo.com>
42782
42783         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
42784         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
42785         AI_* and EAI_* definitions.  Protect function declarations.
42786
42787 2005-10-01  Jim Meyering  <jim@meyering.net>
42788
42789         Sync from coreutils.
42790
42791         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
42792         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
42793         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
42794         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
42795         in the inet and nsl libraries.  Required on Solaris 5.7.
42796
42797 2005-10-01  Jim Meyering  <jim@meyering.net>
42798
42799         Sync from coreutils.
42800         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
42801         in the inet and nsl libraries.  Required on Solaris 5.7.
42802
42803 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
42804
42805         * lib/getdelim.c (getdelim): Remove unused variables.
42806
42807 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
42808
42809         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
42810         so that the code works even with ancient cpp.  Portability problem
42811         with GCC 2.7.2.1 reported by Thomas M.Ott.
42812
42813 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
42814
42815         * modules/regex (Depends-on): Add strcase.
42816
42817         * modules/gethostname (Licence): Change from GPL to LGPL, since
42818         gethostname.c is a trivial implementation of a standard library
42819         function.
42820         * modules/poll (License): Change from GPL to LGPL, since it's
42821         derived from LGPL code.
42822
42823 2005-09-27  Jim Meyering  <jim@meyering.net>
42824
42825         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
42826         HAVE_CONFIG_H.
42827
42828         * lib/intprops.h (signed_type_or_expr__): Define.
42829         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
42830         for unsigned types.
42831
42832 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
42833
42834         * lib/verify.h (verify_expr): Remove, replacing with:
42835         (verify_true): New macro that returns true instead of void.
42836         (verify_type__): Remove.
42837         (verify): Use verify_true rather than verify_type__.
42838
42839 2005-09-26  Bruno Haible  <bruno@clisp.org>
42840
42841         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
42842         is necessary.
42843         (lib_SOURCES): Remove mbchar.c.
42844         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
42845         (Files): Add m4/mbrtowc.m4.
42846         * modules/mbiter: Likewise.
42847         * modules/mbuiter: Likewise.
42848
42849 2005-09-26  Bruno Haible  <bruno@clisp.org>
42850
42851         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
42852         compile mbchar.c if they are not both present.
42853         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
42854         * m4/mbiter.m4 (gl_MBITER): Likewise.
42855         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
42856         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
42857         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
42858
42859 2005-09-25  Jim Meyering  <jim@meyering.net>
42860
42861         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
42862         also uses socklen_t.
42863
42864 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
42865
42866         * lib/utimens.c (ENOSYS): Define if not already defined.
42867         (futimens): Support having a null PATH if the file descriptor
42868         is nonnegative.
42869
42870         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
42871         Remove.
42872         (__attribute): Define to empty unless GCC 3.1 or later.
42873         This works around a core dump on OpenBSD 3.4, which has GCC
42874         2.95.3, which dumps core when given __attribute__(()).  It also
42875         simplifies other tests, since we really don't want to bother with
42876         worrying about which ancient version of GCC supported what.
42877         Original problem reported by Yoann Vandoorselaere, with part of
42878         the fix suggested by Derek Price.
42879
42880 2005-09-24  Jim Meyering  <jim@meyering.net>
42881
42882         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
42883         so we can once again use a positive bitfield width of 1 -- now we
42884         don't have to explain why we were using a bitfield width of 2.
42885
42886 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
42887
42888         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
42889         and similarly for the other external symbols.  Problem reported
42890         by James Gallager.
42891
42892         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
42893         bug reported by Jim Meyering.
42894
42895         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
42896         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
42897         not needed, since socklen is a prerequisite module.
42898
42899 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
42900
42901         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
42902         Problem reported by Eric Blake.
42903         (getaddrinfo): Initialize se so that it's not garbage.
42904         Redo internal storage allocation so that it doesn't make unportable
42905         assumptions about alignment.
42906         Fix a memory leak.
42907
42908         * lib/utimens.c (futimens): Use futimesat if available.
42909         Prefer it to futimes since it doesn't have the futimes bug.
42910
42911         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
42912         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
42913         Instead, declare a function that returns a pointer to an array,
42914         and use verify_type__ to declare the size of the array.
42915         Problem and germ of a solution reported by Bruno Haible.
42916         (verify_type__): Use 2, not 1, for bitfield size, to avoid
42917         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
42918
42919 2005-09-23  Jim Meyering  <jim@meyering.net>
42920
42921         Sync from coreutils.
42922         Correct build failure (socklen_t not defined) on at least
42923         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
42924         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
42925
42926 2005-09-23  Jim Meyering  <jim@meyering.net>
42927
42928         * modules/getaddrinfo (Depends-on): Add socklen.
42929
42930 2005-09-23  Bruno Haible  <bruno@clisp.org>
42931
42932         * tests/test-verify.c: New file.
42933
42934 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
42935
42936         Sync from coreutils.
42937
42938         * modules/argmatch (Depends-on): Add verify.
42939         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
42940         unistd-safer.
42941         * modules/save-cwd (Depends-on): Likewise.
42942
42943         * modules/openat (Files): Add lib/openat-die.c.
42944         (Depends-on): Remove error, exitfail.
42945         Add dirname.
42946
42947         * modules/verify: New file.
42948         * MODULES.html.sh (Diagnostics <assert.h>): New section,
42949         with "verify" module.
42950
42951 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
42952
42953         Sync from coreutils.
42954
42955         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
42956         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
42957         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
42958         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
42959         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
42960         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
42961         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
42962         Don't bother checking for string.h, stdlib.h, unistd.h.
42963         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
42964         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
42965         module's job.
42966         * m4/jm-macros.m4 (gl_MACROS): Likewise.
42967         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
42968
42969         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
42970         (gl_GETDATE): Use it.
42971
42972         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
42973
42974 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
42975
42976         Sync from coreutils.
42977
42978         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
42979         stat-time.h.
42980         * lib/argmatch.h: Include verify.h
42981         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
42982         (ARGMATCH_ASSERT): Remove; unused.
42983         * lib/canonicalize.c: Assume STDC_HEADERS.
42984         * lib/exclude.c: Include "strcase.h".
42985         * lib/regex_internal.h [!defined _LIBC]: Likewise.
42986         * lib/getusershell.c: Include stdio--.h rather than stdio.h
42987         and stdio-safer.h.
42988         (getusershell): Call fopen, not fopen_safer.
42989         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
42990         Do not include unistd-safer.h.
42991         (save_cwd): Don't call fd_safer; no longer needed
42992         now that we include fcntl--.h.
42993
42994         * lib/getdate.y (relative_time): New type.
42995         (RELATIVE_TIME_0): New constant.
42996         (parser_control): Use relative_time instead of doing it ourselves.
42997         (%union): Add new relative_time rel member.
42998         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
42999         Now typeless.
43000         (relunit, relunit_snumber): Now of type rel.
43001         (zone, rel, relunit, get_date): Adjust to above changes.
43002
43003         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
43004         Do not include unistd-safer.h.
43005         (getloadavg): Don't call fd_safer; no longer needed
43006         now that we include fcntl--.h.
43007
43008         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
43009         (make_dir_parents): Treat ENOSYS like EEXIST.
43010
43011         Improve quality of diagnostics on restore_cwd failure.
43012         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
43013         (make_dir_parents): Last arg is now int * (for errno), not bool *.
43014         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
43015         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
43016         each time through the loop.  Do not diagnose restore_cwd failure;
43017         that is the caller's job (and perhaps the caller does not care).
43018
43019         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
43020         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
43021         If the file already exists but is not a directory, don't bother
43022         to try to make its parents.
43023         Close potential file descriptor leak if we can't chdir("/") (!).
43024         Don't always return true if chdir($PWD) fails; return true only
43025         if the requested action was done successfully (except for the
43026         chdir($PWD)).
43027         Don't log final directory unless we actually made it.
43028         Refactor to avoid duplicate code to fix up permissions.
43029         Don't attempt to fix up parent permissions if chdir($PWD) fails.
43030
43031         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
43032         to make it a bit faster and (I hope) clearer.
43033         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
43034         Fix bug in formats like %2N.
43035
43036         * lib/verify.h: New file.
43037
43038 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43039
43040         Sync from coreutils.
43041         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
43042
43043 2005-09-22  Jim Meyering  <jim@meyering.net>
43044
43045         Sync from coreutils.
43046
43047         * m4/lstat.m4 (gl_FUNC_LSTAT):
43048         Use AC_LIBSOURCES to require lstat.c and lstat.h.
43049         Remove obsolete comment.
43050         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
43051         * m4/xstrtod.m4: Likewise.
43052
43053         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
43054
43055 2005-09-22  Jim Meyering  <jim@meyering.net>
43056
43057         Sync from coreutils.
43058
43059         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
43060
43061         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
43062         the .tm_year member, since otherwise gcc-4.0 would now warn about
43063         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
43064
43065         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
43066         order to avoid an unsuppressible warning from gcc on 64-bit systems.
43067
43068         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
43069         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
43070         when run in a time zone for which daylight savings time is in effect
43071         for the starting date.
43072
43073         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
43074         stop us from restricting permissions of just-created absolute-named
43075         directories.
43076         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
43077         to restore initial working directory.
43078         * lib/mkdir-p.c (make_dir_parents): New parameter:
43079         different_working_dir, to tell caller if/when we change the working
43080         directory and are unable to return to the initial one.
43081         * lib/mkdir-p.h (make_dir_parents): Update prototype.
43082         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
43083         `return false'.  This fixes a bug introduced on 2004-07-30.
43084
43085         * lib/openat.c (fdopendir): Be sure to close the supplied
43086         file descriptor before returning.  This makes our replacement
43087         implementation a little closer to Solaris's, where fdopendir
43088         ties the file descriptor to the returned DIR* pointer.
43089         * lib/openat.c (unlinkat): New function.
43090         * lib/openat.h (unlinkat): Add prototype.
43091         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
43092         (openat_restore_fail): Rename from openat_restore_die.
43093         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
43094
43095         Provide an alternative to exiting immediately upon save_cwd or
43096         restore_cwd failure.  Now, an application can arrange e.g.,
43097         to perform a longjump in that case.
43098         * lib/openat.c: Include dirname.h.
43099         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
43100         (rpl_openat, fdopendir, fstatat): Call openat_save_die
43101         and openat_restore_die rather than calling error directly.
43102         Don't include "error.h" or "exitfail.h"; they're no longer needed.
43103
43104         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
43105         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
43106         define.
43107
43108         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
43109         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
43110                             int utc, int nanoseconds);
43111         Background:
43112         date should not have to allocate a megabyte of virtual memory to
43113         handle a format argument like +%1048575T.  When implemented with
43114         strftime, it must allocate such a buffer, use strftime to fill it
43115         in, print it, then free it.
43116         With fprintftime, it simply prints everything and exits.
43117         With no need for memory allocation, that's one fewer way to fail.
43118         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
43119         optional field width, not before, so we accept %9:z, not %:9z.
43120         (my_strftime): Be sure to use L_('x') for literals.
43121
43122         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
43123         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
43124         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
43125         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
43126         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
43127         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
43128         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
43129         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
43130         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
43131         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
43132         * lib/xgethostname.c, lib/xreadlink.c:
43133         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
43134
43135         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
43136         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
43137         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
43138         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
43139         and don't include <sys/file.h>).
43140
43141 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
43142
43143         Sync from coreutils.
43144
43145         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
43146         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
43147         [!LDAV_DONE]: Avoid unused variable warning.
43148
43149 2005-09-21  Bruno Haible  <bruno@clisp.org>
43150
43151         * lib/unicodeio.h (unicode_to_mb): New declaration.
43152
43153 2005-09-20  Derek Price  <derek@ximbiot.com>
43154
43155         * lib/getaddrinfo.c: Don't include <netdb.h> included from
43156         getaddrinfo.h.
43157
43158 2005-09-20  Bruno Haible  <bruno@clisp.org>
43159
43160         * gnulib-tool: Remove trailing slashes from the values specified for
43161         --source-base, --m4-base, --tests-base, --aux-dir.
43162         Suggested by Simon Josefsson <jas@extundo.com>.
43163
43164 2005-09-20  Bruno Haible  <bruno@clisp.org>
43165
43166         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
43167         func_modules_to_filelist, func_import, func_create_testdir): Make all
43168         sorting results locale-independent, so that gnulib-cache.m4 doesn't
43169         change when gnulib-tool is invoked in a different locale.
43170
43171 2005-09-19  Simon Josefsson  <jas@extundo.com>
43172
43173         * m4/socklen.m4: Fix typo.
43174
43175 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43176
43177         Use a consistent style for including <config.h>.
43178         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
43179         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
43180         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
43181         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
43182         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
43183         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
43184         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
43185         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
43186         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
43187         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
43188         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
43189         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
43190         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
43191         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
43192         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
43193         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
43194         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
43195         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
43196         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
43197         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
43198         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
43199         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
43200         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
43201         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
43202         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
43203         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
43204         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
43205         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
43206         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
43207         lib/xstrtoumax.c, lib/yesno.c:
43208         Standardize inclusion of config.h.
43209         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
43210         lib/inttostr.h:  Removed inclusion of config.h from header files.
43211         * lib/inttostr.c:  Adjusted in-tree users.
43212         * lib/timespec.h: Remove superfluous warning to include config.h.
43213         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
43214         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
43215         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
43216         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
43217         config.h with HAVE_CONFIG_H.
43218
43219 2005-09-19  Jim Meyering  <jim@meyering.net>
43220
43221         * modules/pathmax (License): Change to LGPL.
43222
43223 2005-09-19  Derek Price  <derek@ximbiot.com>
43224
43225         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
43226
43227 2005-09-19  Bruno Haible  <bruno@clisp.org>
43228
43229         * gnulib-tool (import): Provide default for --tests-base.
43230
43231 2005-09-19  Bruno Haible  <bruno@clisp.org>
43232
43233         * doc/quote.texi: New file, extracted from gnulib.texi.
43234         * doc/ctime.texi: New file, extracted from gnulib.texi.
43235         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
43236         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
43237         * doc/gnulib.texi: Include them.
43238
43239 2005-09-18  Bruno Haible  <bruno@clisp.org>
43240
43241         Portability fix.
43242         * gnulib-tool (func_readlink): New function.
43243         (func_ln_if_changed): Use it.
43244
43245 2005-09-18  Bruno Haible  <bruno@clisp.org>
43246
43247         * gnulib-tool: Support --with-tests also with --import.
43248         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
43249         (func_import): Use variables $testsbase and $inctests. Emit a
43250         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
43251         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
43252         SUBDIRS += $testsdir.
43253         (func_create_testdir): Update.
43254
43255 2005-09-18  Bruno Haible  <bruno@clisp.org>
43256
43257         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
43258         instead of $dry_run.
43259         (func_cp_if_changed, func_mv_if_changed): Remove functions.
43260         (func_ln_if_changed): Don't handle dry-run here.
43261         (func_import): In dry-run mode, detect more precisely which actions
43262         would be performed, and don't use "...ing" verbs.
43263
43264 2005-09-18  Bruno Haible  <bruno@clisp.org>
43265
43266         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
43267         (func_import): Use join on two temporary files instead of three nested
43268         loops, in order to determine which files are new or old.
43269
43270 2005-09-18  Bruno Haible  <bruno@clisp.org>
43271
43272         * gnulib-tool (func_import): Comment out code that spits out the
43273         new files with --dry-run.
43274
43275 2005-09-18  Bruno Haible  <bruno@clisp.org>
43276
43277         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
43278
43279 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43280
43281         * lib/stat-time.h: New file.
43282         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
43283         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
43284         in a different way.
43285         (timespec_cmp): New function.
43286         * lib/utimecmp.c: Include stat-time.h.
43287         (SYSCALL_RESOLUTION): Depend on whether various struct stat
43288         members exist, not on the obsolescent ST_MTIM_NSEC.
43289         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
43290
43291 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43292
43293         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
43294
43295 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43296
43297         * MODULES.html.sh (File system functions): Add stat-time.
43298         * modules/stat-time: New file.
43299         * modules/timespec (Files): Remove m4/st_mtim.m4; this
43300         is now done in a different way, by the stat-time module.
43301         * modules/utimecmp (Depends-on): Add stat-time.
43302
43303 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43304
43305         * m4/st_mtim.m4: Remove.  Superseded by...
43306         * m4/stat-time.m4: New file.
43307         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
43308         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
43309
43310 2005-09-15  Derek Price  <derek@ximbiot.com>
43311
43312         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
43313
43314 2005-09-15  Derek Price  <derek@ximbiot.com>
43315
43316         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
43317         * lib/regex_internal.c: Ditto, using this...
43318         (__GNUC_PREREQ): ...new macro.
43319         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
43320         using...
43321         (__GNUC_PREREQ): ...this new macro.
43322
43323         * lib/strstr.h: Include string.h. Define strstr as a macro here.
43324
43325 2005-09-15  Derek Price  <derek@ximbiot.com>
43326             Paul Eggert  <eggert@cs.ucla.edu>
43327
43328         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
43329         changes, consolidating in...
43330         * lib/regex_internal.h: ...this file.
43331
43332 2005-09-13  Jim Meyering  <jim@meyering.net>
43333
43334         * lib/canon-host.c: Filter through gnu indent and reword comments
43335         slightly.
43336         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
43337
43338 2005-09-13  Derek Price  <derek@ximbiot.com>
43339
43340         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
43341         failure.
43342         Reported by Jim Meyering  <jim@meyering.net>.
43343
43344 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
43345
43346         * lib/base64.c: Typo.
43347         (base64_encode): Put b64str in initialized data section.
43348
43349 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
43350
43351         Merge glibc and coreutils changes into gnulib, plus a few
43352         extra fixes.
43353         * lib/md5.c: Use #error rather than a string.
43354         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
43355         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
43356         (__attribute__): Define to empty for non recent-GCC.
43357         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
43358         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
43359         Renamed from their non-__ counterparts, with new macros replacing
43360         them if not _LIBC.  Add __THROW attribute.
43361         (rol): Remove.
43362         (struct md5_ctx): Align buffer if using GCC.
43363         * lib/sha1.h (struct sha1_ctx): Likewise.
43364         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
43365         The old name was backwards.
43366         (NOTSWAP): Remove; not used.
43367         (rol): New macro, moved here from md5.h.
43368         (sha1_process_block): Remove a FIXME that doesn't make sense.
43369
43370 2005-09-12  Derek Price  <derek@ximbiot.com>
43371
43372         Return usable errors from canon-host.
43373         * lib/canon-host.h: New file.
43374         * lib/canon-host.c (canon_host): Wrap...
43375         (canon_host_r): ...this new function, which now relies exclusively on
43376         getaddrinfo.
43377         (ch_strerror): New function.
43378         (last_cherror): New global.
43379         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
43380         interface.
43381         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
43382         void *.
43383         (freeaddrinfo): Free ai->ai_canonname when set.
43384
43385 2005-09-12  Derek Price  <derek@ximbiot.com>
43386
43387         Make canon-host require getaddrinfo.
43388         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
43389         AC_LIBSOURCE canon-host.h.  Call...
43390         (gl_PREREQ_CANON_HOST): ...this new function, which requires
43391         gl_GETADDRINFO.
43392         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
43393
43394 2005-09-12  Derek Price  <derek@ximbiot.com>
43395
43396         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
43397         LGPL.
43398         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
43399
43400 2005-09-12  Derek Price  <derek@ximbiot.com>
43401
43402         * lib/gai_strerror.c: Include config.h when available.  Include
43403         getaddrinfo.h before other headers to test interface.
43404         Reported by Larry Jones <lawrence.jones@ugs.com>.
43405
43406 2005-09-12  Derek Price  <derek@ximbiot.com>
43407             Paul Eggert  <eggert@cs.ucla.edu>
43408
43409         * modules/glob (Files): Add glob-libc.h.
43410
43411 2005-09-12  Derek Price  <derek@ximbiot.com>
43412             Paul Eggert  <eggert@cs.ucla.edu>
43413
43414         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
43415         glob_.h, glob-libc.h.
43416         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
43417
43418 2005-09-12  Derek Price  <derek@ximbiot.com>
43419             Paul Eggert  <eggert@cs.ucla.edu>
43420
43421         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
43422         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
43423         protecting things that should be done only in gnulib contexts.
43424         * lib/glob_.h: New file, containing only the glob things needed for
43425         gnulib.
43426         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
43427         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
43428         (glob, globfree, glob_pattern_p): Now defined simply in terms of
43429         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
43430         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
43431         and to respect the namespace rules better.
43432
43433 2005-09-08  Simon Josefsson  <jas@extundo.com>
43434
43435         * modules/socklen: New file.
43436
43437 2005-09-08  Simon Josefsson  <jas@extundo.com>
43438
43439         * m4/socklen.m4: New file.
43440
43441 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43442
43443         * modules/utimens (Files): Add m4/utimbuf.m4, since
43444         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
43445         Reported by Sergey Poznyakoff.
43446
43447 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43448
43449         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
43450         definitions, since that's the preferred style in glibc.
43451         Fix a minor spacing issue, and update copyright notice to match
43452         glibc's.
43453
43454 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43455
43456         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
43457
43458 2005-09-06  Simon Josefsson  <jas@extundo.com>
43459
43460         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
43461         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
43462
43463 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43464
43465         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
43466         warning.
43467
43468 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43469
43470         * config/srclist.txt: Add glibc bug 1302.
43471
43472 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
43473
43474         Change bitset word type from unsigned int to unsigned long int,
43475         as this has better performance on typical 64-bit hosts.
43476         Port bitset code to hosts with unusual word sizes.
43477         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
43478         (build_collating_symbol):
43479         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
43480         argument is a bitset.  This is merely a style issue, but it makes
43481         it clearer that an entire array is expected.
43482         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
43483         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
43484         Port to the case where bitset_word is not the same as unsigned int.
43485         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
43486         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
43487         Likewise.
43488         * lib/regexec.c (check_dst_limits_calc_pos_1,
43489         check_subexp_matching_top):
43490         (build_trtable, group_nodes_into_DFAstates):
43491         Likewise.
43492         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
43493         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
43494         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
43495         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
43496         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
43497         * lib/regcomp.c (optimize_subexps, lower_subexp):
43498         Work even if bitset_word has holes in its bitwise representation.
43499         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
43500         * lib/regexec.c (check_dst_limits_calc_pos_1,
43501         check_subexp_matching_top):
43502         Likewise.
43503         * lib/regex_internal.c (re_string_reconstruct):
43504         Don't assume UCHAR_MAX == 255.
43505         * lib/regex_internal.h (bitset_set_all): Likewise.
43506         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
43507         All uses changed.
43508         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
43509         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
43510         All uses changed.
43511         (BITSET_WORD_MAX): New macro.
43512         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
43513         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
43514         (bitset_empty, bitset_copy):
43515         Prefer sizeof (bitset) to multiplying it out ourselves.
43516         (bitset_not_merge): Remove; unused.
43517         (bitset_contain): Return bool, not unsigned int with one bit on.
43518         All callers changed.
43519         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
43520         alignment than re_node_set; do this by defining a new internal
43521         type struct dests_alloc and using it to allocate memory.
43522
43523 2005-09-05  Bruno Haible  <bruno@clisp.org>
43524
43525         * gnulib-tool (func_import): Fix comparison in handling of symbolic
43526         links.
43527
43528 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
43529
43530         * modules/size_max (Makefile.am): Add size_max.h
43531
43532 2005-09-04  Derek Price  <derek@ximbiot.com>
43533
43534         * gnulib-tool (func_import): Fix reversed $symbolic logic.
43535
43536 2005-09-03  Simon Josefsson  <jas@extundo.com>
43537
43538         * gnulib-tool: Fix typo.
43539
43540 2005-09-03  Simon Josefsson  <jas@extundo.com>
43541
43542         * config/srclist.txt: Add glibc bug 1293.
43543
43544 2005-09-03  Derek Price  <derek@ximbiot.com>
43545
43546         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
43547         From Larry Jones <lawrence.jones@ugs.com>.
43548
43549 2005-09-02  Simon Josefsson  <jas@extundo.com>
43550
43551         * modules/socklen: New file.
43552
43553 2005-09-02  Simon Josefsson  <jas@extundo.com>
43554
43555         * modules/havelib: New module.
43556
43557         * modules/gettext, modules/iconv, modules/lock, modules/readline:
43558         Use havelib.
43559
43560 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
43561
43562         Check for arithmetic overflow when calculating sizes, to prevent
43563         some buffer-overflow issues.  These patches are conservative, in the
43564         sense that when I couldn't determine whether an overflow was possible,
43565         I inserted a run-time check.
43566         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
43567         macros.
43568         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
43569         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
43570         (re_xnrealloc, re_x2nrealloc): New inline functions.
43571         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
43572         parse_bracket_exp):
43573         (build_equiv_class, build_charclass): Check for arithmetic overflow
43574         in size expression calculations.
43575         * lib/regex_internal.c (re_string_realloc_buffers):
43576         (build_wcs_upper_buffer, re_node_set_add_intersect):
43577         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
43578         (re_dfa_add_node, register_state): Likewise.
43579         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
43580         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
43581         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
43582         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
43583
43584 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
43585
43586         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
43587         m4/ulonglong.m4.  Problem reported by Martin Lambers.
43588
43589 2005-09-02  Bruno Haible  <bruno@clisp.org>
43590
43591         Support for lib vs. lib64 distinction on biarch platforms.
43592         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
43593         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
43594         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
43595
43596 2005-09-02  Bruno Haible  <bruno@clisp.org>
43597
43598         * gnulib-tool (import): In the other first-use case, provide defaults
43599         as well.
43600
43601 2005-09-02  Bruno Haible  <bruno@clisp.org>
43602
43603         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
43604         patches not yet found in the latest gettext release.
43605
43606 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43607
43608         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
43609         to avoid a collision with bits/local_lim.h in glibc.
43610         All uses changed.  Problem reported by Dmitry V. Levin in
43611         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
43612
43613         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
43614         bugs in int versus size_t comparisons.
43615         (re_string_context_at): Fix bug where the code assumed that
43616         Idx is signed.
43617
43618         Use bool where appropriate.
43619         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
43620         All callers changed.
43621         (calc_eclosure_iter): Likewise, for ROOT arg.
43622         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
43623         (build_charclass_op): Likewise, for NON_MATCH arg.
43624         * lib/regex_internal.c (re_string_allocate, re_string_construct):
43625         (re_string_construct_common): Likewise, for ICASE arg.
43626         * lib/regexec.c (re_search_2_stub, re_search_stub):
43627         Likewise, for RET_LEN arg.
43628         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
43629         (set_regs): Likewise, for FL_BACKTRACK arg.
43630         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
43631         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
43632         (calc_eclosure_iter, parse_bracket_exp):
43633         Use bool for internal variables that are booleans.
43634         * lib/regexec.c (re_search_internal, check_matching,
43635         proceed_next_node):
43636         (set_regs, build_sifted_states, sift_states_bkref):
43637         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
43638         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
43639         (find_collation_sequence_value):
43640         Likewise.
43641         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
43642         (re_node_set_compare):
43643         Return bool, not int. All callers changed.
43644         * lib/regexec.c (check_halt_node_context, check_dst_limits):
43645         (build_trtable, check_node_accept): Likewise.
43646         * lib/regex_internal.h: Include stdbool.h.
43647
43648         Fix bugs uncovered when converting to bool.
43649         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
43650         failure instead of charging ahead blindly.
43651         * lib/regex_internal.c (register_state): Likewise.
43652         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
43653         for freeing internal storage.
43654         (group_nodes_into_DFA_states): Use unsigned int, not int, for
43655         bitset pieces used as boolean, to avoid undefined behavior
43656         on hosts that do int overflow checking.
43657
43658 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43659
43660         * config/srclist.txt: Add glibc bugs 1285-1287.
43661
43662 2005-09-01  Jim Meyering  <jim@meyering.net>
43663
43664         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
43665         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
43666         Require gl_STAT_MACROS, too.
43667
43668 2005-09-01  Bruno Haible  <bruno@clisp.org>
43669
43670         * gnulib-tool (import): In the first-use case, provide defaults.
43671
43672 2005-09-01  Bruno Haible  <bruno@clisp.org>
43673
43674         * gnulib-tool (func_import): Remove the .tmp files.
43675
43676 2005-09-01  Bruno Haible  <bruno@clisp.org>
43677
43678         * gnulib-tool (func_import): Fix handling of symbolic links.
43679
43680 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43681
43682         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
43683         old glibc regex code mishandles strings longer than 2**31 bytes.
43684         This patch fixes this when the regex code is used in gnulib
43685         (i.e., outside glibc).
43686
43687         This patch should not affect the use of the regex code inside
43688         glibc.  No doubt this problem also needs to be handled for glibc
43689         as well, but the result will be an incompatible change to the
43690         glibc ABI, and the old ABI will have to be supported too.  That
43691         can be the the subject for another patch.
43692
43693         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
43694         governing whether the rest of this patch is active.  By default,
43695         the macro is disabled and the patch has no effect.
43696         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
43697         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
43698         (struct re_pattern_buffer, re_search, re_search_2, re_match):
43699         (re_match_2, re_set_registers): Use the new types.
43700         * lib/regex_internal.h (Idx, re_hashval_t): New types.
43701         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
43702         New macros.
43703         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
43704         (re_string_context_at, bin_tree_t, re_dfastate_t):
43705         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
43706         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
43707         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
43708         (re_string_char_size_at, re_string_wchar_at):
43709         (re_string_elem_size_at):
43710         Use the new types and macros to port to 64-bit hosts.
43711         Use unsigned types for internal values, so that the code
43712         mostly works even for arrays larger than SSIZE_MAX.
43713         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
43714         (search_duplicated_node, calc_eclosure_iter, fetch_number):
43715         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
43716         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
43717         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
43718         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
43719         (calc_inveclosure, parse_dup_op, build_range_exp):
43720         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
43721         (fetch_number, create_token_tree, mark_opt_subexp):
43722         Likewise.
43723         * lib/regex_internal.c (re_string_construct_common,
43724         create_ci_newstate):
43725         (create_cd_newstate, re_string_allocate, re_string_construct):
43726         (re_string_realloc_buffers, build_wcs_upper_buffer):
43727         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
43728         (re_string_reconstruct, re_string_peek_byte_case):
43729         (re_string_fetch_byte_case, re_string_context_at):
43730         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
43731         (re_node_set_init_copy, re_node_set_add_intersect):
43732         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
43733         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
43734         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
43735         (re_acquire_state, re_acquire_state_context, register_state):
43736         Likewise.
43737         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
43738         search_cur_bkref_entry):
43739         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
43740         (re_search_internal, re_search_2_stub, re_search_stub)
43741         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
43742         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
43743         (update_cur_sifted_state, check_dst_limits):
43744         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
43745         (check_subexp_limits, sift_states_bkref, merge_state_array):
43746         (check_subexp_matching_top, get_subexp, get_subexp_sub):
43747         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
43748         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
43749         (expand_bkref_cache, check_node_accept_bytes):
43750         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
43751         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
43752         (acquire_init_state_context, check_halt_node_context):
43753         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
43754         (sift_states_backward, clean_state_log_if_needed):
43755         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
43756         (find_recover_state, transit_state_sb, transit_state_mb):
43757         (transit_state_bkref, build_trtable, match_ctx_clean):
43758         Likewise.
43759         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
43760         to work around an assumption that REG_MISSING is negative.
43761
43762         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
43763         (seek_collating_symbol_entry) [defined _LIBC]:
43764         (lookup_collation_sequence_value) [defined _LIBC]:
43765         (build_range_exp, build_collating_symbol) [defined _LIBC]:
43766         Use prototypes rather than old-style function definitions.
43767         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
43768         (transit_state_sb) [0]:
43769         (find_collation_sequence_value) [defined _LIBC]: Likewise.
43770
43771         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
43772         rm_eo.
43773
43774         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
43775         (optimize_subexps, lower_subexp):
43776         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
43777         since the signed shift might overflow.  Use 1u<<31 instead.
43778         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
43779         Likewise.
43780         * lib/regexec.c (check_dst_limits_calc_pos_1,
43781         check_subexp_matching_top): Likewise.
43782
43783         * lib/regcomp.c (optimize_subexps, lower_subexp):
43784         Use CHAR_BIT rather than 8, for clarity.
43785         * lib/regexec.c (check_dst_limits_calc_pos_1):
43786         (check_subexp_matching_top): Likewise.
43787         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
43788         have to worry about portability issues when shifting it left.
43789         Remove no-longer-needed test for table_size > 0.
43790         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
43791         in a word, as the resulting behavior is undefined.
43792         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
43793         in one case, a <= should have been an <, and in another case the
43794         whole test was missing.
43795         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
43796         the standard name CHAR_BIT.
43797         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
43798         this is not true on one's complement and signed-magnitude hosts.
43799
43800         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
43801         next_last_offset.
43802         (struct re_dfa_t): Remove unused member states_alloc.
43803         * lib/regcomp.c (init_dfa): Don't initialize unused members.
43804
43805 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43806
43807         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
43808         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
43809         and large-file glibc and in 32-bit large-file Solaris.
43810
43811 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43812
43813         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
43814         lengths fit in regoff_t; this isn't true if regoff_t is the same
43815         width as size_t.
43816         * lib/regex.c (re_search_internal): 5th arg is LAST_START
43817         (= START + RANGE) instead of RANGE.  This avoids overflow
43818         problems when regoff_t is the same width as size_t.
43819         All callers changed.
43820         (re_search_2_stub): Check for overflow when adding the
43821         sizes of the two strings.
43822         (re_search_stub): Check for overflow when adding START
43823         to RANGE; if it occurs, substitute the extreme value.
43824
43825 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43826
43827         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
43828
43829 2005-08-31  Jim Meyering  <jim@meyering.net>
43830
43831         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
43832         a pointer-to-const.
43833         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
43834         (register_state): Likewise.
43835         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
43836         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
43837         (group_nodes_into_DFAstates): Likewise.
43838
43839 2005-08-31  Jim Meyering  <jim@meyering.net>
43840
43841         * check-module: Add a FIXME comment.
43842
43843 2005-08-31  Eric Blake  <ebb9@byu.net>
43844
43845         * modules/unistd-safer (Files): Add unistd--.h.
43846         * modules/stdio-safer (Files): Add stdio--.h.
43847
43848 2005-08-31  Derek Price  <derek@ximbiot.com>
43849
43850         * lib/getdelim.c (getdelim): Return EOF on EOF.
43851         Reported by Larry Jones <lawrence.jones@ugs.com>.
43852
43853 2005-08-31  Bruno Haible  <bruno@clisp.org>
43854
43855         Avoid unnecessary diffs in the generated lib/Makefile.am.
43856         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
43857         the generated files.
43858         (func_import): Don't set cmd.
43859
43860 2005-08-31  Bruno Haible  <bruno@clisp.org>
43861
43862         * lib/strstr.c: Include <stddef.h>, for NULL.
43863         * lib/strcasestr.c: Likewise.
43864         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
43865
43866 2005-08-31  Bruno Haible  <bruno@clisp.org>
43867
43868         * gnulib-tool: New option --macro-prefix.
43869         (func_import): Use macro_prefix.
43870         (import): Handle option --macro-prefix.
43871
43872 2005-08-31  Bruno Haible  <bruno@clisp.org>
43873
43874         * gnulib-tool (import): Rename most ac_* variables to cached_*.
43875         Also use new variables cached_lgpl, cached_libtool.
43876
43877 2005-08-31  Bruno Haible  <bruno@clisp.org>
43878
43879         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
43880         always instantiating them.
43881
43882 2005-08-31  Bruno Haible  <bruno@clisp.org>
43883
43884         * gnulib-tool (func_import): Read the previous cached settings
43885         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
43886         earlier added by gnulib but are now dropped. Warn when a gnulib file
43887         overwrites a non-gnulib file.
43888
43889 2005-08-31  Bruno Haible  <bruno@clisp.org>
43890
43891         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
43892         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
43893         projects that don't keep autogenerated files in CVS. Put into
43894         actioncmd only the specified modules, not the transitive closure.
43895
43896 2005-08-31  Bruno Haible  <bruno@clisp.org>
43897
43898         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
43899         Create directories that shall be filled.
43900         (import): Don't look for gl_* macros in configure.ac. Recurse across
43901         all directories containing a gnulib-cache.m4 files, if meaningful.
43902
43903 2005-08-31  Bruno Haible  <bruno@clisp.org>
43904
43905         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
43906         (import): Set seen_libtool when we see gl_LIBTOOL.
43907
43908 2005-08-31  Bruno Haible  <bruno@clisp.org>
43909
43910         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
43911         declaration macro definitions from generated gnulib.m4.
43912
43913 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
43914
43915         * lib/iconvme.h: Add prototype for iconv_alloc.
43916
43917 2005-08-29  Simon Josefsson  <jas@extundo.com>
43918
43919         * lib/iconvme.c: Fix errno.
43920
43921 2005-08-29  Bruno Haible  <bruno@clisp.org>
43922
43923         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
43924         that it works when the directory contains spaces.
43925
43926 2005-08-29  Bruno Haible  <bruno@clisp.org>
43927
43928         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
43929
43930 2005-08-29  Bruno Haible  <bruno@clisp.org>
43931
43932         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
43933         Emit more advice.
43934
43935 2005-08-29  Bruno Haible  <bruno@clisp.org>
43936         and Stepan Kasal  <kasal@ucw.cz>
43937
43938         * check-module: If more parameters are given, check each of them
43939         separately; add more exceptions, as noted by Jim Meyering.
43940         (check_module): New procedure.
43941         (%exempt_header): Now contains all exceptions.
43942
43943 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
43944
43945         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
43946
43947 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
43948
43949         * lib/iconvme.c: Split iconv_string into iconv_alloc.
43950
43951 2005-08-28  Bruno Haible  <bruno@clisp.org>
43952
43953         * m4/gnulib-tool.m4: New file.
43954
43955 2005-08-27  Jim Meyering  <jim@meyering.net>
43956
43957         * modules/unistd-safer (Files): Add pipe-safer.c.
43958         * modules/fcntl-safer (Files): Add creat-safer.c.
43959
43960 2005-08-27  Jim Meyering  <jim@meyering.net>
43961
43962         * m4/stdlib-safer.m4: New file.  From coreutils.
43963         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
43964         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
43965         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
43966         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
43967         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
43968
43969 2005-08-27  Jim Meyering  <jim@meyering.net>
43970
43971         * lib/fopen-safer.c: Merge minor changes from coreutils.
43972         * lib/dup-safer.c: Likewise.
43973         * lib/fd-safer.c: Likewise.
43974
43975         Merge from coreutils.
43976         * lib/stdio--.h: New file.
43977         * lib/stdlib--.h: New file.
43978         * lib/mkstemp-safer.c: New file.
43979
43980         GNU tar needs these.
43981         * lib/pipe-safer.c: New file.
43982         * lib/creat-safer.c: New file.
43983         * lib/fcntl--.h (creat): Define to creat_safer.
43984         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
43985         * lib/unistd--.h (pipe): Define to pipe_safer.
43986         * lib/unistd-safer.h: Declare pipe_safer.
43987
43988 2005-08-26  Simon Josefsson  <jas@extundo.com>
43989
43990         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
43991         Haible <bruno@clisp.org>.
43992
43993 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
43994
43995         * lib/regex_internal.h: Remove all references to
43996         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
43997         or better.
43998         (bitset_not, bitset_merge, bitset_not_merge):
43999         (bitset_mask, re_string_allocate, re_string_construct):
44000         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
44001         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
44002         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
44003         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
44004         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44005         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44006         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
44007         (re_acquire_state_context):
44008         Remove unnecessary forward decls.
44009         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
44010         Put __attribute at function definition,
44011         now that the function decl has been removed.
44012         * lib/regex_internal.c (re_string_peek_byte_case):
44013         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
44014         Likewise.
44015
44016 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
44017
44018         * m4/regex.m4: Add AC_PREREQ(2.50).
44019         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
44020
44021 2005-08-25  Simon Josefsson  <jas@extundo.com>
44022
44023         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
44024         __fsetlocking.
44025
44026 2005-08-25  Simon Josefsson  <jas@extundo.com>
44027
44028         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
44029         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
44030         GLIBC specific code.
44031
44032 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44033
44034         Make regex safe for g++.  This fixes one real bug (an "err"
44035         that should have been "*err").  g++ problem reported by
44036         Sam Steingold.
44037         * lib/regex_internal.h (re_calloc): New macro, consistent with
44038         re_malloc etc.  All callers of calloc changed to use re_calloc.
44039         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
44040         not int.  All callers changed.
44041         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
44042         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
44043         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
44044         (find_recover_state): Change "err" to "*err"; this fixes what
44045         appears to be a real bug.
44046         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
44047         versus int.
44048
44049 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44050
44051         * modules/regex (Depends-on): Add malloc, since the code
44052         assumes that !malloc(0) means failure.
44053
44054 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44055
44056         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
44057
44058         alloca modernization/simplification for regex.
44059         * lib/regex.c: Remove portability cruft for alloca.  This no longer
44060         needs to be at the start of the file, and can be moved into
44061         regex_internal.h and simplified.
44062         * lib/regex_internal.h: Include <alloca.h>.
44063         (__libc_use_alloca) [!defined _LIBC]: New macro.
44064         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
44065         now works outside glibc.
44066
44067 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44068
44069         * config/srclist.txt: Add glibc bugs 1241, 1245.
44070
44071 2005-08-25  Jim Meyering  <jim@meyering.net>
44072
44073         * lib/open-safer.c: Include <config.h>.
44074         Otherwise, we'd lose LARGEFILE support in any file using
44075         e.g. "fcntl--.h"
44076
44077 2005-08-25  Bruno Haible  <bruno@clisp.org>
44078
44079         * m4/minmax.m4: Require autoconf 2.52.
44080         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
44081         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
44082         alternatives of translit over the alphabet.
44083         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
44084
44085 2005-08-24  Simon Josefsson  <jas@extundo.com>
44086
44087         * tests/test-getpass.c: New file.
44088
44089 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44090
44091         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
44092         for GNU regex features.
44093
44094 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44095
44096         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
44097         * lib/regex.h (regerror): Likewise.
44098
44099         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
44100         requires this.  (The code never needed it.)
44101
44102         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
44103         All uses of recently-renamed identifiers changed to use the new,
44104         POSIX-compliant names.  The code will build and run just fine
44105         without these changes, but it's better to eat our own dog food
44106         and use the standard-conforming names.
44107
44108         * lib/regex.h: Fix a multitude of POSIX name space violations.
44109         These changes have an effect only for programs that define
44110         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
44111         do not change anything for programs compiled in the normal way.
44112         Also, there is no effect on the ABI.
44113
44114         (_REGEX_SOURCE): New macro.
44115         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
44116         defined and _GNU_SOURCE is not; this fixes a name space violation.
44117
44118         Rename the following macros to obey POSIX requirements.
44119         The old names are still visible as macros if _REGEX_SOURCE is defined.
44120         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
44121         RE_BACKSLASH_ESCAPE_IN_LISTS.
44122         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
44123         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
44124         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
44125         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
44126         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
44127         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
44128         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
44129         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
44130         (REG_INTERVALS): renamed from RE_INTERVALS.
44131         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
44132         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
44133         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
44134         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
44135         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
44136         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
44137         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
44138         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
44139         RE_UNMATCHED_RIGHT_PAREN_ORD.
44140         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
44141         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
44142         (REG_DEBUG): renamed from RE_DEBUG.
44143         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
44144         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
44145         unusual, since we can't clash with the POSIX REG_ICASE.
44146         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
44147         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
44148         (REG_NO_SUB): renamed from RE_NO_SUB.
44149         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
44150         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
44151         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
44152         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
44153         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
44154         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
44155         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
44156         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
44157         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
44158         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
44159         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
44160         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
44161         RE_SYNTAX_POSIX_MINIMAL_BASIC.
44162         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
44163         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
44164         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
44165         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
44166         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
44167         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
44168         (REG_FIXED): Renamed from REGS_FIXED.
44169         (REG_NREGS): Renamed from RE_NREGS.
44170
44171         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
44172         of other REG_* macros, since POSIX says the user is allowed to
44173         #undef these macros selectively.
44174
44175         (reg_errcode_t): Update comment stating what other tables need
44176         to be consistent.
44177
44178         Rename the following enum values to obey POSIX requirements.
44179         The old names are still visible as macros.
44180         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
44181         is not defined, since GNU is supposed to be a superset of POSIX as
44182         much as possible, and since we want reg_errcode_t to be a signed
44183         type for implementation consistency.
44184         (_REG_NOERROR): Renamed from REG_NOERROR.
44185         (_REG_NOMATCH): Renamed from REG_NOMATCH.
44186         (_REG_BADPAT): Renamed from REG_BADPAT.
44187         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
44188         (_REG_ECTYPE): Renamed from REG_ECTYPE.
44189         (_REG_EESCAPE): Renamed from REG_EESCAPE.
44190         (_REG_ESUBREG): Renamed from REG_ESUBREG.
44191         (_REG_EBRACK): Renamed from REG_EBRACK.
44192         (_REG_EPAREN): Renamed from REG_EPAREN.
44193         (_REG_EBRACE): Renamed from REG_EBRACE.
44194         (_REG_BADBR): Renamed from REG_BADBR.
44195         (_REG_ERANGE): Renamed from REG_ERANGE.
44196         (_REG_ESPACE): Renamed from REG_ESPACE.
44197         (_REG_BADRPT): Renamed from REG_BADRPT.
44198         (_REG_EEND): Renamed from REG_EEND.
44199         (_REG_ESIZE): Renamed from REG_ESIZE.
44200         (_REG_ERPAREN): Renamed from REG_ERPAREN.
44201         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
44202         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
44203         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
44204         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
44205
44206         (_REG_RE_NAME, _REG_RM_NAME): New macros.
44207         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
44208         changed.  But support the old name if the new one is not defined
44209         and if _REGEX_SOURCE.
44210
44211         Change the following member names in struct re_pattern_buffer.
44212         The old names are still supported if !_REGEX_SOURCE.
44213         The new names are always supported, regardless of _REGEX_SOURCE.
44214         (re_buffer): Renamed from buffer.
44215         (re_allocated): Renamed from allocated.
44216         (re_used): Renamed from used.
44217         (re_syntax): Renamed from syntax.
44218         (re_fastmap): Renamed from fastmap.
44219         (re_translate): Renamed from translate.
44220         (re_can_be_null): Renamed from can_be_null.
44221         (re_regs_allocated): Renamed from regs_allocated.
44222         (re_fastmap_accurate): Renamed from fastmap_accurate.
44223         (re_no_sub): Renamed from no_sub.
44224         (re_not_bol): Renamed from not_bol.
44225         (re_not_eol): Renamed from not_eol.
44226         (re_newline_anchor): Renamed from newline_anchor.
44227
44228         Change the following member names in struct re_registers.
44229         The old names are still supported if !_REGEX_SOURCE.
44230         The new names are always supported, regardless of _REGEX_SOURCE.
44231         (rm_num_regs): Renamed from num_regs.
44232         (rm_start): Renamed from start.
44233         (rm_end): Renamed from end.
44234
44235         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
44236         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
44237         Prepend __ to parameter names.
44238
44239         Undo yesterday's changes.
44240
44241 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44242
44243         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
44244         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
44245         lib/regex.c.
44246
44247 2005-08-24  Jim Meyering  <jim@meyering.net>
44248
44249         Sync from coreutils.
44250         * m4/fcntl-safer.m4: New file.
44251
44252         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
44253         and object files for this module.
44254
44255 2005-08-24  Jim Meyering  <jim@meyering.net>
44256
44257         Sync from coreutils.
44258         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
44259
44260 2005-08-24  Jim Meyering  <jim@meyering.net>
44261
44262         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
44263         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
44264
44265 2005-08-24  Jim Meyering  <jim@meyering.net>
44266
44267         * modules/fcntl-safer: New module.
44268         * modules/fts (Depends-on): Add fcntl-safer.
44269         * MODULES.html.sh (File descriptor based Input/Output):
44270         Add fcntl-safer.
44271
44272 2005-08-24  Bruno Haible  <bruno@clisp.org>
44273
44274         Support for unit test modules.
44275         * modules/README: Mention tests modules.
44276         * modules/TEMPLATE-TESTS: New file.
44277         * gnulib-tool: New options --extract-tests-module, --with-tests and
44278         --tests-base (unused for the moment).
44279         (testsbase, inctests): New variables.
44280         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
44281         (func_verify_module): Exclude TEMPLATE-TESTS.
44282         (func_verify_nontests_module, func_verify_tests_module): New functions.
44283         (func_get_dependencies): Add implicit dependency for tests modules.
44284         (func_get_tests_module): New function.
44285         (func_modules_transitive_closure): When --with-tests was specified,
44286         include the unit tests as well, unless explicitly avoided.
44287         (func_emit_lib_Makefile_am): Ignore the tests modules here.
44288         (func_emit_tests_Makefile_am): New function.
44289         (func_create_testdir): When --with-tests was specified, emit a
44290         tests/ directory.
44291         * MODULES.html.sh (Future developments): Update.
44292
44293 2005-08-24  Bruno Haible  <bruno@clisp.org>
44294
44295         * modules/tls-tests: New file.
44296         * tests/test-tls.c: New file, from GNU gettext.
44297
44298 2005-08-24  Bruno Haible  <bruno@clisp.org>
44299
44300         * modules/lock-tests: New file.
44301         * tests/test-lock.c: New file, from GNU gettext.
44302
44303 2005-08-24  Bruno Haible  <bruno@clisp.org>
44304
44305         * lib/lock.h: Add multiple inclusion guard.
44306         * lib/tls.h: Add multiple inclusion guard.
44307
44308 2005-08-24  Bruno Haible  <bruno@clisp.org>
44309
44310         * gnulib-tool: Add support for the --aux-dir option to
44311         --create-testdir, --create-megatestdir, --test, --megatest.
44312         (func_create_testdir, func_create_megatestdir): Optionally emit a
44313         AC_CONFIG_AUX_DIR directive.
44314         (create-testdir, create-megatestdir, test, megatest): Provide a
44315         default value for $auxdir.
44316
44317 2005-08-24  Bruno Haible  <bruno@clisp.org>
44318
44319         * gnulib-tool (import): Use compound statement instead of subshell
44320         where possible.
44321
44322 2005-08-24  Bruno Haible  <bruno@clisp.org>
44323
44324         * gnulib-tool (import): Change --aux-dir default to "build-aux".
44325
44326 2005-08-24  Bruno Haible  <bruno@clisp.org>
44327
44328         * gnulib-tool (func_version): Update.
44329
44330 2005-08-24  Bruno Haible  <bruno@clisp.org>
44331
44332         * gnulib-tool (func_import, func_create_testdir,
44333         func_create_megatestdir): Quote all autoconf macro arguments.
44334
44335 2005-08-24  Bruno Haible  <bruno@clisp.org>
44336
44337         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
44338         option --force, because --force causes the aclocal.m4 of each
44339         subdirectory to be newer than the corresponding config.h.in.
44340
44341 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44342
44343         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
44344         All contents moved to gl_REGEX.
44345         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
44346         assume that it does.
44347
44348 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44349
44350         * lib/regex.h (REG_NOSYS)
44351         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
44352         Define, since POSIX requires it as of 2001.
44353         (_REG_ENOSYS)
44354         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
44355         New private symbol, used to keep the enum signed in all cases.
44356         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
44357         Youngman in
44358         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
44359
44360         * lib/regex_internal.c (re_string_skip_chars, register_state):
44361         (calc_state_hash):
44362         Remove forward decls; no longer needed now that we use prototypes.
44363         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
44364         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
44365         (clean_state_log_if_needed): Likewise.
44366
44367 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44368
44369         * config/srclist.txt: Add glibc bugs 1231-1233.
44370
44371 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44372
44373         Fix problems reported by Sam Steingold in
44374         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
44375         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
44376         assumed that reg_errcode_t is a signed type, which is not
44377         necessarily true if _XOPEN_SOURCE is not defined.
44378         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
44379         since some compilers warn about it otherwise.
44380
44381 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44382
44383         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
44384         (init_word_char, create_initial_state, duplicate_node_closure):
44385         (fetch_token, peek_token_bracket, build_range_exp):
44386         (build_collating_symbol): Remove forward decls; no longer needed
44387         now that we use prototypes.
44388
44389         * lib/regcomp.c:
44390         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
44391         (re_compile_fastmap_iter, regcomp, regerror, regfree):
44392         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
44393         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
44394         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
44395         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
44396         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
44397         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
44398         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
44399         (build_range_exp, build_collating_symbol, parse_bracket_exp):
44400         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
44401         (build_charclass, build_charclass_op, fetch_number, create_tree):
44402         (create_token_tree, mark_opt_subexp, duplicate_tree):
44403         Use prototypes rather than old-style definitions.
44404
44405         * lib/regex_internal.c:
44406         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
44407         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
44408         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
44409         (re_string_reconstruct, re_string_peek_byte_case):
44410         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
44411         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
44412         (re_node_set_init_copy, re_node_set_add_intersect):
44413         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44414         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44415         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
44416         (re_acquire_state, re_acquire_state_context, register_state):
44417         (create_ci_newstate, create_cd_newstate, free_state):
44418         Likewise.
44419         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
44420         re_search_2):
44421         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
44422         (re_search_internal, prune_impossible_nodes):
44423         (acquire_init_state_context, check_matching, static):
44424         (check_halt_node_context, check_halt_state_context, proceed_next_node):
44425         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
44426         (update_regs, sift_states_backward, build_sifted_states):
44427         (clean_state_log_if_needed, merge_state_array):
44428         (update_cur_sifted_state, add_epsilon_src_nodes):
44429         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
44430         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
44431         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
44432         (find_recover_state, check_subexp_matching_top, transit_state_mb):
44433         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
44434         (check_arrival, check_arrival_add_next_nodes):
44435         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
44436         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
44437         (check_node_accept_bytes, check_node_accept, extend_buffers):
44438         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
44439         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
44440         (sift_ctx_init):
44441         Likewise.
44442
44443         * lib/regex_internal.h:
44444         (re_string_allocate, re_string_construct, re_string_reconstruct):
44445         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
44446         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
44447         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
44448         (re_string_context_at, re_string_peek_byte_case):
44449         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
44450         is defined, since we now use prototypes always.
44451
44452         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
44453         C89 or better.  All uses removed.
44454
44455 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44456
44457         * config/srclist.txt: Add glibc bugs 1220-1227.
44458
44459 2005-08-20  Jim Meyering  <jim@meyering.net>
44460
44461         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
44462         of unused local, dfa.
44463
44464 2005-08-20  Bruno Haible  <bruno@clisp.org>
44465
44466         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
44467
44468 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44469
44470         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
44471         (re_node_set_insert_last, re_dfa_add_node):
44472         Rename local variables to avoid GCC shadowing warnings.
44473
44474 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44475
44476         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
44477         [defined lint]: Suppress bogus uninitialized-variable warnings.
44478
44479         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
44480         and let the caller return REG_ESPACE if out of space.  This
44481         removes an uninitialied-variable warning with GCC 4.0.1, and also
44482         avoids taking the address of a local variable.  All callers
44483         changed.
44484
44485 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44486
44487         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
44488         $LIBCSRC/posix/regexec.c.
44489         Add glibc bug 1217 for regcomp.c.
44490
44491 2005-08-19  Jim Meyering  <jim@meyering.net>
44492
44493         * lib/regexec.c (proceed_next_node): Redo local variables to
44494         avoid GCC shadowing warnings.
44495
44496 2005-08-18  Bruno Haible  <bruno@clisp.org>
44497
44498         * lib/strstr.c (strstr): Fix return value in multibyte case.
44499         * lib/strcasestr.c (strcasestr): Likewise.
44500
44501 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44502
44503         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
44504
44505 2005-08-17  Jim Meyering  <jim@meyering.net>
44506
44507         Make the %s format (seconds since the epoch) work for a negative
44508         number and when used with a zero-padded field width, e.g. %015s.
44509
44510         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
44511         label so that it precedes the code to set `digits'.  Otherwise,
44512         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
44513         print `00-22'.  Now, it prints `-0022', as it should.
44514
44515 2005-08-17  Bruno Haible  <bruno@clisp.org>
44516
44517         * modules/strstr (Files): Add m4/mbrtowc.m4.
44518         (Depends-on): Add mbuiter.
44519
44520 2005-08-17  Bruno Haible  <bruno@clisp.org>
44521
44522         * modules/strcasestr: New file.
44523         * MODULES.html.sh (String handling, based on ANSI C 89): Add
44524         strcasestr.
44525
44526 2005-08-17  Bruno Haible  <bruno@clisp.org>
44527
44528         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
44529
44530 2005-08-17  Bruno Haible  <bruno@clisp.org>
44531
44532         * modules/mbuiter: New file.
44533         * MODULES.html.sh (Extended multibyte and wide character utilities):
44534         Add mbuiter.
44535
44536 2005-08-17  Bruno Haible  <bruno@clisp.org>
44537
44538         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
44539         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
44540
44541 2005-08-17  Bruno Haible  <bruno@clisp.org>
44542
44543         * m4/strcasestr.m4: New file.
44544
44545 2005-08-17  Bruno Haible  <bruno@clisp.org>
44546
44547         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
44548         * lib/strstr.c: Completely rewritten, with multibyte locale support.
44549
44550 2005-08-17  Bruno Haible  <bruno@clisp.org>
44551
44552         * lib/strcasestr.h: New file.
44553         * lib/strcasestr.c: New file.
44554
44555 2005-08-17  Bruno Haible  <bruno@clisp.org>
44556
44557         * lib/strcasecmp.c: Use mbuiter.h.
44558
44559 2005-08-17  Bruno Haible  <bruno@clisp.org>
44560
44561         * lib/mbuiter.h: New file.
44562
44563 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
44564
44565         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
44566         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
44567         and gl_GETOPT are both invoked via different paths (as happens
44568         with GNU tar CVS because it uses both argp and getopt), the former
44569         wins.
44570
44571 2005-08-16  Bruno Haible  <bruno@clisp.org>
44572
44573         * modules/tls: New file.
44574         * MODULES.html.sh (Multithreading): Add tls.
44575
44576 2005-08-16  Bruno Haible  <bruno@clisp.org>
44577
44578         * modules/strnlen1: New file.
44579         * MODULES.html.sh (String handling): Add strnlen1.
44580
44581 2005-08-16  Bruno Haible  <bruno@clisp.org>
44582
44583         * modules/strcase (Files): Add m4/mbrtowc.m4.
44584         (Depends-on): Add strnlen1, mbchar.
44585
44586 2005-08-16  Bruno Haible  <bruno@clisp.org>
44587
44588         * modules/mbiter: New file.
44589         * MODULES.html.sh (Extended multibyte and wide character utilities):
44590         Add mbiter.
44591
44592 2005-08-16  Bruno Haible  <bruno@clisp.org>
44593
44594         * modules/mbfile: New file.
44595         * MODULES.html.sh (Extended multibyte and wide character utilities):
44596         Add mbfile.
44597
44598 2005-08-16  Bruno Haible  <bruno@clisp.org>
44599
44600         * modules/mbchar: New file.
44601         * MODULES.html.sh (Extended multibyte and wide character utilities):
44602         New section.
44603
44604 2005-08-16  Bruno Haible  <bruno@clisp.org>
44605
44606         * m4/tls.m4: New file, from GNU gettext.
44607
44608 2005-08-16  Bruno Haible  <bruno@clisp.org>
44609
44610         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
44611         always.
44612         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
44613
44614 2005-08-16  Bruno Haible  <bruno@clisp.org>
44615
44616         * m4/mbiter.m4: New file.
44617
44618 2005-08-16  Bruno Haible  <bruno@clisp.org>
44619
44620         * m4/mbfile.m4: New file.
44621
44622 2005-08-16  Bruno Haible  <bruno@clisp.org>
44623
44624         * m4/mbchar.m4: New file.
44625
44626 2005-08-16  Bruno Haible  <bruno@clisp.org>
44627
44628         * lib/tls.h: New file, from GNU gettext.
44629         * lib/tls.c: New file, from GNU gettext.
44630
44631 2005-08-16  Bruno Haible  <bruno@clisp.org>
44632
44633         * lib/strnlen1.h: New file.
44634         * lib/strnlen1.c: New file.
44635
44636 2005-08-16  Bruno Haible  <bruno@clisp.org>
44637
44638         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
44639         (mbi_init): Update.
44640         (mbi_avail, mbi_advance): Let the iteration end before the terminating
44641         NUL byte, not after it.
44642
44643 2005-08-16  Bruno Haible  <bruno@clisp.org>
44644
44645         * lib/strcase.h (strcasecmp): Add note in comments.
44646         * lib/strncasecmp.c: Use code from strcasecmp.c.
44647         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
44648         (strcasecmp): Work correctly in multibyte locales.
44649
44650 2005-08-16  Bruno Haible  <bruno@clisp.org>
44651
44652         * lib/mbiter.h: New file.
44653
44654 2005-08-16  Bruno Haible  <bruno@clisp.org>
44655
44656         * lib/mbfile.h: New file.
44657
44658 2005-08-16  Bruno Haible  <bruno@clisp.org>
44659
44660         * lib/mbchar.h: New file.
44661         * lib/mbchar.c: New file.
44662
44663 2005-08-16  Bruno Haible  <bruno@clisp.org>
44664
44665         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
44666         the valid ones. Makes the comparison operations transitive:
44667         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
44668         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
44669
44670 2005-08-15  Simon Josefsson  <jas@extundo.com>
44671
44672         * modules/ssize_t (License): Change to 'unlimited'.
44673
44674         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
44675
44676 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44677
44678         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
44679         Add comments for each pending glibc patch.
44680
44681 2005-08-15  Bruno Haible  <bruno@clisp.org>
44682
44683         * lib/regex.h (__restrict_arr): Don't define to __restrict if
44684         __cplusplus is defined.
44685
44686 2005-08-14  Jim Meyering  <jim@meyering.net>
44687
44688         Sync from coreutils.
44689
44690         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
44691         Use the hash-table-based cycle-detection code not just when
44692         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
44693         Reported by James Youngman in
44694         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
44695         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
44696         FTS_TIGHT_CYCLE_CHECK.
44697         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
44698         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
44699         once again.
44700         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
44701         * lib/fts.c (fd_safer): Remove decl.
44702         Include fcntl--.h rather than unistd-safer.h
44703         (fts_safe_changedir): Don't call fd_safer; no longer needed
44704         now that we include fcntl--.h.
44705
44706 2005-08-12  Simon Josefsson  <jas@extundo.com>
44707
44708         * modules/getndelim2: Use ssize_t module.
44709         * modules/getnline: Likewise.
44710         * modules/safe-read: Likewise.
44711         * modules/xreadlink: Likewise.
44712
44713         * modules/ssize_t: New file.
44714
44715 2005-08-12  Simon Josefsson  <jas@extundo.com>
44716
44717         * m4/readline.m4: Look for termcap, curses or ncurses if required.
44718
44719 2005-08-12  Simon Josefsson  <jas@extundo.com>
44720
44721         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
44722         ssize_t.
44723
44724 2005-08-12  Simon Josefsson  <jas@extundo.com>
44725
44726         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
44727         readline, getdelim and check_version.
44728         (Support for systems lacking ISO C 99: Sizes of integer types):
44729         Add size_max.
44730
44731 2005-08-12  Bruno Haible  <bruno@clisp.org>
44732
44733         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
44734
44735 2005-08-11  Simon Josefsson  <jas@extundo.com>
44736
44737         * modules/readline: New file.
44738
44739         * modules/strnlen (Files): Add strnlen.h.
44740
44741 2005-08-11  Simon Josefsson  <jas@extundo.com>
44742
44743         * m4/readline.m4: New file.
44744
44745 2005-08-11  Simon Josefsson  <jas@extundo.com>
44746
44747         * lib/readline.h, readline.c: New file.
44748
44749 2005-08-11  Simon Josefsson  <jas@extundo.com>
44750
44751         * doc/gnulib.texi (Initial import, Finishing touches): Mention
44752         gl_AVOID.
44753
44754 2005-08-11  Bruno Haible  <bruno@clisp.org>
44755
44756         * lib/strnlen.h (strnlen): Change parameter name to match comment.
44757
44758 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
44759
44760         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
44761
44762 2005-08-10  Simon Josefsson  <jas@extundo.com>
44763
44764         * tests/test-iconvme.c: New file.
44765
44766 2005-08-10  Simon Josefsson  <jas@extundo.com>
44767
44768         * m4/strnlen.m4: New file.
44769
44770         * m4/strndup.m4: Don't check for strnlen declaration, done in
44771         strnlen.m4.
44772
44773 2005-08-10  Simon Josefsson  <jas@extundo.com>
44774
44775         * lib/strndup.c: Use strnlen.h.
44776
44777         * lib/strnlen.h: New file.
44778
44779 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
44780
44781         * README: Typos.
44782
44783 2005-08-02  Simon Josefsson  <jas@extundo.com>
44784
44785         * modules/readline: New file.
44786
44787 2005-08-02  Simon Josefsson  <jas@extundo.com>
44788
44789         * modules/getdelim: New file.
44790
44791         * modules/getline: Rewrite, don't use getndelim2.
44792
44793 2005-08-02  Simon Josefsson  <jas@extundo.com>
44794
44795         * m4/getline.m4: Separate out getdelim stuff into separate module.
44796
44797         * m4/getdelim.m4: New file.
44798
44799 2005-08-02  Simon Josefsson  <jas@extundo.com>
44800
44801         * lib/getline.h, getline.c: Rewrite.
44802
44803         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
44804
44805 2005-07-31  Bruno Haible  <bruno@clisp.org>
44806
44807         * lib/lock.h (gl_lock_initializer): New macro.
44808         (gl_lock_define_initialized): Use it.
44809         (gl_rwlock_initializer): New macro.
44810         (gl_rwlock_define_initialized): Use it.
44811         (gl_recursive_lock_initializer): New macro.
44812         (gl_recursive_lock_define_initialized): Use it.
44813
44814 2005-07-30  Karl Berry  <karl@gnu.org>
44815
44816         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
44817         Report from Ben Pfaff, regarding getopt.
44818
44819 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
44820
44821         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
44822         normal way.
44823         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
44824         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
44825         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
44826         (gl_GETOPT): Use the new macros.  Most of the implementation
44827         is moved to the new macros.  This is for programs like Emacs
44828         that don't want all the functionality of gl_GETOPT.
44829
44830 2005-07-26  Bruno Haible  <bruno@clisp.org>
44831
44832         * m4/lock.m4: Update from GNU gettext.
44833
44834 2005-07-26  Bruno Haible  <bruno@clisp.org>
44835
44836         * lib/lock.h: Update from GNU gettext.
44837         * lib/lock.c: Update from GNU gettext.
44838
44839 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
44840
44841         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
44842         obsolescent AC_TRY_RUN.  Include the default includes files, for
44843         'exit'.
44844
44845 2005-07-24  Bruno Haible  <bruno@clisp.org>
44846
44847         * modules/visibility: New file.
44848         * MODULES.html.sh (Misc): Add visibility.
44849
44850 2005-07-24  Bruno Haible  <bruno@clisp.org>
44851
44852         * m4/visibility.m4: New file.
44853
44854 2005-07-24  Bruno Haible  <bruno@clisp.org>
44855
44856         * doc/visibility.texi: New file.
44857
44858 2005-07-22  Bruno Haible  <bruno@clisp.org>
44859
44860         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
44861         $(ALLOCA_H), redundant through BUILT_SOURCES.
44862         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
44863         redundant through BUILT_SOURCES.
44864         * modules/byteswap (Makefile.am): Remove explicit dependency on
44865         $(BYTESWAP_H), redundant through BUILT_SOURCES.
44866         * modules/fnmatch (Makefile.am): Remove explicit dependency on
44867         $(FNMATCH_H), redundant through BUILT_SOURCES.
44868         * modules/getopt (Makefile.am): Remove explicit dependency on
44869         $(GETOPT_H), redundant through BUILT_SOURCES.
44870         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
44871         redundant through BUILT_SOURCES.
44872         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
44873         redundant through BUILT_SOURCES.
44874         * modules/stdbool (Makefile.am): Remove explicit dependency on
44875         $(STDBOOL_H), redundant through BUILT_SOURCES.
44876         * modules/stdint (Makefile.am): Remove explicit dependency on
44877         $(STDINT_H), redundant through BUILT_SOURCES.
44878         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
44879         Remove explicit dependency on $(SYSEXITS_H).
44880         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
44881
44882 2005-07-18  Simon Josefsson  <jas@extundo.com>
44883
44884         * lib/check-version.c (check_version): Accept identical versions too.
44885
44886 2005-07-18  Bruno Haible  <bruno@clisp.org>
44887
44888         * modules/lock: New file.
44889         * MODULES.html.sh (Multithreading): New section.
44890
44891 2005-07-18  Bruno Haible  <bruno@clisp.org>
44892
44893         * m4/lock.m4: New file, from GNU gettext.
44894
44895 2005-07-18  Bruno Haible  <bruno@clisp.org>
44896
44897         * lib/lock.h: New file, from GNU gettext.
44898         * lib/lock.c: New file, from GNU gettext.
44899
44900 2005-07-18  Bruno Haible  <bruno@clisp.org>
44901
44902         * lib/lock.h (gl_once_t): New type.
44903         (gl_once_define, gl_once): New macros.
44904         * lib/lock.c (fresh_once): New variable.
44905         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
44906         functions.
44907
44908 2005-07-16  Simon Josefsson  <jas@extundo.com>
44909
44910         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
44911         workaround, suggested by Bruno.
44912
44913 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
44914
44915         * modules/xalloc (Depends-on): Add xalloc-die.
44916         * modules/xvasprintf (Depends-on): Add xalloc-die.
44917
44918 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
44919
44920         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
44921         with a minor change.
44922
44923 2005-07-15  Bruno Haible  <bruno@clisp.org>
44924
44925         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
44926         When using lib/poll.c, define poll as rpl_poll.
44927
44928 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
44929
44930         * modules/argp (Depends-on): Remove unlocked-io.
44931
44932 2005-07-14  Derek Price  <derek@ximbiot.com>
44933
44934         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
44935         for glob symlink bug.
44936
44937 2005-07-14  Bruno Haible  <bruno@clisp.org>
44938
44939         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
44940         Instead, test for *_unlocked function declarations directly.
44941
44942 2005-07-11  Simon Josefsson  <jas@extundo.com>
44943
44944         * modules/size_max: New file.
44945
44946         * modules/xsize: Depend on size_max module for size_max.m4.
44947
44948 2005-07-11  Simon Josefsson  <jas@extundo.com>
44949
44950         * lib/size_max.h: New file.
44951
44952 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
44953
44954         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
44955         copyright symbol and the year.
44956         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
44957         (version_etc_va): Use parameterized copyright notice.
44958         Reword to conform to the current GNU coding standards.
44959
44960 2005-07-11  Karl Berry  <karl@gnu.org>
44961
44962         * doc/gnulib.texi (Quoting): new node.
44963         (Initial import): more info, from Patrice.
44964
44965 2005-07-11  Bruno Haible  <bruno@clisp.org>
44966
44967         * gnulib-tool (func_usage): Document option --avoid.
44968         (Command line options): Handle --avoid.
44969         (func_acceptable): New function.
44970         (func_modules_transitive_closure): Use it.
44971
44972 2005-07-11  Bruno Haible  <bruno@clisp.org>
44973
44974         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
44975         Reported by Jim Meyering.
44976
44977 2005-07-10  Bruno Haible  <bruno@clisp.org>
44978
44979         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
44980         Needed when size_t is smaller than 'unsigned int'.
44981         Reported by Paul Eggert.
44982
44983 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
44984
44985         * modules/argp (Depends-on): Add unlocked-io
44986
44987 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
44988
44989         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
44990         block of defines.
44991
44992 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
44993
44994         * config/srclist.txt: Comment out regcomp.c, since we have a porting
44995         fix now.
44996
44997 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
44998         and Paul Eggert  <eggert@cs.ucla.edu>
44999
45000         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
45001         in wint_t, not wchar_t.  Remove now-unnecessary cast.
45002
45003 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45004
45005         * modules/regex (Files): Add lib/regex_internal.c,
45006         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
45007         (Depends-on): Add extensions.
45008         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
45009
45010 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45011
45012         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
45013         pathconf.
45014         * m4/same.m4 (gl_SAME): Likewise.
45015         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
45016
45017         * m4/regex.m4: Adjust to new libc regex implementation.
45018         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
45019         all the .c and .h parts of (the new) regex.
45020         Quote the m4 stuff better.
45021         Check for RE_ICASE bug of old gnulib.
45022         Check for REG_STARTEND of recent libc.
45023         Rename local variables from jm_* to gl_*.
45024         Quote operand of "test -f".
45025         Say "recent enough" version of libc, not "version 2".
45026         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
45027         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
45028         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
45029         Remove check for btowc, isascii.
45030         Require AM_LANGINFO_CODESET.
45031
45032 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45033
45034         * lib/regex.c, regex.h: Sync from libc.
45035         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
45036         * lib/regexec.c:
45037         New files, synced from libc, except that regex_internal.h
45038         currently has a small porting fix.
45039
45040 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45041
45042         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
45043         regex_internal.c, regexec.c.
45044         Add regex_internal.h too, but as a comment, since the libc version
45045         is currently broken in gnulib mode.
45046
45047 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45048
45049         Support programs like Emacs that use gnulib but not gettext.
45050         * MODULES.html.sh (Internationalization functions): Add gettext-h.
45051         * modules/gettext-h: New file.
45052         * modules/gettext (Files): Remove lib/gettext.h.
45053         (Depends-on): Add gettext-h.
45054         (Makefile.am): Remove lib_SOURCES.
45055         * modules/argmatch, modules/c-stack, modules/closeout:
45056         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
45057         * modules/execute, modules/file-type, modules/getaddrinfo:
45058         * modules/getopt, modules/human, modules/javacomp:
45059         * modules/javaexec, modules/mkdir-p, modules/obstack:
45060         * modules/openat, modules/pagealign_alloc, modules/pipe:
45061         * modules/quotearg, modules/regex, modules/rpmatch:
45062         * modules/unicodeio, modules/userspec, modules/version-etc:
45063         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
45064         * modules/xsetenv:
45065         Depend on gettext-h, not gettext.
45066
45067 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
45068
45069         * gnulib-tool (func_import): Add support for 'public domain' license.
45070         * modules/alloca, modules/atexit, modules/memmove:
45071         Now public domain, not GPL.
45072         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
45073         * modules/realloc, modules/strerror, modules/strtod:
45074         Now LGPL, not GPL.
45075
45076 2005-07-05  Bruno Haible  <bruno@clisp.org>
45077
45078         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
45079         autoconf CVS. Needed for mingw.
45080
45081 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45082
45083         Remove the dependency of the strftime module on the tzset module.
45084         * modules/strftime (Depends-on): Remove dependency on tzset.
45085
45086 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45087
45088         Remove the dependency of the strftime module on the tzset module.
45089         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
45090         gl_FUNC_TZSET_CLOBBER.
45091
45092 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45093
45094         Remove the dependency of the strftime module on the tzset module.
45095         * lib/strftime.c (my_strftime)
45096         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
45097         Copy the input structure, to work around some of the bug with
45098         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
45099         Solaris releases, you should also use the tzset module, but we won't
45100         require it as a dependency any more since we don't want LGPLed code
45101         to depend on GPLed code.
45102
45103 2005-07-02  Jim Meyering  <jim@meyering.net>
45104
45105         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
45106         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
45107         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
45108         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
45109
45110 2005-07-02  Jim Meyering  <jim@meyering.net>
45111
45112         * lib/backupfile.c (backup_args): Change a `0' to NULL.
45113
45114 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
45115
45116         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
45117         declares only 'struct timespec;' (!).
45118
45119 2005-07-01  Jim Meyering  <jim@meyering.net>
45120
45121         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
45122         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
45123         * lib/save-cwd.c, tempname.c:
45124         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
45125         and don't include <sys/file.h>).
45126
45127 2005-06-29  Jim Meyering  <jim@meyering.net>
45128
45129         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
45130         type name.  Use the variable name instead.
45131         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
45132         Likewise.
45133
45134 2005-06-28  Simon Josefsson  <jas@extundo.com>
45135
45136         * modules/check-version (Files): Add check-version.m4.
45137
45138 2005-06-28  Simon Josefsson  <jas@extundo.com>
45139
45140         * m4/check-version.m4: New file, suggested by Jim Meyering
45141         <jim@meyering.net>.
45142
45143 2005-06-28  Simon Josefsson  <jas@extundo.com>
45144
45145         * lib/check-version.h, lib/check-version.c: New files.
45146
45147 2005-06-28  Simon Josefsson  <jas@extundo.com>
45148
45149         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
45150         collision with global variable.  Better indentation.  Don't
45151         increment buffer pointer beyond buffer end.  Based on comments
45152         from Paul Eggert <eggert@cs.ucla.edu>.
45153
45154         * lib/base64.h: Indent.
45155
45156 2005-06-28  Simon Josefsson  <jas@extundo.com>
45157
45158         * doc/gnulib.texi (Library version handling): New section.
45159
45160 2005-06-28  Jim Meyering  <jim@meyering.net>
45161
45162         * check-module (find_included_lib_files): Hard-code another
45163         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
45164         but modules/fts-lgpl (correctly) does not list those files.
45165
45166         * modules/canonicalize (Files): Add lib/pathmax.h.
45167
45168 2005-06-25  Simon Josefsson  <jas@extundo.com>
45169
45170         * modules/check-version: New file.
45171
45172 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
45173
45174         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
45175         initializer of struct addrinfo, as an indication that we don't
45176         care how many members the structure has.
45177
45178 2005-06-24  Derek Price  <derek@ximbiot.com>
45179         and Bruno Haible  <bruno@clisp.org>
45180
45181         Remove stat module & update lstat.
45182         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
45183         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
45184         * m4/stat.m4: Remove this file.
45185
45186 2005-06-24  Derek Price  <derek@ximbiot.com>
45187         and Bruno Haible  <bruno@clisp.org>
45188
45189         Remove stat module & update lstat.
45190         * lib/stat.c: Remove this file...
45191         (slash_aware_lstat): ...moving this content and its support...
45192         * lib/lstat.c (rpl_lstat): ...into here.
45193         * lib/lstat.h: New file.
45194
45195 2005-06-24  Derek Price  <derek@ximbiot.com>
45196         and Bruno Haible  <bruno@clisp.org>
45197
45198         Remove stat module & update lstat.
45199         * config/srclist.txt (libc sources): Remove stat.
45200
45201 2005-06-24  Derek Price  <derek@ximbiot.com>
45202         and Bruno Haible  <bruno@clisp.org>
45203
45204         Remove stat module & update lstat.
45205         * MODULES.html.sh (stat): Remove.
45206         * MODULES.html: Regenerated.
45207         * modules/lstat (Description): Correct function name.
45208         (Files): Add "lstat.h".
45209         (Depends-on): Remove stat, add xalloc, stat-macros.
45210         * modules/stat: Remove this file.
45211         (Include): Add "lstat.h", remove <sys/stat.h>.
45212
45213 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
45214
45215         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
45216         (ranged_convert): Don't save conversion in a temporary struct.
45217         This causes a warning with GCC 4.0.0, and anyway in the typical
45218         case it's not worth the extra 100 bytes or so of code.
45219         (ranged_convert, __mktime_internal): When calling a function via a
45220         pointer P, use P () rather than (*P) (), as we now assume C89 or
45221         better.
45222
45223 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
45224
45225         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
45226         "who -r" failed to give output.  Problem reported by Tim Waugh.
45227
45228         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
45229         (xcalloc): Use it to avoid needless tests.
45230         Problem reported by Jim Meyering.
45231
45232 2005-06-20  Derek Price  <derek@ximbiot.com>
45233
45234         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
45235         unnecessary for Autoconfs > 2.59c.
45236
45237 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45238
45239         * lib/argp.h (__option_is_short): Check upper limit of
45240         __key. Isprint() requires its argument to have the value
45241         of an unsigned char or EOF.
45242
45243 2005-06-16  Jim Meyering  <jim@meyering.net>
45244
45245         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
45246         when either N or S is zero.
45247
45248 2005-06-16  Derek Price  <derek@ximbiot.com>
45249
45250         * m4/bison.m4: Declare YACC & YFLAGS precious.
45251
45252 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
45253
45254         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
45255         multibyte string or pattern, fall back on unibyte matching.
45256         Problem reported by James Youngman.
45257
45258 2005-06-08  Bruno Haible  <bruno@clisp.org>
45259
45260         * modules/csharpcomp: New file.
45261         * MODULES.html.sh (C#): Add csharpcomp.
45262
45263 2005-06-08  Bruno Haible  <bruno@clisp.org>
45264
45265         * m4/csharpcomp.m4: New file, from GNU gettext.
45266
45267 2005-06-08  Bruno Haible  <bruno@clisp.org>
45268
45269         * lib/csharpcomp.h: New file, from GNU gettext.
45270         * lib/csharpcomp.c: New file, from GNU gettext.
45271         * lib/csharpcomp.sh.in: New file, from GNU gettext.
45272
45273 2005-06-08  Bruno Haible  <bruno@clisp.org>
45274
45275         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
45276         warning on mingw.
45277
45278 2005-06-07  Derek Price  <derek@ximbiot.com>
45279
45280         Sync from CVS.
45281         * lib/glob_.h: Indent nested #ifdef.
45282
45283 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45284
45285         Sync from coreutils.
45286         Use "file name" when talking about file names, instead of "filename"
45287         or "path", as per the GNU coding standards.
45288         * lib/mkdir-p.c: Renamed from makepath.c.
45289         (make_dir_parents): Renamed from make_path.  All callers changed.
45290         * lib/mkdir-p.h: Likewise.  All includers changed.
45291         * lib/filenamecat.c: Renamed from path-concat.c.
45292         (file_name_concat): Renamed from path_concat.  All callers changed.
45293         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
45294         * lib/filenamecat.h: Likewise.  All includers changed.
45295         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
45296         in comments or local variable names.
45297         * lib/basename.c: Likewise.
45298         * lib/canonicalize.c, canonicalize.h: Likewise.
45299         * lib/dirname.c, dirname.h: Likewise.
45300         * lib/euidaccess.c: Likewise.
45301         * lib/exclude.c: Likewise
45302         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
45303         * lib/fsusage.c, fsuage.h: Likewise.
45304         * lib/fts.c, fts_.h: Likewise.
45305         * lib/getcwd.c: Likewise.
45306         * lib/getloadavg.c: Likewise.
45307         * lib/mkstemp.c: Likewise.
45308         * lib/mountlist.c, mountlist.h: Likewise.
45309         * lib/openat.c, openat.h: Likewise.
45310         * lib/readlink-stub.c: Likewise.
45311         * lib/readutmp.c, readutmp.h: Likewise.
45312         * lib/rename.c: Likewise.
45313         * lib/rmdir.c: Likewise.
45314         * lib/same.c: Likewise.
45315         * lib/savedir.c: Likewise.
45316         * lib/stripslash.c: Likewise.
45317         * lib/tempname.c: Likewise.
45318         * lib/xreadlink.c: Likewise.
45319         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
45320         All uses changed.
45321         * lib/exclude.h: Likewise.
45322
45323         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
45324         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45325         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
45326         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45327         * lib/pathmax.h: Include <limits.h> unconditionally, since other
45328         files have been getting away with it for years (MORE/BSD 4.3
45329         is extinct now).
45330         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
45331         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45332
45333         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
45334         Define to 256, not 255, as per modern POSIX.
45335
45336 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45337
45338         Sync from coreutils.
45339         Use "file name" when talking about file names, instead of "filename"
45340         or "path", as per the GNU coding standards.
45341         * MODULES.html.sh: mkdir-p renamed from makepath.
45342         filenamecat renamed from path-concat.
45343         * modules/filenamecat: Renamed from modules/path-concat.
45344         (Files): filenamecat.h and filenamecat.c renamed from
45345         path-concat.h and path-concat.c.
45346         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
45347         (Include): filenamecat.h, not path-concat.h.
45348         * modules/mkdir-p: Renamed from modules/makepath.
45349         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
45350         makepath.c.
45351         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
45352         (Include): mkdir-p.h, not makepath.h.
45353
45354 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45355
45356         Sync from coreutils.
45357         * m4/mkdir-p.m4: Renamed from makepath.m4.
45358         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
45359         Rename files from makepath.c to mkdir-p.c, and from
45360         makepath.h to mkdir-p.h.
45361         * m4/filenamecat.m4: Renamed from path-concat.m4.
45362         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
45363         Rename files from path-concat.c to filenamecat.c,
45364         and from path-concat.h to filenamecat.h.
45365         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
45366         "file name" in local variables or comments.
45367         * m4/rename.m4: Likewise.
45368
45369 2005-06-01  Bruno Haible  <bruno@clisp.org>
45370
45371         * modules/csharpexec: New file.
45372         * MODULES.html.sh (C#): New section.
45373
45374 2005-06-01  Bruno Haible  <bruno@clisp.org>
45375
45376         * m4/csharp.m4: New file, from GNU gettext.
45377         * m4/csharpexec.m4: New file, from GNU gettext.
45378
45379 2005-06-01  Bruno Haible  <bruno@clisp.org>
45380
45381         * lib/csharpexec.h: New file, from GNU gettext.
45382         * lib/csharpexec.c: New file, from GNU gettext.
45383         * lib/csharpexec.sh.in: New file, from GNU gettext.
45384
45385 2005-05-31  Derek Price  <derek@ximbiot.com>
45386             Paul Eggert  <eggert@cs.ucla.edu>
45387
45388         Sync from cvs.
45389         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
45390
45391 2005-05-31  Derek Price  <derek@ximbiot.com>
45392             Paul Eggert  <eggert@cs.ucla.edu>
45393
45394         Sync from cvs.
45395         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
45396
45397 2005-05-29  Derek Price  <derek@ximbiot.com>
45398
45399         * config/srclist.txt (glob_.h, glob.c): Add these files.
45400
45401 2005-05-29  Derek Price  <derek@ximbiot.com>
45402
45403         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
45404         * modules/glob: New file.
45405         * modules/getlogin_r: Add link to POSIX spec in description.
45406
45407 2005-05-29  Derek Price  <derek@ximbiot.com>
45408             Paul Eggert  <eggert@cs.ucla.edu>
45409
45410         * m4/glob.m4: New file.
45411
45412 2005-05-29  Derek Price  <derek@ximbiot.com>
45413             Paul Eggert  <eggert@cs.ucla.edu>
45414
45415         * lib/glob_.h, lib/glob.c: New files.
45416
45417 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45418
45419         * modules/fts (Files): Remove m4/inttypes-pri.m4.
45420         * modules/fts-lgpl (Depends-on): Remove gettext.
45421
45422 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45423
45424         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
45425         and don't require gt_INTTYPES_PRI.
45426
45427 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45428
45429         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
45430
45431         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
45432         the configuration hassle isn't worth it.
45433         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
45434         (LONGEST_MODIFIER, PRIuMAX): Remove.
45435
45436 2005-05-27  Bruno Haible  <bruno@clisp.org>
45437
45438         * lib/getlogin_r.h: Remove second include of <stddef.h>.
45439
45440 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
45441
45442         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
45443         _POSIX_PTHREAD_SEMANTICS for Solaris.
45444
45445 2005-05-25  Derek Price  <derek@ximbiot.com>
45446
45447         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
45448
45449 2005-05-25  Derek Price  <derek@ximbiot.com>
45450             Paul Eggert  <eggert@cs.ucla.edu>
45451
45452         * modules/getlogin_r, m4/getlogin_r.m4: New files.
45453         * lib/getlogin_r.c, getlogin_r.h: New files.
45454
45455 2005-05-25  Bruno Haible  <bruno@clisp.org>
45456             Derek Price  <derek@ximbiot.com>
45457
45458         * lib/getlogin_r.h: Simplify API documentation.
45459
45460 2005-05-23  Derek Price  <derek@ximbiot.com>
45461
45462         * modules/minmax (Files): Add m4/minmax.m4.
45463         (configure.ac): Add gl_MINMAX.
45464
45465 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
45466
45467         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
45468         so that unistd-safer.h (GPL'ed code) need not be included.
45469
45470 2005-05-22  Bruno Haible  <bruno@clisp.org>
45471
45472         * m4/minmax.m4: New file.
45473         Based on a patch by Derek Price <derek@ximbiot.com>.
45474
45475 2005-05-22  Bruno Haible  <bruno@clisp.org>
45476
45477         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
45478         (INT64_MIN): Fix definition.
45479         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
45480
45481         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
45482         NEED_SIGNED_INT_TYPES.
45483
45484         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
45485         HAVE_SYSTEM_INTTYPES.
45486
45487 2005-05-22  Bruno Haible  <bruno@clisp.org>
45488
45489         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
45490         Also include <sys/param.h> if it defines MIN, MAX.
45491         Based on a patch by Derek Price <derek@ximbiot.com>.
45492
45493 2005-05-21  Jim Meyering  <jim@meyering.net>
45494
45495         * modules/fts (Files): Add m4/inttypes-pri.m4.
45496         (Depends-on): Add lstat and remove gettext.  Alphabetize.
45497
45498 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45499
45500         New fts module.
45501         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
45502         (setup_dir, free_dir): New functions.
45503         (enter_dir, leave_dir): Define trivial
45504         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
45505         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
45506         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
45507         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
45508         Move to fts-cycle.c.
45509         (fts_open): Use setup_dir.
45510         (fts_close): Use free_dir.
45511         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
45512         This adds a label and some gotos, but the alternatives were messier.
45513         Check for memory allocation failure when entering a dir.
45514         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
45515         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
45516         (FTS): New member fts_cycle, that is a union that contains the
45517         old active_dir_ht and cycle_state.  All uses changed to mention
45518         fts_cycle.ht and fts_cycle.state.
45519         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
45520         fts.c, with the following changes:
45521         (setup_dir, free_dir): New functions.
45522         (enter_dir): Now returns bool.  Return true if successful, false
45523         if memory exhausted.  All callers changed.
45524         Do not bother partly cleaning up on
45525         memory allocation failure; that is free_dir's job.
45526         However, free ad if hash_insert fails, to avoid memory leak.
45527         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
45528         fts->fts_options to see which union member to use.
45529
45530 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45531
45532         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
45533         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
45534
45535 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45536
45537         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
45538
45539 2005-05-20  Jim Meyering  <jim@meyering.net>
45540
45541         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
45542         Now a macro, to pacify GCC.
45543
45544 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
45545
45546         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
45547         of -1.
45548
45549 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
45550
45551         * lib/chown.c (rpl_chown): Return -1 on failure.
45552
45553 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
45554
45555         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
45556         Don't check for stddef.h.
45557         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
45558         don't use its results.
45559         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
45560         since we include them unconditionally.  Don't require
45561         AM_STDBOOL_H, since stdbool is a prerequisite.
45562         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
45563         since we assume C89 or better.
45564         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
45565         as we don't use their results.
45566         Don't check for fchdir, memmove, memset, strrchr, as we use
45567         them unconditionally.
45568         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
45569         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
45570
45571 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
45572
45573         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
45574         Include <stddef.h> unconditionally, since we assume C89 now.
45575         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
45576         * lib/fts.c: Include fts_.h first, to check interface.
45577         Do not include intprops.h; no longer needed.
45578         Include cycle-check.h and hash.h, since fts_.h no longer does.
45579         Remove unnecessary casts of closedir to void.
45580         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
45581         decide whether to decrement nlinks.
45582         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
45583         (FTS): Use struct hash_table * instead of Hash_table, so that
45584         we no longer need to include hash.h here.
45585
45586 2005-05-18  Jim Meyering  <jim@meyering.net>
45587
45588         * modules/dirfd (License): Change to LGPL.  Most of the code
45589         is already in the public domain.
45590
45591 2005-05-18  Jim Meyering  <jim@meyering.net>
45592
45593         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
45594         Reported by Yoann Vandoorselaere.
45595
45596 2005-05-17  Jim Meyering  <jim@meyering.net>
45597
45598         * m4/fts.m4: New file, from coreutils.
45599
45600 2005-05-17  Jim Meyering  <jim@meyering.net>
45601
45602         * lib/fts.c, lib/fts_.h: New files, from coreutils.
45603
45604 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45605
45606         Sync from coreutils.
45607         * m4/unlinkdir.m4: New file.
45608
45609 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45610
45611         Sync from coreutils.
45612         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
45613         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
45614         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
45615         White space changes only.
45616         * lib/makepath.c (make_path): Port to hosts where leading "//" is
45617         special.
45618         * lib/yesno.c: Include getline.h, not ctype.h.
45619         (yesno): Don't remove leading white space; POSIX doesn't allow it.
45620         Use getline to remove arbitrary restriction on response length.
45621
45622 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45623
45624         * config/srclist-update: Spell out "Street" in FSF postal
45625         mail address; this is the style the FSF seems to prefer.
45626
45627         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
45628         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
45629         this updates FSF postal mail address.
45630
45631         Sync from coreutils.
45632         * modules/unlinkdir: New file.
45633         * modules/yesno (Depends-on): Add getline.
45634         * MODULES.html.sh (File system functions): Add unlinkdir.
45635
45636 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
45637
45638         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
45639         lib/strsep.h:
45640         Change the initial comment to refer to GPL, not LGPL.
45641         gnulib-tool will change it to LGPL as needed.
45642
45643         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
45644         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
45645         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
45646         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
45647         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
45648         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
45649         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
45650         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
45651         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
45652         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
45653         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
45654         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
45655         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
45656         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
45657         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
45658         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
45659         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
45660         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
45661         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
45662         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
45663         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
45664         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
45665         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
45666         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
45667         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
45668         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
45669         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
45670         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
45671         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
45672         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
45673         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
45674         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
45675         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
45676         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
45677         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
45678         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
45679         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
45680         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
45681         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
45682         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
45683         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
45684         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
45685         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
45686         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
45687         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
45688         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
45689         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
45690         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
45691         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
45692         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
45693         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
45694         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
45695         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
45696         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
45697         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
45698         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
45699         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
45700         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
45701         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
45702         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
45703         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
45704         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
45705         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
45706         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
45707         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
45708         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
45709         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
45710         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
45711         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
45712         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
45713         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
45714         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
45715         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
45716         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
45717         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
45718         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
45719         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
45720         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
45721         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
45722         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
45723         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
45724         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
45725         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
45726         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
45727         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
45728         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
45729         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
45730         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
45731         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
45732         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
45733         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
45734         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
45735         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
45736         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
45737         lib/yesno.c, lib/yesno.h:
45738         Update FSF postal mail address.
45739
45740 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
45741
45742         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
45743         tests/test-memmem.c, tests/test-stpncpy.c:
45744         Update FSF postal mail address.
45745
45746 2005-05-13  Bruno Haible  <bruno@clisp.org>
45747
45748         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
45749         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
45750         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
45751         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
45752         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
45753         Add support for 64-bit integers in the MSVC compiler.
45754
45755 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45756
45757         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
45758
45759 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
45760
45761         * gnulib-tool (func_import): Sort and uniquify recommended includes.
45762
45763 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
45764
45765         * doc/getdate.texi (General date syntax): Don't say that date
45766         date --iso-8601=ns generates acceptable dates; it doesn't yet.
45767         Problem reported by Nic Ferrier.
45768
45769 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45770
45771         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
45772         specified in ai_socktype. Fix invalid ai_protocol
45773         check. ai_protocol is usually set to 0 or depending on
45774         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
45775         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
45776         ai_socktype / ai_protocol in the returned addrinfo structure.
45777
45778 2005-05-10  Simon Josefsson  <jas@extundo.com>
45779
45780         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
45781         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
45782
45783 2005-05-10  Karl Berry  <karl@gnu.org>
45784
45785         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
45786         (from http://www.gnu.org/licenses).
45787         * doc/COPYING.LIB: also rename to COPYING.LESSER.
45788         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
45789         fdl.texi suffices.
45790
45791 2005-05-10  Karl Berry  <karl@gnu.org>
45792
45793         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
45794         (COPYING.DOC): remove.
45795
45796         * config/srclist-update: new FSF address.
45797
45798 2005-05-10  Derek Price  <derek@ximbiot.com>
45799
45800         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
45801         possible.
45802
45803 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45804             Bruno Haible  <bruno@clisp.org>
45805
45806         * modules/inet_ntop: New file.
45807         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
45808         inet_ntop.
45809
45810 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45811             Bruno Haible  <bruno@clisp.org>
45812
45813         * m4/inet_ntop.m4: New file.
45814
45815 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45816             Bruno Haible  <bruno@clisp.org>
45817
45818         * lib/inet_ntop.h: New file.
45819         * lib/inet_ntop.c: New file, from glibc with modifications.
45820
45821 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
45822
45823         * modules/time_r (License): Change to LGPL.
45824         * modules/extensions (License): Change to LGPL.  Actually,
45825         the license is more permissive than that, but currently gnulib-tool
45826         doesn't know how to handle more-permissive licenses.
45827
45828         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
45829         Problem reported by Dave Love.
45830
45831 2005-05-08  Jim Meyering  <jim@meyering.net>
45832
45833         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
45834         blank.
45835
45836 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
45837
45838         * modules/argmatch (Depends-on): Add stdbool.
45839         * modules/backupfile (Depends-on): Likewise.
45840         * modules/chdir-long (Depends-on): Likewise.
45841         * modules/closeout (Depends-on): Likewise.
45842         * modules/cycle-check (Depends-on): Likewise.
45843         * modules/dirname (Depends-on): Likewise.
45844         * modules/fnmatch (Depends-on): Likewise.
45845         * modules/fsusage (Depends-on): Likewise.
45846         * modules/fwriteerror (Depends-on): Likewise.
45847         * modules/getcwd (Depends-on): Likewise.
45848         * modules/getloadavg (Depends-on): Likewise.
45849         * modules/hard-locale (Depends-on): Likewise.
45850         * modules/makepath (Depends-on): Likewise.
45851         * modules/mountlist (Depends-on): Likewise.
45852         * modules/nanosleep (Depends-on): Likewise.
45853         * modules/posixtm (Depends-on): Likewise.
45854         * modules/quotearg (Depends-on): Likewise.
45855         * modules/readtokens (Depends-on): Likewise.
45856         * modules/readtokens0 (Depends-on): Likewise.
45857         * modules/readutmp (Depends-on): Likewise.
45858         * modules/save-cwd (Depends-on): Likewise.
45859         * modules/strftime (Depends-on): Likewise.
45860         * modules/userspec (Depends-on): Likewise.
45861         * modules/utimecmp (Depends-on): Likewise.
45862         * modules/xgetcwd (Depends-on): Likewise.
45863         * modules/xnanosleep (Depends-on): Likewise.
45864         * modules/xstrtod (Depends-on): Likewise.
45865         * modules/yesno (Depends-on): Likewise.
45866
45867 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
45868
45869         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
45870         needless checks.
45871
45872 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
45873
45874         Merge from coreutils.  Among other things,
45875         add bulletproofing for cases where stdin, stdout, or stderr are closed.
45876         * lib/fd-safer.c: New file.
45877         * lib/fcntl-safer.h, open-safer.c: Remove.
45878         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
45879         * lib/dup-safer.c: Include unistd-safer.h first.
45880         Don't include errno.h.
45881         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
45882         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
45883         * lib/file-type.c: Rely on file-type.h change.
45884         * lib/getloadavg.c: Include unistd-safer.h.
45885         (getloadavg): Use safer open.
45886         * lib/getusershell.c: Include "stdio-safer.h".
45887         (getusershell): Use safer fopen.
45888         * lib/long-options.c (long_options): Use NULL rather than 0.
45889         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
45890         'free'.
45891         * lib/modechange.c: Likewise.
45892         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
45893         (MODE_DONE): New constant.
45894         (struct mode_change): Remove 'next' member.
45895         (make_node_op_equals): New function; like the old one of the
45896         same name, except it allocates an array.
45897         (mode_compile, mode_create_from_ref): Use it.
45898         (mode_compile): Allocate result as an array, not a linked list.
45899         Parse octal string ourself, so that we catch mistakes like "+0".
45900         (mode_adjust): Arg is an array, not a linked list.
45901         * lib/modechange.c: Include stat-macros.h, xalloc.h.
45902         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
45903         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
45904         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
45905         Remove.  This is now stat-macros.h's job.
45906         (talloc): Remove.  All callers replaced by xalloc, so that
45907         our invokers don't have to worry about reporting memory failures.
45908         (make_node_op_equals): Remove.
45909         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
45910         New constants.
45911         (struct mode_change): Moved here from modechange.h.
45912         (mode_append_entry): Remove.
45913         (mode_compile): Remove MASKED_OPS arg, since it encouraged
45914         apps to have incorrect behavior.  Use simpler algorithm for head
45915         and tail.  Don't futz with umask; that's now the job of mode_adjust.
45916         Detect more invalid usages rather than having somewhat-random behavior.
45917         Don't insert an "a=" action, as that leads to incorrect behavior.
45918         (mode_compile, mode_create_from_ref): Return NULL on error instead
45919         of an enum, since now there's only one way to have an error.  All
45920         callers changed.
45921         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
45922         at the correct time.  Simplify calculation of "+u" and its ilk.
45923         Don't mishandle "+X".
45924         (mode_free): Remove "register" and localize decls.
45925         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
45926         (struct mode_change): Move to modechange.c; callers don't
45927         need to see this stuff.
45928         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
45929         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
45930         (mode_change, mode_adjust): Reflect the new signatures noted above.
45931         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
45932         that might redefine system include files.
45933         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
45934         (my_usleep): Use NULL rather than (void *) 0.
45935         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
45936         Use siginterrupt to specify that system calls should be interrupted.
45937         (rpl_nanosleep): Move initialization of suspended closer to call of
45938         my_usleep.
45939         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
45940         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
45941         (desirable_utmp_entry): New function.
45942         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
45943         using x2nrealloc, to simplify logic.
45944         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
45945         size calculation.  Do not assume utmp file is a regular file.
45946         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
45947         (READ_UTMP_CHECK_PIDS): New constant.
45948         * lib/save-cwd.c: Include unistd-safer.h.
45949         (save_cwd): Use fd_safer.
45950         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
45951         [!_LIBC] Include "stat-macros.h" instead.
45952         * lib/unistd-safer.h (fd_safer): New decl.
45953
45954 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
45955
45956         * modules/getloadavg (Depends-on): Add unistd-safer.
45957         * modules/getusershell (Depends-on): Add stdio-safer.
45958         * modules/lstat (Depends-on): Remove xalloc.
45959         * modules/mkstemp (Depends-on): Add stat-macros.
45960         * modules/modechange (Depends-on): Remove xstrtol.
45961         Add stat-macros, xalloc.
45962         * modules/save-cwd (Depends-on): Add unistd-safer.
45963         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
45964         * modules/unistd-safer (Files): Add lib/fd-safer.c
45965         (Makefile.am): Remove lib_SOURCES.
45966
45967         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
45968         Remove fcntl-safer; unistd-safer supersedes it.
45969
45970 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
45971
45972         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
45973         AC_HEADER_STAT.
45974         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
45975         (gl_PREREQ_CHOWN): Remove.
45976         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
45977         it.  Don't require AC_HEADER_STAT.
45978         (gl_PREREQ_LSTAT): Remove.
45979         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
45980         Don't require AC_HEADER_STAT.
45981         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
45982         (gl_PREREQ_RMDIR): Remove.
45983         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
45984         mention stat-macros.h or AC_HEADER_STAT, since we'll make
45985         the stat-macros module a prerequisite.
45986         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
45987         * m4/filemode.m4 (gl_FILEMODE): Likewise.
45988         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
45989         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
45990         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
45991         variable names.
45992         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
45993         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
45994         variable prefixes.
45995         * m4/fcntl-safer.m4: Remove.
45996         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
45997         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
45998         Invoke gl_PREREQ_FD_SAFER.
45999         (gl_PREREQ_FD_SAFER): New macro.
46000         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
46001         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
46002         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
46003         Remove duplicate call to AC_LIBOBJ(readutmp).
46004         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
46005
46006         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
46007         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
46008
46009 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46010
46011         * MODULES.html.sh (Misc): Add byteswap.
46012
46013 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46014
46015         * modules/getcwd (Depends-on): Add extensions.
46016         * modules/openat (Depends-on): Likewise.
46017
46018 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46019
46020         * modules/byteswap: New file.
46021
46022 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46023
46024         * m4/byteswap.m4: New file.
46025
46026 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46027
46028         * lib/byteswap_.h: New file.
46029
46030 2005-04-25  Karl Berry  <karl@gnu.org>
46031
46032         * m4/gettext.m4: Update from GNU gettext 0.14.4.
46033
46034 2005-04-25  Albert Chin  <china@thewrittenword.com>
46035
46036         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
46037         Toolkit C bug.
46038
46039 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
46040
46041         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
46042         (func_ln_if_changed) Remove forcibly for no error message
46043         in case file does not exist.
46044
46045 2005-04-19  Simon Josefsson  <jas@extundo.com>
46046
46047         * gnulib-tool (Options): Make --symlink mean --symbolic.
46048
46049 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
46050
46051         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
46052
46053 2005-04-16  Simon Josefsson  <jas@extundo.com>
46054
46055         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
46056
46057 2005-04-15  Simon Josefsson  <jas@extundo.com>
46058
46059         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
46060
46061 2005-04-15  Simon Josefsson  <jas@extundo.com>
46062
46063         * gnulib-tool: Rename --symlink to --symbolic.
46064
46065 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
46066
46067         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
46068         symbolic links to files instead of copying/moving.  Add --aux-dir,
46069         specifying directory relative --dir where auxiliary build tools
46070         are placed.
46071
46072 2005-04-14  Bruno Haible  <bruno@clisp.org>
46073
46074         * modules/allocsa (License): Change to LGPL.
46075         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
46076
46077 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
46078
46079         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
46080         that "UTC +1 second" continues to work.  Problem reported
46081         by Dmitry V. Levin.
46082         (relunit_snumber): New rule.
46083         (relunit): Use it.
46084
46085 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
46086
46087         * lib/getdate.y (universal_time_zone_table): New constant.
46088         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
46089         universal_time_zone_table.
46090         (lookup_zone): Prefer universal_time_zone_table to
46091         local_time_zone_table, so that "GMT" time stamps are allowed in
46092         London during the summer.  Problem reported by Ian Abbott.
46093
46094 2005-04-12  Jim Meyering  <jim@meyering.net>
46095
46096         * lib/human.c (humblock): Set *options even when returning due to
46097         xstrtoumax conversion failure.  Thanks to a used-uninitialized
46098         warning from gcc-4.
46099
46100 2005-04-09  Jim Meyering  <jim@meyering.net>
46101
46102         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
46103         -Wuninitialized: initialize tm0.tm_year.
46104
46105 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
46106
46107         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
46108         count, since there's no maximum.  All uses changed.
46109         Add member dsts_seen.
46110         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
46111         not being INT_MAX.
46112         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
46113         Use pc_rels_seen to decide whther a date is absolute.
46114
46115         * lib/getdate.y (number): Don't overwrite year.
46116         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
46117         check.
46118
46119 2005-04-02  Simon Josefsson  <jas@extundo.com>
46120
46121         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
46122         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
46123
46124 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
46125
46126         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
46127         where no absolute path name can be longer than PATH_MAX.
46128
46129 2005-03-27  Jim Meyering  <jim@meyering.net>
46130
46131         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
46132
46133 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
46134
46135         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
46136         "one's complement" -> "ones' complement" in comment, as per Knuth.
46137         "value of type" -> "type or expression" in comment.
46138         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
46139
46140 2005-03-26  Jim Meyering  <jim@meyering.net>
46141
46142         Comment nits.
46143         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
46144         Correct typos: s/or/of/.
46145
46146 2005-03-26  Jim Meyering  <jim@meyering.net>
46147
46148         * modules/check-include-files: Move to ../ and rename to...
46149         * check-module: ...this.
46150
46151 2005-03-25  Jim Meyering  <jim@meyering.net>
46152
46153         * modules/xvasprintf (Files): Add xalloc.h.
46154
46155 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
46156
46157         * modules/gettext (Files): config/config.rpath ->
46158         build-aux/config.rpath
46159         * modules/iconv (Files): Likewise.
46160         Problem reported by Oskar Liljeblad.
46161
46162 2005-03-23  Jim Meyering  <jim@meyering.net>
46163
46164         * modules/check-include-files: New script to check for
46165         missing dependencies, multiple includes, etc.
46166
46167         * modules/c-strtold (Depends-on): Add xalloc.
46168         * modules/c-strtod (Depends-on): Add xalloc.
46169         * modules/hash (Depends-on): Add xalloc.
46170         (Files): Remove lib/xalloc.h.
46171
46172         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
46173         * modules/userspec (Files): Add lib/inttostr.h.
46174
46175 2005-03-23  Jim Meyering  <jim@meyering.net>
46176
46177         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
46178
46179 2005-03-22  Jim Meyering  <jim@meyering.net>
46180
46181         * modules/stat-macros: New module.
46182         * modules/canonicalize, modules/euidaccess, modules/file-type,
46183         * modules/filemode, modules/lchown, modules/makepath,
46184         * modules/rmdir, modules/stat: Depend on new stat-macros module
46185         rather than listing lib/stat-macros.h manually.
46186         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
46187
46188 2005-03-22  Jim Meyering  <jim@meyering.net>
46189
46190         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
46191
46192 2005-03-22  Bruno Haible  <bruno@clisp.org>
46193
46194         * config/srclist.txt: Replace target directory 'config' with
46195         'build-aux'.
46196         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
46197         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
46198         ../build-aux/.
46199
46200 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
46201
46202         * modules/chdir-long (Depends-on): Add mempcpy.
46203
46204         * modules/acl, modules/backupfile, modules/c-strtod,
46205         modules/c-strtold, modules/canon-host, modules/canonicalize,
46206         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
46207         modules/exclude, modules/exitfail, modules/file-type,
46208         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
46209         modules/getdate, modules/getline, modules/getpagesize,
46210         modules/getpass, modules/getugroups, modules/group-member,
46211         modules/hard-locale, modules/hash, modules/human, modules/idcache,
46212         modules/inttostr, modules/long-options, modules/makepath,
46213         modules/md5, modules/memcasecmp, modules/memcoll,
46214         modules/modechange, modules/mountlist, modules/path-concat,
46215         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
46216         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
46217         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
46218         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
46219         modules/strftime, modules/strndup, modules/strverscmp,
46220         modules/timespec, modules/unlocked-io, modules/userspec,
46221         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
46222         modules/yesno:
46223         Remove lib_SOURCES line from Makefile.am section, as this is now
46224         done automatically by the corresponding Autoconf macro.
46225
46226 2005-03-21  Jim Meyering  <jim@meyering.net>
46227
46228         Changes imported from coreutils.
46229
46230         * lib/cycle-check.c: Don't include xalloc.h.
46231
46232         * lib/path-concat.c: Don't include assert.h.
46233         (path_concat): Remove assertion that would have triggered
46234         for ABASE starting with more than one slash.
46235         Reported by Andreas Schwab.
46236
46237         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
46238         properly when ABASE is an absolute file name.
46239         Correct the description of this function.
46240         Include <assert.h>.
46241         Add an assertion and a test driver.
46242         This fixes a bug introduced on 2004-07-02.
46243         Andreas Schwab reported the resulting failure of cp --parents:
46244         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
46245
46246 2005-03-21  Jim Meyering  <jim@meyering.net>
46247
46248         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
46249         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
46250
46251 2005-03-21  Jim Meyering  <jim@meyering.net>
46252         and  Paul Eggert  <eggert@cs.ucla.edu>
46253
46254         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
46255         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
46256         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
46257         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
46258         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
46259         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
46260         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
46261         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
46262         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
46263         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
46264         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
46265         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
46266         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
46267         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
46268         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
46269         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
46270         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
46271         for these modules.
46272
46273 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
46274
46275         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
46276         (which shouldn't happen), generate nothing instead of returning 0
46277         immediately, so that nstrftime (NULL, ...) doesn't return 0.
46278
46279 2005-03-16  Bruno Haible  <bruno@clisp.org>
46280
46281         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
46282         HAVE_LONGLONG_64BIT.
46283
46284 2005-03-16  Bruno Haible  <bruno@clisp.org>
46285
46286         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
46287         HAVE_LONGLONG_64BIT.
46288
46289 2005-03-16  Bruno Haible  <bruno@clisp.org>
46290
46291         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
46292         HAVE_LONGLONG_64BIT.
46293
46294 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
46295
46296         * lib/strftime.c (my_strftime): Prepend space to format so that we can
46297         reliably distinguish strftime failure from empty output on POSIX
46298         hosts.
46299
46300 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
46301
46302         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
46303         (iconv_string): Don't guess a size-zero buffer, as that might cause
46304         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
46305         result would be 'too large', where 'too large' is (heuristically)
46306         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
46307         overflow concerns.  This will prevent some unwanted malloc failures
46308         when the inputs are very large.
46309
46310 2005-03-15  Karl Berry  <karl@gnu.org>
46311
46312         * config/srclist.txt (config.rpath): from gettext.
46313         * config/config.rpath: update.
46314
46315 2005-03-15  Bruno Haible  <bruno@clisp.org>
46316
46317         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
46318         to 'negate'.
46319
46320         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
46321         variable.
46322
46323         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
46324         results.
46325
46326 2005-03-14  Simon Josefsson  <jas@extundo.com>
46327
46328         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
46329         <fx@gnu.org>.
46330
46331 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
46332
46333         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
46334         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
46335         intprops.h.
46336         * lib/strtol.c: Likewise.
46337
46338 2005-03-14  Jim Meyering  <jim@meyering.net>
46339
46340         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
46341         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
46342         to be nonzero so that we (and caller) can detect the difference
46343         between a valid zero-length expansion and an error return, even
46344         when the underlying strftime fails before writing anything into
46345         that location.
46346
46347 2005-03-14  Bruno Haible  <bruno@clisp.org>
46348
46349         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
46350         Update from GNU gettext 0.14.3.
46351
46352 2005-03-10  Jim Meyering  <jim@meyering.net>
46353
46354         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
46355
46356 2005-03-10  Jim Meyering  <jim@meyering.net>
46357
46358         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
46359         so that this module works on systems without fchdir.
46360
46361 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
46362
46363         Factor int-properties macros into a single file, except for
46364         glibc-related files.
46365         * lib/intprops.h: New file.
46366         * lib/getloadavg.c: Include it instead of limits.h.
46367         (INT_STRLEN_BOUND): Remove.
46368         * lib/human.c: Include intprops.h.
46369         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
46370         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
46371         302/1000.
46372         * lib/inttostr.h: Include intprops.h instead of limits.h.
46373         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
46374         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
46375         for consistency with intprops.h.
46376         (time_t_is_integer, twos_complement_arithmetic): Use them.
46377         * lib/sig2str.h: Include <signal.h>, intprops.h.
46378         (INT_STRLEN_BOUND): Remove.
46379         * lib/strftime.c (TYPE_SIGNED): Remove.
46380         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
46381         * lib/strtol.c: Adjust comments to match intprops.h.
46382         * lib/userspec.c: Include intprops.h.
46383         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
46384         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
46385         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
46386         instead of rolling our own expressions.
46387         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
46388
46389         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
46390         instead of int.
46391         (my_strftime): Do not mishandle years close to INT_MAX, by doing
46392         the right thing even if adding 1900 would overflow.  Similarly
46393         for tm_mon + 1 and tm_yday + 1.
46394         Make %Y always equivalent to %C%y, and similarly for %G and %g.
46395         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
46396         (DO_SIGNED_NUMBER): New macro.
46397         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
46398
46399 2005-03-07  Bruno Haible  <bruno@clisp.org>
46400
46401         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
46402
46403 2005-03-07  Bruno Haible  <bruno@clisp.org>
46404
46405         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
46406
46407 2005-03-04  Derek R. Price  <derek@ximbiot.com>
46408
46409         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
46410         (func_import): Only replace files via --import when they have actually
46411         changed.
46412
46413 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46414
46415         * m4/mmap-anon.m4: New file.
46416         * m4/pagealign_alloc.m4: New file.
46417
46418 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46419             Bruno Haible  <bruno@clisp.org>
46420
46421         * modules/pagealign_alloc: New file.
46422         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
46423
46424 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46425             Bruno Haible  <bruno@clisp.org>
46426
46427         * lib/pagealign_alloc.h: New file.
46428         * lib/pagealign_alloc.c: New file.
46429
46430 2005-03-03  Bruno Haible  <bruno@clisp.org>
46431
46432         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
46433         Use an all-permissive copyright notice, recommended by RMS.
46434
46435 2005-03-02  Bruno Haible  <bruno@clisp.org>
46436
46437         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
46438         of AIX, the replacement has to be done only after <string.h> is
46439         included, therefore not in config.h. stpncpy.h does the replacement,
46440         and stpncpy.c uses it.
46441
46442 2005-03-02  Bruno Haible  <bruno@clisp.org>
46443
46444         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
46445         stpncpy.c uses it.
46446
46447 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46448
46449         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
46450         The workaround isn't strictly needed for POSIX conformance, and
46451         it's too much of a pain to configure and maintain.  We'll ask
46452         people to fix their kernels instead.
46453         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
46454         (NANOSLEEP_BUG_WORKAROUND): Remove.
46455         (xnanosleep): Remove the workaround.
46456
46457 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46458
46459         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
46460         Reported by Derek Price.
46461         (Include): Add "timespec.h".
46462
46463         * modules/xnanosleep (Depends-on): Remove gethrxtime.
46464
46465 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46466
46467         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
46468         to detect nanosleep bug.
46469
46470 2005-03-01  Bruno Haible  <bruno@clisp.org>
46471
46472         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
46473
46474 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
46475
46476         * modules/gethrxtime: New file.
46477         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
46478         (Depends-on): Add gethrxtime.
46479         (configure.ac): Add gl_XNANOSLEEP.
46480         (Makefile.am): Remove lib_SOURCES line.
46481
46482 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
46483
46484         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
46485         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
46486
46487 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
46488
46489         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
46490         * lib/timespec.h (gettime): Return void, since it always
46491         succeeds now.  All uses changed.
46492         * lib/gettime.c (gettime) Likewise.
46493         [HAVE_NANOTIME]: Prefer nanotime.
46494         Assume gettimeofday succeeds, as POSIX requires.
46495         Assime time () succeeds, since other code already does.
46496         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
46497         (timespec_subtract): Remove.
46498         (NANOSLEEP_BUG_WORKAROUND): New constant.
46499         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
46500         things considerably.  Use it only on GNU/Linux hosts, since the
46501         workaround shouldn't be needed elsewhere.
46502
46503 2005-02-24  Bruno Haible  <bruno@clisp.org>
46504
46505         * modules/gettext (Files): Add m4/glibc2.m4.
46506
46507 2005-02-24  Bruno Haible  <bruno@clisp.org>
46508
46509         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
46510         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
46511         * m4/progtest.m4:
46512         Update from GNU gettext 0.14.2.
46513         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
46514
46515 2005-02-24  Bruno Haible  <bruno@clisp.org>
46516
46517         * lib/localcharset.c: Update from GNU gettext 0.14.2.
46518         * lib/config.charset: Update from GNU gettext 0.14.2.
46519
46520 2005-02-24  Bruno Haible  <bruno@clisp.org>
46521
46522         * lib/gettext.h: Update from GNU gettext 0.14.2.
46523
46524 2005-02-23  Simon Josefsson  <jas@extundo.com>
46525
46526         * m4/iconvme.m4: New file.
46527
46528 2005-02-23  Jim Meyering  <jim@meyering.net>
46529
46530         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
46531         change.
46532         Thanks to Bruno Haible for catching it.
46533
46534 2005-02-22  Simon Josefsson  <jas@extundo.com>
46535
46536         * modules/iconvme: New file.
46537
46538         * MODULES.html.sh: Add iconvme.
46539
46540 2005-02-22  Simon Josefsson  <jas@extundo.com>
46541
46542         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
46543
46544 2005-02-22  Simon Josefsson  <jas@extundo.com>
46545
46546         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
46547
46548 2005-02-22  Jim Meyering  <jim@meyering.net>
46549
46550         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
46551         s/ifndef/ifdef/.
46552
46553 2005-02-20  Neil Conway  <neilc@samurai.com>
46554
46555         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
46556         returned by OSX/Darwin if the specified buffer is not large
46557         enough for the hostname.
46558
46559 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46560
46561         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
46562         pass it to _help, otherwise the latter coredumps trying to
46563         dereference state.root_argp.
46564
46565 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46566
46567         * modules/chdir-long (Depends-on): Add memrchr.
46568         * modules/memrchr (Files): Add lib/memrchr.h.
46569         (Include): "memrchr.h".
46570
46571 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46572
46573         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
46574
46575 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46576
46577         * lib/memrchr.h: New file.
46578         * lib/chdir-long.c: Include it.
46579         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
46580         Don't bother including stddef.h.
46581
46582 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
46583
46584         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
46585         inclusion.
46586         Include <sys/types.h>, for dev_t.
46587         (ME_DUMMY, ME_REMOTE): Move from here....
46588         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
46589         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
46590         Dmitry V. Levin.
46591         Include mountlist.h first, to test the interface.
46592
46593 2005-01-29  Bruno Haible  <bruno@clisp.org>
46594
46595         * lib/progname.c (program_name): Initialize.
46596         Needed when linking statically on MacOS X.
46597
46598 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
46599
46600         Sync from coreutils.
46601         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
46602         (Depends-on): Add c-strtod.
46603         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
46604
46605 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
46606
46607         Sync from coreutils.
46608         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
46609
46610         Remove files that are specific to coreutils.
46611         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
46612
46613 2005-01-28  Bruno Haible  <bruno@clisp.org>
46614
46615         * modules/javacomp: New file.
46616         * MODULES.html.sh (Java): Add javacomp.
46617
46618 2005-01-28  Bruno Haible  <bruno@clisp.org>
46619
46620         * m4/javacomp.m4: New file, from GNU gettext.
46621
46622 2005-01-28  Bruno Haible  <bruno@clisp.org>
46623
46624         * lib/javacomp.sh.in: New file, from GNU gettext.
46625         * lib/javacomp.h: New file, from GNU gettext.
46626         * lib/javacomp.c: New file, from GNU gettext.
46627
46628 2005-01-26  Simon Josefsson  <jas@extundo.com>
46629
46630         * lib/gai_strerror.c: Use GPL in header.
46631
46632 2005-01-26  Bruno Haible  <bruno@clisp.org>
46633
46634         * modules/javaexec: New file.
46635         * MODULES.html.sh (Java): Add javaexec.
46636
46637 2005-01-26  Bruno Haible  <bruno@clisp.org>
46638
46639         * m4/javaexec.m4: New file, from GNU gettext.
46640
46641 2005-01-26  Bruno Haible  <bruno@clisp.org>
46642
46643         * lib/javaexec.sh.in: New file, from GNU gettext.
46644         * lib/javaexec.h: New file, from GNU gettext.
46645         * lib/javaexec.c: New file, from GNU gettext.
46646
46647 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46648
46649         * modules/lchown (Depends-on): Remove lchown.h
46650
46651 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46652
46653         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
46654         must be defined if the header file was not found, in order
46655         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
46656
46657 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46658
46659         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
46660         initializers for struct pentry_state.
46661         (__argp_error): Check return value of __asprintf
46662         (__argp_failure): Translate error message
46663
46664         * lib/argp-parse.c: Removed braces around the expansion of N_()
46665
46666 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
46667
46668         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
46669         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
46670         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
46671         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
46672         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
46673         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
46674         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
46675         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
46676         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
46677         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
46678         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
46679         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
46680         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
46681         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
46682         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
46683         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
46684         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
46685         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
46686         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
46687         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
46688         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
46689         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
46690         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
46691         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
46692         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
46693         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
46694         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
46695         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
46696         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
46697         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
46698         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
46699         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
46700         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
46701         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
46702         xstrtol.m4, xstrtoumax.m4, yesno.m4:
46703         Use an all-permissive copyright notice, recommended by RMS.
46704
46705 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
46706
46707         * modules/chdir-long (Depends-on): Remove mempcpy.
46708
46709 2005-01-21  Jim Meyering  <jim@meyering.net>
46710
46711         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
46712         same value as for Solaris 9.
46713
46714         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
46715         component length.  This included changing the parameter to be
46716         of type `char *' rather than `char const *'.
46717         * lib/chdir-long.h (chdir_long): Update prototype.
46718
46719         * lib/openat.c (fdopendir, fstatat): New functions.
46720         * lib/openat.h: Include headers required for use of DIR and struct
46721         stat.
46722         [AT_SYMLINK_NOFOLLOW]: Define.
46723         (fdopendir, fstatat): Add prototypes.
46724
46725 2005-01-21  Bruno Haible  <bruno@clisp.org>
46726
46727         * modules/classpath: New file.
46728         * MODULES.html.sh (Java): Add classpath.
46729
46730 2005-01-21  Bruno Haible  <bruno@clisp.org>
46731
46732         * lib/classpath.h: New file, from GNU gettext.
46733         * lib/classpath.c: New file, from GNU gettext.
46734
46735 2005-01-20  Simon Josefsson  <jas@extundo.com>
46736
46737         * modules/version-etc-fsf: New file.
46738
46739 2005-01-20  Simon Josefsson  <jas@extundo.com>
46740
46741         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
46742         * lib/version-etc.c: Remove version_etc_copyright.
46743         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
46744         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
46745
46746 2005-01-20  Simon Josefsson  <jas@extundo.com>
46747
46748         * lib/base64.h (isbase64): Add.
46749
46750         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
46751         using a unsigned prototype, don't inline.
46752         (base64_decode): Use it.
46753
46754 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46755
46756         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
46757         it.
46758
46759 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46760
46761         * lib/save-cwd.c (save_cwd): Remove code to support the case
46762         where fchdir is missing or flaky.
46763
46764 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46765
46766         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
46767
46768 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
46769
46770         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
46771         AC_LIBSOURCES now does this.
46772         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
46773         with new ullong_max module.
46774
46775 2005-01-19  Bruno Haible  <bruno@clisp.org>
46776
46777         * modules/sh-quote: New file.
46778         * MODULES.html.sh (Executing programs): Add sh-quote.
46779
46780 2005-01-19  Bruno Haible  <bruno@clisp.org>
46781
46782         * lib/sh-quote.h: New file, from GNU gettext.
46783         * lib/sh-quote.c: New file, from GNU gettext.
46784
46785 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46786
46787         Merge from coreutils.
46788         * m4/ullong_max.m4: New file.
46789         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
46790         (gl_MACROS): Assume localeconv exists.
46791
46792 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46793
46794         Merge changes from coreutils, as described below in several
46795         changelogs dated today.
46796
46797         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
46798         (O_DIRECTORY): Remove; not needed here, since "." must be
46799         a directory.  All uses removed.
46800         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
46801         universal on Suns, and we also need to test for IRIX.
46802         Revamp code to use 'if' rather than '#if'.
46803         Avoid unnecessary comparison of cwd->desc to 0.
46804
46805         * lib/utimens.c (futimens): Robustify the previous patch, by checking
46806         for known valid error numbers rather than observed invalid ones.
46807
46808 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46809
46810         * modules/ullong_max: New file.
46811
46812         * modules/chdir-long, modules/openat: New files.
46813         * modules/save-cwd (Depends-on): Depend on chdir-long.
46814         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
46815
46816 2005-01-18  Jim Meyering  <jim@meyering.net>
46817
46818         Merge from coreutils.
46819         * m4/chdir-long.m4, m4/openat.m4: New files.
46820         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
46821         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
46822         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
46823         is sane and DOES follow symlinks.  Besides, testing 20 different
46824         systems found no broken chown implementations.
46825         Prompted by a change in rsync's copy of this macro.
46826         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
46827
46828         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
46829
46830         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
46831         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
46832         NULL-means-set-to-current-time semantics.
46833         Remove temporary file immediately, rather than waiting
46834         for configure's at-exit trap code to do it.
46835
46836 2005-01-18  Jim Meyering  <jim@meyering.net>
46837
46838         * lib/version-etc.c (version_etc_copyright): Update copyright date.
46839
46840         * lib/utimens.c (futimens): Account for the fact that futimes
46841         can also fail with errno == ENOSYS or errno == ENOENT.
46842         Patch from Dmitry V. Levin.
46843
46844         Change the name of the robust chdir function from chdir to chdir_long.
46845         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
46846         (restore_cwd): Use chdir_long, not chdir.
46847         * lib/chdir-long.c: Renamed from chdir.c.
46848         * lib/chdir-long.h: Renamed from chdir.h.
46849         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
46850         Hurd.
46851
46852 2005-01-18  Bruno Haible  <bruno@clisp.org>
46853
46854         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
46855         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
46856         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
46857         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
46858         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
46859         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
46860         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
46861         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
46862         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
46863         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
46864         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
46865         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
46866         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
46867         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
46868         Use an all-permissive copyright notice, recommended by RMS.
46869
46870 2005-01-18  Bob Proulx  <bob@proulx.com>
46871
46872         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
46873         simplify offsetof() macro construct to avoid compile failure with
46874         native HP-UX 11.0 ANSI C compiler.
46875
46876 2005-01-17  Bruno Haible  <bruno@clisp.org>
46877
46878         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
46879         redundant because stpncpy.m4 takes care of it.
46880
46881 2005-01-17  Bruno Haible  <bruno@clisp.org>
46882
46883         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
46884
46885 2005-01-17  Bruno Haible  <bruno@clisp.org>
46886
46887         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
46888         used.
46889
46890 2005-01-17  Bruno Haible  <bruno@clisp.org>
46891
46892         * lib/fwriteerror.h (fwriteerror): Change specification to include
46893         fclose.
46894         * lib/fwriteerror.c: Include <stdbool.h>.
46895         (fwriteerror): At the end, close the file stream. Record whether
46896         stdout was already closed.
46897
46898 2005-01-17  Bruno Haible  <bruno@clisp.org>
46899
46900         * lib/execute.c (environ): Declare if needed.
46901         * lib/pipe.c (environ): Likewise.
46902         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
46903
46904 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46905
46906         * modules/argp: Depend on vsnprintf
46907
46908 2005-01-10  Jim Meyering  <jim@meyering.net>
46909
46910         * modules/closeout (Depends-on): Add atexit.
46911
46912 2005-01-06  Bruno Haible  <bruno@clisp.org>
46913
46914         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
46915
46916 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
46917
46918         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
46919         definitions to be after all include files, to avoid collisions.
46920         Problem reported by Bob Proulx.
46921
46922 2005-01-04  Jim Meyering  <jim@meyering.net>
46923
46924         Changes imported from coreutils.
46925         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
46926         as the mkstemp template, use a temporary directory and an
46927         8.3-friendly template to avoid trouble on systems like DJGPP.
46928         Reported by Juan M. Guerrero via Stepan Kasal.
46929         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
46930         close. Remove the temporary directory right away, rather than waiting
46931         for configure's at-exit trap code to do it.
46932         Suggestion from Stepan Kasal.
46933
46934 2005-01-01  Simon Josefsson  <jas@extundo.com>
46935
46936         * gnulib-tool: Print #include directives when --import'ing.
46937
46938 2004-12-28  Simon Josefsson  <jas@extundo.com>
46939
46940         * tests/test-base64.c: Include required header files.  Remove
46941         unused variables.
46942
46943 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
46944
46945         * modules/error (Depends-on): Remove gettext.
46946
46947 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
46948
46949         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
46950         not needed.  This removes a dependency on the gettext module.
46951         [defined _LIBC]: Do not include <libintl.h>; not needed.
46952
46953 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
46954
46955         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
46956         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
46957
46958 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
46959
46960         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
46961         HAVE_DECL_STRTOLD.
46962
46963 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
46964
46965         * modules/getdate (Depends-on): Remove alloca-opt.
46966
46967 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
46968
46969         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
46970
46971 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
46972
46973         * lib/argp-parse.c: Include <stddef.h>.
46974         (alignof, alignto): New macros.
46975         (parser_init): Don't assume that void * is aligned sufficiently
46976         for struct option.
46977
46978         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
46979         need to extend the stack.
46980         (YYINITDEPTH): New macro, so that the initial stack isn't overly
46981         large.
46982
46983 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46984
46985         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
46986
46987 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
46988
46989         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
46990         (2004-10-24) change.  Apparently this was a false alarm.
46991
46992         * modules/getdate: Depend on alloca-opt, not alloca.
46993
46994 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
46995
46996         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
46997         Remove now-obsolete comment about AIX.
46998         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
46999         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
47000         (YYMAXDEPTH): New macro.
47001
47002 2004-12-18  Simon Josefsson  <jas@extundo.com>
47003
47004         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
47005
47006 2004-12-18  Bruno Haible  <bruno@clisp.org>
47007
47008         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
47009
47010 2004-12-18  Bruno Haible  <bruno@clisp.org>
47011
47012         * lib/fatal-signal.c (fatal_signals): Make non-const.
47013         (init_fatal_signals): New function.
47014         (uninstall_handlers, install_handlers): Ignore signals that were set to
47015         SIG_IGN.
47016         (at_fatal_signal): Call init_fatal_signals.
47017         (init_fatal_signal_set): Likewise. Ignore signals that were set to
47018         SIG_IGN.
47019         Reported by Paul Eggert.
47020
47021 2004-12-18  Bruno Haible  <bruno@clisp.org>
47022
47023         * doc/alloca.texi: New file.
47024         * doc/alloca-opt.texi: New file.
47025
47026 2004-12-17  Jim Meyering  <jim@meyering.net>
47027
47028         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
47029         Otherwise, install-sh could exit with improper exit status when
47030         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
47031
47032 2004-12-16  Simon Josefsson  <jas@extundo.com>
47033
47034         * tests/test-base64.c: Add license.
47035
47036 2004-12-15  Stepan Kasal  <address@hidden>
47037
47038         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
47039
47040 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
47041
47042         * modules/getcwd (Files): Add m4/d-ino.m4.
47043         Suggested by Mark D. Baushke.
47044
47045 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
47046
47047         * lib/getdate.y (textint): New member "negative".
47048         (time_zone_hhmm): New function.
47049         Expect 14 shift-reduce conflicts, not 13.
47050         (o_colon_minutes): New rule.
47051         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
47052         (yylex): Set the "negative" member of signed numbers.
47053
47054 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
47055
47056         * doc/getdate.texi (Time of day items, Time zone items):
47057         Describe new formats +00:00, UTC+00:00.
47058
47059 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
47060
47061         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
47062         spurious "-l"s.  Problem reported by Stepan Kasal.
47063
47064 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
47065
47066         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
47067         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
47068
47069 2004-12-04  Simon Josefsson  <jas@extundo.com>
47070
47071         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
47072         Vandoorselaere <yoann@prelude-ids.org>.
47073
47074 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47075
47076         Changes imported from coreutils.
47077         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
47078         exist.
47079         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
47080
47081 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47082
47083         Changes imported from coreutils.
47084         * lib/hard-locale.c: Assume <locale.h> exists.
47085         Include "strdup.h".
47086         (GLIBC_VERSION): New macro.
47087         (hard_locale): Assume setlocale exists.
47088         Rewrite to avoid #ifdef.
47089         Use strdup rather than malloc + strcpy.
47090         * lib/human.c: Assume <locale.h> exists.
47091         (human_readable): Assume localeconv exists.
47092
47093 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47094
47095         * modules/hard-locale (Depends-on): Add strdup.
47096
47097 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
47098
47099         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
47100         convert T2, not T.  (Imported from libc.)
47101
47102 2004-11-30  Simon Josefsson  <jas@extundo.com>
47103
47104         * modules/restrict (License): Change to LGPL.
47105
47106 2004-11-30  Simon Josefsson  <jas@extundo.com>
47107
47108         * m4/restrict.m4: Add copyright and copying conditions.
47109
47110 2004-11-30  Simon Josefsson  <jas@extundo.com>
47111
47112         * m4/base64.m4: New file.
47113
47114 2004-11-30  Simon Josefsson  <jas@extundo.com>
47115
47116         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
47117         base64.
47118
47119         * tests/test-base64.c: New file.
47120
47121         * modules/base64: New file.
47122
47123 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
47124
47125         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
47126         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
47127
47128         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
47129
47130 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
47131
47132         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
47133         (__getcwd.c): Don't restore errno; glibc doesn't.
47134         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
47135         first, falling back to our code only if its results look suspicious.
47136         Ensure that the resulting buffer is only as large as necessary.
47137
47138         * lib/readutmp.c: Include readutmp.h first.
47139         Include <errno.h>, since readutmp.h no longer does that.
47140         * lib/readutmp.h: Don't include <errno.h>,
47141         <sys/param.h>, <time.h>; not needed to establish interface.
47142         (errno): Remove decl.
47143         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
47144         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
47145         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
47146
47147 2004-11-28  Simon Josefsson  <jas@extundo.com>
47148
47149         * lib/base64.h, base64.c: New file.
47150
47151 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
47152
47153         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
47154
47155 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
47156
47157         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
47158         (Depends-on): Remove pathmax, same.  Add mempcpy.
47159         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
47160         (Makefile.am): Append getcwd.h to lib_SOURCES.
47161         (Include): Add getcwd.h.
47162         (Maintainer): Change from Jim Meyering to "all, glibc",
47163         since getdate now uses intended-for-glibc code.
47164         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
47165         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
47166
47167 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
47168
47169         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
47170         HP's ANSI C compiler.
47171         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
47172         Declaring int functions causes warnings on some modern systems and
47173         shouldn't be needed to compile on ancient ones.
47174         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
47175         defined.
47176
47177         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
47178         with the following changes.
47179         (__set_errno): Parenthesize properly.
47180         Include <stdbool.h>.
47181         (MIN, MAX, MATCHING_INO): New macros.
47182         (__getcwd): Define with prototype, not K&R form.
47183         Use heuristics to allocate default buffer on stack if possible.
47184         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
47185         behavior, and to avoid the PATH_MAX limit when computing
47186         ../../../../...
47187         Use MATCHING_INO to compare inode number to file.
47188         Check for arithmetic overflow in size calculations.
47189         Fix bug in reallocation of dot array that caused getcwd to fail
47190         on directories nested deeper than 75.
47191         Be more careful about saving errno on error.
47192         Do not use realloc; use only free+malloc, as this is a bit
47193         more flexible and avoids a needless copy operation.
47194         Do not inspect st_dev and st_ino for symbolic links; POSIX
47195         doesn't specify the latter.
47196         Check for closedir errors.
47197         Avoid needless casts.
47198         Use "#ifdef weak_alias" around weak_alias, to be like other
47199         glibc code.
47200         The following changes to getcwd.c have effect only when used in
47201         gnulib; they have no effect inside glibc proper.
47202         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
47203         as alloca isn't used.
47204         (alloca, __alloca): Likewise.
47205         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
47206         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
47207         unconditionally, as gnulib assumes C89 or better.
47208         Do not include <sys/param.h>.
47209         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
47210         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
47211         better.
47212         (NULL) [!defined NULL]: Remove; we assume C89 or better.
47213         Include <dirent.h> in a way that is compatible with modern Autoconf.
47214         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
47215         New macros, if not already defined.
47216         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
47217         Use "_LIBC", not "defined _LIBC", for consistency.
47218         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
47219         a mempcpy module.
47220         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
47221         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
47222         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
47223         credit only to Jim Meyering and adjust the copyright dates.
47224         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
47225         <stdlib.h>, <unistd.h>, "pathmax.h".
47226         Instead, include "xgetcwd.h" (first) and "getcwd.h".
47227         (INITIAL_BUFFER_SIZE): Remove.
47228         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
47229
47230 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
47231
47232         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
47233         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
47234         Use the _ONCE methods, for efficiency.
47235         Check for fcntl.h.  In test program, include <errno.h>
47236         and <fcntl.h> if available.  Remove old K&R cruft from
47237         test program.  Check for common errors in GNU/Linux,
47238         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
47239         don't do AC_LIBOBJ, as that's getcwd.m4's job.
47240         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
47241         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
47242         name accordingly.
47243         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
47244         accommodate new getcwd.c.
47245         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
47246         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
47247         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
47248         that's all we need now.
47249
47250 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47251
47252         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
47253         argp-parse.c depends on getopt internals, that means we should
47254         always use our getopt, to be on the safe side.
47255         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
47256         order not to spoil the result of an eventual previous invocation
47257         of gl_GETOPT_SUBSTITUTE.
47258
47259 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47260
47261         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
47262         redefinition warnings. To avoid them, include the defines
47263         in `#if !defined __need_getopt ... #endif'. The only place
47264         where __getopt_argv_const is used is in definitions
47265         of getopt_long and getopt_long_only below, which are as well
47266         protected by `#ifndef __need_getopt'.
47267         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
47268         __need_getopt after including <stdio.h> and <unistd.h> These
47269         headers might have defined it.
47270
47271 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
47272
47273         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
47274
47275 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
47276
47277         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
47278         (futimens): New function, which uses futimes if available.
47279         (futimens, utimens): Support timespec==NULL, with same semantics
47280         as utime and utimens.
47281         * lib/utimens.h (futimens): New decl.
47282
47283 2004-11-23  Jim Meyering  <jim@meyering.net>
47284
47285         * lib/getopt_.h: Remove trailing blanks.
47286
47287 2004-11-23  Jim Meyering  <jim@meyering.net>
47288
47289         * lib/__fpending.c: Add comment.
47290
47291 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
47292
47293         * modules/canonicalize (Depends-on): Add xreadlink.
47294         Problem reported by James Youngman.
47295
47296 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
47297
47298         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
47299         New macros.
47300         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
47301         optopt): Use them instead of invoking ## directly; otherwise, the
47302         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
47303
47304 2004-11-19  Bruno Haible  <bruno@clisp.org>
47305
47306         * lib/strtok_r.c: Move comments from here...
47307         * lib/strtok_r.h: ... to here.
47308
47309 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
47310
47311         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
47312         implementations that mishandle size_t overflow.
47313
47314 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
47315
47316         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
47317         might fail.  Problem reported by Yoann Vandoorselaere.
47318         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
47319         implementations that mishandle size_t overflow.
47320
47321 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47322
47323         * modules/canon-host (Depends-on): Add strdup.
47324
47325 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47326
47327         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
47328
47329 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47330
47331         * lib/canon-host.c: Include "strdup.h".
47332         (canon_host): Use getaddrinfo if available, so that IPv6 works.
47333         Use strdup instead of malloc/strcpy to duplicate strings.
47334
47335         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
47336         (human_space_before_unit): New constant.
47337         * lib/human.c (human_readable): Support it.
47338
47339         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
47340         (xgetcwd): Set errno correctly when failing.
47341         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
47342         the failure is actually due to a PATH_MAX problem.
47343
47344         Further getopt changes to make it more likely that glibc will
47345         buy the changes back.
47346         * lib/getopt.c (POSIXLY_CORRECT): New constant.
47347         (getopt): Use it, so to preserve glibc semantic
47348         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
47349         when compiling for libc.
47350         * lib/getopt_.h (__getopt_argv_const): Bring it back.
47351         (getopt_long, getopt_long_only): Use it.
47352
47353         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
47354         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
47355         (getopt): Argv is now char * const *, as per standard.
47356         (_getopt_internal_r, _getopt_internal): Argv is now char **,
47357         not char *__getopt_argv_const *.
47358         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
47359         _getopt_long_only_r): Likewise.
47360         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
47361         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
47362         _getopt_long_r, _getopt_long_only_r): Likewise.
47363         * lib/getopt_.h (__getopt_argv_const): Remove.
47364         (getopt): Argv is now char * const *, as per standard.
47365
47366         * lib/getdate.y (tORDINAL): New token.
47367         (day, relunit): Allow it for relative times.
47368         (relative_time_table): Use tORDINAL for ordinals.
47369
47370 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47371
47372         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
47373         Document that "second" isn't allowed as an ordinal number.
47374
47375 2004-11-16  Jim Meyering  <jim@meyering.net>
47376
47377         * modules/closeout (Depends-on): Add fpending.
47378
47379 2004-11-15  Jim Meyering  <jim@meyering.net>
47380
47381         * lib/closeout.c: Include "__fpending.h" once again.
47382         Include <stdbool.h>.
47383         (close_stdout): Don't fail just because stdout was closed initially,
47384         since some programs don't write to stdout in the normal course of
47385         operation (other than --version and --help), and we don't want this
47386         function to make e.g. `touch file >&-' fail.
47387         But do fail if it was closed and someone has tried to write to it.
47388         E.g., `printf foo >&-' must fail.
47389
47390 2004-11-13  Jim Meyering  <jim@meyering.net>
47391
47392         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
47393
47394 2004-11-12  Simon Josefsson  <jas@extundo.com>
47395
47396         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
47397         small doc fix is still pending.
47398
47399 2004-11-11  Simon Josefsson  <jas@extundo.com>
47400
47401         * modules/strtok_r: New file.
47402
47403         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47404         strtok_r.
47405
47406 2004-11-11  Simon Josefsson  <jas@extundo.com>
47407
47408         * m4/strtok_r.m4: New file.
47409
47410         * m4/getopt.m4: Replace opterr.
47411
47412 2004-11-11  Simon Josefsson  <jas@extundo.com>
47413
47414         * lib/strtok_r.h, strtok_r.c: New file.
47415
47416 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
47417
47418         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
47419         of replacing opterr, getopt, etc.  This should handle the
47420         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
47421
47422 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
47423
47424         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
47425         we can stop lying to compilers about the constness of argv when we
47426         are compiled outside glibc.
47427         (getopt, getopt_long, getopt_long_only): Use it.
47428         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
47429         _getopt_internal, getopt): Likewise.
47430         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
47431         _getopt_long_only_r): Likewise.
47432         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
47433         _getopt_long_r, _getopt_long_only_r): Likewise.
47434
47435         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
47436         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
47437         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
47438         the other external symbols.
47439         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
47440         declaration, since the above renaming now works around collisions.
47441
47442 2004-11-11  Jim Meyering  <jim@meyering.net>
47443
47444         * lib/linebreak.c: Remove trailing blanks.
47445         * lib/alloca_.h: Likewise.
47446         * lib/acosl.c: Likewise.
47447         * lib/euidaccess.c: Likewise.
47448         * lib/allocsa.h: Likewise.
47449
47450 2004-11-10  Simon Josefsson  <jas@extundo.com>
47451
47452         * m4/getaddrinfo.m4: New file.
47453
47454 2004-11-10  Simon Josefsson  <jas@extundo.com>
47455
47456         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
47457
47458 2004-11-10  Simon Josefsson  <jas@extundo.com>
47459
47460         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47461         getaddrinfo.
47462
47463         * modules/getaddrinfo: New file.
47464
47465 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
47466
47467         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
47468
47469 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
47470
47471         * lib/mktime.c (SHR): New macro, which is a portable
47472         substitute for >> that should work even on Crays.
47473         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
47474         Problem reported by Mark D. Baushke in
47475         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
47476         * lib/getdate.y (SHR): Likewise.
47477         (tm_diff): Use it.
47478         * lib/strftime.c (SHR): Likewise.
47479         (tm_diff): Use it.
47480         * lib/quotearg.c (struct quoting_options): Use unsigned int for
47481         quote_these_too, so that right shifts are well defined.  All uses
47482         changed.
47483
47484 2004-11-10  Jim Meyering  <jim@meyering.net>
47485
47486         Ensure that no close failure goes unreported.
47487         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
47488         return early when it seems there's nothing to flush.
47489         Don't include __fpending.h.
47490
47491 2004-11-10  Jim Meyering  <jim@meyering.net>
47492
47493         * modules/closeout (Depends-on): Remove fpending.
47494
47495 2004-11-10  Jim Meyering  <jim@meyering.net>
47496
47497         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
47498
47499 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47500
47501         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
47502         gl_FUNC_STRFTIME.
47503         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
47504         and AC_REQUIRE when possible, to avoid duplicate checks.
47505         Check for <wchar.h>.
47506
47507 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47508
47509         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
47510
47511 2004-11-09  Bruno Haible  <bruno@clisp.org>
47512
47513         * m4/sockpfaf.m4: New file.
47514
47515 2004-11-05  Bruno Haible  <bruno@clisp.org>
47516
47517         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
47518         Reported by Mark D. Baushke <mdb@cvshome.org>.
47519
47520 2004-11-04  Bruno Haible  <bruno@clisp.org>
47521
47522         2004-09-11  Bruno Haible  <bruno@clisp.org>
47523                 * allocsa.valgrind: New file.
47524         2004-02-06  Bruno Haible  <bruno@clisp.org>
47525                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
47526                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
47527                 Reported by Christopher Seip <chris.seip@hp.com>.
47528
47529 2004-11-04  Bruno Haible  <bruno@clisp.org>
47530
47531         * modules/allocsa (Files): Add lib/allocsa.valgrind.
47532         (Makefile.am): Distribute it.
47533
47534 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
47535
47536         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
47537         with errno == ERANGE if the buffer is too small.
47538         Problem reported by Mark D. Baushke.
47539
47540 2004-11-03  Albert Chin  <china@thewrittenword.com>
47541             Paul Eggert  <eggert@cs.ucla.edu>
47542
47543         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
47544         equivalent, substitute $ac_type for equivalent type rather than
47545         blindly using uint32_t *always* which won't work if uint32_t is not
47546         available.  Define _UINT32_T to work around typedef of uint32_t if
47547         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
47548         2.5.1.
47549
47550 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47551
47552         * m4/jm-macros.m4: Sync from coreutils.
47553         (gl_MACROS): Check for mbrlen, for pathchk.
47554         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
47555
47556 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47557
47558         * lib/xreadlink.c (MAXSIZE): New macro.
47559         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
47560         size does not exceed MAXSIZE.  Avoid cast.
47561         As suggested by Mark D. Baushke in
47562         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
47563         if readlink fails with buffer size just under MAXSIZE, try again
47564         with MAXSIZE.
47565
47566 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47567
47568         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
47569
47570 2004-11-02  Derek R. Price  <derek@ximbiot.com>
47571         and  Paul Eggert  <eggert@cs.ucla.edu>
47572
47573         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
47574         (get_date): Overparenthesize to avoid GCC warning.
47575
47576 2004-11-02  Bruno Haible  <bruno@clisp.org>
47577
47578         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
47579         returns void.
47580
47581 2004-11-02  Bruno Haible  <bruno@clisp.org>
47582
47583         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
47584         function returns void.
47585
47586 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
47587
47588         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
47589         fflush_unlocked, flockfile, funlockfile, funlockfile,
47590         fputs_unlocked, putc_unlocked.
47591
47592 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
47593
47594         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
47595         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
47596         already declared.
47597
47598 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47599
47600         * modules/getdate (Files): Add doc/getdate.texi.
47601         (Depends-on): Add setenv, xalloc.
47602
47603 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47604
47605         * lib/getdate.y: Add support for TZ="foo" within a date string.
47606         Fix some bugs near time_t boundaries.  Reject dates with
47607         out-of-range components, e.g., "Sept 31".
47608         Include <stdlib.h>, "setenv.h", "xalloc.h".
47609         (ISDIGIT_LOCALE): Remove; unused.
47610         Note that the TZ and time functions used here are not reentrant.
47611         (mktime_ok, get_tz): New functions.
47612         (TZBUFSIZE): New constant.
47613         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
47614         This requires that we sometimes generate our own TZ="XXX..." setting.
47615
47616 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47617
47618         * doc/getdate.texi: New file, from coreutils with modifications for
47619         the new TZ parsing.
47620
47621 2004-10-27  Derek R. Price  <derek@ximbiot.com>
47622
47623         * lib/mktime.c (not_equal_tm): Remove redundant check.
47624
47625 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
47626
47627         * modules/regex (lib_SOURCES): Add regex.c.
47628         Reported by James Youngman in
47629         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
47630
47631 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
47632
47633         * lib/getdate.y: Use Bison 1.875 features, and some minor
47634         code cleanups.  This change does not affect semantics.
47635         Don't include <stdlib.h>; no longer needed.
47636         Don't include unlocked-io.h; only the "#if TEST" code uses
47637         stdio, and performance isn't crucial there.
47638         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
47639         Bison 1.875 features as described below.
47640         All uses of "PC." replaced by "pc->".
47641         (YYSTYPE): Add a forward declaration.
47642         (yylex, yyerror): Use full prototypes in forward decls.
47643         Use "%pure-parser" rather than obsolescent "%pure_parser".
47644         Use %parse-param and %lex-param instead of obsolescent
47645         YYPARSE_PARAM and YYLEX_PARAM.
47646         (meridian_table, month_and_day_table, time_units_table,
47647         relative_time_table, time_zone_table, military_table,
47648         lookup_zone, lookup_word, get_date):
47649         Use NULL instead of 0 where appropriate.
47650         (to_hour): Avoid abort (), to avoid a dependency on
47651         stdlib.h.
47652         (yyerror, yylex): Now accepts parser_control * arg.
47653         (main) [TEST]: Use '\0' rather than 0 for char.
47654
47655 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
47656
47657         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
47658
47659 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
47660
47661         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
47662         It's now the caller's responsibility to handle the case where
47663         !HAVE_GETPAGESIZE && !defined getpagesize.
47664
47665         * lib/mktime.c (leapyear): Arg is long int, not int.
47666
47667 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
47668
47669         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
47670
47671 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
47672
47673         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
47674         missing.  Problem reported by James Youngman.
47675
47676 2004-10-16  Simon Josefsson  <jas@extundo.com>
47677
47678         * gnulib-tool: Fix comments.  Fix parse problem.
47679         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
47680
47681 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
47682
47683         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
47684         implementation of getopt_long.  Problem reported by Alexander Taler in:
47685         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
47686
47687 2004-10-15  Bruno Haible  <bruno@clisp.org>
47688
47689         * gnulib-tool: Untabify. Initialize supplied_libname.
47690         (func_usage): More homogenous output.
47691         (func_modules_transitive_closure, func_modules_to_filelist,
47692         func_emit_lib_Makefile_am): New functions.
47693         (func_import): New function, extracted from big case statement. Use
47694         func_get_license, func_modules_transitive_closure,
47695         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
47696         opt_lgpl. Don't use test -a, as it's not portable.
47697         (func_create_testdir): Use func_modules_transitive_closure,
47698         func_modules_to_filelist, func_emit_lib_Makefile_am.
47699
47700 2004-10-15  Bruno Haible  <bruno@clisp.org>
47701
47702         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
47703
47704 2004-10-15  Bruno Haible  <bruno@clisp.org>
47705
47706         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
47707         the portions belonging to each module.
47708         Suggested by Derek Robert Price <derek@ximbiot.com>.
47709
47710 2004-10-12  Simon Josefsson  <jas@extundo.com>
47711
47712         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
47713         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
47714         to real functions.
47715
47716 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47717
47718         * modules/vsnprintf: New file.
47719
47720 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47721
47722         * m4/vsnprintf.m4: New file.
47723
47724 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47725
47726         * lib/vsnprintf.h: New file.
47727         * lib/vsnprintf.c: New file.
47728
47729 2004-10-11  Bruno Haible  <bruno@clisp.org>
47730
47731         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
47732         vsnprintf.
47733
47734 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
47735
47736         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
47737
47738 2004-10-07  Bruno Haible  <bruno@clisp.org>
47739
47740         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
47741         fits into the provided buffer.
47742
47743 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
47744
47745         * lib/diacrit.c, diacrit.h: Add GPL notice.
47746
47747         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
47748         notice.
47749         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
47750         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
47751         This avoids a potential constant-folding bug.
47752
47753 2004-10-05  Bruno Haible  <bruno@clisp.org>
47754
47755         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
47756         for the declaration of strsep.
47757
47758 2004-10-05  Bruno Haible  <bruno@clisp.org>
47759
47760         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
47761
47762 2004-10-04  Simon Josefsson  <jas@extundo.com>
47763
47764         * modules/memmem: New file.
47765         * tests/test-memmem.c: New file.
47766         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
47767
47768 2004-10-04  Simon Josefsson  <jas@extundo.com>
47769
47770         * m4/memmem.m4: New file.
47771
47772 2004-10-04  Simon Josefsson  <jas@extundo.com>
47773
47774         * lib/memmem.h: New file.
47775         * lib/memmem.c: New file, taken from glibc.
47776
47777 2004-10-04  Simon Josefsson  <jas@extundo.com>
47778
47779         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
47780         '#ifdef USE_UNLOCKED_IO'.
47781
47782 2004-10-04  Simon Josefsson  <jas@extundo.com>
47783
47784         * config/srclist.txt: Add memmem from glibc.
47785
47786 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47787
47788         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
47789
47790         * modules/argmatch, modules/argp, modules/closeout, modules/error,
47791         modules/exclude, modules/getdate, modules/getline,
47792         modules/getndelim2, modules/getpass, modules/getpass-gnu,
47793         modules/getusershell, modules/linebuffer, modules/md5,
47794         modules/mountlist, modules/posixtm, modules/readtokens,
47795         modules/readutmp, modules/regex, modules/sha1,
47796         modules/version-etc, modules/yesno:
47797         Remove dependency on unlocked-io.
47798
47799 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47800
47801         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
47802
47803         * m4/unlocked-io.m4: Add copyright notice.
47804         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
47805
47806 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47807
47808         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
47809         * lib/xmalloc.c (xmemdup): Likewise.
47810         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
47811         XFREE): Remove these long-obsolescent macros.
47812         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
47813         * lib/xstrdup.c: Remove.
47814
47815         * lib/regex.c (re_comp): Cast gettext return value to char *,
47816         Problem reported by Martin Neitzel via Mark D. Baushke.
47817
47818 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47819
47820         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
47821         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
47822         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
47823         regex.c, sha1.c, version-etc.c, yesno.c:
47824         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
47825         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
47826         the includer's responsibility.
47827
47828         Sync from coreutils.
47829
47830         * lib/modechange.c (mode_compile): Don't decrement a pointer that
47831         points to the start of a string, as the C Standard says the
47832         resulting behavior is undefined.
47833
47834         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
47835         simple -> simple_backups, numbered_existing ->
47836         numbered_existing_backups, numbered -> numbered_backups
47837         to avoid shadowing problems.  All uses changed.
47838         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
47839         * lib/backupfile.c (check_extension, numbered_backup):
47840         Rename locals to avoid shadowing 'basename'.
47841         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
47842         once.
47843
47844         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
47845         * lib/.cvsignore: Add getopt.h.
47846
47847 2004-10-04  Bruno Haible  <bruno@clisp.org>
47848
47849         * modules/README: New file.
47850         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
47851         not a module.
47852
47853 2004-10-02  Jim Meyering  <jim@meyering.net>
47854
47855         * lib/dirfd.h, getpagesize.h: Add copyright notice.
47856
47857 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47858
47859         * modules/strsep: New file.
47860
47861 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47862
47863         * m4/strsep.m4: New file.
47864
47865 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47866
47867         * lib/strsep.h: New file.
47868         * lib/strsep.c: New file.
47869
47870 2004-10-01  Simon Josefsson  <jas@extundo.com>
47871
47872         * lib/snprintf.c (snprintf): Handle size==0.
47873
47874 2004-10-01  Simon Josefsson  <jas@extundo.com>
47875             Bruno Haible  <bruno@clisp.org>
47876
47877         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
47878         (snprintf): Declare 'args'.
47879
47880 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
47881
47882         * lib/snprintf.c: Remove comments as to why each header is needed.
47883
47884 2004-10-01  Bruno Haible  <bruno@clisp.org>
47885
47886         * MODULES.html.sh: Add strsep.
47887
47888 2004-09-30  Simon Josefsson  <jas@extundo.com>
47889
47890         * modules/snprintf: New file.
47891
47892 2004-09-30  Simon Josefsson  <jas@extundo.com>
47893
47894         * m4/snprintf.m4: New file.
47895
47896 2004-09-30  Simon Josefsson  <jas@extundo.com>
47897
47898         * lib/snprintf.h, lib/snprintf.c: New files.
47899
47900 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47901
47902         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
47903         (hol_entry_help): Never translate an empty string.
47904         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
47905         * lib/argp.h (OPTION_NO_TRANS): New option.
47906
47907 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
47908
47909         * modules/argp (Maintainer): Replace Simon Josefsson
47910         by Sergey Poznyakoff.
47911
47912 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
47913
47914         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
47915         changes merged back into glibc.
47916
47917 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
47918
47919         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
47920
47921 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
47922
47923         * lib/xvasprintf.c: Include xalloc.h.
47924         (xvasprintf): Use xalloc_die, not xmalloc_die.
47925
47926 2004-09-29  Bruno Haible  <bruno@clisp.org>
47927
47928         * modules/alloca-opt: New file, derived from modules/alloca.
47929         * modules/allocsa: Depend on alloca-opt instead of alloca.
47930         * modules/setenv: Likewise.
47931         * modules/vasnprintf: Likewise.
47932         * MODULES.html.sh: Add alloca-opt.
47933
47934 2004-09-28  Simon Josefsson  <jas@extundo.com>
47935
47936         * gnulib-tool: New parameter --lgpl, to asseert that modules are
47937         LGPL, and to replace license template from GPL to LGPL.
47938
47939 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
47940
47941         * modules/dummy: Change license to LGPL.
47942
47943 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
47944
47945         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
47946
47947 2004-09-24  Simon Josefsson  <jas@extundo.com>
47948
47949         * modules/minmax (License): Change from GPL to LGPL.
47950
47951 2004-09-23  Simon Josefsson  <jas@extundo.com>
47952
47953         * gnulib-tool (--import): Typo.
47954
47955 2004-09-23  Simon Josefsson  <jas@extundo.com>
47956
47957         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
47958
47959 2004-09-22  Bruno Haible  <bruno@clisp.org>
47960
47961         * modules/*: Add 'License' field.
47962         * gnulib-tool: Accept --extract-license option.
47963         (func_get_license): New function.
47964
47965 2004-09-21  Bruno Haible  <bruno@clisp.org>
47966
47967         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
47968         Reported by Simon Josefsson.
47969
47970 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
47971
47972         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
47973         gl_AC_TYPE_LONG_LONG.
47974
47975 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
47976
47977         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
47978
47979 2004-09-18  Simon Josefsson  <jas@extundo.com>
47980         and  Paul Eggert  <eggert@cs.ucla.edu>
47981
47982         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
47983         calls with autoreconf.  Define GL_LIB.
47984
47985 2004-09-14  Karl Berry  <karl@gnu.org>
47986
47987         * config/srclist.txt: unsync setenv.c, sigh.
47988
47989 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
47990
47991         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
47992         Problem reported by Bruno Haible in:
47993         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
47994
47995 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
47996
47997         * config/srclist.txt: Comment out argp-pvh.c.
47998
47999 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
48000
48001         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
48002         in case some system header has #define'd it.  Problem reported by
48003         Soeren D. Schulze in
48004         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
48005
48006 2004-09-09  Karl Berry  <karl@gnu.org>
48007
48008         * regex.[ch]: delete from the root.  These were supposed to be
48009                 synced with emacs cvs, but this has not happened for about
48010                 a year, and anyway nothing else uses emacs regex.[ch].
48011                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
48012                 lib/regex[.ch] is untouched.
48013
48014 2004-09-09  Bruno Haible  <bruno@clisp.org>
48015
48016         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
48017
48018 2004-09-09  Bruno Haible  <bruno@clisp.org>
48019
48020         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
48021         modifications.
48022         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
48023
48024 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
48025
48026         * modules/xvasprintf: New file.
48027         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
48028
48029 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
48030
48031         * lib/xvasprintf.h: New file.
48032         * lib/xvasprintf.c: New file.
48033         * lib/xasprintf.c: New file.
48034
48035 2004-09-08  Bruno Haible  <bruno@clisp.org>
48036
48037         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
48038
48039 2004-09-08  Bruno Haible  <bruno@clisp.org>
48040
48041         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
48042         length is > INT_MAX.
48043         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
48044         more.
48045
48046 2004-09-08  Bruno Haible  <bruno@clisp.org>
48047
48048         * lib/stdint_.h: New file, taken from GNU clisp.
48049
48050 2004-09-08  Bruno Haible  <bruno@clisp.org>
48051             Oskar Liljeblad  <oskar@osk.mine.nu>
48052
48053         * modules/stdint: New file.
48054         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
48055
48056 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48057
48058         Import from coreutils.
48059         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
48060         strings on unbounded length.  alloca's performance benefits aren't
48061         that important here.
48062         (V_STRDUP): Remove.
48063         (parse_with_separator): New function, with most of the internals
48064         of the old parse_user_spec.  Allow user to omit both user and group,
48065         for compatibility with FreeBSD.
48066         Clone only the user name, not the entire spec.
48067         Do not set *uid, *gid unless entirely successful.
48068         Avoid memory leak in some failing cases.
48069         Fix regression for USER.GROUP reported by Dmitry V. Levin in
48070         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
48071         (parse_user_spec): Rewrite to use parse_with_separator.
48072
48073 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48074
48075         * modules/userspec: Don't depend on alloca.
48076
48077 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48078
48079         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
48080
48081 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
48082
48083         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
48084         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
48085         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
48086
48087 2004-08-16  Simon Josefsson  <jas@extundo.com>
48088
48089         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
48090         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
48091         Add --dry-run for --import.
48092         Let user provided command line parameters override configure.ac
48093         settings.
48094
48095 2004-08-12  Simon Josefsson  <jas@extundo.com>
48096
48097         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
48098         as discussed with Paul Eggert in threads rooted at
48099         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
48100         and
48101         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
48102         Before, the test was empty, and relied on ELIDE_CODE in source
48103         code.)
48104         (gl_PREREQ_GETOPT): New macro.
48105         (gl_GETOPT): Use them.
48106
48107 2004-08-12  Simon Josefsson  <jas@extundo.com>
48108
48109         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
48110         * lib/getopt_.h: Renamed from getopt.h.
48111
48112 2004-08-12  Simon Josefsson  <jas@extundo.com>
48113
48114         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
48115         Change default library name from libfoo to libgnu.
48116         Now, if you have a configure.ac that says:
48117                 gl_SOURCE_BASE(gl)
48118                 gl_M4_BASE(gl/m4)
48119                 gl_MODULES(error getopt etcetera)
48120                 gl_INIT
48121         you can import all you need by running:
48122                 ../gnulib/gnulib-tool --import
48123
48124         * modules/getopt (Files): Rename getopt.h to getopt_.h.
48125         (Makefile.am): Rewrite, use logic from argz.
48126         (Include): Use <getopt.h> instead of "getopt.h".
48127
48128 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48129
48130         * modules/argp (Files): Add m4/unlocked-io.m4.
48131         (Depends-on): Add extensions.
48132
48133 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48134
48135         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
48136         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
48137         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
48138         Check for program_invocation_name, program_invocation_short_name,
48139         flockfile, funlockfile, features.h, _getopt_long_only_r.
48140
48141 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48142
48143         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
48144         its complicated substitute.
48145         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
48146         and program_invocation_name.
48147         (__argp_basename) [!_LIBC]: Remove; the only use was
48148         replaced by its body.
48149         (__argp_short_program_name): Change condition from
48150         !defined __argp_short_program_name to
48151         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
48152         to match argp-namefrob.h.
48153         (__argp_failure): Don't assume strerror_r returns char *.
48154         * lib/argp-parse.c (N_): Define unconditionally.
48155         (argp_default_options): Fill out initializers with 0 to avoid
48156         gcc warnings.
48157
48158 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48159
48160         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
48161         getopt1.c.
48162
48163 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48164
48165         Merge from coreutils.
48166
48167         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
48168
48169         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
48170         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
48171
48172 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48173
48174         Merge from coreutils.
48175
48176         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
48177         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
48178         for Reliant Unix 5.43.
48179
48180         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
48181         (union fooround): Use uintmax_t, not long int.
48182         The rest is a merge from libc:
48183         [defined _LIBC]: Include <shlib-compat.h>.
48184         (_obstack) [defined _LIBC]: Remove after 2.3.4.
48185
48186         * lib/settime.c (settime): Recode to avoid warning with
48187         Sun Forte C 6U2.
48188
48189         * lib/strverscmp.c: Convert to UTF-8.
48190
48191 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48192
48193         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
48194         m4/uintmax_t.m4.
48195
48196 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48197
48198         * modules/xalloc-die: New file.
48199         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
48200
48201         * modules/md5 (Files): Add m4/uint32_t.m4.
48202         * modules/sha1: Renamed from modules/sha.
48203         (Files):
48204         Rename lib/sha.h to lib/sha1.h.
48205         Rename lib/sha.c to lib/sha1.c.
48206         Rename m4/sha.m4 to m4/sha1.m4.
48207         (lib_SOURCES): Likewise.
48208         (configure.ac): Rename gl_SHA to gl_SHA1.
48209         (Include): sha.h -> sha1.h.
48210
48211 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48212
48213         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
48214         * m4/sha1.m4: Renamed from sha.m4.
48215         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
48216
48217 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48218
48219         * lib/obstack.h (obstack_empty_p):
48220         Don't assume that chunk->contents is suitably aligned.
48221         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
48222         Likewise. Problem reported by Benno in
48223         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
48224
48225         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
48226         readable.  This could be improved further but it'd take some work.
48227
48228 2004-08-08  Simon Josefsson  <jas@extundo.com>
48229
48230         * modules/xgethostname (Depends-on): Remove exit and error (not
48231         used).
48232
48233         * modules/getpass-gnu: Add getpass.h.
48234         (Depends-on): Add stdbool.
48235         * modules/getpass: Add getpass.h.
48236
48237 2004-08-08  Simon Josefsson  <jas@extundo.com>
48238
48239         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
48240         Check getpass declaration.
48241
48242 2004-08-08  Simon Josefsson  <jas@extundo.com>
48243
48244         * lib/xgethostname.c: Don't include error.h (not used).
48245
48246         * lib/getpass.h: Add.
48247         * lib/getpass.c: Include getpass.h first.
48248
48249 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
48250
48251         * lib/xalloc-die.c: New file.
48252         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
48253         All uses removed.
48254         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
48255         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
48256         xalloc-die.c.
48257         (_, N_, xalloc_die): Move to xalloc-die.c.
48258         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
48259         so that we needn't mess with xalloc_msg_memory_exhausted.
48260
48261         * lib/sha1.h: Renamed from sha.h.
48262         (SHA1_H): Renamed from _SHA_H.
48263         (sha1_ctx): Renamed from sha_ctx.
48264         (sha1_init_ctx): Renamed from sha_init_ctx.
48265         (sha1_process_block): Renamed from sha_process_block.
48266         (sha1_process_bytes): Renamed from sha_process_bytes.
48267         (sha1_finish_ctx): Renamed from sha_finish_ctx.
48268         (sha1_read_ctx): Renamed from sha_read_ctx.
48269         (sha1_stream): Renamed from sha_stream.
48270         (sha1_buffer): Renamed from sha_buffer.
48271         * lib/sha1.c: Likewise; renamed from sha.c.
48272         Do not include <sys/types.h>.
48273         Include <stddef.h> rather than <stdlib.h>.
48274
48275 2004-08-08  Bruno Haible  <bruno@clisp.org>
48276
48277         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
48278         FILESYSTEM_PREFIX_LEN.
48279         * lib/progreloc.c: Likewise.
48280         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
48281
48282 2004-08-06  Simon Josefsson  <jas@extundo.com>
48283
48284         * modules/progname (Depends-on): Don't depend on stdbool.
48285
48286 2004-08-06  Simon Josefsson  <jas@extundo.com>
48287
48288         * modules/getsubopt: New file.
48289         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
48290         getsubopt.
48291
48292 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48293
48294         More merge from coreutils.
48295
48296         * m4/utimens.m4, m4/utimecmp.m4: New files.
48297         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
48298         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
48299         prereq.m4, sha.m4: Import changes from coreutils.
48300
48301 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48302
48303         More merge from coreutils.
48304         * modules/raise, modules/readtokens0, modules/utimens:
48305         * modules/utimecmp, module/xnanosleep: New files.
48306         * modules/strftime: Add lib/strftime.h.
48307         Change include from <time.h> to "strftime.h".
48308         * modules/yesno: Add lib/yesno.h.
48309         * modules/backupfile: Remove lib/addext.c.
48310         * modules/euidaccess: Add stat-macros.h.
48311         * modules/canonicalize, modules/euidaccess,
48312         modules/filemode, modules/lchown, modules/makepath,
48313         modules/rmdir, modules/stat: Likewise.
48314
48315 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48316
48317         Merge from tar.
48318         * lib/argp-help.c (make_hol, hol_append): Don't assume that
48319         SIZE_MAX is a valid preprocessor constant.
48320         (__argp_basename): Change from "#ifndef _LIBC"
48321         to "#ifndef __argp_short_program_name", so that
48322         we don't compile these functions for tar.
48323
48324         More merges from coreutils.
48325         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
48326         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
48327         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
48328         * lib/addext.c: Remove; no longer needed.
48329         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
48330         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
48331         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
48332         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
48333         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
48334         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
48335         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
48336         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
48337         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
48338         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
48339         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
48340         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
48341         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
48342         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
48343         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
48344         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
48345         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
48346         Import changes from coreutils.
48347
48348 2004-08-05  Simon Josefsson  <jas@extundo.com>
48349
48350         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
48351
48352 2004-08-05  Simon Josefsson  <jas@extundo.com>
48353
48354         * m4/getsubopt.m4: New file.
48355
48356 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48357
48358         Merge from coreutils.
48359
48360         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
48361         * m4/getcwd-path-max.m4: New files.
48362
48363         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
48364         FILESYSTEM_PREFIX_LEN ->
48365         FILE_SYSTEM_PREFIX_LEN.
48366         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
48367         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
48368         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
48369         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
48370
48371         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
48372         prerequisite modules now handle the DOS stuff.
48373         Don't check for unistd.h.
48374
48375 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48376
48377         Merge from coreutils.
48378
48379         * lib/.gdb-history: Remove; this doesn't belong here.
48380
48381         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
48382         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
48383         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
48384         * lib/getcwd.c: New files.
48385
48386         * lib/dirname.h: Include <stdbool.h>.
48387         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
48388         for consistency with POSIX terminology.  All uses changed.
48389         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
48390         (strip_trailing_slashes): Use bool for booleans.
48391         * lib/stripslash.c (strip_trailing_slashes): Likewise.
48392
48393         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
48394         sometimes returns a positive errno value even when it succeeds.
48395         (print_errno_message) [!LIBC]: Fall back on strerror if
48396         __strerror_r fails.
48397
48398         * lib/path-concat.c (mempcpy): Don't define if a system header defines
48399         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
48400         (longest_relative_suffix): New function.
48401         (path_concat): Use it.  Assume first argument is not NULL.
48402         Port to DOS.  Omit redundant separators.
48403         Report an error instead of returning NULL.
48404         Use mempcpy instead of memcpy.
48405         (xpath_concat): Remove: not declared or used.
48406
48407         * lib/same.h: Include <stdbool.h>
48408         (same_name): Return bool, not int.
48409         * lib/same.c (same_name): Likewise.
48410         (errno): Don't declare; we assume C89 or better now.
48411
48412         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
48413         if not already defined.
48414
48415         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
48416         * lib/dup-safer.c (errno): Likewise.
48417
48418 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48419
48420         Merge from coreutils.
48421         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
48422         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
48423         * modules/path-concat: Don't depend on strdup.
48424
48425 2004-08-03  Simon Josefsson  <jas@extundo.com>
48426
48427         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
48428         * lib/progname.h: Don't include stdbool.h.
48429
48430 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48431
48432         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
48433         * MODULES.html.sh (func_all_modules): Remove fatal.
48434
48435 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48436
48437         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
48438
48439 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48440
48441         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
48442         working.
48443
48444 2004-08-02  Simon Josefsson  <jas@extundo.com>
48445
48446         * lib/getsubopt.h: New file, with comments from Bruno Haible.
48447         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
48448         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
48449
48450 2004-08-01  Simon Josefsson  <jas@extundo.com>
48451
48452         * lib/xgetdomainname.c: Include stdlib.h, for free().
48453
48454 2004-07-19  Bruno Haible  <bruno@clisp.org>
48455
48456         * MODULES.html.sh (func_all_modules): Add dummy.
48457
48458 2004-07-16  Simon Josefsson  <jas@extundo.com>
48459
48460         * modules/dummy: New file.
48461
48462 2004-07-16  Simon Josefsson  <jas@extundo.com>
48463
48464         * lib/dummy.c: New file.
48465
48466 2004-07-16  Bruno Haible  <bruno@clisp.org>
48467
48468         * lib/backupfile.h: Add extern "C" for C++.
48469         * lib/closeout.h: Likewise.
48470         * lib/copy-file.h: Likewise.
48471         * lib/findprog.h: Likewise.
48472         * lib/full-write.h: Likewise.
48473         * lib/pathname.h: Likewise.
48474         * lib/progname.h: Likewise.
48475         * lib/stpcpy.h: Likewise.
48476         * lib/stpncpy.h: Likewise.
48477         * lib/strcase.h: Likewise.
48478         * lib/strstr.h: Likewise.
48479         * lib/xalloc.h: Likewise.
48480
48481         * lib/mbswidth.h: Add extern "C" for C++.
48482         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
48483
48484 2004-07-13  Robert Millan  <robertmh@gnu.org>
48485
48486         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
48487
48488 2004-07-09  Simon Josefsson  <jas@extundo.com>
48489
48490         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
48491         failed without this.)
48492
48493 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
48494
48495         * modules/chown (Files): Add lib/fchown-stub.c, since
48496         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
48497
48498 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
48499
48500         * lib/fchown-stub.c: New file.
48501
48502 2004-06-24  Jim Meyering  <jim@meyering.net>
48503
48504         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
48505
48506 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48507
48508         * modules/argz: Omit "#include".
48509
48510         * MODULES.html.sh (func_all_modules): Add calloc, to match
48511         2004-06-01 addition of calloc module.
48512
48513 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48514
48515         * m4/argz.m4: New file, which is autoupdated from libtool.
48516
48517 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48518
48519         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
48520         libtool.
48521
48522 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48523
48524         * config/srclist-update: Don't insist on "USA." before the
48525         close-comment, as libtool omits the period and puts the */ on a
48526         separate line.
48527         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
48528         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
48529
48530 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
48531
48532         * modules/argz: New file.
48533         * MODULES.html.sh (func_all_modules): Add argz.
48534
48535 2004-06-12  Jim Meyering  <jim@meyering.net>
48536         and  Paul Eggert  <eggert@cs.ucla.edu>
48537
48538         * modules/hash (Files): Add lib/xalloc.h.
48539         * modules/pipe (Depends-on): Add wait-process.
48540         * modules/stat (Depends-on): Add xalloc.
48541         * modules/userspec (Files): Add lib/userspec.h.
48542         * modules/xstrto
48543
48544         Upgrade from gettext-0.13.
48545         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
48546         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
48547         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
48548
48549 2004-06-10  Jim Meyering  <jim@meyering.net>
48550
48551         * lib/calloc.c: New file.
48552
48553 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
48554
48555         * lib/getdate.y (yylex): Allow space between sign and number.
48556         Problem reported by Dan Jacobson.
48557
48558 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
48559
48560         Merge from coreutils CVS.
48561
48562         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
48563         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
48564         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
48565         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
48566         xstrtol.m4: Fix copyright date and/or serial number.
48567
48568         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
48569         See if we need an fchown replacement.
48570         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
48571         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
48572         and use the replacement function if we detect either defect.
48573
48574         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
48575         gl_UTIMECMP.
48576
48577 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
48578         and  Jim Meyering  <jim@meyering.net>
48579
48580         Merge from coreutils CVS.
48581
48582         * lib/stat-macros.h: New file, with contents from file-type.h
48583         and coreutils' system.h.
48584         * lib/file-type.c: Include "stat-macros.h".
48585         * lib/file-type.h (file_type): Move all macro definitions to new file,
48586         stat-macros.h.
48587
48588         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
48589         Wrap old code with this conditional.
48590         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
48591         function that does not dereference symlinks.
48592         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
48593
48594         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
48595         dependency problems.
48596         (xreadlink): Accept new arg SIZE, for efficiency.
48597         All decls and uses changed.
48598         * lib/xreadlink.h: Include <stddef.h>, for size_t.
48599
48600         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
48601         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
48602
48603         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
48604         sysexits.h.
48605
48606 2004-06-01  Jim Meyering  <jim@meyering.net>
48607
48608         * m4/calloc.m4: New file.
48609
48610 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
48611
48612         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
48613         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
48614         Also, fix a typo in a diagnostic.
48615
48616 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
48617
48618         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
48619         or AC_FUNC_REALLOC.
48620
48621 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
48622
48623         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
48624         macros to be defined.
48625         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
48626         the allocator returns NULL because the requested size is zero.
48627
48628 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
48629
48630         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
48631         var.  Add comment explaining why libc still defines it.  This
48632         merges the following patch from glibc:
48633         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
48634
48635 2004-05-20  Andreas Schwab  <schwab@suse.de>
48636
48637         * m4/free.m4: Replace free if it not known to work, not the other
48638         way round.
48639
48640 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
48641
48642         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
48643         present in glibc since revision 1.1 of this file.
48644         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
48645         obstack_alignment_mask, obstack_alloc, obstack_base,
48646         obstack_blank, obstack_blank_fast, obstack_chunk_size,
48647         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
48648         obstack_grow0, obstack_init, obstack_int_grow,
48649         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
48650         obstack_next_free, obstack_object_size, obstack_ptr_grow,
48651         obstack_ptr_grow_fast, obstack_room): Remove declarations of
48652         nonexistent functions.
48653
48654 2004-05-18  Karl Berry  <karl@gnu.org>
48655
48656         * config/srclist.txt: break link for vasnprintf.c.
48657
48658 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
48659
48660         Port obstack to the AS/400, where pointers are 16 bytes wide and
48661         you cannot cast an integer to a valid pointer.  This patch is
48662         currently waiting to be integrated into glibc; see
48663         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
48664
48665         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
48666         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
48667         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
48668         (struct obstack): temp member is now a union of a pointer and
48669         an integer, instead of an integer.  All integer uses changed.
48670         This does not affect the physical layout of struct obstack,
48671         except on hosts (like the AS/400) where the size or alignment of
48672         void * is greater than that of ptrdiff_t.
48673         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
48674         __STDC__)]: Store temporary in pointer member of union, not
48675         integer member.
48676         * lib/obstack.c: Include <stddef.h>, for offsetof.
48677         (struct fooalign): Remove; it doesn't need a name.
48678         (union fooround): Change double to long double, and add void *.
48679         (DEFAULT_ALIGNMENT): Use offsetof to compute.
48680         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
48681         not a macro.  Hence the values are always int; so remove all
48682         casts-to-int in uses.
48683
48684 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
48685
48686         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
48687         we can get this patch merged into glibc.
48688
48689 2004-05-17  Derek R. Price  <derek@ximbiot.com>
48690             Paul Eggert  <eggert@cs.ucla.edu>
48691
48692         * m4/argp: Depend on alloca.
48693
48694 2004-05-17  Derek R. Price  <derek@ximbiot.com>
48695             Paul Eggert  <eggert@cs.ucla.edu>
48696
48697         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
48698         freecoding.
48699
48700 2004-05-17  Bruno Haible  <bruno@clisp.org>
48701
48702         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
48703         precision that consists of a '.' followed by an empty digit string.
48704         Patch by Tor Lillqvist <tml@iki.fi>.
48705
48706 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
48707
48708         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
48709         for backward compatibility with older code.  We need our own
48710         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
48711         it under some other name, and our alloca.h will define it.
48712
48713 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
48714             Derek Price  <derek@ximbiot.com>
48715
48716         * lib/alloca.c: Include <alloca.h>, to get our interface.
48717         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
48718         include <alloca.h> first.  Use C89 prototype for alloca; this
48719         requires including <stddef.h> for size_t.  Use extern "C" if C++.
48720         Use #elif for simplicity, since we can assume C89 now.
48721         Don't try to source the system alloca.h since it will not be found
48722         and to prevent recursively including its replacement.
48723         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
48724         * lib/regex.c: Likewise.
48725
48726 2004-05-16  Derek Price  <derek@ximbiot.com>
48727             Paul Eggert  <eggert@cs.ucla.edu>
48728
48729         getline cleanup.  This changes the getndelim2 API: both order of
48730         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
48731         no delimiter).
48732
48733         * lib/getline.c: Don't include stddef.h or stdio.h, since our
48734         interface does that.
48735         (getline): Always use getdelim, so that we don't have two
48736         copies of this code.
48737         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
48738         if available.
48739         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
48740         (GETNDELIM2_MAXIMUM): New macro.
48741         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
48742         instead of the old practice of delim2==0.  All callers changed.
48743         Return -1 on overflow, instead of returning junk.
48744         Do not set *linesize unless allocation succeeds.
48745         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
48746         that we include sys/types.h.
48747         * lib/getnline.h: Likewise.
48748         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
48749         (getndelim2): Reorder arguments.
48750         * lib/getnline.c (getnline, getndelim):
48751         Don't discard the NMAX argument.
48752         (getnline): Invoke getndelim, to avoid code duplication.
48753         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
48754         of (size_t) -1 by callers of the getnline family.
48755
48756 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
48757
48758         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
48759         Check for gettimeofday.
48760         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
48761         Check for settimeofday, stime.
48762
48763 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
48764
48765         * lib/nanosleep.c (suspended): Change its type from int to
48766         sig_atomic_t volatile.
48767         (first_call): Make it private to rpl_nanosleep, and have it
48768         be zero initially as that's a bit faster.
48769         (my_usleep): Round up fractional times instead of truncating them,
48770         as this is the usual meaning for 'sleep'.
48771
48772         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
48773         doesn't work.
48774         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
48775         (ENOSYS): Define if not defined.
48776         (settime): Fall back on stime if it exists and settimeofday fails.
48777         But don't bother with fallbacks if a method fails with errno == EPERM.
48778
48779 2004-05-11  Jim Meyering  <jim@meyering.net>
48780
48781         Prior to this change, the save_cwd caller required read access to the
48782         current directory on most systems (ones with the fchdir function).
48783
48784         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
48785         fails, try write-only, and finally, resort to using xgetcwd.
48786
48787 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
48788
48789         * lib/obstack.c, obstack.h: Import changes from libc.
48790
48791 2004-04-28  Bruno Haible  <bruno@clisp.org>
48792
48793         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
48794         also implicitly appends .exe to executables.
48795         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
48796         accepts Windows pathnames.
48797         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
48798         Treat Cygwin like Windows, since it now accepts Windows pathnames.
48799         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
48800         Treat Cygwin like Windows, since it now accepts Windows pathnames.
48801         Reported by Derek Robert Price <derek@ximbiot.com>.
48802
48803 2004-04-21  Karl Berry  <karl@gnu.org>
48804
48805         * config/srclist.txt (localcharset.c): break sync.
48806
48807 2004-04-20  Paul Eggert  <eggert@twinsun.com>
48808
48809         * m4/host-os.m4: Add a copyright notice.
48810
48811 2004-04-20  Jim Meyering  <jim@meyering.net>
48812
48813         Change UTILS_ to gl_ in AC_DEFINE'd names.
48814         Change utils_- and jm_-prefixed variables, too.
48815         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
48816         UTILS_FUNC_MKDIR_TRAILING_SLASH.
48817         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
48818
48819         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
48820         Don't emit trailing blanks.
48821         Also rename jm_-prefixed variables to have gl_ prefix.
48822
48823         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
48824         Also rename jm_-prefixed variables to have gl_ prefix.
48825
48826         * m4/jm-macros.m4: Reflect the renamings.
48827         * m4/prereq.m4: Likewise.
48828
48829 2004-04-20  Jim Meyering  <jim@meyering.net>
48830
48831         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
48832         memory.
48833
48834 2004-04-20  Jim Meyering  <jim@meyering.net>
48835             Bruno Haible  <bruno@clisp.org>
48836
48837         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
48838         memory when realloc fails.
48839
48840 2004-04-19  Jim Meyering  <jim@meyering.net>
48841
48842         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
48843         now that readutmp.c may call `free (0)'.
48844
48845 2004-04-19  Bruno Haible  <bruno@clisp.org>
48846
48847         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
48848         * m4/inttypes_h.m4: Likewise.
48849         * m4/stdint_h.m4: Likewise.
48850         * m4/intmax_t.m4: Likewise.
48851         * m4/uintmax_t.m4: Likewise.
48852
48853 2004-04-18  Jim Meyering  <jim@meyering.net>
48854
48855         * m4/prereq.m4: Don't forbid jm_ prefix.
48856
48857         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
48858         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
48859         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
48860         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
48861         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
48862         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
48863         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
48864         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
48865         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
48866         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
48867         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
48868         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
48869         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
48870         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
48871         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
48872         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
48873         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
48874         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
48875         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
48876
48877 2004-04-18  Jim Meyering  <jim@meyering.net>
48878
48879         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
48880         failure, don't leak memory and do call END_UTMP_ENT.
48881
48882 2004-04-16  Jim Meyering  <jim@meyering.net>
48883
48884         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
48885         coreutils' stat program.
48886         (gl_PREREQ): Don't require jm_PREREQ_STAT.
48887
48888 2004-04-11  Paul Eggert  <eggert@twinsun.com>
48889
48890         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
48891         C89.
48892         (CHAR_BIT): Remove, since we assume C89.
48893         Include <stdint.h> if available, as per current Autoconf CVS advice.
48894
48895 2004-03-31  Jim Meyering  <jim@meyering.net>
48896
48897         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
48898         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
48899         * m4/xalloc.m4: Likewise.
48900
48901 2004-03-30  Paul Eggert  <eggert@twinsun.com>
48902
48903         Merge from coreutils.
48904
48905         * m4/inttostr.m4: New file.
48906         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
48907         Require AM_STDBOOL_H and gl_TIMESPEC instead.
48908         Require gl_CLOCK_TIME.
48909         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
48910
48911 2004-03-30  Paul Eggert  <eggert@twinsun.com>
48912
48913         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
48914         not bool, to be more consistent with Unix conventions.
48915         Suggested by Bruno Haible.
48916
48917         Merge from coreutils.
48918
48919         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
48920         * lib/umaxtostr.c: New files.
48921
48922         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
48923         the usual <time.h> dance.
48924         (get_date): Change signature to support fractional time stamps.
48925         All callers changed.
48926         * lib/getdate.y: Include "getdate.h" first, as we can now
48927         assume C89 and don't need to worry about 'const'.
48928         Similarly, include "unlocked-io.h" near start, not in middle.
48929         Include <limits.h>.
48930         (textint.value): Use long int rather than int.
48931         (textint.digits): Use size_t rather than int.
48932         (BILLION, LOG10_BILLION): New constants.
48933         (parser_control): New member rel_ns.  Members day_ordinal,
48934         time_zone, month, day, hour, minutes, rel_year, rel_month,
48935         rel_day, rel_hour, rel_minutes, rel_seconds
48936         are now long int, not int.  Member seconds is now struct timespec,
48937         not int.  New member timespec_seen.  Members dates_seen, days_seen,
48938         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
48939         not int.
48940         (%union.intval): Now long int, not int.
48941         New member timespec.
48942         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
48943         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
48944         (spec): Now is a timespec or an item list.
48945         (timespec, items): New nonterminals.
48946         (time, rel, relunit, number, get_date):
48947         Add support for fractional seconds.
48948         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
48949         (gmtime, localtime, mktime): Remove decls; not needed with C89.
48950         (to_hour): First arg is now long int, not int.
48951         (to_year): Returns long int, not int.
48952         Don't treat year -70 like 70.
48953         (tm_diff): Returns long int, not int.
48954         (lookup_word): Use bool instead of int when appropriate.
48955         (yylex): Use size_t for count, not int.
48956         Detect overflow when parsing large integer constants.
48957         Add support for fractions.
48958         (get_date): Make pointers 'const' if possible.
48959         Use more-portable code to detect integer overflow.
48960         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
48961         Don't use ctime; it's not reliable if the year has >4 digits.
48962
48963         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
48964         This is for compatibility with BSD.
48965
48966         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
48967         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
48968         From coreutils' system.h.
48969
48970         * lib/userspec.c: Don't include "posixver.h".
48971         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
48972         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
48973         compatible extension.  Simplify code by removing a boolean int
48974         that was always nonzero if a string was nonnull.
48975
48976 2004-03-30  Jim Meyering  <jim@meyering.net>
48977
48978         Merge from coreutils.
48979
48980         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
48981         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
48982         on some systems one must include <grp.h> before it.
48983         Reported by Christian Krackowizer.
48984
48985 2004-03-30  Jim Meyering  <jim@meyering.net>
48986
48987         Merge from coreutils.
48988
48989         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
48990
48991         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
48992         an empty input stream.
48993
48994         * lib/readtokens.c: Include <stdbool.h>.
48995         (readtoken): Use `size_t' rather than int/long.
48996         All callers adjusted.
48997         Use `bool' rather than `int' where appropriate.
48998         Use memset rather than an explicit loop.
48999         Use x2nrealloc rather than xrealloc.
49000         Allow the use of `\0' as a delimiter.
49001         (readtokens): Likewise.
49002         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
49003
49004 2004-03-30  Jim Meyering  <jim@meyering.net>
49005
49006         * m4/realloc.m4: Remove file, since now it does no more than
49007         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
49008         the `configure.ac' section of module/realloc.
49009         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
49010
49011 2004-03-30  Bruno Haible  <bruno@clisp.org>
49012
49013         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
49014         nonnull.
49015
49016 2004-03-29  Paul Eggert  <eggert@twinsun.com>
49017
49018         Merge changes to getloadavg.c from coreutils and Emacs.
49019
49020         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
49021         Define to an expression, not to the empty string.
49022         Include cloexec.h and xalloc.h.
49023         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
49024         Use set_cloexec_flag rather than rolling our own.
49025         * lib/cloexec.c, lib/cloexec.h: New files.
49026
49027 2004-03-29  Paul Eggert  <eggert@twinsun.com>
49028
49029         * m4/cloexec.m4: New file.
49030
49031 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49032
49033         * lib/getopt.h: Sync with libc CVS.
49034
49035 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49036             Bruno Haible  <bruno@clisp.org>
49037
49038         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
49039         mbswidth.
49040
49041 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49042             Bruno Haible  <bruno@clisp.org>
49043
49044         * lib/mbswidth.h: Include <wchar.h> only if
49045         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
49046         <wchar.h>.
49047         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
49048
49049 2004-03-09  Paul Eggert  <eggert@twinsun.com>
49050
49051         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
49052         Sync with libc CVS.
49053         * lib/getopt_int.h: New file, also synced from libc.
49054
49055 2004-03-09  Paul Eggert  <eggert@twinsun.com>
49056
49057         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
49058         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
49059         Bring back getopt.c, getopt.h, getopt1.c.
49060
49061 2004-03-07  Paul Eggert  <eggert@twinsun.com>
49062
49063         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
49064         All uses changed.  Check for sa_sigaction member; this fixes
49065         a bug first reported by Jason Andrade in
49066         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
49067
49068 2004-03-07  Paul Eggert  <eggert@twinsun.com>
49069
49070         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
49071         '#if' expressions.  Unlike the code it replaces, it does not
49072         depend on (defined _SC_PAGESIZE).  However, it does depend on
49073         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
49074         first reported by Jason Andrade in
49075         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
49076
49077 2004-02-25  Simon Josefsson  <jas@extundo.com>
49078
49079         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
49080
49081 2004-02-25  Simon Josefsson  <jas@extundo.com>
49082
49083         * lib/strdup.h: New file.
49084         * lib/strdup.c: Include it.
49085         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
49086         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
49087
49088 2004-02-23  Karl Berry  <karl@gnu.org>
49089
49090         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
49091         (from fencepost.gnu.org:/gd/gnuorg).
49092
49093 2004-02-23  Karl Berry  <karl@gnu.org>
49094
49095         * config/srclistvars.sh (GNUORG) [karl]: redefine.
49096         * config/srclist.txt: add maintain/standards documents.
49097
49098 2004-02-18  Bruno Haible  <bruno@clisp.org>
49099
49100         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
49101         Reported by Derek Robert Price <derek@ximbiot.com>.
49102
49103 2004-02-16  Karl Berry  <karl@gnu.org>
49104
49105         * config/mkinstalldirs, install-sh: update from automake.
49106
49107 2004-02-06  Karl Berry  <karl@gnu.org>
49108
49109         * m4/po.m4: update from gettext 0.14.1.
49110
49111 2004-02-06  Karl Berry  <karl@gnu.org>
49112
49113         * lib/config.charset: update from gettext 0.14.1.
49114
49115 2004-02-05  Paul Eggert  <eggert@twinsun.com>
49116
49117         Add comments and code, prompted by suggestions from Bruno Haible
49118         for sh-quote.
49119         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
49120         describing the enum quoting_style values.
49121         * lib/quotearg.c (quotearg_alloc): New function.
49122         (quotearg_buffer_restyled): Treat lone { and } as special.
49123         Treat = as special.  Work around bug with older shells
49124         that "see" a '\' that is really the 2nd byte of a multibyte char.
49125         Quote empty string with shell_quoting_style.
49126
49127 2004-02-03  Bruno Haible  <bruno@clisp.org>
49128
49129         * m4/pipe.m4: New file, from GNU gettext.
49130
49131 2004-02-03  Bruno Haible  <bruno@clisp.org>
49132
49133         * lib/pipe.h: New file, from GNU gettext.
49134         * lib/pipe.c: New file, from GNU gettext.
49135
49136 2004-01-27  Bruno Haible  <bruno@clisp.org>
49137
49138         * m4/execute.m4: New file, from GNU gettext.
49139
49140 2004-01-27  Bruno Haible  <bruno@clisp.org>
49141
49142         * lib/execute.h: New file, from GNU gettext.
49143         * lib/execute.c: New file, from GNU gettext.
49144         * lib/w32spawn.h: New file, from GNU gettext.
49145
49146 2004-01-24  Paul Eggert  <eggert@twinsun.com>
49147
49148         Merge from diffutils.
49149
49150         * lib/file-type.c (file_type): Add typed memory objects.
49151         * lib/file-type.h (S_TYPEISTMO): New macro.
49152
49153         * lib/c-stack.h (c_stack_action): Remove argv argument.
49154         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
49155         (die): Don't calculate message unless segv_action returns.
49156         (get_stack_location, min_address_from_argv, max_address_from_argv,
49157         volatile stack_base, volatile_stack_size): Remove.
49158         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
49159         that every segmentation violation is a stack overflow.  (Ouch!)
49160         See Debian bug 136249 (still outstanding) for more info about why
49161         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
49162
49163 2004-01-24  Paul Eggert  <eggert@twinsun.com>
49164
49165         Exit-status fix from coreutils.
49166
49167         Use exit_failure consistently in place of EXIT_FAILURE,
49168         so that program exit statuses are consistent on failure.
49169
49170         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
49171         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
49172         * lib/argmatch.h: Comment fix to match the above.
49173         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
49174         Now a macro referring to exit_failure, instead of a separate
49175         variable.  Include "exitfail.h" to get it.
49176         * lib/xstrtol.h: Include "exitfail.h".
49177         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
49178
49179         * lib/long-options.c (parse_long_options): Use prototype
49180         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
49181         for clarity.
49182
49183 2004-01-21  Jim Meyering  <jim@meyering.net>
49184
49185         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
49186         so as not to conflict with a different-sized __mktime_internal
49187         function in GNU libc.
49188         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
49189         Problem building statically-linked `ls' reported by Michael Brunnbauer.
49190
49191 2004-01-20  Karl Berry  <karl@gnu.org>
49192
49193         * config/config.guess: update from config.
49194
49195         * config/srclistvars.sh: GNUWWWLICENSES for karl.
49196
49197 2004-01-20  Bruno Haible  <bruno@clisp.org>
49198
49199         Safer stack allocation.
49200         * lib/setenv.c: Include allocsa.h.
49201         (alloca): Remove fallback definition.
49202         (freea): Remove macro.
49203         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
49204         instead of freea.
49205
49206 2004-01-20  Bruno Haible  <bruno@clisp.org>
49207
49208         * m4/eealloc.m4: New file, from GNU gettext.
49209
49210 2004-01-20  Bruno Haible  <bruno@clisp.org>
49211
49212         * m4/allocsa.m4: New file, from GNU gettext.
49213
49214 2004-01-20  Bruno Haible  <bruno@clisp.org>
49215
49216         * lib/xallocsa.h: New file, from GNU gettext.
49217         * lib/xallocsa.c: New file, from GNU gettext.
49218
49219 2004-01-20  Bruno Haible  <bruno@clisp.org>
49220
49221         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
49222
49223 2004-01-20  Bruno Haible  <bruno@clisp.org>
49224
49225         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
49226         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
49227         specially.
49228
49229 2004-01-20  Bruno Haible  <bruno@clisp.org>
49230
49231         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
49232         patch.
49233
49234 2004-01-20  Bruno Haible  <bruno@clisp.org>
49235
49236         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
49237
49238 2004-01-20  Bruno Haible  <bruno@clisp.org>
49239
49240         * lib/eealloc.h: New file.
49241
49242 2004-01-20  Bruno Haible  <bruno@clisp.org>
49243
49244         * lib/binary-io.h: Avoid warnings on Cygwin.
49245
49246 2004-01-20  Bruno Haible  <bruno@clisp.org>
49247
49248         * lib/allocsa.h: New file, from GNU gettext.
49249         * lib/allocsa.c: New file, from GNU gettext.
49250
49251 2004-01-18  Karl Berry  <karl@gnu.org>
49252
49253         * doc/gpl.texi, doc/lgpl.texi: new files.
49254
49255 2004-01-18  Karl Berry  <karl@gnu.org>
49256
49257         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
49258         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
49259
49260 2004-01-15  Paul Eggert  <eggert@twinsun.com>
49261
49262         Merge from coreutils.
49263
49264         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
49265         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
49266         (gl_DEFAULT_POSIX2_VERSION): Move
49267         the documentation from 'configure' into 'config.hin',
49268         so that 'configure --help' isn't burdened by it and
49269         we don't have to worry about its formatting there.
49270         Reword the documentation so that it's more succinct
49271         and can be run together into a single paragraph.
49272         * m4/same.m4 (gl_SAME): Check for pathconf.
49273
49274 2004-01-15  Paul Eggert  <eggert@twinsun.com>
49275
49276         Merge from coreutils.
49277
49278         * lib/posixver.c: Include posixver.h.
49279
49280         * lib/same.c: Include <stdbool.h>, <limits.h>.
49281         (_POSIX_NAME_MAX): Define if not defined.
49282         (MIN): New macro.
49283         (same_name): If file names are silently truncated, report
49284         that the file names are the same if they are the same after
49285         the silent truncation.
49286
49287         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
49288         conversion function.
49289         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
49290         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
49291         longer needed.
49292
49293 2004-01-15  Jim Meyering  <jim@meyering.net>
49294
49295         Merge from coreutils.
49296
49297         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
49298         if no library is required.
49299         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
49300         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
49301         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
49302         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
49303         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
49304         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
49305         value, $ac_cv_search_crypt, if it's "none required".
49306         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
49307         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
49308         not gl_FUNC_GETLOADAVG.
49309         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
49310         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
49311
49312 2004-01-15  Jim Meyering  <jim@meyering.net>
49313
49314         Merge from coreutils.
49315
49316         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
49317         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
49318         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
49319
49320         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
49321         optional configure-time default.
49322
49323         * lib/version-etc.c (version_etc_copyright): Update copyright date.
49324
49325         * lib/xreadlink.c (xreadlink): Correct outdated comment.
49326
49327 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
49328
49329         Merge from coreutils.
49330
49331         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
49332         value, $ac_cv_search_nanosleep, if it's "none required".
49333
49334 2004-01-14  Paul Eggert  <eggert@twinsun.com>
49335
49336         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
49337         with like-named macro in fnmatch.c.
49338         (EXT): Use an internal constant instead.
49339
49340         Merge fnmatch patches from glibc.
49341         * lib/fnmatch.c (mbsinit): Remove define.
49342         Add libc_hidden_ver (__fnmatch, fnmatch).
49343         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
49344         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
49345
49346 2004-01-14  Karl Berry  <karl@gnu.org>
49347
49348         * config/install-sh: update from automake.
49349
49350 2004-01-13  Karl Berry  <karl@gnu.org>
49351
49352         * config/install-sh: update from automake.
49353
49354 2004-01-09  Karl Berry  <karl@gnu.org>
49355
49356         * config/install-sh: update from automake.
49357
49358 2004-01-05  Karl Berry  <karl@gnu.org>
49359
49360         * config/config.{sub,guess}: update from config.
49361
49362 2003-12-31  Karl Berry  <karl@gnu.org>
49363
49364         * config/depcomp: update from automake.
49365
49366 2003-12-14  Karl Berry  <karl@gnu.org>
49367
49368         * lib/config.charset: update from gettext-runtime.
49369
49370 2003-12-03  Paul Eggert  <eggert@twinsun.com>
49371
49372         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
49373         Bug reported by Alfred M. Szmidt.
49374
49375 2003-12-03  Bruno Haible  <bruno@clisp.org>
49376
49377         * m4/gettext.m4: Upgrade from gettext-0.13.
49378         * m4/po.m4: Upgrade from gettext-0.13.
49379         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
49380         * m4/intmax.m4: New file, from gettext-0.13.
49381         * m4/printf-posix.m4: New file, from gettext-0.13.
49382
49383 2003-11-29  Karl Berry  <karl@gnu.org>
49384
49385         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
49386
49387 2003-11-25  Paul Eggert  <eggert@twinsun.com>
49388             Bruno Haible  <bruno@clisp.org>
49389
49390         * lib/printf-parse.h: Don't include sys/types.h.
49391         (ARG_NONE): New macro.
49392         (char_directive): Change type of *arg_index fields to size_t.
49393         * lib/printf-parse.c: Don't include sys/types.h.
49394         (SSIZE_MAX): Remove macro.
49395         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
49396         Remove unnecessary overflow check.
49397         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
49398         fields.
49399
49400 2003-11-25  Bruno Haible  <bruno@clisp.org>
49401
49402         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
49403
49404 2003-11-25  Bruno Haible  <bruno@clisp.org>
49405
49406         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
49407         gt_TYPE_SSIZE_T.
49408
49409 2003-11-24  Paul Eggert  <eggert@twinsun.com>
49410
49411         * modules/alloca: Remove dependency on xalloc.
49412
49413 2003-11-24  Paul Eggert  <eggert@twinsun.com>
49414
49415         * lib/alloca.c: Remove dependency on xalloc module.
49416         (xalloc_die): Remove.
49417         (memory_full) [!defined emacs]: New macro.
49418         [!defined emacs]: Don't include xalloc.h.
49419         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
49420         address arithmetic overflows.  Change datatypes a bit to avoid
49421         unnecessary casts.
49422
49423 2003-11-22  Jim Meyering  <jim@meyering.net>
49424
49425         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
49426         s/size/size_t/.
49427
49428 2003-11-21  Karl Berry  <karl@gnu.org>
49429
49430         * config/config.{sub,guess}: update from config.
49431
49432 2003-11-18  Karl Berry  <karl@gnu.org>
49433
49434         * config/config.{sub,guess}: update from config.
49435
49436         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
49437
49438 2003-11-17  Paul Eggert  <eggert@twinsun.com>
49439
49440         * README: Mention that S+T cannot overflow if S is the size of
49441         an existing object and T is sufficiently small.
49442
49443 2003-11-17  Jim Meyering  <jim@meyering.net>
49444
49445         On systems without utime and without a utimes function capable of
49446         dealing with a NULL struct utimbuf* argument, this utime replacement
49447         could -- in unusual circumstances -- leak a file descriptor.
49448         * lib/utime.c: Include <unistd.h> and <errno.h>.
49449         (utime_null): Be sure to close `fd' and to preserve errno.
49450         Reported by Geoff Collyer via Arnold Robbins.
49451
49452 2003-11-17  Bruno Haible  <bruno@clisp.org>
49453
49454         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
49455         (Depends-on): Add xsize.
49456
49457 2003-11-17  Bruno Haible  <bruno@clisp.org>
49458
49459         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
49460
49461 2003-11-17  Bruno Haible  <bruno@clisp.org>
49462
49463         * lib/vasnprintf.c (alloca): Remove fallback definition.
49464         (freea): Remove definition.
49465         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
49466         Reported by Paul Eggert.
49467
49468 2003-11-16  Paul Eggert  <eggert@twinsun.com>
49469             Bruno Haible  <bruno@clisp.org>
49470
49471         Protect against address arithmetic overflow.
49472         * lib/printf-args.h: Include stddef.h.
49473         (arguments): Change type of field 'count' to size_t.
49474         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
49475         'unsigned int' where appropriate.
49476         * lib/printf-parse.h: Include sys/types.h.
49477         (char_directive): Change type of *arg_index fields to ssize_t.
49478         (char_directives): Change type of fields 'count', max_*_length to
49479         size_t.
49480         * lib/printf-parse.c: Include sys/types.h and xsize.h.
49481         (SSIZE_MAX): Define fallback value.
49482         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
49483         instead of 'int' where appropriate. Check a_allocated, d_allocated
49484         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
49485         * lib/vasnprintf.c: Include xsize.h.
49486         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
49487         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
49488         overflow. Avoid wraparound when converting a width or precision from
49489         decimal to binary.
49490
49491 2003-11-16  Bruno Haible  <bruno@clisp.org>
49492
49493         Update from GNU gettext.
49494         * lib/printf-parse.c: Generalize to it can be compiled for wide
49495         strings.
49496         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
49497         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
49498         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
49499         SNPRINTF): New macros.
49500         Don't include <alloca.h> if the file is used inside libintl.
49501         (local_wcslen): New function, for Solaris 2.5.1.
49502         (VASNPRINTF): Use it instead of wcslen.
49503
49504 2003-11-16  Bruno Haible  <bruno@clisp.org>
49505
49506         * lib/xsize.h (xmax): New function.
49507         (xsum, xsum3, xsum4): Declare as "pure" functions.
49508
49509 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49510
49511         * modules/xalloc (Files): Undo latest change, since xalloc.h
49512         no longer needs SIZE_MAX or PTRDIFF_MAX.
49513
49514 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49515
49516         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
49517         gl_PTRDIFF_MAX.
49518
49519 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49520
49521         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
49522         "return", to pacify some unknown compiler.  Problem reported
49523         by Joerg Schilling.
49524
49525 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49526
49527         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
49528         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
49529         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
49530         heuristic is just as accurate as far as we know, and it removes a
49531         dependency on size_max.m4 and ptrdiff_max.m4.
49532
49533 2003-11-11  Bruno Haible  <bruno@clisp.org>
49534
49535         * modules/xsize (Files): Add m4/size_max.m4.
49536         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
49537
49538 2003-11-11  Bruno Haible  <bruno@clisp.org>
49539
49540         * m4/size_max.m4: New file.
49541         * m4/ptrdiff_max.m4: New file.
49542         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
49543         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
49544         (gl_XALLOC): Invoke it.
49545
49546 2003-11-11  Bruno Haible  <bruno@clisp.org>
49547
49548         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
49549         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
49550         defined.
49551
49552 2003-11-10  Paul Eggert  <eggert@twinsun.com>
49553
49554         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
49555         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
49556         rejected some allocations of exactly SIZE_MAX - 2 bytes.
49557         From Bruno Haible.
49558         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
49559         not (size_t) -1, since it's defined here.
49560
49561 2003-11-09  Karl Berry  <karl@gnu.org>
49562
49563         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
49564
49565 2003-11-06  Paul Eggert  <eggert@twinsun.com>
49566
49567         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
49568         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
49569         Reject sizes of exactly SIZE_MAX bytes.
49570         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
49571         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
49572
49573 2003-11-05  Bruno Haible  <bruno@clisp.org>
49574
49575         * lib/xsize.h: Include limits.h, to avoid a possible collision with
49576         SIZE_MAX defined in <limits.h> on Solaris.
49577
49578 2003-11-04  Jim Meyering  <jim@meyering.net>
49579
49580         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
49581         variable names, rather than @VAR@.
49582         * modules/poll: Likewise.
49583
49584 2003-11-04  Bruno Haible  <bruno@clisp.org>
49585
49586         * modules/xsize: New file.
49587         * modules/linebreak: Depend on xsize.
49588         * MODULES.html.sh (func_all_modules): Add xsize.
49589
49590 2003-11-04  Bruno Haible  <bruno@clisp.org>
49591
49592         * m4/xsize.m4: New file.
49593
49594 2003-11-04  Bruno Haible  <bruno@clisp.org>
49595
49596         * lib/xsize.h: New file.
49597         * lib/linebreak.c: Include xsize.h.
49598         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
49599         argument for overflow.
49600         Suggested by Paul Eggert.
49601
49602 2003-11-03  Karl Berry  <karl@gnu.org>
49603
49604         * config/config.{guess,sub}: update from config.
49605
49606 2003-11-03  Jim Meyering  <jim@meyering.net>
49607
49608         * modules/userspec (lib_SOURCES): Add userspec.h.
49609         (Include): Add "userspec.h".
49610         Improve description.
49611
49612 2003-11-03  Jim Meyering  <jim@meyering.net>
49613
49614         * lib/userspec.c: Include "userspec.h".
49615         * lib/userspec.h: New file.
49616
49617 2003-11-03  Bruno Haible  <bruno@clisp.org>
49618
49619         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
49620
49621 2003-11-03  Bruno Haible  <bruno@clisp.org>
49622
49623         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
49624         available, to avoid (extremely rare) race condition.
49625         Suggested by Paul Eggert.
49626
49627 2003-11-02  Karl Berry  <karl@gnu.org>
49628
49629         * config/srclist.txt (vasprintf.c): sync broken, sigh.
49630
49631 2003-10-31  Paul Eggert  <eggert@twinsun.com>
49632
49633         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
49634         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
49635         (read_filesystem_list): Set and use me_type_malloced.
49636         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
49637         whatever the type happens to be), for brevity and consistency.
49638         Check for size calculation overflow on Alphas running OSF/1.
49639
49640 2003-10-31  Jim Meyering  <jim@meyering.net>
49641
49642         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
49643
49644         * lib/linebuffer.c: Include <string.h> for declaration of memset.
49645
49646 2003-10-30  Paul Eggert  <eggert@twinsun.com>
49647             Bruno Haible  <bruno@clisp.org>
49648
49649         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
49650         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
49651
49652 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
49653
49654         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
49655         netbsd*-gnu*.  Suggested by Robert Millan.
49656
49657 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49658
49659         * modules/group-member: Depend on stdbool.
49660
49661 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49662
49663         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
49664
49665 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49666
49667         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
49668         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
49669         after the 'gnu' in these cases.  This fixes some bugs in the
49670         previous change, and is based on suggestions by Robert Millan.
49671
49672 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49673
49674         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
49675         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
49676         no longer needed.
49677         * lib/quotearg.c (quotearg_n_options): Use it.
49678         * lib/group-member.c: Include <stdbool.h>.
49679         (free_group_info): Arg is now const *; don't free arg.
49680         (get_group_info): Now returns bool and accepts struct group_info *,
49681         rather than returning a malloc'ed struct group_info *.
49682         All uses changed.  Check for overflow in internal size calculation.
49683
49684         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
49685         rather than xmalloc/xrealloc.
49686         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
49687         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
49688         conformance bug: the old code used a pointer after freeing the
49689         storage that it addressed.
49690         * lib/hash.c (hash_initialize): Simplify the code by using
49691         xalloc_oversized rather than doing it by hand.
49692         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
49693         the buffer preserved.  Use free and xmalloc instead.
49694         * lib/quotearg.c (quotearg_n_options): Likewise.
49695         Use a simpler test for size overflow.  Don't use xalloc_oversized
49696         because unsigned int might be wider than size_t (!); this suggests
49697         that we should switch from unsigned int to size_t for slot numbers.
49698
49699 2003-10-28  Paul Eggert  <eggert@twinsun.com>
49700
49701         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
49702         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
49703         NetBSD kernels.  Requested by Richard Stallman.
49704
49705 2003-10-27  Paul Eggert  <eggert@twinsun.com>
49706
49707         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
49708         to allocate the returned structure.  Do not allocate a subarray,
49709         as x2nrealloc will do that.
49710         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
49711         instead of xnrealloc.
49712         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
49713
49714 2003-10-27  Bruno Haible  <bruno@clisp.org>
49715
49716         * lib/stdbool_.h: Better support for BeOS.
49717
49718 2003-10-26  Paul Eggert  <eggert@twinsun.com>
49719
49720         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
49721         now uses inline.
49722
49723 2003-10-26  Paul Eggert  <eggert@twinsun.com>
49724
49725         * lib/xalloc.h (xalloc_oversized): New static inline function, for
49726         callers that want to do their own size-overflow checking.  Include
49727         <stdbool.h>, since xalloc_oversized returns bool.
49728         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
49729         to use xalloc_oversized.
49730
49731         Add two functions x2realloc, x2nrealloc, for programs that grow
49732         arrays dynamically by doubling their sizes.
49733         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
49734         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
49735         New functions.
49736
49737         Port to C99 semantics for 'inline' of external functions.
49738         Bug reported by Bruno Haible.
49739         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
49740         with the old contents of xnmalloc.
49741         (xnmalloc, xmalloc): Use it.
49742         (xnrealloc_inline): New static inline function,
49743         with the old contents of xnrealloc.
49744         (xnrealloc, xrealloc): Use it.
49745
49746         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
49747         that.
49748
49749 2003-10-26  Karl Berry  <karl@gnu.org>
49750
49751         * config/srclist.txt (COPYING.DOC): no longer available from
49752         /gd/gnuorg; don't know where the ultimate source is.
49753
49754 2003-10-25  Paul Eggert  <eggert@twinsun.com>
49755
49756         Fix several address-calculation bugs in the hash modules,
49757         plus some minor code cleanup.
49758
49759         * lib/hash.h: Include <stdbool.h>, for bool.
49760         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
49761         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
49762         hash_get_n_entries, hash_get_max_bucket_length,
49763         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
49764         hash_rehash): Use size_t rather than unsigned.
49765         * lib/hash.c (struct hash_table, hash_get_n_buckets,
49766         hash_get_n_buckets_used, hash_get_n_entries,
49767         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
49768         hash_get_entries, hash_do_for_each, hash_string, is_prime,
49769         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
49770         Likewise.
49771         (SIZE_MAX): Define if not defined.
49772         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
49773         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
49774         hash_print):
49775         Use const * when possible.
49776         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
49777         (check_tuning): Fix bug: if tuning parameters were very close to
49778         0 or 1, rounding errors could have caused subscript violations.
49779         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
49780         (hash_initialize): Add 'fail:' label
49781         to free table and return NULL, and use it to simplify code.
49782         Use calloc rather than clearing the storage ourself.
49783         (hash_initialize, hash_rehash): Check for arithmetic overflow in
49784         buffer size calculations.
49785         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
49786         Include <stddef.h>, for size_t.
49787         * lib/hash-pjw.c (hash_pjw): Likewise.
49788         Switch to method described by Bruno Haible.
49789         Include <limits.h>, for CHAR_BIT.
49790         (SIZE_BITS): New macro.
49791
49792 2003-10-23  Paul Eggert  <eggert@twinsun.com>
49793
49794         * m4/getline.m4 (AM_FUNC_GETLINE):
49795         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
49796         hosts.  Problem reported by Derek Robert Price in
49797         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
49798         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
49799         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
49800
49801 2003-10-21  Paul Eggert  <eggert@twinsun.com>
49802
49803         * lib/getndelim2.c (getndelim2): When size calculation overflows,
49804         ceiling the allocation at NMAX bytes rather than silently
49805         discarding input bytes before NMAX is reached.  This makes
49806         a difference only if NMAX exceeds SIZE_MAX / 2.
49807
49808         * lib/obstack.c: Merge from glibc.
49809         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
49810         Add libc_hidden_def (_obstack_newchunk).
49811         (_obstack_free) [! defined _LIBC]: Remove.
49812         [defined _LIBC]: Make a strong alias from obstack_free, rather than
49813         a clone of the function body.
49814         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
49815         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
49816
49817         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
49818         glibc.
49819         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
49820         arg to memcpy.
49821
49822         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
49823         (obstack_ptr_grow_fast, obstack_int_grow_fast):
49824         Don't use lvalue casts, as GCC plans to remove support for them
49825         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
49826         was also present in the non-GCC version, indicating that this
49827         code had always been buggy and had never been widely used.
49828         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
49829         Use the fast variant of each macro, rather than copying the
49830         definiens of the fast variant; that way, we'll be more likely to
49831         catch future bugs in the fast variants.
49832
49833 2003-10-20  Bruno Haible  <bruno@clisp.org>
49834
49835         * modules/wait-process: New file.
49836         * MODULES.html.sh (func_all_modules): Add wait-process.
49837
49838 2003-10-20  Bruno Haible  <bruno@clisp.org>
49839
49840         * m4/wait-process.m4: New file.
49841
49842 2003-10-20  Bruno Haible  <bruno@clisp.org>
49843
49844         * lib/wait-process.h: New file, from GNU gettext.
49845         * lib/wait-process.c: New file, from GNU gettext.
49846
49847 2003-10-19  Jim Meyering  <jim@meyering.net>
49848
49849         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
49850         HPUX 10.20.
49851
49852 2003-10-18  Karl Berry  <karl@gnu.org>
49853
49854         * config/config.guess: update from config.
49855
49856 2003-10-16  Paul Eggert  <eggert@twinsun.com>
49857
49858         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
49859         (getgroups): First arg is int, not size_t.
49860         Don't let 'free' mangle errno.
49861
49862 2003-10-16  Paul Eggert  <eggert@twinsun.com>
49863
49864         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
49865
49866 2003-10-16  Karl Berry  <karl@gnu.org>
49867
49868         * config/config.{guess,sub}: update from config.
49869
49870 2003-10-16  Jim Meyering  <jim@meyering.net>
49871
49872         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
49873         memcpy.
49874
49875 2003-10-15  Paul Eggert  <eggert@twinsun.com>
49876
49877         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
49878         (SIZE_MAX): Remove.
49879         (new_exclude, add_exclude_file): Initial size no longer needs to
49880         be a power of 2.
49881         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
49882         our own address arithmetic overflow checking.
49883
49884         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
49885         (fnmatch): Do not alloca more than 2000 wide characters;
49886         instead, use malloc for large buffers.
49887         Check for address arithmetic overflow, and return -1
49888         with errno set to ENOMEM in that case.
49889         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
49890         (NEW_PATTERN): Do not alloca more than 8000 bytes;
49891         instead, return -1.  Check for address arithmetic overflow.
49892
49893 2003-10-14  Paul Eggert  <eggert@twinsun.com>
49894
49895         Handle invalid suffixes and overflow independently, so that
49896         callers can treat them independently as needed.  Fix some bugs in
49897         suffix handling, e.g., "100k@" was not diagnosed as an invalid
49898         suffix for a human-readable blocksize.  The major caller-visible
49899         change is the addition of a new
49900         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
49901         that both overflow and suffix chars were found.
49902
49903         * lib/human.c (humblock): Don't check separately for invalid suffix
49904         char; that is xstrtoumax's job (now that its bug is fixed).
49905         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
49906         INTMAX_MAX]: New macros.
49907         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
49908         TYPE_MAXIMUM): New macros.
49909         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
49910         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
49911         if overflow occurs, as it's what __strtol does and it's more useful
49912         in practice.
49913         (__xstrtol): If __strtol reports some error other than ERANGE,
49914         reflect it to the caller as LONGINT_INVALID.  If it reports
49915         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
49916         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
49917         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
49918         value.
49919         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
49920         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
49921         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
49922         [defined UINTMAX_MAX]: New macros.
49923
49924 2003-10-14  Bruno Haible  <bruno@clisp.org>
49925
49926         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
49927
49928 2003-10-14  Bruno Haible  <bruno@clisp.org>
49929
49930         * m4/sig_atomic_t: New file, from GNU gettext.
49931         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
49932
49933 2003-10-14  Bruno Haible  <bruno@clisp.org>
49934
49935         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
49936         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
49937         Also use volatile where needed.
49938
49939 2003-10-12  Paul Eggert  <eggert@twinsun.com>
49940
49941         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
49942         Change maintainer from Bruno Haible to 'all'.
49943
49944 2003-10-12  Paul Eggert  <eggert@twinsun.com>
49945
49946         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
49947
49948 2003-10-12  Paul Eggert  <eggert@twinsun.com>
49949
49950         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
49951         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
49952         and define in terms of the other primitives.
49953         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
49954         (SIZE_MAX): Define if not already defined.
49955         (array_size_overflow): New function.
49956         (xalloc_die): Abort instead of exiting if 'error' returns.
49957         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
49958         (xmalloc, xrealloc): Use them.
49959         (xcalloc): Check for address arithmetic overflow.
49960         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
49961         a bit faster than strcpy.
49962
49963 2003-10-10  Simon Josefsson  <jas@extundo.com>
49964
49965         * modules/argp (Depends-on): Add restrict and strcase.
49966
49967 2003-10-10  Simon Josefsson  <jas@extundo.com>
49968
49969         * m4/argp.m4: Add AC_C_INLINE.
49970
49971 2003-10-08  Paul Eggert  <eggert@twinsun.com>
49972
49973         Merge getpass from libc, plus a few fixes.
49974
49975         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
49976         Include <stdbool.h>.
49977         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
49978         __fsetlocking to empty.
49979         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
49980         do include <bits/libc-lock.h>.
49981         Do not include <fcntl.h>; not needed.
49982         [_LIBC]: Include <wchar.h>.
49983         (NOTCANCEL_MODE): New macro.
49984         (flockfile, funlockfile) [_LIBC]: New macros.
49985         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
49986         [!_LIBC]: New macros.
49987         (call_fclose): New function.
49988         (getpass): Use it.  Save tty stream separately; this simplifies the
49989         code and makes it more reliable if stdin happens to equal stdout.
49990         Invoke __fsetlocking on tty.
49991         Handle thread cancellation if needed.
49992         Namespace cleanup (use __tcgetattr, __getline).
49993         Use bool for Booleans.
49994         [USE_IN_LIBIO]: Handle wide streams.
49995         [!_LIBC]: Unconditionally do the fseek, since we don't know what
49996         stream might go where.
49997
49998         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
49999         doesn't have to include <stdio.h> before us.
50000         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
50001         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
50002         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
50003         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
50004         if not declared, so that we can use getpass.c code from libc without
50005         rewriting it.
50006         (flockfile, ftrylockfile, funlockfile): New macros.
50007
50008 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50009
50010         * modules/getpass: Depend on stdbool.
50011
50012 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50013
50014         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
50015
50016 2003-10-07  Karl Berry  <karl@gnu.org>
50017
50018         * config/config.{guess,sub}: update from config.
50019
50020 2003-10-06  Jim Meyering  <jim@meyering.net>
50021             Bruno Haible  <bruno@clisp.org>
50022
50023         This lets translators provide better translations for the
50024         "Written by ..." part of --version output.
50025         * lib/version-etc.h: Include stdarg.h.
50026         (version_etc_copyright): Declare as readonly.
50027         (version_etc): Make this function variadic with a NULL-terminated list
50028         of author name strings.
50029         (version_etc_va): New declaration.
50030         * lib/version-etc.c: Include stdarg.h, stdlib.h.
50031         (version_etc_copyright): Declare as readonly.
50032         (version_etc_va): New function. Provide a different translatable string
50033         for each possible number of authors < 10. Abbreviate when there are 10
50034         authors or more.
50035         (version_etc): Make this function variadic. Call version_etc_va.
50036         Suggestion from Gary V. Vaughan.
50037
50038         * lib/long-options.h (parse_long_options): Change prototype: the
50039         authors string is moved to the end and becomes variadic.
50040         * lib/long-options.c: Include stdarg.h.
50041         (parse_long_options): Make this function variadic, too.
50042         Call version_etc_va, not version_etc.
50043
50044 2003-10-06  Bruno Haible  <bruno@clisp.org>
50045
50046         * modules/version-etc-2: Remove file.
50047         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
50048
50049 2003-10-06  Bruno Haible  <bruno@clisp.org>
50050
50051         * modules/fatal-signal: New file.
50052         * MODULES.html.sh (func_all_modules): Add fatal-signal.
50053
50054 2003-10-06  Bruno Haible  <bruno@clisp.org>
50055
50056         * m4/fatal-signal.m4: New file.
50057         * m4/signalblocking.m4: New file, from GNU gettext.
50058
50059 2003-10-06  Bruno Haible  <bruno@clisp.org>
50060
50061         * lib/version-etc-2.h: Remove file.
50062         * lib/version-etc-2.c: Remove file.
50063
50064 2003-10-06  Bruno Haible  <bruno@clisp.org>
50065
50066         * lib/fatal-signal.h: New file, from GNU gettext.
50067         * lib/fatal-signal.c: New file, from GNU gettext.
50068
50069 2003-10-05  Paul Eggert  <eggert@twinsun.com>
50070
50071         * README: Rework advice for preventing empty .o files.
50072         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
50073         not <sys/types.h>.
50074
50075 2003-10-04  Karl Berry  <karl@gnu.org>
50076
50077         * lib/argp*: update from libc.
50078
50079 2003-10-04  Karl Berry  <karl@gnu.org>
50080
50081         * config/config.{guess,sub}: update from config.
50082
50083 2003-10-02  Bruno Haible  <bruno@clisp.org>
50084
50085         * modules/lchown (Include): Add lchown.h.
50086         * modules/time_r (Include): Use "..." syntax.
50087         * modules/xgetdomainname (Include): Add xgetdomainname.h.
50088
50089 2003-10-01  Simon Josefsson  <jas@extundo.com>
50090
50091         * MODULES.html.sh (func_all_modules): Move gethostname from section
50092         'based on' to section 'lacking' POSIX:2001.
50093
50094 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
50095
50096         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
50097         to output mode on the same stream.
50098
50099 2003-09-29  Paul Eggert  <eggert@twinsun.com>
50100
50101         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
50102         Fix arg typo in previous patch.
50103
50104 2003-09-28  Jim Meyering  <jim@meyering.net>
50105
50106         * lib/error.c: Correct cpp indentation.
50107
50108 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50109
50110         * modules/free: New file.
50111
50112 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50113
50114         * m4/free.m4: New file.
50115
50116 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50117
50118         * lib/minmax.h (MIN, MAX)
50119         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
50120         Omit the special code that used __typeof__, since we worry that
50121         it could be more trouble than it's worth.  See:
50122         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
50123         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
50124
50125         * lib/free.c: New file.
50126
50127 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
50128
50129         Trivial fixes to Makefile.am parts of module listings.
50130         * modules/strstr: Append strstr.h to lib_SOURCES.
50131         * modules/strcase: Likewise, for strcase.h.
50132
50133 2003-09-27  Karl Berry  <karl@gnu.org>
50134
50135         * config/mkinstalldirs: update from automake.
50136
50137 2003-09-26  Paul Eggert  <eggert@twinsun.com>
50138
50139         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
50140         (error_tail): Do not loop, reallocating temporary buffer, since
50141         the output cannot contain more wide characters than the input
50142         contains bytes, the size must be big enough already.  This avoids
50143         one potential size overflow calculation.  Check for size overflow
50144         when calculating temporary buffer size.  Free temporary buffer
50145         when done, if it was allocated with malloc; this plugs a memory
50146         leak.  Remove casts from void * to pointers, that are no longer
50147         needed now that we're assuming C89 or better.
50148
50149         Merge error changes from glibc.
50150
50151         * lib/error.c, error.h: Update copyright notice header to match glibc.
50152         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
50153         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
50154         Disable cancellation while printing error.
50155         * lib/error.h: Prepend __ to parameter names.
50156
50157 2003-09-26  Jim Meyering  <jim@meyering.net>
50158
50159         * lib/error.c (error_tail): Move some declarations
50160         into inner scope where the local variables are used.
50161
50162 2003-09-26  Bruno Haible  <bruno@clisp.org>
50163
50164         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
50165         stpncpy().
50166         Don't define stpncpy through config.h; it's now done through stpncpy.h.
50167
50168 2003-09-26  Bruno Haible  <bruno@clisp.org>
50169
50170         * lib/stpncpy.h (gnu_stpncpy): New declaration.
50171         (stpncpy): Define as alias for gnu_stpncpy.
50172         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
50173
50174 2003-09-25  Simon Josefsson  <jas@extundo.com>
50175
50176         * lib/xgetdomainname.h: New file.
50177         * lib/xgetdomainname.c: New file.
50178
50179 2003-09-25  Simon Josefsson  <jas@extundo.com>
50180             Bruno Haible  <bruno@clisp.org>
50181
50182         * modules/getdomainname: New file.
50183         * modules/xgetdomainname: New file.
50184         * MODULES.html.sh (func_all_modules): Add getdomainname,
50185         xgetdomainname.
50186
50187 2003-09-25  Simon Josefsson  <jas@extundo.com>
50188             Bruno Haible  <bruno@clisp.org>
50189
50190         * m4/getdomainname.m4: New file.
50191
50192 2003-09-25  Simon Josefsson  <jas@extundo.com>
50193             Bruno Haible  <bruno@clisp.org>
50194
50195         * lib/getdomainname.h: New file.
50196         * lib/getdomainname.c: New file.
50197
50198 2003-09-25  Karl Berry  <karl@gnu.org>
50199
50200         * lib/argp-fmtstream.c, argp-help.c: update from libc.
50201
50202 2003-09-25  Karl Berry  <karl@gnu.org>
50203
50204         * config/install-sh: update from automake.
50205
50206 2003-09-25  Bruno Haible  <bruno@clisp.org>
50207
50208         * modules/version-etc-2: New file, from modules/version-etc with
50209         modifications.
50210         * MODULES.html.sh (func_all_modules): Add version-etc-2.
50211
50212 2003-09-25  Bruno Haible  <bruno@clisp.org>
50213
50214         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
50215         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
50216
50217 2003-09-24  Simon Josefsson  <jas@extundo.com>
50218
50219         * modules/xgethostname: Add xgethostname.h.
50220
50221 2003-09-24  Paul Eggert  <eggert@twinsun.com>
50222
50223         * lib/linebuffer.c (freebuffer): Don't free the argument, just
50224         the buffer associated with the argument.  Bug reported by
50225         Simon Josefsson.
50226
50227 2003-09-24  Paul Eggert  <eggert@twinsun.com>
50228
50229         * README: Document assumptions that 'int' is at least 32 bits
50230         wide, that integer arithmetic is 2's complement without overflow,
50231         that there are no holes in integer values, that adding sizes of
50232         two nonoverlapping objects can't overflow, and that all-bits-zero
50233         yields scalar zero.  Fix spelling and capitalization typos.
50234
50235 2003-09-19  Karl Berry  <karl@gnu.org>
50236
50237         * lib/argp.h: update from libc.
50238
50239 2003-09-17  Paul Eggert  <eggert@twinsun.com>
50240
50241         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
50242         to avoid spurious warnings like "AC_RUN_IFELSE was called before
50243         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
50244
50245 2003-09-17  Paul Eggert  <eggert@twinsun.com>
50246
50247         * gnulib-tool: Use "test -h", not "test -L", for portability
50248         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
50249         (tags_regexp): Remove, since \| doesn't conform to POSIX.
50250         (sed_extract_prog): Issue s commands one-by-one, rather than
50251         using \| in one s command.
50252
50253 2003-09-16  Paul Eggert  <eggert@twinsun.com>
50254
50255         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
50256         input error, instead of returning NULL the next time we are called
50257         (and therefore losing track of errno).
50258
50259 2003-09-16  Bruno Haible  <bruno@clisp.org>
50260
50261         * gnulib-tool (func_create_testdir): Warn about duplicated
50262         dependencies.
50263
50264 2003-09-15  Paul Eggert  <eggert@twinsun.com>
50265
50266         * modules/argmatch, modules/fatal, modules/obstack,
50267         modules/xalloc, modules/xgethostname: Sort dependencies by
50268         importance, not alphabetically.
50269
50270 2003-09-15  Paul Eggert  <eggert@twinsun.com>
50271
50272         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
50273         fails, so that the caller gets the proper errno.
50274
50275         * lib/readutmp.c (read_utmp): Likewise.
50276         Check for fstat error.  Close stream and free storage
50277         when failing.
50278
50279 2003-09-14  Karl Berry  <karl@gnu.org>
50280
50281         * config/srclist.txt (strdup.c): disable for c89 changes.
50282
50283 2003-09-14  Jim Meyering  <jim@meyering.net>
50284
50285         * lib/getloadavg.c: Correct cpp indentation.
50286         * lib/strdup.c: Likewise.
50287         * lib/vasnprintf.c: Likewise.
50288
50289 2003-09-14  Bruno Haible  <bruno@clisp.org>
50290
50291         * modules/fwriteerror: New file.
50292         * MODULES.html.sh (func_all_modules): Add fwriteerror.
50293
50294 2003-09-14  Bruno Haible  <bruno@clisp.org>
50295
50296         * lib/fwriteerror.h: New file.
50297         * lib/fwriteerror.c: New file.
50298
50299 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50300
50301         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
50302         modules/xgethostname, modules/xalloc: Depend on exit.
50303
50304 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50305
50306         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
50307
50308         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
50309         and AC_MINIX, too, so that their extensions are available.
50310
50311         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
50312         This macro has been superseded by gl_BACKUPFILE.
50313
50314         More patches to assume C89 or better.
50315
50316         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
50317
50318         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
50319         unconditionally.
50320         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
50321         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
50322         Include <string.h>, <stdlib.h> unconditionally.
50323         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
50324         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
50325         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
50326         headers or for string.h.
50327         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
50328         or strtoul.
50329
50330         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
50331         headers.
50332         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
50333         * m4/userspec.m4 (gl_USERSPEC): Likewise.
50334         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
50335         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
50336         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
50337         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
50338         memcpy, memset.
50339         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
50340         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
50341         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
50342         strtol.
50343         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
50344         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
50345         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
50346         strtoul.
50347
50348 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50349
50350         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
50351         * lib/obstack.c [!defined _LIBC]: Likewise.
50352         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
50353         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
50354         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
50355
50356         More changes to assume C89 or better.
50357
50358         * lib/error.c (error_tail): Assume vprintf.
50359
50360         * lib/argmatch.c (getenv): Remove decl.
50361         * lib/progreloc.c (get_full_program_name): Define via prototype.
50362         * lib/setenv.c (clearenv): Likewise.
50363         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
50364         needed.
50365         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
50366         (malloc, memcpy): Remove decls.
50367         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
50368         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
50369         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
50370         (memcpy): Remove macro.
50371         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
50372         (__P): Remove.  All uses removed.
50373         (PTR): Remove.  All uses changed to void *.
50374         (CHAR_BIT, NULL): Remove.
50375         (spaces, zeros, memset_space, memset_zero)
50376         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
50377         Remove.
50378         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
50379         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
50380         Define with prototype.
50381         Remove now-unnecessary prototype decl.
50382         (extra_args_spec): Assume ANSI C.  All uses changed.
50383         (extra_args_spec_iso): Remove.
50384         (my_strftime, emacs_strftimeu): Define via prototype.
50385         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
50386         unconditionally.
50387         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
50388         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
50389         (strtoul, strtol): Remove decls.
50390         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
50391         LONG_MAX): Remove.
50392         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
50393         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
50394         (LOCALE_PARAM_PROTO): New macro.
50395         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
50396         (INTERNAL (strtol), strtol): Define with a prototype.
50397         (PARAMS): Remove.  All uses removed.
50398         * lib/tempname.c: Include <string.h> unconditionally.
50399         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
50400         * lib/xgethostname.c (main): Define with a prototype.
50401         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
50402         Include <stdlib.h> unconditionally.
50403         (calloc, malloc, realloc, free): Remove decls.
50404         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
50405         Include <stdlib.h> unconditionally.  Sort include file names.
50406         (strtod): Remove.
50407         (xstrtod): Define with a prototype.
50408         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
50409         (strtol, strtoul): Remove decls.
50410
50411 2003-09-11  Paul Eggert  <eggert@twinsun.com>
50412
50413         More patches to assume C89 or better.
50414         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
50415         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
50416         string.h, memchr, STDC_HEADERS.
50417
50418 2003-09-11  Paul Eggert  <eggert@twinsun.com>
50419
50420         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
50421         Include <stdlib.h>, <string.h> unconditionally.
50422         Remove now-unnecessary cast to char *.
50423         * lib/strnlen.c: Include <string.h> unconditionally.
50424         * lib/yesno.c (yesno): Define with a prototype.
50425
50426 2003-09-11  Bruno Haible  <bruno@clisp.org>
50427
50428         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
50429
50430 2003-09-10  Jim Meyering  <jim@meyering.net>
50431
50432         * lib/error.c: Correct indentation of cpp directives.
50433
50434 2003-09-10  Bruno Haible  <bruno@clisp.org>
50435
50436         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
50437         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
50438         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
50439         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
50440         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
50441         <stdlib.h> and <string.h> checks.
50442         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
50443         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
50444
50445 2003-09-10  Bruno Haible  <bruno@clisp.org>
50446
50447         * lib/strcspn.c: Include <string.h> unconditionally.
50448         * lib/strpbrk.c: Include <string.h> unconditionally.
50449         * lib/strstr.c: Include <string.h> unconditionally.
50450         * lib/unicodeio.c: Include <string.h> unconditionally.
50451         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
50452         * lib/unsetenv.c: Likewise.
50453         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
50454         * lib/yesno.c: Include <stdlib.h> unconditionally.
50455         (rpmatch): Add prototype.
50456
50457 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50458
50459         More patches to assume C89 or better.
50460         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
50461         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
50462         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
50463         or for string.h.
50464         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
50465         stdlib.h.
50466         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
50467         C headers.
50468         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
50469         string.h.
50470         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
50471         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
50472         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
50473         or for string.h.
50474         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
50475         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
50476         C headers.
50477         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
50478         memcpy.
50479         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
50480         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
50481         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
50482         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
50483         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
50484         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
50485         string.h, free.
50486         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
50487         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
50488         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
50489         C headers, or for string.h.
50490         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
50491         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
50492         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
50493         headers, memory.h, stdlib.h, string.h, strings.h.
50494         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
50495         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
50496         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
50497         strchr.
50498         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
50499         headers, memory.h, string.h.
50500         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
50501         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
50502         free.
50503         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
50504         headers.
50505         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
50506         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
50507         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
50508         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
50509         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
50510
50511 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50512
50513         More K&R removal.
50514
50515         * lib/acosl.c (main): Use a prototype.
50516         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
50517         tanl.c: Likewise.
50518
50519         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
50520
50521         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
50522         (getopt, etopt_long, getopt_long_only, _getopt_internal)
50523         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
50524         with a prototype.
50525         * lib/getopt.c (const): Remove macro.
50526         Include <string.h> unconditionally.
50527         (my_index): Remove; all uses changed to strchr.
50528         (strlen): Remove decl.
50529         (exchange): Remove forward decl; no longer needed.
50530         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
50531         Define with prototype.
50532         * lib/getopt1.c (const): Remove macro.
50533         (getopt_long, getopt_long_only, main): Define with prototype.
50534
50535         * lib/getugroups.c: Include <string.h> unconditionally.
50536
50537         * lib/getusershell.c: Include <stdlib.h> unconditionally.
50538         (getusershell, setusershell, endusershell, readname, main):
50539         Define with prototypes.
50540
50541         * lib/group-member.c: Include group-member.h first.
50542         Include <stdlib.h> unconditionally.
50543
50544         * lib/hard-locale.c: Include hard-locale.h first.
50545         Include <stdlib.h>, <string.h> unconditionally.
50546
50547         * lib/hash.c (free, malloc): Remove decls.
50548         Include <stdlib.h> unconditionally.
50549
50550         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
50551         (getenv): Do not declare.
50552
50553         * lib/idcache.c: Include <string.h> unconditionally.
50554
50555         * lib/long-options.c: Include long-options.h first, to test interface.
50556         Include <stdlib.h> unconditionally.
50557
50558         * lib/makepath.c: Include makepath.h first, to test interface.
50559         Include <stdlib.h> and <string.h> unconditionally.
50560
50561         * lib/linebuffer.c: Include <stdlib.h>.
50562         (free): Remove decl.
50563
50564         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
50565         stddef.h. rpl_malloc returns void *, not char *.
50566         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
50567         prototype.
50568
50569         * lib/md5.h: Include <limits.h> unconditionally.
50570         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
50571         (__P): Remove; all uses removed.
50572         * lib/md5.c: Include "md5.h" first.
50573         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
50574         md5_buffer, md5_process_bytes, md5_process_block):
50575         Define with prototypes.
50576         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
50577         * lib/sha.c: Include "sha.h" first.
50578         Include <stdlib.h>, <string.h> unconditionally.
50579
50580         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
50581         * lib/memcmp.c (__ptr_t): Likewise.
50582         * lib/memrchr.c (__ptr_t): Likewise.
50583         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
50584         Include <string.h> unconditionally.
50585         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
50586         * lib/memchr.c: Include <stdlib.h> unconditionally.
50587         * lib/memchr.c (LONG_MAX): Remove.
50588         * lib/memrchr.c (LONG_MAX): Likewise.
50589         * lib/memchr.c (__memchr): Define via a prototype.
50590         * lib/memrchr.c (__memrchr): Likewise.
50591         * lib/memcmp.c (__P): Remove, and remove all uses.
50592         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
50593         Remove forward decls; no longer needed.
50594         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
50595         Use types required by C89 in prototype.
50596
50597         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
50598         * lib/savedir.c: Likewise.
50599         * lib/mkdir.c (free): Remove decl.
50600         * lib/rmdir.c (rmdir): Define with a prototype.
50601         * lib/savedir.c: Include savedir.h first, to test interface.
50602
50603         * lib/mktime.c (STDC_HEADERS): Remove.
50604         Include <stdlib.h>, <string.h> unconditionally.
50605
50606         * lib/modechange.c: Include <stdlib.h> unconditionally.
50607         (malloc): Remove decl.
50608
50609         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
50610         (free): Remove decl.
50611
50612         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
50613         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
50614         (This type really should be intptr_t, but that's a C99ism.)
50615         (_obstack_memcpy): Remove: all uses changed to memcpy.
50616         Include <string.h> unconditionally.
50617         (struct obstack): Assume __STDC__ for types of members
50618         chunkfun, freefun, extra_arg.
50619         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
50620         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
50621         obstack_begin, obstack_specify_allocation,
50622         obstack_specify_allocation_with_arg, obstack_chunkfun,
50623         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
50624         Remove unprototyped decls and the macros that use them.
50625         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
50626         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
50627         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
50628         (defined __STDC__ && __STDC__)]:
50629         Remove nonprototyped code.
50630         Include <stdlib.h> unconditionally.
50631         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
50632         _obstack_allocated_p, _obstack_free, obstack_free,
50633         _obstack_memory_used, print_and_abort):
50634         Define using prototypes.
50635         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
50636         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
50637         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
50638         obstack_next_free, obstack_object_size, obstack_room) [0]:
50639         Remove unused, unprototyped code.
50640
50641         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
50642
50643         * lib/physmem.c (physmem_total, physmem_available, main): Define
50644         with prototypes.
50645
50646         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
50647         (main): Define with a prototype.
50648
50649         * lib/posixver.c (getenv): Remove decl.
50650
50651         * lib/putenv.c (malloc): Returns void *, not char *.
50652         Include <string.h> unconditionally.
50653         (strchr, memcpy, NULL): Do not define.
50654
50655         * lib/readtokens.c: Include readtokens.h first, to test interface.
50656         Include <stdlib.h>, <string.h> unconditionally.
50657         (init_tokenbuffer): Define with a prototype.
50658
50659         * lib/regex.c (PARAMS): Remove.  All uses removed.
50660         All uses of _RE_ARGS removed, too.
50661         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
50662         unconditionally.
50663         (bzero): Assume memset exists.
50664         (memcmp, memcpy, NULL): Remove.
50665         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
50666         char, or assignments to local vars of type signed char.
50667         (init_syntax_once, PREFIX(extract_number_and_incr),
50668         PREFIX(print_partial_compiled_pattern),
50669         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
50670         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
50671         PREFIX(regex_grow_registers), PREFIX(regex_compile),
50672         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
50673         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
50674         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
50675         wcs_compile_range, byte_compile_range, truncate_wchar,
50676         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
50677         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
50678         count_mbs_length, wcs_re_match_2_internal,
50679         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
50680         PREFIX(alt_match_null_string_p),
50681         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
50682         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
50683         regfree, PREFIX(extract_number)): Define with prototype.  Remove
50684         now-unnecessary declaration, if any.
50685         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
50686         regcomp, regexec):
50687         Remove now-unnecessary casts among pointer types.
50688         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
50689
50690         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
50691         (free): Remove decl.
50692
50693         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
50694
50695         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
50696         (free): Remove decl.
50697
50698         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
50699         * lib/xgetcwd.c: Likewise.
50700
50701         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
50702         (free): Remove decl.
50703
50704         * lib/strchrnul.c (strchrnul): Define with a prototype.
50705         Fix bug: c_in was not converted to char before searching.
50706
50707         The following changes are not K&R related:
50708
50709         * lib/group-member.h: Include <sys/types.h>, so that this file is
50710         self-contained.
50711         * lib/makepath.h: Likewise.
50712
50713         * lib/getusershell.c (readname, default_index, line_size, readname):
50714         Use size_t, not int, for sizes.
50715         (readname): If the size overflows, report an error instead of
50716         looping forever.
50717
50718 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50719
50720         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
50721         libc.
50722
50723 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50724
50725         * README: New section: portability guidelines.
50726
50727 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
50728
50729         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
50730         C89 spec.
50731
50732 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
50733
50734         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
50735
50736 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50737
50738         Assume C89 or better; remove K&R cruft.
50739         A few of these changes were first proposed by Derek Robert Price
50740         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
50741
50742         * lib/addext.c: Include <string.h> unconditionally.
50743         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
50744         Don't declare getenv or malloc.
50745
50746         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
50747         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
50748         (NULL): Remove.
50749         (find_stack_direction, alloca): Use prototypes.
50750
50751         * lib/atexit.c (atexit): Define using a prototype.
50752
50753         * lib/basename.c, dirname.c, stripslash.c:
50754         Include <string.h> unconditionally.
50755
50756         * lib/bcopy.c: Include <stddef.h>.
50757         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
50758
50759         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
50760
50761         * lib/error.h (error, error_at_line, error_print_progname)
50762         [! (defined (__STDC__) && __STDC__)]: Remove decls.
50763         * lib/error.c: Include error.h first, to check interface.
50764         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
50765         (VA_START): Remove; all uses changeed to va_start.
50766         (exit, strerror): Remove decls.
50767         (error_print_progname): Prototype uncondionally.
50768         Don't include <errno.h>; no longer needed.
50769         (private_strerror): Remove.
50770         (error_tail): Always define.
50771         (error, error_at_line): Assume C89 or better; always use prototypes.
50772         * lib/fatal.c: Include "fatal.h" first, to test interface.
50773         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
50774         (VA_START): Remove; all uses changed to va_start.
50775         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
50776         this case.
50777         (exit): Remove decl.
50778         (fatal): Prototype unconditionally.  Assume va_start works.
50779         Abort at end, to pacify gcc.
50780
50781         * lib/euidaccess.c (main): Define with a prototype.
50782
50783         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
50784
50785         * lib/exitfail.c: Include <stdlib.h> unconditionally.
50786
50787         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
50788         prototypes.
50789         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
50790         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
50791         (getenv): Remove decl.
50792         (fnmatch): Define using a prototype.
50793         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
50794         (FCT): Define using a prototype.
50795
50796         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
50797
50798         * lib/gethostname.c: Include <stddef.h>.
50799         (gethostname): Define with prototype.  Length is size_t, not int.
50800
50801 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50802
50803         Assume C89 or better; remove K&R cruft.
50804         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
50805         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
50806         string.h, getenv, malloc.
50807         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
50808         headers.
50809         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
50810         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
50811         do not check for strerror.
50812         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
50813         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
50814         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
50815         do not check for doprnt or vprintf.
50816         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
50817         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
50818
50819 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50820
50821         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
50822         getversion.c should have been removed then, but was accidentally
50823         preserved.
50824
50825         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
50826         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
50827
50828 2003-09-08  Karl Berry  <karl@gnu.org>
50829
50830         * config/config.sub, config.guess, srclistvars.sh: update from savannah
50831                 config, forget about prep.
50832
50833         * config/depcomp, missing: update from automake.
50834
50835 2003-09-07  Paul Eggert  <eggert@twinsun.com>
50836
50837         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
50838         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
50839
50840 2003-09-07  Paul Eggert  <eggert@twinsun.com>
50841
50842         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
50843         copy_tm_result.  Bug reported by Simon Josefsson in
50844         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
50845
50846 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50847
50848         * m4/time_r.m4: New file.
50849         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
50850         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
50851         is. Check for timegm declaration.
50852         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
50853         Do not check for gmtime_r.
50854         Replace mktime if __mktime_internal does not exist and if mktime
50855         hasn't been replaced already.
50856
50857 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50858
50859         * lib/time_r.c, lib/time_r.h: New files.
50860
50861         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
50862         __localtime_r.
50863         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
50864         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
50865
50866         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
50867         __gmtime_r.
50868         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
50869         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
50870         Include <time_r.h>.
50871
50872         * lib/timegm.c: Switch to glibc implementation, with the following
50873         changes:
50874         [defined HAVE_CONFIG_H]: Include <config.h>.
50875         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
50876         (__mktime_internal) [!defined _LIBC]: New decl.
50877         (__gmtime_r) [!defined _LIBC]: New macro and function.
50878         (timegm): Use a prototype, since gnulib assumes C89.
50879         Do not bother declaring tmp to be const, as it's not really usefu.
50880         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
50881         (timegm): Declare only if HAVE_DECL_TIMEGM.
50882
50883 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50884
50885         * MODULES.html.sh (func_all_modules): Add time_r.
50886         * modules/time_r: New file.
50887         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
50888         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
50889
50890 2003-09-03  Paul Eggert  <eggert@twinsun.com>
50891
50892         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
50893         Bug reported by Lute Kamstra in
50894         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
50895
50896         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
50897         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
50898         course with correspondingly smaller numbers for tomorrow and
50899         yesterday.  From Tadayoshi Funaba.  Originally installed into
50900         sh-utils on 1999-08-07, but the patch got lost (I guess during the
50901         coreutils merge?).
50902
50903 2003-08-31  Simon Josefsson  <jas@extundo.com>
50904
50905         * modules/timegm: New file.
50906         * MODULES.html.sh (func_all_modules): Add timegm.
50907
50908 2003-08-31  Simon Josefsson  <jas@extundo.com>
50909
50910         * m4/timegm.m4: New file.
50911
50912 2003-08-31  Simon Josefsson  <jas@extundo.com>
50913
50914         * lib/timegm.h: New file.
50915         * lib/timegm.c: New file.  Based on
50916         wget-1.8.2/src/http.c:mktime_from_utc.
50917
50918 2003-08-31  Karl Berry  <karl@gnu.org>
50919
50920         * lib/argp.h: update from libc.
50921
50922 2003-08-28  Bruno Haible  <bruno@clisp.org>
50923
50924         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
50925         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
50926         followed by '#define fnmatch fnmatch_posix' gives an error.
50927
50928 2003-08-28  Bruno Haible  <bruno@clisp.org>
50929
50930         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
50931         warning on QNX, which defines O_BINARY to 000000.
50932
50933 2003-08-27  Jim Meyering  <jim@meyering.net>
50934
50935         * m4/mkstemp.m4: Require that the system mkstemp be able to create
50936         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
50937         would fail after 32.  Reported by Danny Levinson.  Details here:
50938         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
50939
50940 2003-08-24  Bruno Haible  <bruno@clisp.org>
50941
50942         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
50943         MSVC7 <stdio.h> is included later.
50944
50945 2003-08-22  Simon Josefsson  <jas@extundo.com>
50946
50947         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
50948
50949 2003-08-20  Karl Berry  <karl@gnu.org>
50950
50951         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
50952
50953 2003-08-20  Bruno Haible  <bruno@clisp.org>
50954
50955         * modules/progname: New file.
50956         * MODULES.html.sh (func_all_modules): Add progname.
50957
50958 2003-08-20  Bruno Haible  <bruno@clisp.org>
50959
50960         * lib/progname.h: New file, from GNU gettext.
50961         * lib/progname.c: New file, from GNU gettext.
50962         * lib/progreloc.c: New file, from GNU gettext.
50963
50964 2003-08-19  Jim Meyering  <jim@meyering.net>
50965
50966         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
50967         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
50968
50969 2003-08-19  Bruno Haible  <bruno@clisp.org>
50970
50971         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
50972         more.
50973
50974 2003-08-19  Bruno Haible  <bruno@clisp.org>
50975
50976         * lib/xstrdup.c: Assume <string.h> exists.
50977
50978 2003-08-18  Paul Eggert  <eggert@twinsun.com>
50979
50980         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
50981         in makefile rules.
50982
50983 2003-08-18  Jim Meyering  <jim@meyering.net>
50984
50985         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
50986         * m4/lib-ld.m4: Likewise.
50987
50988 2003-08-18  Jim Meyering  <jim@meyering.net>
50989
50990         * lib/setenv.h: Indent nested cpp directive.
50991         * lib/vasnprintf.c: Remove trailing blanks.
50992
50993 2003-08-17  Simon Josefsson  <jas@extundo.com>
50994
50995         * modules/xstrndup: New file.
50996         * MODULES.html.sh (func_all_modules): Add xstrndup.
50997
50998 2003-08-17  Simon Josefsson  <jas@extundo.com>
50999
51000         * modules/argp: Fix autoconf macro name. Add more dependencies.
51001
51002 2003-08-17  Simon Josefsson  <jas@extundo.com>
51003
51004         * m4/xstrndup.m4: New file.
51005
51006 2003-08-17  Simon Josefsson  <jas@extundo.com>
51007
51008         * m4/argp.m4: New file.
51009
51010 2003-08-17  Simon Josefsson  <jas@extundo.com>
51011             Bruno Haible  <bruno@clisp.org>
51012
51013         * lib/xstrndup.h: New file.
51014         * lib/xstrndup.c: New file.
51015
51016 2003-08-17  Bruno Haible  <bruno@clisp.org>
51017
51018         * modules/strndup (Files, Include): Add lib/strndup.h.
51019
51020 2003-08-17  Bruno Haible  <bruno@clisp.org>
51021
51022         * modules/euidaccess (Files): Add lib/euidaccess.h.
51023
51024 2003-08-17  Bruno Haible  <bruno@clisp.org>
51025
51026         * lib/strndup.h: New file.
51027
51028 2003-08-17  Bruno Haible  <bruno@clisp.org>
51029
51030         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
51031         like AC_GNU_SOURCE.
51032         * modules/extensions (configure.ac): Comment out the invocation of
51033         gl_USE_SYSTEM_EXTENSIONS.
51034
51035 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51036
51037         Merges from coreutils, etc.
51038         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
51039         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
51040         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
51041         fixing a typo.
51042         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
51043         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
51044
51045 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51046
51047         Document merge from coreutils.
51048         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
51049         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
51050         * modules/utime: Add m4/utimes-null.m4.
51051
51052 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51053
51054         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
51055         space, undoing this 2003-08-12 change:
51056         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
51057
51058 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51059
51060         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
51061         strtoul.c from libc, undoing this 2003-08-12 change:
51062         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
51063
51064 2003-08-16  Jim Meyering  <jim@meyering.net>
51065
51066         Merges from coreutils.
51067         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
51068         prefix.  Adjust cache variables similarly.  Create 500 rather than
51069         just 300 files, to exercise bug on Darwin6.5, too.
51070         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
51071         $missing_dir.
51072         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
51073         AM_SYS_POSIX_TERMIOS.
51074         Reported by mkc@mathdogs.com.
51075         Also change use of $am_cv_sys_posix_termios
51076         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
51077         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
51078         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
51079         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
51080         in /proc/mounts until it finds one with matching device number.  This
51081         is unnecessary when the FILE argument *is* a mount point.  No stat call
51082         is necessary in that case.  So, disable the statvfs-testing code on
51083         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
51084         as RedHat bug# 84846.
51085         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
51086         to 1MB, so as not to render systems with no stack size limit (e.g.,
51087         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
51088         Include <unistd.h>.  On some systems,
51089         it is required for the definition of _SC_PAGESIZE.
51090
51091 2003-08-16  Jim Meyering  <jim@meyering.net>
51092
51093         Merge from coreutils.
51094         * lib/xstrtoimax.c: #else #if -> #elif.
51095         * lib/xstrtoumax.c: Likewise.
51096
51097 2003-08-16  Jim Meyering  <jim@meyering.net>
51098
51099         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
51100         * m4/utimes.m4: Removed.
51101         * m4/utimes-null.m4: Renamed from utimes.m4.
51102
51103         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
51104         to 1MB, so as not to render systems with no stack size limit (e.g.,
51105         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
51106         Include <unistd.h>.  On some systems,
51107         it is required for the definition of _SC_PAGESIZE.
51108
51109 2003-08-16  Jim Meyering  <jim@meyering.net>
51110         and Paul Eggert  <eggert@cs.ucla.edu>
51111
51112         Merges from coreutils, etc.
51113
51114         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
51115         using the latest version from cvs.  This avoids problems with #line
51116         directives using a vendor (Sun) compiler.
51117         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
51118         Don't set GETGROUPS_LIB here; now it's
51119         done via getgroups.m4's wrapper function.
51120         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
51121         rather than just in sh-util/configure.in, so that the
51122         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
51123         same.
51124         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
51125         AC_FUNC_GETLOADAVG where to find getloadavg.c.
51126         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
51127         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
51128         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
51129         Remove code that is now done by the newly-required macros.
51130         Append $(EXEEXT) to DF_PROG.
51131         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
51132         Do not invoke or require the following here,
51133         since prereq.m4 or some gnulib .m4 now does this for us:
51134         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
51135         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
51136         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
51137         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
51138         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
51139         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
51140         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
51141         AC_FUNC_OBSTACK.
51142         Do not replace the following functions, as this is now the job
51143         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
51144         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
51145         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
51146         atexit getpass, strdup, getpagesize.
51147         Replace 'raise'.
51148         Do not check for the following functions, as this is now the job
51149         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
51150         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
51151         setregid.
51152         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
51153         Check for sys/sysctl.h.
51154         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
51155         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
51156         of checking for ssize_t ourselves.
51157
51158         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
51159         Require every macro that gnulib/modules/* suggests for us.
51160         (jm_PREREQ_ADDEXT): New macro.
51161         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
51162         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
51163
51164         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
51165         (gl_PHYSMEM): Use it.
51166         Also check for `table' function.
51167         Check for new headers and functions.
51168         Add check for sys/sysmp.h.
51169         With suggestions from Kaveh Ghazi.
51170         Ignore headers that are present but cannot be compiled.  This
51171         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
51172         C 5.4.
51173
51174 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51175
51176         Document merge from coreutils.
51177         * modules/userspec: Depend on posixver.
51178         * modules/strftime: Depend on tzset.
51179
51180 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51181
51182         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
51183         rather than tab, after '#' in shell-script copyright notices.
51184         Suggested by Bruno Haible.
51185
51186 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51187
51188         * config/srclist-update: Use three spaces, rather than tab, after '#'
51189         in shell-script copyright notices.  Suggested by Bruno Haible.
51190         Remove unnecessary parenthesization in regular expression.
51191
51192 2003-08-15  Jim Meyering  <jim@meyering.net>
51193
51194         Merge from coreutils.
51195         * lib/xgethostname.c: Include <stdlib.h>.
51196         (xghostname): Don't exit for anything other than memory-related
51197         failure; just return NULL.
51198         * lib/userspec.c: Include "posixver.h".
51199         (parse_user_spec): Accept `.' as a separator only
51200         in pre-POSIX-200112 mode.
51201         * lib/strtoimax.c: Use #elif rather than #else #if.
51202         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
51203         Remove function, now that we can rely on a working tzset function.
51204         [!_LIBC]: Ensure that the required autoconf test has been run.
51205         [!defined _NL_CURRENT && HAVE_STRFTIME]:
51206         Use underlying_strftime for %r.
51207         * lib/sha.c: Merge in some clean-up and optimization changes from
51208         glibc.
51209         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
51210         Ensure that it is a multiple of 64.
51211         Rearrange loop exit tests so as to avoid performing an
51212         additional fread after encountering an error or EOF.
51213         * lib/realloc.c: Update copyright date.
51214
51215 2003-08-15  Jim Meyering  <jim@meyering.net>
51216         and Paul Eggert  <eggert@twinsun.com>
51217
51218         Merge from coreutils.
51219         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
51220         member but strut utmpx does not.  Needed for AIX 4.3.3.
51221         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
51222
51223 2003-08-15  Jim Meyering  <jim@meyering.net>
51224         and Paul Eggert  <eggert@cs.ucla.edu>
51225
51226         Merges from coreutils, etc.
51227         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
51228         Require gl_FUNC_TZSET_CLOBBER.
51229         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
51230         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
51231         members.
51232
51233 2003-08-14  Paul Eggert  <eggert@twinsun.com>
51234
51235         Help the merge from coreutils.
51236         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
51237         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
51238         * m4/tzset.m4: Use it too.
51239
51240 2003-08-14  Paul Eggert  <eggert@twinsun.com>
51241
51242         * modules/tzset: New file.
51243
51244 2003-08-14  Jim Meyering  <jim@meyering.net>
51245
51246         Merges from coreutils.
51247         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
51248         variable names, rather than @FNMATCH_H@.
51249         * modules/alloca: Likewise for $(ALLOCA_H).
51250
51251         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
51252         the three copies of the literal target, `fnmatch.h'.
51253         * modules/alloca (alloca.h): Likewise.
51254
51255 2003-08-14  Jim Meyering  <jim@meyering.net>
51256
51257         Merge from coreutils.
51258         * m4/tzset.m4: New file.
51259         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
51260         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
51261         otherwise, AIX 5.1 systems would end up using the latter.
51262         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
51263         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
51264         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
51265         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
51266
51267 2003-08-14  Jim Meyering  <jim@meyering.net>
51268
51269         Merge from coreutils.
51270         * lib/obstack.h: Whitespace changes.
51271         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
51272         and xcalloc return values.
51273         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
51274         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
51275         hang on OSF/1 5.1 for DIR on both local and remote file systems.
51276         Reported by (and fix confirmed by) Nelson H. F. Beebe.
51277         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
51278         error from mntctl.
51279         Use mntctl's return value to drive the entry-processing loop, since
51280         we can't rely on the value of the vmt_length member in the last
51281         entry.  On some systems doing so could result in exhausting
51282         virtual memory.  Based in part on a patch from Mike Jetzer.
51283
51284 2003-08-14  Jim Meyering  <jim@meyering.net>
51285         and Paul Eggert  <eggert@twinsun.com>
51286
51287         Merges from coreutils, plus other fixes.
51288         * lib/physmem.c: Merge in portability changes from gcc/libiberty
51289         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
51290         for credits and details.  Thanks to Kaveh Ghazi for helping
51291         to keep these files in sync.
51292         (ARRAY_SIZE): Define it.
51293         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
51294         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
51295         (memcasecmp): Don't assume size_t fits in unsigned int.
51296         Remove casts and duplicate code.
51297         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
51298         (memcpy): Remove definition.
51299         Merge in some clean-up and optimization changes from glibc.
51300         [BLOCKSIZE]: Move definition to top of file.
51301         Ensure that it is a multiple of 64.
51302         Rearrange loop exit tests so as to avoid performing an
51303         additional fread after encountering an error or EOF.
51304         * lib/md5.h (md5_uintptr): Define.
51305         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
51306         return to the initial working directory.  Preserve errno
51307         for caller.
51308         * lib/idcache.c: Include "xalloc.h".
51309         (xmalloc, xrealloc): Remove decls.
51310         (getuser): Remove casts no longer required in C89.
51311         * lib/human.c: Include stdio.h, for sprintf.
51312         * lib/group-member.c: Include "xalloc.h".
51313         (xmalloc, xrealloc): Remove decls.
51314         (get_group_info): Remove casts no longer required in C89.
51315         * lib/getusershell.c (readname): Remove casts no longer required in
51316         C89.
51317         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
51318         * lib/getline.c: Whitespace fix, from coreutils.
51319
51320 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51321
51322         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
51323         Check for isascii.
51324
51325         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
51326         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
51327         Undo previous (whitespace-only) change.
51328
51329 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51330
51331         * lib/exclude.c: Include <ctype.h>
51332         (IN_CTYPE_DOMAIN): New macro.
51333         (is_space): New fn.
51334         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
51335         and empty lines.
51336
51337         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
51338         Undo previous (whitespace-only) change.
51339
51340 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51341
51342         * config/srclist-update: Change update back to the old behavior,
51343         leaving whitespace alone.  Use one 'sed' command rather than a
51344         pipeline.
51345         (fixlicense): Now a variable, not a function.
51346         (remove_trailing_blanks): Remove.
51347         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
51348         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
51349         Undo previous (whitespace-only) change.
51350
51351 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51352
51353         Merge from coreutils.
51354         * modules/euidaccess: Add lib_SOURCES, include for new
51355         file euidaccess.h
51356
51357 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51358
51359         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
51360         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
51361         Normalize leading white space and remove trailing white space.
51362
51363         Merge from coreutils
51364         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
51365
51366         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
51367         0.12.1.  These files are now being upgraded automatically by
51368         ../config/srclist-update.
51369
51370 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51371
51372         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
51373         Normalize leading white space and remove trailing white space.
51374         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
51375         notice, as per ../config/srclist-update.
51376
51377         Merge from coreutils.
51378         * lib/euidaccess.h: New file.
51379         * lib/euidaccess.c: Include it.
51380         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
51381         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
51382         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
51383
51384 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51385
51386         * config/srclist-update: Add copyright notice.
51387         (remove_id_lines, remove_trailing_blanks): New constants.
51388         (fixfile): Use them to normalize spacing a bit in copied files.
51389         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
51390         Normalize leading white space and remove trailing white space.
51391
51392         * config/texinfo.tex: Sync with texinfo.
51393
51394         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
51395         strtoul.c from libc, to merge coreutils whitespace changes.
51396
51397         * config/srclist.txt: Get the following m4 files from gettext:
51398         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
51399         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
51400         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
51401         wint_t.m4.
51402
51403 2003-08-12  Karl Berry  <karl@gnu.org>
51404
51405         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
51406         been made.
51407
51408 2003-08-11  Paul Eggert  <eggert@twinsun.com>
51409
51410         * modules/gnu-source, m4/gnu-source.m4:
51411         Remove; we're assuming Autoconf 2.54 or later now.
51412         Suggested by Bruno Haible.
51413         * MODULES.html.sh (func_all_modules): Remove gnu-source.
51414
51415 2003-08-11  Bruno Haible  <bruno@clisp.org>
51416
51417         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
51418
51419 2003-08-11  Bruno Haible  <bruno@clisp.org>
51420
51421         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
51422         (vasnprintf): Use it instead of wcslen.
51423
51424 2003-08-11  Bruno Haible  <bruno@clisp.org>
51425
51426         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
51427         value to ensure that _Bool promotes to int. Use #define for _Bool when
51428         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
51429
51430 2003-08-10  Karl Berry  <karl@gnu.org>
51431
51432         * lib/regex.h: update from libc (whitespace fix).
51433
51434 2003-08-09  Paul Eggert  <eggert@twinsun.com>
51435
51436         Merge some files from coreutils.  These changes were
51437         originally made by Jim Meyering.
51438         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
51439         many older Unixes require this.
51440         * lib/alloca.c (alloca): Remove cast to argument of free;
51441         no longer needed in C89.
51442         * lib/alloca_.h, regex.h: Fix white space to match
51443         what GNU indent does.
51444
51445 2003-08-09  Paul Eggert  <eggert@twinsun.com>
51446
51447         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
51448         apparently Emacs's Unicode mode got confused before my 2003-08-05
51449         checkin.
51450
51451 2003-08-08  Paul Eggert  <eggert@twinsun.com>
51452
51453         * m4/extensions.m4: New file.
51454         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
51455         Require gl_USE_SYSTEM_EXTENSIONS.
51456         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
51457         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
51458
51459 2003-08-08  Paul Eggert  <eggert@twinsun.com>
51460
51461         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
51462         * modules/extensions, modules/gnu-source: New files.
51463         * modules/timespec, modules/unlocked-io: Depend on extensions.
51464
51465 2003-08-07  Paul Eggert  <eggert@twinsun.com>
51466
51467         * modules/restrict: New file.
51468         * MODULES.html.sh (func_all_modules): Add restrict.
51469         * modules/regex: Depend on restrict.
51470
51471 2003-08-07  Paul Eggert  <eggert@twinsun.com>
51472
51473         * m4/restrict.m4: New file.
51474         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
51475
51476 2003-08-07  Bruno Haible  <bruno@clisp.org>
51477
51478         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
51479         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
51480
51481 2003-08-07  Bruno Haible  <bruno@clisp.org>
51482
51483         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
51484         makes the module 'getndelim2' compatible with the module 'getline'.
51485
51486 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51487
51488         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
51489         byte with "\201" to avoid glitches when editing that source file
51490         with multi-gnome-terminal.
51491
51492 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51493
51494         * lib/bumpalloc.h: Remove.
51495
51496 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51497
51498         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
51499         * modules/bumpalloc: Remove.
51500
51501 2003-08-04  Paul Eggert  <eggert@twinsun.com>
51502
51503         * lib/getloadavg.c: Change copyright notice and spacing to conform to
51504         GNU coding style.
51505
51506         Merge from coreutils.
51507         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
51508         1. From glibc.
51509         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
51510         from Karl Berry, implemented by Jim Meyering.
51511         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
51512         from Dmitry V. Levin.
51513         Remove anachronistic cast of xrealloc.
51514         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
51515         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
51516         type. Otherwise, it wouldn't compile with at least /bin/cc on
51517         ymp-cray-unicos9.0.2.X.
51518         Combine two mostly-identical uses of alloca into one.
51519         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
51520
51521 2003-08-04  Dave Love  <d.love@dl.ac.uk>
51522
51523         [From Emacs.]
51524
51525         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
51526         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
51527         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
51528         obsolete NLIST_NAME_UNION.
51529         [__GNU__]: Undef BSD and FSCALE.
51530         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
51531
51532 2003-08-03  Paul Eggert  <eggert@twinsun.com>
51533
51534         * lib/stdbool_.h (_Bool): Make it signed char, instead of
51535         an enum type, so that it's guaranteed to promote to int.  See:
51536         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
51537
51538 2003-08-03  Karl Berry  <karl@gnu.org>
51539
51540         * config/depcomp: update from automake.
51541
51542 2003-07-31  Paul Eggert  <eggert@twinsun.com>
51543
51544         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
51545         (strerror): Don't assume that a printable int fits in 14 bytes.
51546
51547 2003-07-31  Bruno Haible  <bruno@clisp.org>
51548
51549         * modules/getpass-gnu: New file.
51550         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
51551
51552 2003-07-31  Bruno Haible  <bruno@clisp.org>
51553
51554         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
51555
51556 2003-07-24  Karl Berry  <karl@gnu.org>
51557
51558         * config/missing: update from automake.
51559
51560 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
51561             Bruno Haible  <bruno@clisp.org>
51562
51563         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
51564         * lib/getline.c (getline, getdelim): Likewise.
51565         Remove _GNU_SOURCE define; now it's defined in config.h through
51566         m4/getline.m4.
51567
51568 2003-07-23  Karl Berry  <karl@gnu.org>
51569
51570         * config/config.sub: update from prep.
51571
51572 2003-07-22  Paul Eggert  <eggert@twinsun.com>
51573
51574         * modules/xalloc (Depends-on): Add exitfail.
51575         * modules/xmemcoll: Likewise.
51576
51577 2003-07-22  Paul Eggert  <eggert@twinsun.com>
51578
51579         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
51580         over-parenthesization in macros.
51581
51582         Sync with coreutils.
51583
51584         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
51585         required by C99.
51586
51587         Use `exit_failure' for xalloc and xmemcoll instead of their own
51588         private exit-failure variables.
51589         * lib/xalloc.h (xalloc_exit_failure): Remove.
51590         * lib/xmalloc.c: Likewise.  Include exitfail.h.
51591         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
51592         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
51593         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
51594         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
51595
51596 2003-07-20  Jim Meyering  <jim@meyering.net>
51597
51598         * modules/closeout (Depends-on): Add exitfail.
51599         Suggestion from Bruno Haible.
51600
51601 2003-07-19  Karl Berry  <karl@gnu.org>
51602
51603         * config/config.sub: update from prep.
51604
51605 2003-07-18  Paul Eggert  <eggert@twinsun.com>
51606
51607         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
51608         Remove.
51609         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
51610         to test that it can stand by itself.  Include "exitfail.h".
51611         Clients should set exit_failure instead.
51612         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
51613
51614 2003-07-18  Bruno Haible  <bruno@clisp.org>
51615
51616         * modules/getndelim2: New file.
51617         * modules/getline: Share files with module getndelim2.
51618         * modules/getnline: Depend on getndelim2 instead of sharing files with
51619         it. Add getnline.c to lib_SOURCES.
51620         * MODULES.html.sh (func_all_modules): Add getndelim2.
51621
51622 2003-07-18  Bruno Haible  <bruno@clisp.org>
51623
51624         * m4/getndelim2.m4: New file.
51625         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
51626         invoke gl_PREREQ_GETNDELIM2.
51627         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
51628         gl_PREREQ_GETNDELIM2.
51629         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
51630         gl_GETNDELIM2.
51631
51632 2003-07-18  Bruno Haible  <bruno@clisp.org>
51633
51634         * lib/getndelim2.h: New file.
51635         * lib/getndelim2.c: Make into a module of its own. Include config.h,
51636         getndelim2.h.
51637         (getndelim2): Make non-static. Change return type to ssize_t.
51638         * lib/getline.h: Change argument names.
51639         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
51640         * lib/getnline.c: Include getndelim2.h.
51641
51642 2003-07-18  Andreas Schwab  <schwab@suse.de>
51643
51644         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
51645
51646 2003-07-17  Karl Berry  <karl@gnu.org>
51647
51648         * config/config.sub: update from prep.
51649
51650 2003-07-17  Bruno Haible  <bruno@clisp.org>
51651
51652         * modules/getnline: New file.
51653         * modules/getline: Add lib/getndelim2.c to source file list.
51654         * MODULES.html.sh (func_all_modules): Add getnline.
51655
51656 2003-07-17  Bruno Haible  <bruno@clisp.org>
51657
51658         * m4/getnline.m4: New file.
51659
51660 2003-07-17  Bruno Haible  <bruno@clisp.org>
51661
51662         * m4/Makefile.am.in: Remove file.
51663         * m4/Makefile.am: Remove file.
51664         * m4/Makefile.in: Remove file.
51665
51666 2003-07-17  Bruno Haible  <bruno@clisp.org>
51667
51668         * lib/getnline.h: New file.
51669         * lib/getnline.c: New file.
51670         * lib/getndelim2.c: New file, extracted from getline.c.
51671         (getndelim2): Renamed from getdelim2, with added nmax argument.
51672         * lib/getline.c: Include getndelim2.c.
51673         (getdelim2): Moved out to getndelim2.c.
51674         (getline, getdelim): Update.
51675
51676 2003-07-17  Bruno Haible  <bruno@clisp.org>
51677
51678         * lib/Makefile.am: Remove file.
51679         * lib/Makefile.in: Remove file.
51680
51681 2003-07-17  Bruno Haible  <bruno@clisp.org>
51682
51683         * configure.in: Remove file.
51684         * Makefile.in: Remove file.
51685
51686 2003-07-17  Bruno Haible  <bruno@clisp.org>
51687
51688         * MODULES.html.sh: Put the </BODY> right before </HTML>.
51689
51690 2003-07-16  Karl Berry  <karl@gnu.org>
51691
51692         * config/srclist-update: was running fixlicense twice, which caused
51693                 texinfo.tex to be nullified for some reason.  Simplify,
51694                 $gplsrc is no longer needed as far as I can see?
51695
51696 2003-07-16  Jim Meyering  <jim@meyering.net>
51697
51698         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
51699
51700 2003-07-15  Paul Eggert  <eggert@twinsun.com>
51701
51702         * config/srclist.txt: Get the following files from gettext-runtime/intl
51703         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
51704         ref-del.sin.  From Bruno Haible.
51705         * config/srclist-update (fixfile): Change grep pattern again, since the
51706         previous fix didn't work (there was another trailing $).  Use
51707         '[$]' to escape the $s.
51708
51709 2003-07-15  Karl Berry  <karl@gnu.org>
51710
51711         * lib/vasnprintf.c: update from gettext.
51712
51713 2003-07-15  Karl Berry  <karl@gnu.org>
51714
51715         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
51716         gets expanded when surrounded by '$'.
51717
51718 2003-07-15  Jim Meyering  <jim@meyering.net>
51719
51720         * modules/save-cwd: Don't depend on error.  From Derek Price.
51721
51722 2003-07-15  Jim Meyering  <jim@meyering.net>
51723
51724         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
51725
51726 2003-07-14  Simon Josefsson  <jas@extundo.com>
51727
51728         * modules/mempcpy: New file.
51729         * MODULES.html.sh (func_all_modules): Add mempcpy.
51730
51731 2003-07-14  Simon Josefsson  <jas@extundo.com>
51732
51733         * m4/mempcpy.m4: New file.
51734
51735 2003-07-14  Simon Josefsson  <jas@extundo.com>
51736
51737         * lib/mempcpy.h: New file.
51738         * lib/mempcpy.c: New file.
51739
51740 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51741
51742         * modules/getdate, modules/posixtm: Depend on mktime.
51743
51744 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51745
51746         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
51747         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
51748         unicodeio.c, unicodeio.h, unlocked-io.h:
51749         Switch from LGPL to GPL.
51750
51751 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51752
51753         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
51754         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
51755         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
51756         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
51757         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
51758         updated automatically by ../config/srclist-update.  This changes
51759         their license from LPGL to GPL.
51760
51761 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51762
51763         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
51764         assumed to refer to the root of the most recent stable gettext version.
51765         * config/srclistvars.sh: Add defaults for eggert.
51766         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
51767         Match "This program" as well as "The program".  This is needed
51768         for gettext.
51769
51770 2003-07-14  Jim Meyering  <jim@meyering.net>
51771
51772         Don't emit diagnostics.  Let callers do that.
51773         * lib/save-cwd.c: Don't include "error.h".
51774         (save_cwd): Don't call error.  Ensure that errno is valid
51775         when returning nonzero.
51776
51777         * lib/save-cwd.h (restore_cwd): Update prototype.
51778         * lib/save-cwd.c (restore_cwd): Remove two parameters.
51779         Simplify.  Don't call error upon failure.  Let callers do that.
51780         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
51781         when auditing is enabled.  But don't bother updating the #if.
51782
51783 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
51784
51785         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
51786         it breaks C++ compilation.
51787         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
51788
51789 2003-07-10  Simon Josefsson  <jas@extundo.com>
51790
51791         * modules/strchrnul (Makefile.am): Add strchrnul.h.
51792
51793 2003-07-10  Jim Meyering  <jim@meyering.net>
51794
51795         * m4/clock_time.m4: Remove trailing blank.
51796         * m4/intmax_t.m4: Likewise.
51797
51798 2003-07-10  Jim Meyering  <jim@meyering.net>
51799
51800         * lib/vasnprintf.c: Remove trailing blanks.
51801         Make cpp indentation consistent.
51802
51803 2003-07-09  Paul Eggert  <eggert@twinsun.com>
51804
51805         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
51806         posixver.c, strftime.c, strnlen.c, strverscmp.c:
51807         Switch from LGPL to GPL.
51808
51809 2003-07-09  Paul Eggert  <eggert@twinsun.com>
51810
51811         * config/srclist.txt: Sort sublists.  Add
51812         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
51813         that differ from gnulib for one reason or another; we'd like this list
51814         to be smaller but for now let's document what we have.
51815
51816 2003-07-08  Paul Eggert  <eggert@twinsun.com>
51817
51818         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
51819         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
51820         and sweeter "eval x=$x".
51821         * config/srclist.txt: Get lib/argp* from glibc.
51822
51823 2003-07-07  Paul Eggert  <eggert@twinsun.com>
51824
51825         * lib/mktime.c: Fix some boundary cases and remove need for floating
51826         point.
51827
51828         Issue a compile-time diagnostic if time_t is floating point, or if
51829         two's complement arithmetic is not in effect, or if arithmetic
51830         right shift does not propagate the sign.  These assumptions were
51831         all in the original code but they weren't checked.
51832
51833         (TIME_T_MIDPOINT, verify): New macros.
51834         (__isleap): Remove; it has integer overflow problems.
51835         (leapyear): New function, without those problems.
51836         (ydhms_tm_diff): Remove; splitting into two parts.
51837         (ydhms_diff): New function, containing the arithmetic part of
51838         the old ydhms_tm_diff function.  Issue a compile-time
51839         diagnostic if we are not using C99 integer division.
51840         Avoid casts when possible.
51841         (guess_time_tm): New function, containing the checking part of
51842         the old ydhms_tm_diff function.  Return the new value, rather than
51843         the difference between it and the old.  Accept a new argument T
51844         so that *T specifies the old value.  Check for overflow in the result.
51845
51846         (__mktime_internal): Use a time_t offset, not a long int offset.
51847         This undoes the 2003-06-04 change, which is no longer needed now
51848         that we have better overflow checking.
51849         (localtime_offset): Likewise.
51850
51851         (__mktime_internal): Avoid harmful overflow on hosts where time_t
51852         and long are 64-bit but int is only 32-bit.
51853         (ydhms_diff): Use long int to store year1 and yday1.
51854         Issue a compile-time diagnostic if long int is not wide enough.
51855
51856         (__mktime_internal): Use long int to store adjusted year and yday.
51857         Use plain C rather than preprocessor commands, if that doesn't
51858         affect efficiency.
51859         Check for overflow (and try to repair) after each probe
51860         rather than checking only at the very end.  This avoids some bugs
51861         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
51862         does not equal GMT offset at maximum time).
51863         Use integer to check for overflow rather than floating point; this
51864         is more portable to non-IEEE hosts, and is a tad faster.
51865         When we detect that we are oscillating between two values,
51866         don't check whether tm_isdst has the requested value, since
51867         we already know the answer.  When tm_isdst has the wrong value,
51868         use a different heuristic to find the right one, based on the
51869         extreme values actually observed in practice in tz2003a,
51870         rather than the (overly optimistic) "previous 3 calendar quarters".
51871
51872         (not_equal_tm, print_tm, check_result): Use "const T" rather than
51873         "T const" to accommodate glibc style.
51874         (check_result): Use less-confusing report format.  "long" -> "long int.
51875         (main): Likewise.
51876         Don't loop if the iteration overflows time_t.
51877         Allow a negative step in the iteration.
51878
51879 2003-07-06  Karl Berry  <karl@gnu.org>
51880
51881         * config/depcomp: update from automake.
51882         * config/config.sub: update from prep.
51883
51884 2003-07-03  Karl Berry  <karl@gnu.org>
51885
51886         * config/config.guess: update from prep.
51887
51888 2003-07-01  Paul Eggert  <eggert@twinsun.com>
51889
51890         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
51891         xreadlink.c now includes it unconditionally.
51892
51893 2003-07-01  Paul Eggert  <eggert@twinsun.com>
51894
51895         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
51896         having it depend on HAVE_SYS_TYPES_H.
51897
51898 2003-07-01  Bruno Haible  <bruno@clisp.org>
51899
51900         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
51901         <sys/types.h> should be sufficient.
51902         Reported by Paul Eggert.
51903
51904 2003-06-26  Karl Berry  <karl@gnu.org>
51905
51906         * config/depcomp: update from automake.
51907
51908 2003-06-26  Bruno Haible  <bruno@clisp.org>
51909
51910         * modules/human: Depend on module stdbool.
51911
51912 2003-06-25  Bruno Haible  <bruno@clisp.org>
51913
51914         * modules/readlink: New file.
51915         * modules/xreadlink: Depend on it.
51916         * MODULES.html.sh (func_all_modules): Add readlink.
51917
51918 2003-06-25  Bruno Haible  <bruno@clisp.org>
51919
51920         * m4/readlink.m4: New file.
51921
51922 2003-06-25  Bruno Haible  <bruno@clisp.org>
51923
51924         * lib/readlink.c: New file.
51925
51926 2003-06-22  Karl Berry  <karl@gnu.org>
51927
51928         * config/srclist.txt: update mkinstalldirs from automake.
51929         * config/mkinstalldirs: update.
51930
51931 2003-06-22  Bruno Haible  <bruno@clisp.org>
51932
51933         Portability to mingw32.
51934         * m4/ssize_t.m4: New file, from GNU gettext.
51935         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
51936         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
51937
51938 2003-06-22  Bruno Haible  <bruno@clisp.org>
51939
51940         * modules/safe-read: Add m4/ssize_t.m4.
51941         * modules/xreadlink: Add m4/ssize_t.m4.
51942
51943 2003-06-20  Bruno Haible  <bruno@clisp.org>
51944
51945         Assume C89, so PARAMS isn't needed.
51946         * lib/unicodeio.h (PARAMS): Remove.
51947         * lib/unicodeio.c: Don't use PARAMS.
51948
51949 2003-06-18  Karl Berry  <karl@gnu.org>
51950
51951         * config/config.{guess,sub}: update from prep.
51952
51953 2003-06-18  Jim Meyering  <jim@meyering.net>
51954
51955         Merge changes from coreutils.
51956         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
51957         Remove explicit declarations of xmalloc and realloc.
51958         Include xalloc.h.
51959         (read_utmp): Remove anachronistic cast of xmalloc.
51960
51961 2003-06-17  Paul Eggert  <eggert@twinsun.com>
51962
51963         Assume C89, so PARAMS isn't needed.
51964         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
51965         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
51966         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
51967         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
51968         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
51969         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
51970         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
51971         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
51972         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
51973         lib/xstrtod.h, lib/xstrtol.h: Likewise.
51974         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
51975         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
51976         no longer needed. Anyway, config.h should always be included before any
51977         other file.
51978
51979 2003-06-11  Simon Josefsson  <jas@extundo.com>
51980
51981         * modules/sysexits: New file.
51982         * MODULES.html.sh (func_all_modules): Add sysexits.
51983
51984 2003-06-11  Simon Josefsson  <jas@extundo.com>
51985
51986         * lib/sysexit_.h: New file.
51987
51988 2003-06-11  Derek Price  <derek@ximbiot.com>
51989
51990         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
51991         necessary.
51992
51993 2003-06-11  Bruno Haible  <bruno@clisp.org>
51994
51995         * m4/sysexits.m4: New file.
51996
51997 2003-06-10  Simon Josefsson  <jas@extundo.com>
51998
51999         * lib/argp.h: New file, from glibc.
52000         * lib/argp-ba.c: New file, from glibc.
52001         * lib/argp-eexst.c: New file, from glibc.
52002         * lib/argp-fmtstream.c: New file, from glibc.
52003         * lib/argp-fmtstream.h: New file, from glibc.
52004         * lib/argp-fs-xinl.c: New file, from glibc.
52005         * lib/argp-help.c: New file, from glibc.
52006         * lib/argp-namefrob.h: New file, from glibc.
52007         * lib/argp-parse.c: New file, from glibc.
52008         * lib/argp-pv.c: New file, from glibc.
52009         * lib/argp-pvh.c: New file, from glibc.
52010         * lib/argp-xinl.c: New file, from glibc.
52011
52012 2003-06-10  Simon Josefsson  <jas@extundo.com>
52013
52014         * modules/strchrnul: New file.
52015
52016 2003-06-10  Simon Josefsson  <jas@extundo.com>
52017
52018         * modules/argp: New file.
52019
52020 2003-06-10  Simon Josefsson  <jas@extundo.com>
52021
52022         * m4/strchrnul.m4: New file.
52023
52024 2003-06-10  Simon Josefsson  <jas@extundo.com>
52025
52026         * lib/strchrnul.h: New file.
52027         * lib/strchrnul.c: New file.
52028
52029 2003-06-10  Bruno Haible  <bruno@clisp.org>
52030
52031         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
52032
52033 2003-06-07  Karl Berry  <karl@gnu.org>
52034
52035         * config/config.{guess,sub}: update from prep.
52036
52037 2003-06-07  Jim Meyering  <jim@meyering.net>
52038
52039         * modules/strtod: Use $(...) notation, not @...@ for
52040         AC_REPLACE'd variables.
52041         * modules/localcharset: Likewise.
52042
52043 2003-06-07  Jim Meyering  <jim@meyering.net>
52044
52045         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
52046         in place of my name in the copyright comment.
52047         Remove definition and uses of __P.
52048
52049         From coreutils.
52050         * lib/stat.c: Don't declare xmalloc explicitly.
52051         Instead, include "xalloc.h".
52052         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
52053         xrealloc, and xcalloc return values.
52054         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
52055         Improve comment.
52056         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
52057
52058 2003-06-07  Bruno Haible  <bruno@clisp.org>
52059
52060         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
52061         avoid AC_CONFIG_LINKS.
52062         * modules/fnmatch (Makefile.am): Use explicit creation rule for
52063         fnmatch.h, to avoid AC_CONFIG_LINKS.
52064         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
52065
52066 2003-06-07  Bruno Haible  <bruno@clisp.org>
52067
52068         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
52069         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
52070         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
52071         directory.
52072         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
52073         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
52074         directory.
52075
52076 2003-06-06  Jim Meyering  <jim@meyering.net>
52077
52078         Merge from coreutils.
52079         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
52080         Consolidate declarations and initializations of *_base* locals.
52081
52082         Merge from coreutils.
52083         This avoids a core dump on systems without GNU putenv,
52084         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
52085         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
52086         (unsetenv): New static function, from GNU libc.
52087         (rpl_putenv): Use it.
52088
52089         * lib/modechange.c: Remove trailing blanks.
52090
52091         Merge from coreutils.
52092         * lib/fsusage.c: Remove declaration of statfs.
52093         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
52094
52095         * lib/posixtm.c: Include <stdbool.h> unconditionally.
52096
52097 2003-06-06  Jim Meyering  <jim@meyering.net>
52098
52099         * lib/stdbool_.h: Renamed from stdbool.h.in.
52100
52101 2003-06-06  Jim Meyering  <jim@meyering.net>
52102             Bruno Haible  <bruno@clisp.org>
52103
52104         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
52105         Adjust Makefile.am snippet not to redirect directly to target.
52106         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
52107
52108 2003-06-05  Paul Eggert  <eggert@twinsun.com>
52109
52110         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
52111         mismatch, look in future quarters as well as past.  This fixes a
52112         bug when processing fall-backwards gaps immediately after a long
52113         period of daylight-saving time.
52114
52115         * lib/mktime.c: Assume freestanding C89 or better.
52116         (HAVE_LIMITS_H): Remove.  Assume it's 1.
52117         (__P): Remove; not used.
52118         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
52119         (mktime, not_equal_tm, print_tm, check_result,
52120         main): Use prototypes.  Use const * where appropriate.
52121         (main): Fix typo in testing code that uncovered by above changes.
52122         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
52123
52124 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52125
52126         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
52127         locale.h, localeconv.  This merges changes from coreutils.
52128
52129         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
52130         It can be removed after the next Autoconf is released.
52131         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
52132         needed.
52133
52134 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52135
52136         * lib/mktime.c: Fix Debian bug 177940
52137         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
52138         (localtime_offset): Now long int, not time_t, because we want it
52139         to be guaranteed to be signed.  All uses changed.
52140         (__mktime_internal): If overflow would occur when adding offset,
52141         don't add it.
52142
52143         Merge 'human' changes from coreutils.  Rewrite to support
52144         locale-specific notations like thousands separators.
52145         * lib/human.c: Simplify authorship notice.
52146         Include human.h immediately after config.h.
52147         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
52148         <limits.h>: Do not include, since human.h does.
52149         (SIZE_MAX, UINTMAX_MAX): New macros.
52150         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
52151         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
52152         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
52153         (power_letter): Renamed from suffixes.
52154         (generate_suffix_backwards): Remove.
52155         (adjust_value): Now takes int style (because of human.h changes)
52156         and long double value (for greater precision on some platforms).
52157         (group_number): New function.
52158         (human_readable): Use it.  Use integer options, not enum.
52159         Put the options before the sizes in the arg list.
52160         Support all the new options.
52161         The old human_readable function has been removed;
52162         use inttostr.h instead.
52163         (human_readable, default_block_size, humblock):
52164         Use uintmax_t, not int, for block sizes.
52165         (human_readable_inexact, block_size_types): Remove.
52166         (block_size_opts): New constant.
52167         (human_options): Renamed from human_block_size, with new signature
52168         that allows block sizes up to UINTMAX_MAX.  All callers changed.
52169         * lib/human.h: Add copyright and authorship notice.
52170         Include <limits.h> and <stdbool.h> unconditionally.
52171         (PARAMS): Remove.  All uses removed.
52172         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
52173         (enum human_inexact_style): Remove tag; now a nameless enum.
52174         (human_floor, human_ceiling, human_round_to_even): Now have
52175         values 2, 0, 1 rather than -1, 1, 0.
52176         (human_group_digits, human_suppress_point_zero, human_autoscale,
52177         human_base_1024, human_SI, human_B): New constants.
52178         (human_readable_inexact, human_block_size): Remove.
52179         (human_readable): Size args are now uintmax_t, not int.
52180         (human_options): New decl.
52181
52182         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
52183         unnecessary now that we assume C89 or better.  This change
52184         imported from coreutils.
52185
52186         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
52187         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
52188         in the 2003-05-30 sync from glibc.
52189
52190         .h files should stand alone, but we shouldn't include <sys/types.h>
52191         if we can get away with just <stddef.h>.
52192
52193         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
52194         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
52195         rather than <sys/types.h>, as we merely need size_t.
52196         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
52197         to get size_t.
52198         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
52199         Include <stdio.h>, to get FILE.
52200         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
52201         memcasecmp.h has included <stddef.h> and all we need is size_t.
52202         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
52203         our interface, instead of including <sys/types.h>
52204
52205 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52206
52207         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
52208         now, as glibc mktime is buggy on non-glibc systems.
52209
52210 2003-06-03  Karl Berry  <karl@gnu.org>
52211
52212         * config/config.sub: update from prep.
52213
52214 2003-06-02  Paul Eggert  <eggert@twinsun.com>
52215
52216         [from coreutils]
52217         Fix some minor time-related bugs with POSIX time arguments.
52218         Some valid time stamps were being rejected (notably -1, and
52219         time stamps before 1900 on 64-bit hosts).  And some invalid
52220         time stamps were being accepted, e.g. September 31.
52221
52222         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
52223         that we can return (time_t) -1 successfully.
52224         * lib/posixtm.c: Likewise.
52225         [HAVE_STDBOOL_H]: Include <stdbool.h>.
52226         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
52227         (t): Remove static var.
52228         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
52229         of static var.  All uses changed.
52230         (year): Do not reject years before 1900; they can occur with
52231         64-bit time_t.
52232         (posix_time_parse): Do not check for out-of-range components;
52233         that is now the caller's responsibility, since our checks were
52234         only approximations.
52235         (posixtime): Use mktime to check for out-of-range components,
52236         since it knows them exactly.
52237         If mktime returns (time_t) -1, check whether an error actually occurred
52238         by invoking localtime on -1.
52239         (main) [TEST_POSIXTIME]: Check for input data errors, and report
52240         posixtime failures better.
52241         Improve the test data (in comments only).
52242
52243 2003-06-02  Karl Berry  <karl@gnu.org>
52244
52245         * config/mkinstalldirs (version): new variable.
52246         (--version): new option.
52247         (usage): improve message.
52248
52249 2003-05-30  Karl Berry  <karl@gnu.org>
52250
52251         * lib/mktime.c: update from libc.
52252
52253 2003-05-30  Bruno Haible  <bruno@clisp.org>
52254
52255         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
52256         * config/config.rpath: Upgrade to gettext-0.12.1.
52257
52258 2003-05-30  Bruno Haible  <bruno@clisp.org>
52259
52260         * m4/gettext.m4: Upgrade to gettext-0.12.1.
52261         * m4/nls.m4: New file, from gettext-0.12.1.
52262         * m4/po.m4: New file, from gettext-0.12.1.
52263         * m4/progtest.m4: Upgrade to gettext-0.12.1.
52264
52265 2003-05-30  Bruno Haible  <bruno@clisp.org>
52266
52267         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
52268         * lib/localcharset.h: Likewise.
52269         * lib/localcharset.c: Likewise.
52270
52271 2003-05-29  Karl Berry  <karl@gnu.org>
52272
52273         * config/config.rpath: update from gettext.
52274
52275 2003-05-28  Paul Eggert  <eggert@twinsun.com>
52276
52277         Assume the headers required for C89 freestanding compilers.
52278         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
52279         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
52280         * m4/human.m4 (gl_HUMAN): Likewise.
52281         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
52282         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
52283         * m4/userspec.m4 (gl_USERSPEC): Likewise.
52284         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
52285         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
52286         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
52287
52288 2003-05-28  Paul Eggert  <eggert@twinsun.com>
52289
52290         Assume the headers required for C89 freestanding compilers.
52291         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
52292         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
52293         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
52294         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
52295         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
52296         define, since <limits.h> is guaranteed to do that.
52297         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
52298         * lib/exclude.c: Include <stdbool.h> unconditionally.
52299         * lib/tempname.c: Include <stddef.h> unconditionally.
52300         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
52301         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
52302         <stddef.h> does that.
52303         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
52304         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
52305         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
52306         needed.
52307         * lib/xstrtol.c: Likewise.
52308         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
52309         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
52310
52311         * lib/addext.c (addext): Use assignment rather than cast, to avoid
52312         warnings on some platforms.
52313
52314         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
52315         arbitrarily.
52316
52317 2003-05-26  Jim Meyering  <jim@meyering.net>
52318
52319         Merge in a change from coreutils:
52320         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
52321         that is guaranteed to be `no'.  Use `no_such_member' to indicate
52322         that condition, rather than `-1' which is slightly misleading.
52323         Change the name of the cache variable to have the gl_ prefix.
52324         Prompted by a patch from Richard Dawe for DJGPP.
52325
52326 2003-05-24  Karl Berry  <karl@gnu.org>
52327
52328         * config/config.guess: update from prep.
52329
52330 2003-05-22  Karl Berry  <karl@gnu.org>
52331
52332         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
52333
52334 2003-05-20  Karl Berry  <karl@gnu.org>
52335
52336         * config/config.guess: update from prep.
52337
52338 2003-05-18  Karl Berry  <karl@gnu.org>
52339
52340         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
52341         might actually be set by the user.
52342
52343         * config/depcomp, install-sh, mdate-sh: update from automake.
52344
52345 2003-05-17  Bruno Haible  <bruno@clisp.org>
52346
52347         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
52348         invalid expansion for AC_EGREP_CPP.
52349         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
52350         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
52351         Suggested by Akim Demaille <akim@epita.fr> in
52352         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
52353
52354 2003-05-12  Jim Meyering  <jim@meyering.net>
52355
52356         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
52357         the space-padded-by-default conversion specifiers, %e, %k, %l.
52358
52359 2003-05-12  Bruno Haible  <bruno@clisp.org>
52360
52361         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
52362         the string is longer than 4 KB.
52363
52364 2003-05-11  Karl Berry  <karl@gnu.org>
52365
52366         * config/config.{guess,sub}: update from prep.
52367
52368 2003-05-09  Bruno Haible  <bruno@clisp.org>
52369
52370         * modules/error: Add m4/strerror_r.m4 to file list.
52371
52372 2003-05-03  Bruno Haible  <bruno@clisp.org>
52373
52374         Upgrade to Unicode-4.0.
52375         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
52376         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
52377         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
52378         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
52379         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
52380         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
52381         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
52382         Change width of U+E0100..U+E01EF from 1 to 0.
52383
52384 2003-04-25  Jim Meyering  <jim@meyering.net>
52385
52386         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
52387         of type size_t, not int.
52388
52389 2003-04-25  Bruno Haible  <bruno@clisp.org>
52390
52391         * lib/copy-file.c: Include <stddef.h>, for size_t.
52392
52393 2003-04-21  Paul Eggert  <eggert@twinsun.com>
52394
52395         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
52396         code which expansion is under static control.  Patch imported from
52397         Akim Demaille's patch to Bison; see
52398         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
52399
52400 2003-04-14  Bruno Haible  <bruno@clisp.org>
52401
52402         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
52403
52404 2003-04-11  Jim Meyering  <jim@meyering.net>
52405
52406         Merge changes from Coreutils.
52407
52408         2003-03-22  Jim Meyering  <jim@meyering.net>
52409
52410         * lib/strftime.c (widen): Cast alloca return value to proper type.
52411
52412         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
52413
52414         From GNU libc.
52415         * lib/strftime.c (my_strftime): Handle very large width
52416         specifications for numeric values correctly.  Improve checks for
52417         overflow.
52418
52419         2003-01-19  Jim Meyering  <jim@meyering.net>
52420
52421         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
52422         definitions.
52423         (nl_get_alt_digit) [! defined my_strftime]: Define.
52424         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
52425         _nl_get_alt_digit and _nl_get_walt_digit.
52426
52427         * lib/strftime.c (my_strftime): Merge in locale-related changes from
52428         libc. These changes have no effect outside of _LIBC.
52429
52430 2003-04-10  Bruno Haible  <bruno@clisp.org>
52431
52432         * modules/findprog: New file.
52433         * MODULES.html.sh (func_all_modules): Add it.
52434
52435 2003-04-10  Bruno Haible  <bruno@clisp.org>
52436
52437         * m4/findprog.m4: New file.
52438         * m4/eaccess.m4: New file.
52439
52440 2003-04-10  Bruno Haible  <bruno@clisp.org>
52441
52442         * lib/findprog.h: New file, from GNU gettext.
52443         * lib/findprog.c: New file, from GNU gettext.
52444
52445 2003-04-05  Jim Meyering  <jim@meyering.net>
52446
52447         Merge changes from Coreutils.
52448
52449         * lib/exclude.h (PARAMS): Remove definition and uses.
52450         * lib/exclude.c: Remove uses of `PARAMS'.
52451
52452         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
52453         Add test-cases for DOS filenames. Declare program_name.
52454         (main): Set up program_name.  Patch by Rich Dawe.
52455
52456         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
52457         error from mntctl.
52458         Use mntctl's return value to drive the entry-processing loop, since
52459         we can't rely on the value of the vmt_length member in the last
52460         entry.  On some systems doing so could result in exhausting
52461         virtual memory.  Based in part on a patch from Mike Jetzer.
52462
52463 2003-04-04  Bruno Haible  <bruno@clisp.org>
52464
52465         * modules/linebreak: New file.
52466         * MODULES.html.sh (func_all_modules): Add it.
52467
52468 2003-04-04  Bruno Haible  <bruno@clisp.org>
52469
52470         * m4/linebreak.m4: New file.
52471
52472 2003-04-04  Bruno Haible  <bruno@clisp.org>
52473
52474         * lib/linebreak.h: New file, from GNU gettext.
52475         * lib/linebreak.c: New file, from GNU gettext with slight
52476         modifications.
52477         * lib/lbrkprop.h: New file, from GNU gettext.
52478
52479 2003-04-03  Bruno Haible  <bruno@clisp.org>
52480
52481         * modules/utf8-ucs4: New file.
52482         * modules/utf16-ucs4: New file.
52483         * modules/ucs4-utf8: New file.
52484         * modules/ucs4-utf16: New file.
52485         * MODULES.html.sh (func_all_modules): Add them.
52486
52487 2003-04-03  Bruno Haible  <bruno@clisp.org>
52488
52489         * m4/utf-ucs4.m4: New file.
52490         * m4/ucs4-utf.m4: New file.
52491
52492 2003-04-03  Bruno Haible  <bruno@clisp.org>
52493
52494         * lib/utf8-ucs4.h: New file, from GNU gettext.
52495         * lib/utf16-ucs4.h: New file, from GNU gettext.
52496         * lib/ucs4-utf8.h: New file, from GNU gettext.
52497         * lib/ucs4-utf16.h: New file, from GNU gettext.
52498
52499 2003-04-02  Bruno Haible  <bruno@clisp.org>
52500
52501         * modules/binary-io: New file.
52502         * MODULES.html.sh (func_all_modules): Add it.
52503
52504 2003-04-02  Bruno Haible  <bruno@clisp.org>
52505
52506         * lib/binary-io.h: New file, from GNU gettext.
52507
52508 2003-04-01  Bruno Haible  <bruno@clisp.org>
52509
52510         * modules/pathname: New file.
52511         * MODULES.html.sh (func_all_modules): Add it.
52512
52513 2003-04-01  Bruno Haible  <bruno@clisp.org>
52514
52515         * lib/pathname.h: New file, from GNU gettext.
52516         * lib/concatpath.c: New file, from GNU gettext.
52517
52518 2003-03-30  Bruno Haible  <bruno@clisp.org>
52519
52520         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
52521
52522 2003-03-30  Bruno Haible  <bruno@clisp.org>
52523
52524         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
52525         function chown() doesn't exist.
52526
52527 2003-03-28  Bruno Haible  <bruno@clisp.org>
52528
52529         * modules/copy-file: New file.
52530         * MODULES.html.sh (func_all_modules): Add it.
52531
52532 2003-03-28  Bruno Haible  <bruno@clisp.org>
52533
52534         * m4/copy-file.m4: New file.
52535
52536 2003-03-28  Bruno Haible  <bruno@clisp.org>
52537
52538         * lib/copy-file.h: New file, from GNU gettext.
52539         * lib/copy-file.c: New file, from GNU gettext.
52540
52541 2003-03-18  Jim Meyering  <jim@meyering.net>
52542
52543         * lib/quote.c (quote_n): Fix typo in comment.
52544
52545 2003-03-18  Bruno Haible  <bruno@clisp.org>
52546
52547         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
52548         checking.
52549         * m4/onceonly_2_57.m4: Likewise.
52550
52551 2003-03-17  Bruno Haible  <bruno@clisp.org>
52552
52553         * m4/onceonly.m4: Require autoconf 2.54 or newer.
52554         (m4_quote): Remove macro.
52555         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
52556
52557 2003-03-14  Jim Meyering  <jim@meyering.net>
52558
52559         Merge changes from Coreutils.
52560         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
52561         to be const, in order to avoid warnings.
52562         (obstack_room): Likewise.
52563         (obstack_empty_p): Likewise.
52564
52565 2003-03-14  Bruno Haible  <bruno@clisp.org>
52566
52567         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
52568         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
52569
52570 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52571
52572         Merge changes from Bison.
52573         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
52574         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
52575         when compiling Bison 1.875's `bitset bset = obstack_alloc
52576         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
52577         * lib/hash.c: Include <stdbool.h> unconditionally.
52578
52579 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52580
52581         * m4/onceonly.m4 (m4_quote): New macro.
52582         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
52583         Quote AC_FOREACH variable-expansions properly.
52584
52585 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52586
52587         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
52588
52589 2003-03-09  Paul Eggert  <eggert@twinsun.com>
52590
52591         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
52592         Reported by Bruce Becker; see:
52593         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
52594
52595 2003-03-03  Paul Eggert  <eggert@twinsun.com>
52596             Bruno Haible  <bruno@clisp.org>
52597
52598         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
52599         Reported by John Hughes, see
52600         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
52601
52602 2003-02-20  Bruno Haible  <bruno@clisp.org>
52603
52604         * MODULES.html.sh (func_all_modules): Add poll.
52605
52606 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52607
52608         * modules/poll: New file.
52609
52610 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52611
52612         * lib/poll_.h: New file.
52613         * lib/poll.c: New file.
52614
52615 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52616
52617         * m4/poll.m4: New file.
52618
52619 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
52620
52621         * modules/mathl: New file.
52622
52623 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
52624
52625         * lib/mathl.h: New file.
52626         * lib/acosl.c: New file.
52627         * lib/asinl.c: New file.
52628         * lib/atanl.c: New file.
52629         * lib/ceill.c: New file.
52630         * lib/cosl.c: New file.
52631         * lib/expl.c: New file.
52632         * lib/floorl.c: New file.
52633         * lib/frexpl.c: New file.
52634         * lib/ldexpl.c: New file.
52635         * lib/logl.c: New file.
52636         * lib/sincosl.c: New file.
52637         * lib/sinl.c: New file.
52638         * lib/sqrtl.c: New file.
52639         * lib/tanl.c: New file.
52640         * lib/trigl.c: New file.
52641         * lib/trigl.h: New file.
52642
52643 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
52644
52645         * m4/mathl.m4: New file.
52646
52647 2003-02-18  Bruno Haible  <bruno@clisp.org>
52648
52649         * MODULES.html.sh (func_all_modules): Add mathl.
52650
52651 2003-02-17  Bruno Haible  <bruno@clisp.org>
52652
52653         * modules/mkdtemp: New module.
52654         * MODULES.html.sh (func_all_modules): Add it.
52655
52656 2003-02-17  Bruno Haible  <bruno@clisp.org>
52657
52658         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
52659
52660 2003-02-17  Bruno Haible  <bruno@clisp.org>
52661
52662         * lib/mkdtemp.h: New file, from GNU gettext.
52663         * lib/mkdtemp.c: New file, from GNU gettext.
52664
52665 2003-02-02  Jim Meyering  <jim@meyering.net>
52666
52667         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
52668         e.g. glibc-2.2.93.
52669
52670 2003-01-31  Bruno Haible  <bruno@clisp.org>
52671
52672         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
52673         'rpl_rename'.
52674         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
52675         'rpl_strnlen'.
52676         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
52677         'rpl_strtod'.
52678         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
52679         'rpl_utime'.
52680
52681 2003-01-31  Bruno Haible  <bruno@clisp.org>
52682
52683         * lib/rename.c: #undef rename before defining rpl_rename.
52684         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
52685
52686 2003-01-30  Bruno Haible  <bruno@clisp.org>
52687
52688         * modules/vasnprintf, modules/vasprintf: New modules.
52689         * MODULES.html.sh (func_all_modules): Add them.
52690
52691 2003-01-30  Bruno Haible  <bruno@clisp.org>
52692
52693         * m4/signed.m4: New file, from GNU gettext.
52694         * m4/longdouble.m4: New file, from GNU gettext.
52695         * m4/wchar_t.m4: New file, from GNU gettext.
52696         * m4/wint_t.m4: New file, from GNU gettext.
52697         * m4/vasnprintf.m4: New file.
52698         * m4/vasprintf.m4: New file.
52699
52700 2003-01-30  Bruno Haible  <bruno@clisp.org>
52701
52702         * lib/printf-args.h: New file, from GNU gettext.
52703         * lib/printf-args.c: New file, from GNU gettext.
52704         * lib/printf-parse.h: New file, from GNU gettext.
52705         * lib/printf-parse.c: New file, from GNU gettext.
52706         * lib/vasnprintf.h: New file, from GNU gettext.
52707         * lib/vasnprintf.c: New file, from GNU gettext.
52708         * lib/asnprintf.c: New file, from GNU gettext.
52709         * lib/vasprintf.h: New file, from GNU gettext with modifications.
52710         * lib/vasprintf.c: New file, from GNU gettext.
52711         * lib/asprintf.c: New file, from GNU gettext.
52712
52713 2003-01-29  Bruno Haible  <bruno@clisp.org>
52714
52715         * modules/stpncpy: New module.
52716         * MODULES.html.sh (func_all_modules): Add it.
52717
52718 2003-01-29  Bruno Haible  <bruno@clisp.org>
52719
52720         * m4/stpncpy.m4: New file.
52721
52722 2003-01-29  Bruno Haible  <bruno@clisp.org>
52723
52724         * lib/stpncpy.h: New file, from GNU gettext with modifications.
52725         * lib/stpncpy.c: New file, from GNU gettext with modifications.
52726
52727 2003-01-28  Bruno Haible  <bruno@clisp.org>
52728
52729         * modules/c-ctype: New module.
52730         * MODULES.html.sh (func_all_modules): Add it.
52731
52732 2003-01-28  Bruno Haible  <bruno@clisp.org>
52733
52734         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
52735         Paul Eggert.
52736         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
52737         Paul Eggert.
52738
52739 2003-01-27  Bruno Haible  <bruno@clisp.org>
52740
52741         * modules/xsetenv: New module.
52742         * MODULES.html.sh (func_all_modules): Add it.
52743
52744 2003-01-27  Bruno Haible  <bruno@clisp.org>
52745
52746         * lib/xsetenv.h: New file, from GNU gettext.
52747         * lib/xsetenv.c: New file, from GNU gettext.
52748
52749 2003-01-23  Jim Meyering  <jim@meyering.net>
52750
52751         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
52752         from working on systems without dirfd (at least Irix and OSF1/Tru64).
52753
52754 2003-01-23  Bruno Haible  <bruno@clisp.org>
52755
52756         * modules/minmax: New module.
52757         * MODULES.html.sh (func_all_modules): Add it.
52758
52759 2003-01-23  Bruno Haible  <bruno@clisp.org>
52760
52761         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
52762         Eggert.
52763
52764 2003-01-22  Bruno Haible  <bruno@clisp.org>
52765
52766         * modules/exit: New module.
52767         * MODULES.html.sh (func_all_modules): Add it.
52768
52769 2003-01-22  Bruno Haible  <bruno@clisp.org>
52770
52771         * lib/exit.h: New file, from GNU gettext.
52772
52773 2003-01-19  Bruno Haible  <bruno@clisp.org>
52774
52775         * gnulib-tool: Recognize option --extract-maintainer.
52776         (func_get_maintainer): New function.
52777         * modules/*: Add Maintainer entry.
52778
52779 2003-01-16  Jim Meyering  <jim@meyering.net>
52780
52781         * m4/regex.m4: The `regex' struct is both input and output.
52782         Initialize it before each use.  Patch by Tim Waugh.
52783
52784 2003-01-16  Bruno Haible  <bruno@clisp.org>
52785
52786         * MODULES.html.sh: Add a table of contents. Add the module name as
52787         leftmost column. Add hyperlinks.
52788
52789 2003-01-15  Bruno Haible  <bruno@clisp.org>
52790
52791         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
52792
52793 2003-01-15  Bruno Haible  <bruno@clisp.org>
52794
52795         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
52796         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
52797         suffix.
52798
52799 2003-01-15  Bruno Haible  <bruno@clisp.org>
52800
52801         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
52802
52803 2003-01-15  Bruno Haible  <bruno@clisp.org>
52804
52805         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
52806         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
52807
52808 2003-01-14  Jim Meyering  <jim@meyering.net>
52809
52810         * lib/same.c (same_name): Tweak a comment.
52811
52812 2003-01-14  Bruno Haible  <bruno@clisp.org>
52813
52814         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
52815         when a string comparison is sufficient.
52816
52817 2003-01-14  Bruno Haible  <bruno@clisp.org>
52818
52819         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
52820         'unsigned int'.
52821
52822 2003-01-14  Bruno Haible  <bruno@clisp.org>
52823
52824         * lib/hash-pjw.c: Add comment about low quality of this function.
52825
52826 2003-01-13  Bruno Haible  <bruno@clisp.org>
52827
52828         * modules/stpcpy: Distribute lib/stpcpy.h.
52829         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
52830
52831 2003-01-13  Bruno Haible  <bruno@clisp.org>
52832
52833         * modules/*: Add a description.
52834         * modules/strpbrk: Fix Makefile.am snippet.
52835         * modules/strtoimax: Fix dependencies.
52836         * modules/strtoumax: Likewise.
52837
52838 2003-01-13  Bruno Haible  <bruno@clisp.org>
52839
52840         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
52841         * modules/alloca (Makefile.am): All object files depend on alloca.h.
52842         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
52843
52844 2003-01-13  Bruno Haible  <bruno@clisp.org>
52845
52846         * gnulib-tool (func_create_testdir): Store config/* files in the main
52847         directory.
52848         * config.rpath: Move to ...
52849         * config/config.rpath: ... here.
52850         * modules/gettext: Contains config/config.rpath, not config.rpath.
52851         * modules/iconv: Likewise.
52852
52853 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52854
52855         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52856         to avoid collisions with libcurses and libreadline.
52857
52858         * m4/getstr.m4: Remove.
52859         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
52860
52861 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52862
52863         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52864         to avoid collisions with libcurses and libreadline.
52865
52866         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
52867         * lib/getstr.h, getstr.c: Remove.
52868         * lib/getline.c: Include "getline.h", to check interface.
52869         Move body of old getstr.c here: this defines MIN_CHUNK and
52870         declares getdelim2, which is renamed from getstr.
52871         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
52872
52873         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
52874         All uses changed.
52875         * lib/linebuffer.h: Likewise.
52876         (readline): Remove backward-compatibility macro.
52877
52878 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52879
52880         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52881         to avoid collisions with libcurses and libreadline.
52882         * getstr: Remove.
52883         * MODULES.html.sh: Remove getstr.
52884         * modules/getline: Depend on unlocked-io, not getstr.
52885
52886 2003-01-12  Jim Meyering  <jim@meyering.net>
52887
52888         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
52889
52890 2003-01-10  Bruno Haible  <bruno@clisp.org>
52891
52892         * modules/alloca: Change Makefile.am requirements. Simplify Include
52893         requirements. Add lib/alloca_.h to file list.
52894
52895 2003-01-10  Bruno Haible  <bruno@clisp.org>
52896
52897         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
52898
52899 2003-01-10  Bruno Haible  <bruno@clisp.org>
52900
52901         * lib/alloca_.h: New file.
52902         * lib/getdate.y: Unconditionally include alloca.h.
52903         * lib/makepath.c: Likewise.
52904         * lib/setenv.c: Likewise.
52905         * lib/userspec.c: Likewise.
52906
52907 2003-01-09  Karl Berry  <karl@gnu.org>
52908
52909         * MODULES.html.sh: include `dirname $0` in PATH, to find
52910         gnulib-tool.
52911
52912 2003-01-09  Bruno Haible  <bruno@clisp.org>
52913
52914         * modules/stdbool: Change configure.ac, Makefile.am requirements.
52915         Simplify Include requirements. Add lib/stdbool.h.in to file list.
52916
52917 2003-01-09  Bruno Haible  <bruno@clisp.org>
52918
52919         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
52920
52921 2003-01-09  Bruno Haible  <bruno@clisp.org>
52922
52923         * lib/stdbool.h.in: New file.
52924
52925 2003-01-09  Bruno Haible  <bruno@clisp.org>
52926
52927         * gnulib-tool (func_all_modules): Ignore files ending in ~.
52928         * MODULES.html.sh: Likewise.
52929
52930 2003-01-08  Jim Meyering  <jim@meyering.net>
52931
52932         * lib/full-write.c: Undefine and define-away `const' after inclusion
52933         of errno.h, not before.  Suggestion from Bruno Haible.
52934
52935 2003-01-08  Bruno Haible  <bruno@clisp.org>
52936
52937         * modules/full-read: Depend on full-write.
52938
52939 2003-01-08  Bruno Haible  <bruno@clisp.org>
52940
52941         * lib/safe-read.c: Include specification header first, to ensure its
52942         selfcontainedness.
52943         * lib/full-write.c: Likewise.
52944
52945 2003-01-07  Jim Meyering  <jim@meyering.net>
52946
52947         * lib/full-write.c: Rework so that it may serve to define full_read,
52948         too.
52949         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
52950
52951 2003-01-07  Bruno Haible  <bruno@clisp.org>
52952
52953         * lib/strtoimax.c: Include <stdint.h> as an alternative to
52954         <inttypes.h>.
52955         * lib/xstrtol.h: Likewise.
52956         * lib/xstrtoimax.c: Likewise.
52957         * lib/xstrtoumax.c: Likewise.
52958         * lib/human.h: Likewise.
52959
52960         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
52961         on systems that have <inttypes.h> but not <stdint.h>.
52962
52963 2003-01-07  Bruno Haible  <bruno@clisp.org>
52964
52965         * MODULES.html.sh: Add copyright notice.
52966         (missed_files): Omit CVS directory entries.
52967         (func_module): Make it work with sed-3.02.
52968         * MODULES.txt: Remove file.
52969
52970 2003-01-06  Jim Meyering  <jim@meyering.net>
52971
52972         * lib/version-etc.c: Update year in translatable copyright string.
52973
52974 2003-01-03  Karl Berry  <karl@gnu.org>
52975
52976         * config/config.{guess,sub}: update from prep.
52977
52978 2003-01-02  Karl Berry  <karl@gnu.org>
52979
52980         * doc/COPYING.DOC: belatedly updated to 1.2.
52981
52982 2003-01-01  Karl Berry  <karl@gnu.org>
52983
52984         * gnulib-tool (func_verify_module): report module name $module in
52985         error message, not $1.
52986         * gnulib-tool (create-testdir): don't complain if destdir couldn't
52987         be created, only if it doesn't exist.
52988         * gnulib-tool (last_checkin_date): don't expand the $Date here.
52989
52990 2002-12-31  Paul Eggert  <eggert@twinsun.com>
52991
52992         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
52993
52994 2002-12-31  Paul Eggert  <eggert@twinsun.com>
52995
52996         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
52997         memcmp if strcoll doesn't work.
52998
52999 2002-12-31  Bruno Haible  <bruno@clisp.org>
53000
53001         * lib/utime.c (utime_null): No need to call ftruncate if the file was
53002         nonempty.
53003
53004 2002-12-31  Bruno Haible  <bruno@clisp.org>
53005
53006         * lib/memcoll.c (STRCOLL): New macro.
53007         (memcoll): Use it.
53008
53009 2002-12-31  Bruno Haible  <bruno@clisp.org>
53010
53011         * lib/localcharset.h: New file.
53012         * lib/localcharset.c: Include it.
53013         * lib/unicodeio.c: Likewise.
53014
53015 2002-12-31  Bruno Haible  <bruno@clisp.org>
53016
53017         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
53018         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
53019
53020 2002-12-31  Bruno Haible  <bruno@clisp.org>
53021
53022         * lib/getline.h: Include <stddef.h>, for size_t.
53023
53024         * lib/unicodeio.h: Include <stddef.h>, for size_t.
53025         * lib/unicodeio.c: Don't include <stddef.h>.
53026
53027 2002-12-31  Bruno Haible  <bruno@clisp.org>
53028
53029         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
53030         HAVE_TM_ZONE.
53031
53032 2002-12-24  Karl Berry  <karl@gnu.org>
53033
53034         * config/config.guess: update from prep.
53035
53036 2002-12-24  Bruno Haible  <bruno@clisp.org>
53037
53038         General infrasructure.
53039         * m4/README: Rewritten.
53040         * m4/onceonly.m4: New file.
53041         * m4/onceonly_2_57.m4: New file.
53042
53043         Module atexit.
53044         * m4/atexit.m4: New file.
53045
53046         Module strtod.
53047         * m4/strtod.m4: New file.
53048
53049         Module strtol.
53050         * m4/strtol.m4: New file.
53051
53052         Module strtoul.
53053         * m4/strtoul.m4: New file.
53054
53055         Module memchr.
53056         * m4/memchr.m4: New file.
53057
53058         Module memcmp.
53059         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
53060         (jm_FUNC_MEMCMP): Invoke it.
53061
53062         Module memcpy.
53063         * m4/memcpy.m4: New file.
53064
53065         Module memmove.
53066         * m4/memmove.m4: New file.
53067
53068         Module memset.
53069         * m4/memset.m4: New file.
53070
53071         Module strcspn.
53072         * m4/strcspn.m4: New file.
53073
53074         Module strpbrk.
53075         * m4/strpbrk.m4: New file.
53076
53077         Module strstr.
53078         * m4/strstr.m4: New file.
53079
53080         Module strerror.
53081         * m4/strerror.m4: New file.
53082
53083         Module mktime.
53084         * m4/mktime.m4: Renamed from jm-mktime.m4.
53085         (gl_PREREQ_MKTIME): New macro.
53086         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
53087
53088         Module malloc.
53089         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
53090         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
53091         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
53092
53093         Module realloc.
53094         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
53095         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
53096         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
53097
53098         Module strftime.
53099         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
53100         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
53101         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
53102         gl_TM_GMTOFF.
53103         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
53104
53105         Module xalloc.
53106         * m4/xalloc.m4: New file.
53107
53108         Module alloca.
53109         * m4/alloca.m4: New file.
53110
53111         Module putenv.
53112         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
53113         (jm_FUNC_PUTENV): Invoke it.
53114
53115         Module setenv.
53116         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
53117         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
53118         when invoked twice.
53119         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
53120         gt_FUNC_SETENV.
53121
53122         Module memrchr.
53123         * m4/memrchr.m4: New file.
53124
53125         Module stpcpy.
53126         * m4/stpcpy.m4: New file.
53127
53128         Module strcase.
53129         * m4/strcase.m4: New file.
53130
53131         Module strdup.
53132         * m4/strdup.m4: New file.
53133
53134         Module strnlen.
53135         * m4/strnlen.m4: New file.
53136
53137         Module strndup.
53138         * m4/strndup.m4: New file.
53139
53140         Module xstrtod.
53141         * m4/xstrtod.m4: New file.
53142
53143         Module xstrtol.
53144         * m4/xstrtol.m4: New file.
53145
53146         Module getdate.
53147         * m4/getdate.m4: New file.
53148
53149         Module unlocked-io.
53150         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
53151         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
53152         * m4/jm-glibc-io.m4n: Remove file.
53153
53154         Module long-options.
53155         * m4/long-options.m4: New file.
53156
53157         Module md5.
53158         * m4/md5.m4: New file.
53159
53160         Module sha.
53161         * m4/sha.m4: New file.
53162
53163         Module getstr.
53164         * m4/getstr.m4: New file.
53165
53166         Module getline.
53167         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
53168         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
53169         <sys/types.h>, for size_t. Use the function name gnu_getline, not
53170         simply getline. Infoke gl_PREREQ_GETLINE.
53171
53172         Module obstack.
53173         * m4/obstack.m4: New file.
53174
53175         Module hash.
53176         * m4/hash.m4: New file.
53177
53178         Module readtokens.
53179         * m4/readtokens.m4: New file.
53180
53181         Module strverscmp.
53182         * m4/strverscmp.m4: New file.
53183
53184         Module stdbool.
53185         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
53186         OSF/1.
53187
53188         Module strtoll.
53189         * m4/strtoll.m4: New file.
53190
53191         Module strtoull.
53192         * m4/strtoull.m4: New file.
53193
53194         Module strtoimax.
53195         * m4/strtoimax.m4: New file.
53196
53197         Module strtoumax.
53198         * m4/strtoumax.m4: New file.
53199
53200         Module xstrtoimax.
53201         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
53202         jm_AC_PREREQ_XSTRTOIMAX.
53203         Moved the strtol prerequisites to strtol.m4.
53204         Moved the strtoll prerequisites to strtoll.m4.
53205         Moved the strtoimax prerequisites to strtoimax.m4.
53206
53207         Module xstrtoumax.
53208         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
53209         jm_AC_PREREQ_XSTRTOUMAX.
53210         Moved the strtoul prerequisites to strtoul.m4.
53211         Moved the strtoull prerequisites to strtoull.m4.
53212         Moved the strtoumax prerequisites to strtoumax.m4.
53213
53214         Module chown.
53215         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
53216         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
53217
53218         Module dup2.
53219         * m4/dup2.m4: New file.
53220
53221         Module ftruncate.
53222         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
53223         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
53224
53225         Module getgroups.
53226         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
53227         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
53228
53229         Module gettimeofday.
53230         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
53231         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
53232         gl_PREREQ_GETTIMEOFDAY.
53233
53234         Module mkdir.
53235         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
53236         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
53237
53238         Module mkstemp.
53239         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
53240         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
53241         jm_AC_TYPE_UINTMAX_T.
53242         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
53243
53244         Module stat.
53245         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
53246         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
53247
53248         Module lstat.
53249         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
53250         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
53251
53252         Module timespec.
53253         * m4/timespec.m4 (gl_TIMESPEC): New macro.
53254         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
53255         * m4/st_mtim.m4: Indentation.
53256
53257         Module nanosleep.
53258         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
53259         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
53260         gl_PREREQ_NANOSLEEP.
53261
53262         Module regex.
53263         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
53264         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
53265         (gl_REGEX): New macro.
53266
53267         Module rename.
53268         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
53269         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
53270
53271         Module rmdir.
53272         * m4/rmdir.m4: New file.
53273
53274         Module utime.
53275         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
53276         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
53277         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
53278
53279         Module dirname.
53280         * m4/dirname.m4: New file.
53281
53282         Module getopt.
53283         * m4/getopt.m4: New file.
53284
53285         Module unistd-safer.
53286         * m4/unistd-safer.m4: New file.
53287
53288         Module fnmatch.
53289         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
53290         declaration.
53291         (gl_PREREQ_FNMATCH_EXTRA): New macro.
53292         (gl_FUNC_FNMATCH_POSIX): New macro.
53293         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
53294         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
53295         simply fnmatch.
53296
53297         Module exclude.
53298         * m4/exclude.m4: New file.
53299
53300         Module human.
53301         * m4/human.m4: New file.
53302
53303         Module acl.
53304         * m4/acl.m4: Nop.
53305
53306         Module backupfile.
53307         * m4/backupfile.m4: New file.
53308         * m4/d-ino.m4: Indentation.
53309
53310         Module fsusage.
53311         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
53312         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
53313         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
53314
53315         Module dirfd.
53316         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
53317         requirements.
53318
53319         Module euidaccess.
53320         * m4/euidaccess.m4: New file.
53321
53322         Module file-type.
53323         * m4/file-type.m4: New file.
53324
53325         Module fileblocks.
53326         * m4/fileblocks.m4: New file.
53327
53328         Module filemode.
53329         * m4/filemode.m4: New file.
53330
53331         Module isdir.
53332         * m4/isdir.m4: New file.
53333
53334         Module lchown.
53335         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
53336         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
53337
53338         Module makepath.
53339         * m4/makepath.m4: New file.
53340
53341         Module modechange.
53342         * m4/modechange.m4: New file.
53343
53344         Module mountlist.
53345         * m4/mountlist.m4: New file.
53346         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
53347         Indentation.
53348
53349         Module path-concat.
53350         * m4/path-concat.m4: New file.
53351
53352         Module pathmax.
53353         * m4/pathmax.m4: New file.
53354
53355         Module same.
53356         * m4/same.m4: New file.
53357
53358         Module save-cwd.
53359         * m4/save-cwd.m4: New file.
53360
53361         Module savedir.
53362         * m4/savedir.m4: New file.
53363
53364         Module xgetcwd.
53365         * m4/xgetcwd.m4: New file.
53366         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
53367
53368         Module xreadlink.
53369         * m4/xreadlink.m4: New file.
53370
53371         Module safe-read.
53372         * m4/safe-read.m4: New file.
53373
53374         Module safe-write.
53375         * m4/safe-write.m4: New file.
53376
53377         Module closeout.
53378         * m4/closeout.m4: New file.
53379
53380         Module stdio-safer.
53381         * m4/stdio-safer.m4: New file.
53382
53383         Module getpass.
53384         * m4/getpass.m4: New file.
53385
53386         Module getugroups.
53387         * m4/getugroups.m4: New file.
53388
53389         Module group-member.
53390         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
53391         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
53392
53393         Module idcache.
53394         * m4/idcache.m4: New file.
53395
53396         Module userspec.
53397         * m4/userspec.m4: New file.
53398
53399         Module gettime.
53400         * m4/clock_time.m4: New file.
53401         * m4/gettime.m4: New file.
53402
53403         Module settime.
53404         * m4/settime.m4: New file.
53405
53406         Module posixtm.
53407         * m4/posixtm.m4: New file.
53408
53409         Module gethostname.
53410         * m4/gethostname.m4: New file.
53411
53412         Module canon-host.
53413         * m4/canon-host.m4: New file.
53414
53415         Module gettext.
53416         * m4/codeset.m4: New file, from gettext-0.11.5.
53417         * m4/gettext.m4: New file, from gettext-0.11.5.
53418         * m4/glibc21.m4: New file, from gettext-0.11.5.
53419         * m4/iconv.m4: New file, from gettext-0.11.5.
53420         * m4/intdiv0.m4: New file, from gettext-0.11.5.
53421         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
53422         * m4/inttypes.m4: New file, from gettext-0.11.5.
53423         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
53424         * m4/isc-posix.m4: New file, from gettext-0.11.5.
53425         * m4/lcmessage.m4: New file, from gettext-0.11.5.
53426         * m4/lib-ld.m4: New file, from gettext-0.11.5.
53427         * m4/lib-link.m4: New file, from gettext-0.11.5.
53428         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
53429         * m4/progtest.m4: New file, from gettext-0.11.5.
53430         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
53431         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
53432         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
53433
53434         Module localcharset.
53435         * m4/localcharset.m4: New file.
53436
53437         Module hard-locale.
53438         * m4/hard-locale.m4: New file.
53439
53440         Module mbswidth.
53441         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
53442         onceonly macros.
53443         * m4/mbrtowc.m4: Add comment.
53444
53445         Module memcasecmp.
53446         * m4/memcasecmp.m4: New file.
53447
53448         Module memcoll.
53449         * m4/memcoll.m4: New file.
53450
53451         Module unicodeio.
53452         * m4/unicodeio.m4: New file.
53453
53454         Module rpmatch.
53455         * m4/rpmatch.m4: New file.
53456
53457         Module yesno.
53458         * m4/yesno.m4: New file.
53459
53460         Module exitfail.
53461         * m4/exitfail.m4: New file.
53462
53463         Module c-stack.
53464         * m4/c-stack.m4 (gl_C_STACK): New macro.
53465         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
53466
53467         Module error.
53468         * m4/error.m4 (gl_ERROR): New macro.
53469         (jm_PREREQ_ERROR): Use onceonly macros.
53470
53471         Module fatal.
53472         * m4/fatal.m4: New file.
53473
53474         Module getloadavg.
53475         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
53476         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
53477
53478         Module getpagesize.
53479         * m4/getpagesize.m4: New file.
53480
53481         Module getusershell.
53482         * m4/getusershell.m4: New file.
53483
53484         Module physmem.
53485         * m4/physmem.m4: New file.
53486
53487         Module posixver.
53488         * m4/posixver.m4: New file.
53489
53490         Module quotearg.
53491         * m4/quotearg.m4: New file.
53492
53493         Module quote.
53494         * m4/quote.m4: New file.
53495
53496         Module readutmp.
53497         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
53498
53499         Module sig2str.
53500         * m4/sig2str.m4: New file.
53501
53502         Other.
53503         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
53504         ulonglong.m4.
53505         * m4/intmax_t.m4: New file.
53506         * m4/d-type.m4: Indentation.
53507         * m4/jm-macros.m4: Update.
53508         * m4/prereq.m4 (jm_PREREQ): Update.
53509         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
53510         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
53511         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
53512         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
53513         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
53514         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
53515         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
53516         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
53517         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
53518         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
53519         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
53520         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
53521         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
53522         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
53523         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
53524         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
53525         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
53526         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
53527         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
53528
53529 2002-12-24  Bruno Haible  <bruno@clisp.org>
53530
53531         * MODULES.txt: Update according to m4/ changes.
53532
53533         Module gettext.
53534         * config.rpath: New file, from gettext-0.11.5.
53535
53536         * modules/*: New module descriptions.
53537         * gnulib-tool: New file.
53538         * MODULES.html.sh: New file.
53539
53540 2002-12-21  Karl Berry  <karl@gnu.org>
53541
53542         * doc/fdl.texi: update to version 1.2.
53543
53544 2002-12-19  Karl Berry  <karl@gnu.org>
53545
53546         * config/config.guess: update from prep.
53547
53548 2002-12-18  Bruno Haible  <bruno@clisp.org>
53549
53550         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
53551         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
53552
53553 2002-12-17  Bruno Haible  <bruno@clisp.org>
53554
53555         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
53556         stdlib.h, string.h.
53557
53558 2002-12-17  Bruno Haible  <bruno@clisp.org>
53559
53560         * lib/canon-host.c (strdup): Remove unused declaration.
53561
53562         * lib/fsusage.c: Include full_read.h.
53563         (get_fs_usage): Use full_read instead of safe_read.
53564
53565         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
53566
53567 2002-12-12  Karl Berry  <karl@gnu.org>
53568
53569         * config/config.guess: update from prep.
53570
53571 2002-12-11  Bruno Haible  <bruno@clisp.org>
53572
53573         * m4/setenv.m4: New file, from gettext-0.11.5.
53574
53575 2002-12-11  Bruno Haible  <bruno@clisp.org>
53576
53577         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
53578         not unsetenv().
53579         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
53580         modifications:
53581
53582         2002-12-11  Bruno Haible  <bruno@clisp.org>
53583
53584                 * setenv.c (alloca): Fall back to malloc.
53585                 (freea): New macro.
53586                 (setenv): Use freea() to free memory allocated with alloca().
53587
53588         2002-11-13  Bruno Haible  <bruno@clisp.org>
53589
53590                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
53591                 function declarations.
53592                 * unsetenv.c (unsetenv): Likewise.
53593
53594         2002-03-04  Bruno Haible  <bruno@clisp.org>
53595
53596                 Portability to AIX 4.3.3.
53597                 * unsetenv.c: New file, extracted from setenv.c.
53598                 * setenv.c: Move the unsetenv() function to unsetenv.c.
53599
53600         2001-12-20  Bruno Haible  <bruno@clisp.org>
53601
53602                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
53603                 use malloc instead. For SunOS 4.
53604
53605         2001-12-11  Bruno Haible  <bruno@clisp.org>
53606
53607                 * setenv.c: Declare alloca.
53608                 (compar_fn_t): New typedef.
53609                 (KNOWN_VALUE, STORE_VALUE): Use it.
53610
53611         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
53612         setenv.h.
53613
53614 2002-12-10  Paul Eggert  <eggert@twinsun.com>
53615
53616         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
53617         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
53618         Choose values that are less likely to collide with system fnmatch
53619         options.
53620         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
53621         defined (e.g., a pure POSIX system).
53622         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
53623         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
53624
53625 2002-12-06  Paul Eggert  <eggert@twinsun.com>
53626
53627         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
53628         a pain in practice to deal with generated m4 files.  This change
53629         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
53630
53631         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
53632         and jm-glibc-io.m4, as they are no longer a special case.
53633         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
53634         kludge and the auto-generation stuff.  Check only whether the
53635         functions are declared, not whether they exist, since older hosts
53636         that don't declare the functions can't use the optimization anyway.
53637
53638 2002-12-06  Jim Meyering  <jim@meyering.net>
53639
53640         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
53641
53642         Merge in changes from libc's misc/error.c, in preparation
53643         for the merge of gnulib's changes back into libc.
53644
53645         * lib/error.c (_): Define only if not already defined.
53646         Move definition to follow all #include directives.
53647         Include unlocked-io.h only if !_LIBC.
53648         [_LIBC]: Include <libio/libioP.h>.
53649         [USE_IN_LIBIO]: Include <libio/iolibio.h>
53650         (fflush): Tweak definition to use INTUSE.
53651         (putc): Define.
53652
53653 2002-12-05  Paul Eggert  <eggert@twinsun.com>
53654
53655         * lib/alloca.c [defined emacs]: Include "lisp.h".
53656         (xalloc_die) [defined emacs]: New macro.
53657         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
53658         [! defined emacs]: Include <xalloc.h>.
53659         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
53660         (pointer): Typedef to POINTER_TYPE *.
53661         (malloc): Remove decl; we now always use xmalloc.
53662         (alloca): Use old-style definition, since Emacs needs this.
53663         Check for arithmetic overflow when computing combined size.
53664
53665 2002-12-04  Paul Eggert  <eggert@twinsun.com>
53666
53667         Do not generate unlocked-io.h automatically, since it's easier to
53668         maintain it by hand.
53669
53670         * lib/unlocked-io.h: New file, from GNU diffutils,
53671         but with proper copyright notice and attribution.
53672         * lib/gen-uio: Remove.
53673         * lib/Makefile.am: Add copyright notice.
53674         (libfetish_a_SOURCES): Add unlocked-io.h.
53675         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
53676         (DISTCLEANFILES, io_functions): Remove macros.
53677         (EXTRA_DIST): Remove gen_uio.
53678         (unlocked-io.h): Remove rule.
53679
53680 2002-12-04  Jim Meyering  <jim@meyering.net>
53681
53682         Reflect the fact that stat.c and lstat.c are no longer generated.
53683         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
53684         (DISTCLEANFILES): Likewise.
53685         (EXTRA_DIST): Likewise.
53686         (all_local): Don't depend on stat.c or lstat.c.
53687         (stat.c, lstat.c): Remove rules.
53688         (EXTRA_DIST): Remove xstat.in.
53689
53690         * lib/xstat.in: Remove file.  Contents moved into stat.c.
53691         * lib/stat.c: New file.  Contents mostly from xstat.in.
53692         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
53693         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
53694
53695         * lib/safe-read.c: Rework so that it may serve to define safe_write,
53696         too.
53697         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
53698
53699 2002-12-03  Jim Meyering  <jim@meyering.net>
53700
53701         * lib/safe-read.c, safe-write.c: Change variable names and comments,
53702         but not semantics, to minimize the differences between these two files.
53703         (safe_read): Change comment to mention SAFE_READ_ERROR.
53704
53705         * lib/safe-read.c (IS_EINTR): Define.
53706         (safe_read): Use IS_EINTR in place of in-function cpp directives.
53707
53708 2002-12-02  Jim Meyering  <jim@meyering.net>
53709
53710         * lib/safe-read.c (EINTR): Define.
53711         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
53712         (INT_MAX): Provide fallback.
53713         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
53714
53715         * lib/safe-read.h (SAFE_READ_ERROR): Define.
53716
53717 2002-12-02  Bruno Haible  <bruno@clisp.org>
53718
53719         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
53720         Define, taken from safe-read.c.
53721         (INT_MAX): Provide fallback.
53722         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
53723         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
53724
53725         * lib/safe-read.c (EINTR): Remove definition.
53726         (safe_read): Don't use EINTR if it is absent.
53727
53728 2002-12-01  Jim Meyering  <jim@meyering.net>
53729
53730         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
53731         zero.
53732         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
53733
53734 2002-11-27  Paul Eggert  <eggert@twinsun.com>
53735
53736         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
53737         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
53738         with `if (! (value < limit)) abort ();', for readability.
53739
53740 2002-11-26  Karl Berry  <karl@gnu.org>
53741
53742         * lib/strdup.c: copy from libc again, with jim's ok.
53743         * lib/.cppi-disable: re-add strdup.c
53744
53745 2002-11-25  Karl Berry  <karl@gnu.org>
53746
53747         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
53748         instead of "strtol.c".
53749
53750 2002-11-25  Karl Berry  <karl@gnu.org>
53751
53752         * config/install-sh: update from automake for variable quoting, $0 in
53753         error msgs, etc.
53754
53755         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
53756         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
53757         entry.
53758
53759 2002-11-25  Jim Meyering  <jim@meyering.net>
53760
53761         * lib/mktime.c: Sync from libc, now that it has the latest fix.
53762
53763 2002-11-24  Karl Berry  <karl@gnu.org>
53764
53765         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
53766         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
53767
53768 2002-11-24  Jim Meyering  <jim@meyering.net>
53769
53770         Update from coreutils:
53771
53772         * lib/mktime.c: Merge in changes from libc.
53773
53774         Avoid a link-time failure on some Linux systems.
53775         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
53776         (otherwise).
53777         (__mon_yday): Declare with the STATIC attribute.
53778         (__mktime_internal): Likewise.
53779         Based on a report from Greg Schafer.
53780
53781 2002-11-23  Jim Meyering  <jim@meyering.net>
53782
53783         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
53784         Use `unsigned', not `int', as type of index.
53785
53786         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
53787
53788         * lib/fsusage.c: Remove unneeded parentheses around operands of
53789         `defined'.
53790
53791 2002-11-22  Paul Eggert  <eggert@twinsun.com>
53792
53793         * lib/quotearg.h: Allow multiple inclusion by surrounding with
53794         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
53795         so that we can be included first.
53796         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
53797         * lib/quotearg.c: Include quotearg.h immediately after config.h.
53798         No need to include stddef.h or sys/types.h any more.
53799         Surround local include files with "", not "<>".
53800         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
53801         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
53802         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
53803         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
53804         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
53805         (ISPRINT): Remove; no longer needed now that we assume C89.
53806
53807         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
53808         Preserve errno.
53809
53810         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
53811         quotearg_char): Use SIZE_MAX rather than
53812         (size_t) -1 when we are talking about "infinity".
53813
53814         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
53815
53816 2002-11-22  Paul Eggert  <eggert@twinsun.com>
53817
53818         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
53819         hint that one should use `if (! x) abort ();' rather than `assert
53820         (x);', and anyway it's one less thing to worry about configuring.
53821         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
53822         hash_rehash, hash_insert): Use abort rather than assert.
53823
53824 2002-11-22  Bruno Haible  <bruno@clisp.org>
53825
53826         * lib/safe-read.h: Assume C89. Add comments.
53827         (safe_read): Change return type to size_t.
53828         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
53829         byte counts > SSIZE_MAX correctly.
53830         * lib/safe-write.h: New file.
53831         * lib/safe-write.c: New file.
53832         * lib/full-read.h: New file.
53833         * lib/full-read.c: New file.
53834         * lib/full-write.h: Assume C89. Add comments.
53835         * lib/full-write.c: Include safe-write.h.
53836         (full_write): Rewritten to use safe_write.
53837         Suggested by Jim Meyering and Paul Eggert.
53838
53839 2002-11-21  Jim Meyering  <jim@meyering.net>
53840
53841         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
53842
53843         Merge in changes from the coreutils.
53844
53845         2002-09-25  Paul Eggert  <eggert@twinsun.com>
53846         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
53847         <stdint.h>.
53848         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
53849         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
53850         int.  Work more efficiently if X is the same width as uintmax_t.
53851         Do not compare X to -1, to avoid bogus compiler warning.
53852         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
53853         Don't assume that f_frsize and f_bsize are the same type.
53854
53855         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
53856         warning on FreeBSD.
53857
53858         * lib/makepath.c (make_path): Restore umask *before* creating the final
53859         component.
53860         (make_path): Minor reformatting.
53861
53862         * lib/xmalloc.c: Adjust to work with new autoconf macros,
53863         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
53864         HAVE_MALLOC/HAVE_REALLOC.
53865
53866         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
53867         dummy ones.  At least on GNU/Linux systems, `auto' means something
53868         else.
53869         From Michael Stone.
53870
53871 2002-11-21  Bruno Haible  <bruno@clisp.org>
53872
53873         Remove case insensitive option matching.
53874         * lib/argmatch.h (argcasematch): Remove declaration.
53875         (ARGCASEMATCH): Remove macro.
53876         (__xargmatch_internal): Remove case_sensitive argument.
53877         (XARGMATCH): Update.
53878         (XARGCASEMATCH): Remove macro.
53879         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
53880         case_sensitive argument.
53881         (argcasematch): Remove function.
53882         (__xargmatch_internal): Remove case_sensitive argument.
53883         (main): Use XARGMATCH instead of XARGCASEMATCH.
53884
53885         * lib/xmalloc.c: Change compile-time error message. Add comment about
53886         required autoconf version.
53887
53888 2002-11-20  Paul Eggert  <eggert@twinsun.com>
53889
53890         Merge argmatch cleanups from Bison.  Assume C89.
53891
53892         * lib/argmatch.c: Include config.h here, not in argmatch.h.
53893         Include stdlib.h, for EXIT_FAILURE.
53894         Always include <string.h>, since we assume C89.
53895         (EXIT_FAILURE): Remove pre-C89 bug workaround.
53896         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
53897         Include <stddef.h> instead, since it's all we need for size_t.
53898         (PARAMS): Remove.  All uses removed.
53899         (ARRAY_CARDINALITY): Do not bother to #undef.
53900         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
53901         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
53902         Remove unnecessary parentheses.
53903         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
53904         Insert necessary parentheses.
53905         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
53906         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
53907
53908 2002-11-19  Bruno Haible  <bruno@clisp.org>
53909
53910         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
53911         * lib/mbswidth.h: Include <stddef.h>, for size_t.
53912
53913         * lib/mbswidth.h (PARAMS): Remove macro.
53914         (mbswidth, mbsnwidth): Use ANSI C function declarations.
53915         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
53916
53917         * lib/gcd.h (PARAMS): Remove macro.
53918         (gcd): Use ANSI C function declarations.
53919         * lib/gcd.c (gcd): Likewise.
53920
53921 2002-11-15  Bruno Haible  <bruno@clisp.org>
53922
53923         * lib/strcspn.c: Include <stddef.h>.
53924         (strcspn): Use ANSI C function declaration. Change return type to
53925         size_t. Use NULL.
53926         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
53927         (strpbrk): Use NULL.
53928         * lib/strpbrk.h (PARAMS): Remove macro.
53929         (strpbrk): Use ANSI C function declaration.
53930         * lib/strstr.c: Don't include <sys/types.h>.
53931         * lib/strstr.h (PARAMS): Remove macro.
53932         (strstr): Use ANSI C function declarations.
53933
53934 2002-11-14  Karl Berry  <karl@gnu.org>
53935
53936         * config/mkinstalldirs: `do' on separate line, instead of
53937         `for var; do'.
53938
53939 2002-11-06  Bruno Haible  <bruno@clisp.org>
53940
53941         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
53942         * lib/gcd.c (gcd): Likewise.
53943
53944 2002-11-05  Bruno Haible  <bruno@clisp.org>
53945
53946         * lib/gcd.h: New file, from gettext-0.11.5.
53947         * lib/gcd.c: New file, from gettext-0.11.5.
53948
53949 2002-11-05  Bruno Haible  <bruno@clisp.org>
53950
53951         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
53952         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
53953         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
53954         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
53955
53956         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
53957         <libintl.h>.
53958         * lib/makepath.c: Include gettext.h instead of <locale.h> and
53959         <libintl.h>.
53960
53961         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
53962         * lib/human.c: Include gettext.h instead of <libintl.h>.
53963         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
53964         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
53965         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
53966         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
53967         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
53968         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
53969         (textdomain): Remove definition.
53970         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
53971
53972         * lib/long-options.c: Remove include of <libintl.h> and definition of
53973         _.
53974         * lib/same.c: Remove include of <libintl.h> and definition of _.
53975
53976 2002-11-04  Owen Taylor  <otaylor@redhat.com>
53977
53978         * lib/config.charset: A few additions for Solaris.
53979
53980 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
53981
53982         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
53983         * lib/localcharset.c (locale_charset): Declare as extern "C".
53984
53985 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
53986
53987         * lib/config.charset: msdos in uk_UA uses CP1125.
53988
53989 2002-11-04  Bruno Haible  <bruno@clisp.org>
53990
53991         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
53992         * lib/strcase.h: New file, from GNU gettext-0.11.5.
53993         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
53994         * lib/strstr.h: New file, from GNU gettext-0.11.5.
53995         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
53996
53997 2002-11-04  Bruno Haible  <bruno@clisp.org>
53998
53999         * lib/localcharset.c (locale_charset): Don't return an empty string.
54000
54001 2002-11-04  Bruno Haible  <bruno@clisp.org>
54002
54003         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
54004         aliases.
54005
54006 2002-11-04  Bruno Haible  <bruno@clisp.org>
54007
54008         * lib/config.charset: Update for newest glibc. Add canonical names
54009         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
54010
54011 2002-11-04  Bruno Haible  <bruno@clisp.org>
54012
54013         * lib/config.charset: Add support for NetBSD.
54014
54015 2002-11-04  Bruno Haible  <bruno@clisp.org>
54016
54017         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
54018
54019 2002-11-01  Bruno Haible  <bruno@clisp.org>
54020
54021         * configure.in: Add AC_CONFIG_AUX_DIR call.
54022         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
54023         test/Makefile.
54024         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
54025
54026 2002-09-28  Karl Berry  <karl@gnu.org>
54027
54028         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
54029         installed automake until the next release, since changes have been
54030         made.
54031
54032 2002-09-25  Karl Berry  <karl@gnu.org>
54033
54034         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
54035         * lib/getopt*: copy from libc/posix.
54036         * lib/gettext.h: copy from gettext.
54037         * lib/.cppi-disable: add strdup.c, gettext.h.
54038
54039 2002-09-25  Karl Berry  <karl@gnu.org>
54040
54041         * config/srclist.txt: enable gettext.h check.
54042         * config/config.{guess,sub}: update from prep.
54043         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
54044                 from automake 1.6.3.
54045         See srclist*.
54046
54047 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
54048
54049         * regex.c (PATFETCH): Remove the translating fetch.
54050         (PATFETCH_RAW): Rename to PATFETCH.
54051         (set_image_of_range): New fun.
54052         (SET_RANGE_TABLE_WORK_AREA): Use it.
54053         (regex_compile): Don't translate the pattern chars so eagerly.
54054         Only do it when inserting an `exactn' bytecode or when handling
54055         a char-range.
54056         (mutually_exclusive_p): Avoid empty statement.
54057
54058 2002-07-06  Jim Meyering  <meyering@lucent.com>
54059
54060         * m4/README: Don't mention Makefile.am.in.
54061         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
54062
54063 2002-07-01  Jim Meyering  <meyering@lucent.com>
54064
54065         * lib/c-stack.c: Include sys/time.h.
54066         From Volker Borchert.
54067
54068 2002-06-26  Paul Eggert  <eggert@twinsun.com>
54069
54070         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
54071
54072 2002-06-26  Paul Eggert  <eggert@twinsun.com>
54073
54074         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
54075         New macro.  Use it uniformly instead of
54076         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
54077         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
54078         reported by Vin Shelton.
54079
54080 2002-06-22  Paul Eggert  <eggert@twinsun.com>
54081
54082         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
54083         Do not assume SA_SIGINFO behavior.
54084         Bug reported by Jim Meyering on NetBSD 1.5.2.
54085
54086 2002-06-22  Jim Meyering  <meyering@lucent.com>
54087
54088         * m4/c-stack.m4: New file, from diffutils-2.8.2.
54089         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
54090
54091         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
54092         now that configure.ac uses AC_GNU_SOURCE.
54093         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
54094         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
54095
54096         Update to latest tools.  Suggestions from Paul Eggert.
54097         * m4/stdbool.m4: New file, from diffutils-2.8.2.
54098         * m4/gnu-source.m4: Update from diffutils-2.8.2.
54099         * m4/fnmatch.m4: Likewise.
54100         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
54101         to AC_HEADER_STDBOOL
54102
54103 2002-06-22  Jim Meyering  <meyering@lucent.com>
54104
54105         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
54106         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
54107
54108 2002-06-22  Jim Meyering  <meyering@lucent.com>
54109
54110         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
54111
54112         * lib/exitfail.c, exitfail.h: Likewise.
54113         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
54114
54115         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
54116         of fnmatch.h.
54117         (EXTRA_DIST): Add fnmatch_loop.c.
54118         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
54119
54120         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
54121         * lib/fnmatch.c: Update from diffutils-2.8.2.
54122         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
54123         * lib/fnmatch.h: Remove file.
54124
54125 2002-06-21  Jim Meyering  <meyering@lucent.com>
54126
54127         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
54128         * m4/mbrtowc.m4: Likewise.
54129
54130         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
54131         * m4/mbswidth.m4: Reflect name change:
54132         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
54133         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
54134
54135         * m4/lib-link.m4: Update from gettext-0.11.2.
54136         * m4/gettext.m4: Likewise.
54137
54138         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
54139         From Alfred M. Szmidt.
54140
54141 2002-06-18  Paul Eggert  <eggert@twinsun.com>
54142
54143         * lib/file-type.h: Report an error if neither S_ISREG nor
54144         S_IFREG is defined, instead of using a test specific to glibc
54145         2.2.  This should be safe, since POSIX requires S_ISREG and
54146         Unix Version 7 had S_IFREG.  We don't need to check for
54147         <sys/types.h> since we don't use any symbols that it defines.
54148
54149 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
54150
54151         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
54152         $@-t, so that each temporary file name is unique and valid in the first
54153         8 characters, for operation under DOS.
54154
54155 2002-06-15  Paul Eggert  <eggert@twinsun.com>
54156
54157         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
54158
54159 2002-06-15  Jim Meyering  <meyering@lucent.com>
54160
54161         Work even with DJGPP 2.03, which lacks support for symlinks.
54162         From Richard Dawe.
54163         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
54164         is defined.
54165         * lib/lchown.c (S_ISLNK): Likewise.
54166
54167 2002-06-15  Jim Meyering  <meyering@lucent.com>
54168
54169         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
54170         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
54171         have been included before this file.
54172
54173 2002-06-14  Jim Meyering  <meyering@lucent.com>
54174
54175         * lib/file-type.h: Use the version from diffutils-2.8.2.
54176         * lib/file-type.c: Likewise.
54177
54178 2002-06-07  Jim Meyering  <meyering@lucent.com>
54179
54180         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
54181         They're needed at least for NetBSD 1.5.2.
54182         ($statxfs_includes): Include those same headers.
54183         ($statxfs_includes): Include sys/vfs.h if available.
54184         ($statxfs_includes): Likewise for sys/statvfs.h.
54185         Check for the following members in both structs statfs and statvfs:
54186         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
54187
54188 2002-06-01  Jim Meyering  <meyering@lucent.com>
54189
54190         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
54191         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
54192
54193 2002-05-28  Jim Meyering  <meyering@lucent.com>
54194
54195         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
54196         Reported by Volker Borchert.
54197
54198 2002-05-27  Jim Meyering  <meyering@lucent.com>
54199
54200         Fix a problem seen only on nonconforming systems whereby ls.c's
54201         use of localtime, and then of gettimeofday would cause trouble:
54202         the localtime call used to initialize rpl_gettimeofday's save
54203         mechanism would clobber ls's current local time information so
54204         that in any long listing the first file would always be listed
54205         with date 1970-01-01.  Analysis by Volker Borchert.
54206
54207         * lib/gettimeofday.c (localtime): Undefine.
54208         (rpl_localtime): New function.
54209
54210 2002-05-27  Jim Meyering  <meyering@lucent.com>
54211
54212         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
54213         localtime.
54214
54215         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
54216         use the replacement function; it wouldn't resolve at link time.
54217         Reported by Volker Borchert.
54218
54219 2002-05-22  Jim Meyering  <meyering@lucent.com>
54220
54221         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
54222         file-type.h.
54223         * lib/file-type.h: New file.
54224         * lib/file-type.c (file_type): New file/function.  Extracted from
54225         diffutils.
54226
54227 2002-04-30  Jim Meyering  <meyering@lucent.com>
54228
54229         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
54230
54231 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54232
54233         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
54234
54235 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54236
54237         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
54238         Do not check for alloca.h (no longer used) or stdbool.h (was never
54239         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
54240
54241 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54242
54243         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
54244
54245 2002-04-29  Jim Meyering  <meyering@lucent.com>
54246
54247         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
54248         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
54249         Use AC_FUNC_STRNLEN here instead.
54250
54251         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
54252         With autoconf-2.53a, it's part of AC_PROG_CC.
54253
54254 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54255
54256         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
54257         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
54258
54259 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54260
54261         * lib/sig2str.h, lib/sig2str.c: New files.
54262         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
54263
54264 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54265
54266         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
54267         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
54268         of 127, since 64 is the largest conceivable number for ancient
54269         nonstandard hosts.
54270         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
54271
54272 2002-04-28  Jim Meyering  <meyering@lucent.com>
54273
54274         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
54275
54276 2002-04-24  Jim Meyering  <meyering@lucent.com>
54277
54278         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
54279         (jm_PREREQ): Use it.
54280
54281         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
54282         mach/mach.h fcntl.h.
54283         Check for this function: setlocale.
54284
54285 2002-04-24  Jim Meyering  <meyering@lucent.com>
54286
54287         * lib/gettext.h: New file, from Gettext.
54288         * lib/Makefile.am (INCLUDES): Remove -I../intl.
54289         (libfetish_a_SOURCES): Add gettext.h.
54290
54291 2002-04-16  Jim Meyering  <meyering@lucent.com>
54292
54293         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
54294         ut_pid, ut_id, ut_exit.
54295
54296 2002-04-16  Jim Meyering  <meyering@lucent.com>
54297
54298         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
54299         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
54300         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
54301
54302 2002-04-12  Jim Meyering  <meyering@lucent.com>
54303
54304         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
54305         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
54306         existence of the getmntinfo function.  Needed for Darwin 5.3.
54307
54308         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
54309         This is necessary at least on Darwin 5.3.
54310
54311         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
54312         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
54313         strnlen.o in the library, and that makes some versions of ranlib
54314         object.
54315
54316 2002-04-12  Jim Meyering  <meyering@lucent.com>
54317
54318         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
54319
54320 2002-04-09  Jim Meyering  <meyering@lucent.com>
54321
54322         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
54323         to be more precise.  Rather than saying we're checking whether the
54324         function `works', say what we're testing.
54325         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
54326         Reported by Bruno Haible.
54327
54328 2002-03-10  Jim Meyering  <meyering@lucent.com>
54329
54330         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
54331         Suggestion from Santiago Vila.
54332
54333 2002-03-08  Jim Meyering  <meyering@lucent.com>
54334
54335         * lib/rename.c: Mention that this wrapper is needed also on
54336         mips-dec-ultrix4.4 systems.
54337
54338 2002-03-02  Jim Meyering  <meyering@lucent.com>
54339
54340         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
54341         not HAVE_CLOCK_SETTIME.
54342
54343 2002-02-27  Paul Eggert  <eggert@twinsun.com>
54344
54345         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
54346         Check for clock_settime.
54347
54348 2002-02-27  Paul Eggert  <eggert@twinsun.com>
54349
54350         * lib/nanosleep.h: Rename to....
54351         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
54352
54353         * lib/gettime.c: New file.
54354         * lib/settime.c: New file.
54355         * lib/stime.c: Remove.
54356
54357         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
54358         timespec.h.  Remove nanosleep.h.
54359
54360 2002-02-25  Paul Eggert  <eggert@twinsun.com>
54361
54362         * m4/acl.m4: New file.
54363         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
54364         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
54365
54366 2002-02-25  Paul Eggert  <eggert@twinsun.com>
54367
54368         * lib/acl.c, lib/acl.h: New files.
54369         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
54370
54371 2002-02-24  Jim Meyering  <meyering@lucent.com>
54372
54373         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
54374         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
54375         cause trouble.  Reported by Nelson Beebe.
54376
54377 2002-02-23  Paul Eggert  <eggert@twinsun.com>
54378
54379         * lib/path-concat.c (xpath_concat): Reorder code to pacify
54380         compilers that don't know that xalloc_die never returns.
54381
54382 2002-02-20  Jim Meyering  <meyering@lucent.com>
54383
54384         * lib/getdate.c: Regenerate using bison-1.33.
54385
54386 2002-02-17  Jim Meyering  <meyering@lucent.com>
54387
54388         * config/config.guess (main): Don't use `head -1'; it's no longer
54389         portable. Use `sed 1q' instead.
54390
54391 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
54392
54393         * m4/codeset.m4: Upgrade to gettext-0.11.
54394         * m4/gettext.m4: Upgrade to gettext-0.11.
54395         * m4/glibc21.m4: Upgrade to gettext-0.11.
54396         * m4/iconv.m4: Upgrade to gettext-0.11.
54397         * m4/isc-posix.m4: Upgrade to gettext-0.11.
54398         * m4/lcmessage.m4: Upgrade to gettext-0.11.
54399         * m4/lib-ld.m4: New file, from gettext-0.11.
54400         * m4/lib-link.m4: New file, from gettext-0.11.
54401         * m4/lib-prefix.m4: New file, from gettext-0.11.
54402         * m4/progtest.m4: Upgrade to gettext-0.11.
54403
54404 2002-02-15  Paul Eggert  <eggert@twinsun.com>
54405
54406         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
54407         (jm_PREREQ): Use it.
54408
54409 2002-02-15  Paul Eggert  <eggert@twinsun.com>
54410
54411         * lib/posixver.c, lib/posixver.h: New files.
54412         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
54413
54414 2002-02-02  Paul Eggert  <eggert@twinsun.com>
54415             Bruno Haible  <bruno@clisp.org>
54416
54417         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
54418         (fwrite_success_callback): New declaration.
54419         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
54420         print_unicode_char. Call failure callback instead of error.
54421         (fwrite_success_callback): New function.
54422         (exit_failure_callback): New function.
54423         (fallback_failure_callback): New function.
54424         (print_unicode_char): Call unicode_to_mb.
54425
54426 2002-01-26  Jim Meyering  <meyering@lucent.com>
54427
54428         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
54429         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
54430
54431 2002-01-26  Jim Meyering  <meyering@lucent.com>
54432
54433         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
54434
54435 2002-01-22  Paul Eggert  <eggert@twinsun.com>
54436
54437         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
54438
54439 2002-01-22  Jim Meyering  <meyering@lucent.com>
54440
54441         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
54442         Otherwise, some versions of automake would omit the rule that makes
54443         Makefile from Makefile.in.
54444
54445 2002-01-21  Paul Eggert  <eggert@twinsun.com>
54446
54447         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
54448         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
54449         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
54450         (memcoll): Set errno to zero if there is no error.
54451
54452         * lib/quotearg.c (quotearg_buffer_restyled):
54453         Fix bug with quoting buffers containing NUL when backslashing escapes.
54454         This bug was exposed by the other changes in this patch.
54455         (quotearg_n_options): New arg ARGSIZE.
54456         All callers changed.
54457         (quoting_options_from_style): New function.
54458         (quotearg_n_style): Use it.
54459         (quotearg_n_style_mem): New function.
54460
54461         * lib/quotearg.h (quotearg_n_style_mem): New function.
54462
54463 2002-01-19  Jim Meyering  <meyering@lucent.com>
54464
54465         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
54466         Remove useless quotes: DF_PROG="df".
54467         * m4/strnlen.m4: New file.
54468
54469 2002-01-16  Paul Eggert  <eggert@twinsun.com>
54470
54471         * lib/backupfile.c (ISDIGIT): Comment fix.
54472         * lib/getdate.y (ISDIGIT): Likewise.
54473         * lib/posixtm.c (ISDIGIT, year): Likewise.
54474         * lib/strverscmp.c (ISDIGIT): Likewise.
54475         * lib/userspec.c (ISDIGIT): Likewise.
54476
54477 2002-01-16  Jim Meyering  <meyering@lucent.com>
54478
54479         * lib/getdate.y: Add three semicolons, each just before a closing
54480         brace. Bison (as of version 1.31) no longer papers over that mistake.
54481
54482 2002-01-05  Jim Meyering  <meyering@lucent.com>
54483
54484         * lib/version-etc.c (version_etc_copyright): Update copyright year.
54485
54486 2001-12-19  Paul Eggert  <eggert@twinsun.com>
54487
54488         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
54489         not silently exit merely because the output buffer happens to
54490         have nothing pending.
54491
54492 2001-12-18  Paul Eggert  <eggert@twinsun.com>
54493
54494         See the big note in ../ChangeLog.
54495         * lib/human.c (suffixes): Prefer K to k for 1024.
54496         (generate_suffix_backwards): New function.
54497         (human_readable_inexact): Use it.
54498         * lib/xstrtol.c (__xstrtol): If there is no number but there
54499         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
54500         Accept 'K' as well as 'k'.
54501
54502 2001-12-15  Jim Meyering  <meyering@lucent.com>
54503
54504         * lib/regex.h (__restrict_arr): Update from libc.
54505
54506         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
54507         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
54508         (STREQ): Define.
54509
54510 2001-12-14  Jim Meyering  <meyering@lucent.com>
54511
54512         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
54513         Suggestion from Bruno Haible.
54514
54515 2001-12-10  Jim Meyering  <meyering@lucent.com>
54516
54517         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
54518         xrealloc, Instead, include "xalloc.h".
54519         (initbuffer): Don't cast xmalloc return value to char*.
54520         (readline): Reword comment.
54521         Don't cast xrealloc return value to char*
54522         Return NULL, not 0.
54523
54524 2001-12-09  Jim Meyering  <meyering@lucent.com>
54525
54526         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
54527         about `signed and unsigned type in conditional expression'.
54528         * lib/posixtm.c (posix_time_parse): Likewise.
54529
54530         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
54531
54532         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
54533         to avoid a pedantic warning.
54534
54535         * lib/getstr.c: Don't include assert.h.
54536         (getstr): Remove warning-evoking assertions.
54537         Return -1 if offset parameter is out of bounds.
54538         Change the type of a local from int to size_t.
54539
54540         * lib/strftime.c (my_strftime_localtime_r): Include this function
54541         definition in the `#if ! HAVE_TM_GMTOFF' block.
54542
54543         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
54544         Include xalloc.h instead.
54545
54546 2001-12-02  Jim Meyering  <meyering@lucent.com>
54547
54548         * lib/tempname.c: Don't declare getenv, thus reverting the change of
54549         2001-11-18.  It's no longer necessary, now that stdlib.h is always
54550         included.
54551
54552         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
54553         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
54554
54555 2001-11-30  Akim Demaille  <akim@epita.fr>
54556
54557         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
54558         before being defined.
54559
54560 2001-11-27  Paul Eggert  <eggert@twinsun.com>
54561
54562         * lib/quotearg.h (quotearg_n, quotearg_n_style):
54563         First arg is int, not unsigned.
54564         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
54565         (SIZE_MAX, UINT_MAX): New macros.
54566         (quotearg_n_options): Abort if N is negative.
54567         Avoid overflow check on hosts where size_t is 64 bits and int
54568         is 32 bits, as overflow is impossible there.
54569         Fix off-by-one typo that caused unnecessary reallocation.
54570
54571 2001-11-27  Jim Meyering  <meyering@lucent.com>
54572
54573         * lib/tempname.c: Merge with version from libc.
54574         * lib/regex.c: Likewise.
54575
54576         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
54577         systems for which STDC_HEADERS is 0, it was not included, resulting in
54578         a warning about an integer-to-pointer conversion problem with getenv.
54579         Reported by Volker Borchert.
54580
54581 2001-11-26  Jim Meyering  <meyering@lucent.com>
54582
54583         * lib/gtod.h: Remove file.
54584         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
54585         * lib/gettimeofday.c: Don't include gtod.h.
54586         (GTOD_init): Remove function.
54587         (rpl_gettimeofday): Do its job here instead, rather than aborting.
54588         Suggestion from Volker Borchert.
54589
54590 2001-11-23  Jim Meyering  <meyering@lucent.com>
54591
54592         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
54593         it.
54594         * lib/hash.c (struct hash_table): Define it here instead.
54595
54596 2001-11-22  Jim Meyering  <meyering@lucent.com>
54597
54598         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
54599
54600 2001-11-20  Jim Meyering  <meyering@lucent.com>
54601
54602         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
54603         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
54604
54605 2001-11-19  Jim Meyering  <meyering@lucent.com>
54606
54607         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
54608         directory.  Use "conftestXXXXXX" as the template.
54609         Suggestion from Paul Eggert.
54610
54611         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
54612         immediately, so the test doesn't mistakenly hit the max-open-files
54613         limit.
54614
54615 2001-11-18  Paul Eggert  <eggert@twinsun.com>
54616
54617         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
54618         (TEMPORARIES): New macro.
54619         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
54620         removes an artificial limitation (e.g. HP-UX 10.20, where
54621         TMP_MAX is 17576).
54622
54623 2001-11-18  Jim Meyering  <meyering@lucent.com>
54624
54625         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
54626
54627 2001-11-18  Jim Meyering  <meyering@lucent.com>
54628
54629         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
54630         on SunOS 4.
54631
54632         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
54633         files will be created before anything else.
54634
54635 2001-11-17  Paul Eggert  <eggert@twinsun.com>
54636
54637         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
54638         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
54639
54640 2001-11-17  Jim Meyering  <meyering@lucent.com>
54641
54642         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
54643         Prompted by a report from Bob Proulx.
54644
54645         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
54646         Instead, require UTILS_FUNC_MKSTEMP.
54647
54648 2001-11-17  Jim Meyering  <meyering@lucent.com>
54649
54650         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
54651         Now, that's done as part of AC_FUNC_STRTOD.
54652
54653 2001-11-17  Jim Meyering  <meyering@lucent.com>
54654
54655         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
54656         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
54657         rather than group writable.  Patch by Juan F. Codagnone.
54658
54659         * lib/readtokens.c: Remove explicit declarations of xmalloc and
54660         xrealloc, Instead, include "xalloc.h".
54661
54662         * lib/mountlist.c: Include unlocked-io.h after all system headers.
54663         Remove explicit declarations of xmalloc, xrealloc,
54664         and xstrdup.  Instead, include "xalloc.h".
54665
54666         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
54667         unlocked-io.h.
54668         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
54669         Likewise.
54670         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
54671
54672         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
54673         Reported by Padraig Brady.
54674
54675         * lib/mkstemp.c: #undef mkstemp.
54676         Include config.h.
54677         (rpl_mkstemp): Rename from mkstemp.
54678         Protoize.
54679
54680 2001-11-16  Jim Meyering  <meyering@lucent.com>
54681
54682         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
54683         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
54684         determine the amount of total physical memory, use pstat_getstatic.
54685         HPUX-11 doesn't define _SC_PHYS_PAGES.
54686         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
54687         If sysconf couldn't be used to determine the amount of available
54688         physical memory, use both pstat_getstatic and pstat_getdynamic.
54689         Based on a patch from Bob Proulx.
54690
54691 2001-11-10  Jim Meyering  <meyering@lucent.com>
54692
54693         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
54694         (jm_PREREQ): Use it.
54695
54696 2001-11-09  Jim Meyering  <meyering@lucent.com>
54697
54698         * m4/jm-macros.m4: Require autoconf-2.52f.
54699         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
54700         Use these AC_-prefixed names, not the AM_-prefixed ones.
54701
54702         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
54703
54704 2001-11-05  Jim Meyering  <meyering@lucent.com>
54705
54706         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
54707
54708 2001-11-04  Jim Meyering  <meyering@lucent.com>
54709
54710         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
54711         $DEFS.
54712
54713 2001-11-03  Jim Meyering  <meyering@lucent.com>
54714
54715         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
54716         of AC_DEFUN.
54717
54718         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
54719         know the name of the variable in the macro definition.
54720
54721 2001-11-03  Jim Meyering  <meyering@lucent.com>
54722
54723         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
54724         in argmatch_to_argument call.
54725
54726         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
54727         argument.
54728
54729         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
54730         e.g., a fault due to an attempt to free a NULL pointer.
54731
54732 2001-11-01  Jim Meyering  <meyering@lucent.com>
54733
54734         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
54735         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
54736
54737 2001-11-01  Jim Meyering  <meyering@lucent.com>
54738
54739         * lib/dirfd.c, lib/dirfd.h: New files.
54740         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
54741
54742         * lib/hash.c (hash_print) [TESTING]: Clean up.
54743
54744 2001-10-22  Paul Eggert  <eggert@twinsun.com>
54745
54746         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
54747         to avoid a warning if -Wall.
54748
54749 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
54750
54751         * README: New file
54752         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
54753         (per RMS's instructions, this is now the canonical source)
54754         * lgpl/, gpl/: New directories.
54755
54756 2001-10-21  Paul Eggert  <eggert@twinsun.com>
54757
54758         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
54759
54760 2001-10-21  Jim Meyering  <meyering@lucent.com>
54761
54762         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
54763         this code would end up calling gettext even in packages built
54764         with --disable-nls.
54765         * lib/getopt.c (_): Likewise.
54766         * lib/regex.c (_): Likewise.
54767
54768 2001-10-20  Paul Eggert  <eggert@twinsun.com>
54769
54770         * m4/error.m4 (jm_PREREQ_ERROR):
54771         Do not invoke AC_CHECK_FUNCS with strerror_r, as
54772         AC_FUNC_STRERROR_R does that.
54773         Check for strerror declaration.
54774
54775         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
54776         are supposed to have them these days.
54777         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
54778         Merge changes from latest Autoconf CVS.
54779         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
54780         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
54781         POSIX decided to standardize on the int flavor of strerror_r.
54782
54783 2001-10-20  Paul Eggert  <eggert@twinsun.com>
54784
54785         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
54786         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
54787         Use strerror_r that is only a macro, even if it is not a function.
54788         (strerror): Check for HAVE_DECL_STRERROR before declaring.
54789         (private_strerror): Use prototypes, not old-style function definition.
54790         (print_errno_message): New function.
54791         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
54792         char*-flavored one.
54793         (error_tail, error, error_at_line): Use it.
54794
54795 2001-10-11  Jim Meyering  <meyering@lucent.com>
54796
54797         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
54798         and quote_n (1, ... to avoid clobbering a buffer.
54799
54800 2001-10-05  Jim Meyering  <meyering@lucent.com>
54801
54802         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
54803         hash-pjw.h.
54804         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
54805         * lib/hash-pjw.h: New file.
54806
54807 2001-09-30  Jim Meyering  <meyering@lucent.com>
54808
54809         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
54810         `struct fsstat' has the `f_fstypename' member.
54811         Use that to define FS_TYPE, which is now used to make
54812         the getfsstat link test tighter.
54813
54814 2001-09-30  Jim Meyering  <meyering@lucent.com>
54815
54816         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
54817         Include <sys/ucred.h>, for Apple Darwin.
54818         Include sys/mount.h and sys/fs_types.h only if available.
54819         (FS_TYPE): Define.
54820         (read_filesystem_list): Use FS_TYPE.
54821
54822 2001-09-29  Paul Eggert  <eggert@twinsun.com>
54823
54824         * lib/exclude.c (excluded_filename): 0 -> false, since it's
54825         a boolean context.
54826
54827 2001-09-29  Jim Meyering  <meyering@lucent.com>
54828
54829         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
54830         [one-argument getmntent function]): Include stdio.h before mntent.h.
54831         SunOS 4.1.x needs it for the declaration of `FILE'.
54832         Patch by Volker Borchert.
54833
54834         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
54835         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
54836         sys/fs_types.h, and make the link-test for getfsstat guard #include
54837         directives with appropriate #if HAVE_*_H tests so that we can
54838         detect getfsstat on Apple Darwin1.3.7 systems.
54839         Reported by Nelson Beebe.
54840         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
54841
54842 2001-09-28  Paul Eggert  <eggert@twinsun.com>
54843
54844         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
54845         #defines strtoimax.  Also treat the other strto* functions
54846         like strtoimax.
54847
54848         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
54849         Check for strtoul and strtoumax,
54850         as those declarations are made even in the signed case.
54851         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
54852         Likewise, for strtol and strtoimax.
54853
54854 2001-09-28  Paul Eggert  <eggert@twinsun.com>
54855
54856         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
54857         #defines strtoimax.  Also treat the other strto* functions
54858         like strtoimax.
54859
54860         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
54861         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
54862         (strtoimax, strtoumax): Do not declare if already defined as a macro.
54863
54864 2001-09-26  Jim Meyering  <meyering@lucent.com>
54865
54866         Most macros in unlocked-io.h had the wrong number of arguments.
54867         * lib/gen-uio: New script.
54868         (USE_UNLOCKED_IO): Define to 1 if not already defined.
54869         * lib/unlocked-io.hin: Remove file.
54870         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
54871         rather than trying to embed it here.
54872         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
54873         Reported by Padraig Brady.
54874
54875 2001-09-25  Volker Borchert  <bt@teknon.de>
54876
54877         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
54878         `result'.
54879
54880 2001-09-24  Jim Meyering  <meyering@lucent.com>
54881
54882         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
54883
54884 2001-09-23  Jim Meyering  <meyering@lucent.com>
54885
54886         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
54887         instead of the mere test for existence of mntent.h.  The latter
54888         would get a false-positive on AIX 3.4 systems.
54889         In the outer getmntent if-block, don't die if neither of the getmntent
54890         tests succeeds.  Instead, just fall through and continue with the
54891         remaining tests.
54892
54893 2001-09-23  Jim Meyering  <meyering@lucent.com>
54894
54895         * lib/mountlist.c: Remove useless parentheses in #if directives.
54896         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
54897         the deprecated MOUNTED symbol is no longer defined in mntent.h.
54898
54899 2001-09-22  Jim Meyering  <meyering@lucent.com>
54900
54901         * m4/gettext.m4: New file.  From gettext.
54902         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
54903         * m4/progtest.m4: Likewise
54904         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
54905         * m4/glibc21.m4: Likewise.
54906
54907         * m4/libintl.m4: Remove.  No longer used.
54908
54909 2001-09-22  Jim Meyering  <meyering@lucent.com>
54910
54911         * lib/localcharset.c: Update from latest gettext.
54912         * lib/config.charset: Likewise.
54913
54914 2001-09-20  Jim Meyering  <meyering@lucent.com>
54915
54916         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
54917         strtoimax.
54918         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
54919         strtoumax.
54920
54921 2001-09-20  Jim Meyering  <meyering@lucent.com>
54922
54923         * lib/xstrtol.c (strtoimax): Guard declaration with
54924         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
54925         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
54926         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
54927         (strtoumax): Likewise, for completeness (it wasn't necessary).
54928
54929 2001-09-17  Paul Eggert  <eggert@twinsun.com>
54930
54931         * lib/strtoimax.c (HAVE_LONG_LONG):
54932         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
54933         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
54934         to work around bug in IBM C compiler.
54935
54936 2001-09-17  Jim Meyering  <meyering@lucent.com>
54937
54938         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
54939         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
54940         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
54941         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
54942         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
54943         whenever the right hand side need not be expanded by the shell.
54944
54945 2001-09-16  Paul Eggert  <eggert@twinsun.com>
54946
54947         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
54948         library.  It's not correct, as some older glibcs are buggy.
54949         fnmatch wasn't fixed until glibc 2.2.
54950
54951         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
54952         special shell magic here.
54953
54954 2001-09-16  Jim Meyering  <meyering@lucent.com>
54955
54956         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
54957         * m4/jm-macros.m4: Require it.
54958
54959 2001-09-16  Jim Meyering  <meyering@lucent.com>
54960
54961         * lib/mkdir.c: New file.
54962
54963 2001-09-15  Jim Meyering  <meyering@lucent.com>
54964
54965         * m4/jm-macros.m4: Check for help2man.
54966
54967 2001-09-11  Jim Meyering  <meyering@lucent.com>
54968
54969         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
54970         The body, by Paul Eggert, was moved here from configure.in.
54971         * m4/jm-macros.m4: Require UTILS_HOST_OS.
54972
54973 2001-09-04  Paul Eggert  <eggert@twinsun.com>
54974
54975         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
54976         (jm_PREREQ): Use it.
54977
54978 2001-09-04  Paul Eggert  <eggert@twinsun.com>
54979
54980         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
54981         Use ssize_t, not int, to store result of readlink.
54982         Check for ssize_t overflow as well as size_t overflow,
54983         as POSIX says the result of readlink is implementation-defined
54984         when ssize_t overflows.
54985         Remove unnecessary cast to char*.
54986         Use free+malloc instead of realloc, as the storage doesn't need
54987         to be preserved and it's clearer and can be more efficient that way.
54988         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
54989         * lib/xreadlink.h (xreadlink): Update prototype.
54990
54991 2001-09-04  Paul Eggert  <eggert@twinsun.com>
54992
54993         * lib/xgetcwd.c: Revert some of the previous change; intead,
54994         fix the HAVE_GETCWD_NULL code to behave more like the
54995         !HAVE_GETCWD_NULL code used to.
54996
54997         Include "xalloc.h".
54998         (xgetcwd): Do not return NULL when memory is exhausted; instead,
54999         invoke xalloc_die.
55000
55001 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55002
55003         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
55004         sys/param.h, as pathmax.h includes them.
55005
55006 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55007
55008         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
55009         (jm_PREREQ_XGETCWD): New macro.
55010
55011         * m4/getcwd.m4: New file.
55012
55013 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55014
55015         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
55016         like the HAVE_GETCWD_NULL code.
55017         Include pathmax.h if not HAVE_GETCWD.
55018         Do not include xalloc.h.
55019         (INITIAL_BUFFER_SIZE): New symbol.
55020         Do not use xmalloc / xrealloc, since the caller is responsible for
55021         handling errors.  Preserve errno around `free' during failure.
55022         Do not overrun buffer when using getwd.
55023
55024 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55025
55026         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
55027         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
55028         getcwd (NULL, 0).
55029
55030 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55031
55032         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
55033         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
55034         spotted by Jim Meyering.
55035
55036 2001-09-03  Jim Meyering  <meyering@lucent.com>
55037
55038         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
55039         failure.
55040
55041 2001-09-02  Jim Meyering  <meyering@lucent.com>
55042
55043         * lib/error.c: Update from GNU libc.
55044
55045 2001-09-01  Jim Meyering  <meyering@lucent.com>
55046
55047         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
55048         Used by df.
55049
55050 2001-09-01  Jim Meyering  <meyering@lucent.com>
55051
55052         * lib/xreadlink.c: New file.
55053         * lib/xreadlink.h: New file.
55054         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
55055         xreadlink.h.
55056
55057         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
55058         doesn't conflict with sparc Solaris 7's definition in
55059         /usr/include/sys/int_types.h.
55060
55061         * lib/exclude.c: Use `""', not `<>' to #include non-system header
55062         files.
55063         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
55064         and strncasecmp as r-values.  Unixware didn't have declarations.
55065
55066 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55067
55068         * lib/xstrtol.h: Add copyright notice.
55069         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
55070         LONGINT_INVALID_SUFFIX_CHAR.
55071
55072 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55073
55074         * lib/xstrtol.c (strtoimax): New decl.
55075
55076 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55077
55078         * lib/xgetcwd.c: Don't include pathmax.h.
55079         Include stdlib.h and unistd.h if available.
55080         Include xalloc.h.
55081         (xmalloc, xstrdup, free): Remove decls.
55082         (xgetcwd): Don't assume sizes fit in unsigned.
55083         Check for overflow when computing sizes.
55084         Simplify reallocation code.
55085
55086 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55087
55088         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
55089         a directory's st_size can have an arbitrary value, so the old
55090         usage could waste an arbitrary amount of memory.  All uses
55091         changed.
55092         * lib/savedir.h: Update prototype.
55093
55094 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55095
55096         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
55097
55098         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
55099         old strtoimax.c.
55100
55101         Also, make the following further changes to make this file's
55102         configuration more similar to that of strtol.c:
55103         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
55104         (strtoumax, uintmax_t, strtoull, strtol): Remove.
55105         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
55106         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
55107         changed to signed values.
55108
55109         And make the following changes as well:
55110         Fix copyright notice, as 1999 was missing.
55111         (verify): New macro.
55112         (strtoimax): Check sizes at compile-time, not run-time.
55113         Prefer strtol to strtoll if both work.
55114         (main): Remove; it was not that useful and was a pain to maintain.
55115
55116         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
55117
55118 2001-08-31  Jim Meyering  <meyering@lucent.com>
55119
55120         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
55121         Use an initial, malloc'd, buffer of length 128 rather than
55122         a statically allocated one of length 1024.
55123
55124 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55125
55126         Simplify code, partly by assuming autoconf 2.52 semantics.
55127
55128         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
55129
55130         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
55131         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
55132         All uses removed.
55133         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
55134         Move AC_REQUIRE to next-to-top level, to avoid confusion.
55135         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
55136         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
55137         jm_AC_HEADER_INTTYPES_H.
55138         * m4/jm-macros.m4 (jm_MACROS): Likewise.
55139
55140         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
55141
55142         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
55143         Quote first arg of AC_DEFUN.
55144         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
55145         since they are needed to parse the include file even if we need
55146         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
55147         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
55148         but with opposite signedness.
55149
55150 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55151
55152         Merge 'exclude' changes from tar 1.13.22.
55153         This fixes one or two unlikely storage allocation overflow bugs,
55154         but doesn't change user-visible behavior otherwise.
55155
55156 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55157
55158         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
55159         (jm_PREREQ_EXCLUDE): New macro.
55160
55161 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55162
55163         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
55164         tm to be declared.
55165
55166 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55167
55168         * lib/hash.c: Remove '2001' from copyright notice.
55169
55170 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55171
55172         * lib/full-write.h: New file.
55173         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
55174         * lib/full-write.c: Correct credits, as cccp.c no longer
55175         exists and anyway it was so heavily changed from the old cccp
55176         code as to be unrecognizable.  Include full-write.h.
55177         (full_write) Return size_t, with short writes meaning failure.
55178         All callers changed.  This fixes a bug with large buffers
55179         on 64-bit hosts.
55180         * lib/utime.c: Include full-write.h.
55181
55182 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55183
55184         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
55185         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
55186         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
55187         Include if available.
55188         (<xalloc.h>): Include
55189         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
55190         (verify): New macro.  Use it to verify that EXCLUDE macros do not
55191         collide with FNM macros.
55192         (struct patopts): New struct.
55193         (struct exclude): Use it, as exclude patterns now come with options.
55194         (new_exclude): Support above changes.
55195         (new_exclude, add_exclude_file):
55196         Initial size must now be a power of two to simplify overflow checking.
55197         (free_exclude, fnmatch_no_wildcards): New function.
55198         (excluded_filename): No longer requires options arg, as the options
55199         are determined by add_exclude.  Now returns bool, not int.
55200         (excluded_filename, add_exclude):
55201         Add support for the fancy new exclusion options.
55202         (add_exclude, add_exclude_file): Now takes int options arg.
55203         Check for arithmetic overflow when computing sizes.
55204         (add_exclude_file): xrealloc might modify errno, so don't
55205         realloc until after errno might be used.
55206
55207         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
55208         New macros.
55209         (free_exclude): New decl.
55210         (add_exclude, add_exclude_file): Now takes int options arg.
55211         (excluded_filename): No longer requires options arg, as the options
55212         are determined by add_exclude.  Now returns bool, not int.
55213
55214 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55215
55216         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
55217
55218 2001-08-27  Jim Meyering  <meyering@lucent.com>
55219
55220         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
55221
55222         * lib/version-etc.c (N_): Remove definition.
55223         Revert most of last change.
55224         Instead, simply don't mark the `Copyright...' string for translation.
55225         Based on advice from Paul Eggert.
55226
55227         * lib/strtoxmax.c: Tweak comment.
55228
55229 2001-08-26  Jim Meyering  <meyering@lucent.com>
55230
55231         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
55232
55233         * m4/xstrtoimax.m4: New file.
55234         * m4/xstrtoumax.m4: Add comments explaining why we
55235         AC_REPLACE_FUNCS(strtol).
55236
55237 2001-08-26  Jim Meyering  <meyering@lucent.com>
55238
55239         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
55240         of copyright with `%s' so translators don't get an untranslated
55241         message in 2002.
55242         (COPYRIGHT_YEAR): Define.
55243         (version_etc): Use fprintf rather than fputs.
55244         Suggestion from Ulrich Drepper.
55245
55246         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
55247
55248         * lib/strtoll.c: New file, from GNU libc.
55249         * lib/xstrtoimax.c: New file.
55250
55251         * lib/xstrtol.h: Add xstrtoimax.
55252         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
55253         * lib/strtoimax.c: New file.  Likewise, but first define
55254         STRTOUXMAX_SIGNED.
55255
55256         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
55257         ...
55258         * lib/strtoxmax.c: ... then renamed to this.
55259
55260 2001-08-18  Paul Eggert  <eggert@twinsun.com>
55261
55262         * m4/inttypes.m4: Add AC_PREREQ(2.13).
55263         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
55264         (jm_AC_TYPE_INTMAX_T): New macro.
55265         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
55266
55267         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
55268
55269         * m4/longlong.m4: Renamed from ulonglong.m4.
55270         * m4/inttypes.m4: Renamed from inttypes_h.m4.
55271         * m4/uintmax_t.m4: Removed.
55272
55273 2001-08-13  Paul Eggert  <eggert@twinsun.com>
55274
55275         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
55276         Port to Solaris 8, where 'sed' requires a space after the 'r'
55277         command, and where sh dislikes "$/".  Clean up the spacing a bit.
55278         Redirect output to $tmp just once.
55279
55280 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
55281
55282         * lib/addext.c (<errno.h>): Include.
55283         (errno): Declare if not defined.
55284         (addext): Work correctly when pathconf returns -1 and leaves
55285         errno alone because there is no limit.  Also, work even if
55286         pathconf returns a value greater than SIZE_MAX.
55287
55288 2001-08-12  Jim Meyering  <meyering@lucent.com>
55289
55290         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
55291         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
55292         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
55293         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
55294         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
55295         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
55296         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
55297         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
55298         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
55299         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
55300         utime.m4, utimes.m4, xstrtoumax.m4:
55301         Quote the first argument in each use of AC_DEFUN.
55302
55303 2001-08-12  Jim Meyering  <meyering@lucent.com>
55304
55305         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
55306         Simply `return getcwd (NULL, 0);'.
55307         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
55308         Use 1300 as initial value for length, not PATH_MAX.
55309
55310         * lib/pathmax.h: Clean up cpp syntax.
55311
55312 2001-08-12  Jim Meyering  <meyering@lucent.com>
55313
55314         * lib/gettimeofday.c: New file.
55315         * lib/gtod.h: New file.
55316         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
55317
55318 2001-08-05  Jim Meyering  <meyering@lucent.com>
55319
55320         * m4/jm-macros.m4: Require autoconf-2.52.
55321
55322 2001-08-04  Jim Meyering  <meyering@lucent.com>
55323
55324         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
55325         stmt, to get in sync with glibc.
55326
55327 2001-08-03  Paul Eggert  <eggert@twinsun.com>
55328
55329         The following changes are from gettext 0.10.39 as maintained by
55330         Bruno Haible.
55331
55332         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
55333         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
55334         with inverted sense.  All uses changed.
55335
55336         * lib/mbswidth.c: Don't include <limits.h>.
55337         Include <stdlib.h> and <string.h> unconditionally.
55338         (iswcntrl, mbsinit, ISCNTRL): New macros.
55339         (mbsnwidth): Use K&R style function declarations.
55340         Don't bother checking for MB_LEN_MAX == 1, since the compiler
55341         can optimize it when MB_CUR_MAX == 1.
55342         The width of control characters is zero, not 1.
55343
55344 2001-08-03  Paul Eggert  <eggert@twinsun.com>
55345
55346         The following changes are from gettext 0.10.39 as maintained by
55347         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
55348
55349         * m4/codeset.m4: Upgrade to serial AM1.
55350         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
55351         all uses changed.  Quote first arg of AC_DEFUN.
55352         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
55353
55354         * m4/iconv.m4: Upgrade to serial AM2.
55355         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
55356         Add --with-libconv-prefix.
55357         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
55358         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
55359         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
55360         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
55361         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
55362
55363         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
55364         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
55365         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
55366         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
55367         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
55368         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
55369         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
55370         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
55371         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
55372
55373         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
55374         string.h any more.
55375
55376         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
55377         not the default value.
55378
55379         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
55380         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
55381         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
55382         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
55383         Also check for iswcntrl, used for wcwidth fallback.
55384         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
55385         to Autoconf 2.13.
55386
55387 2001-08-03  Jim Meyering  <meyering@lucent.com>
55388
55389         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
55390         as it was in the original.  Reported by Paul Eggert.
55391
55392 2001-07-16  Jim Meyering  <meyering@lucent.com>
55393
55394         * m4/gettimeofday.m4: New file.
55395         Prompted by a report from Bernhard Baehr.
55396
55397 2001-07-15  Jim Meyering  <meyering@lucent.com>
55398
55399         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
55400         stuff. Now it's in ../Makefile.cfg.
55401
55402 2001-07-15  Jim Meyering  <meyering@lucent.com>
55403
55404         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
55405         (BUILT_SOURCES): Add unlocked-io.h.
55406         (io_functions): Define.
55407         (unlocked-io.h): New rule.
55408         (DISTCLEANFILES): Add unlocked-io.h.
55409         (all-local): Depend on unlocked-io.h, to ensure it is created.
55410
55411         * lib/unlocked-io.hin: New file
55412
55413         * lib/regex.c: Update from glibc.
55414
55415 2001-07-05  Jim Meyering  <meyering@lucent.com>
55416
55417         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
55418         recommendation.
55419         (libfetish_a_SOURCES): Put all .h files here instead.
55420         Remove a thus-exposed (better checks in automake) duplicate and
55421         two unnecessary .h files.
55422
55423 2001-07-04  Jim Meyering  <meyering@lucent.com>
55424
55425         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
55426         that generates jm-glibc-io.m4 so that it doesn't trigger any make
55427         distcheck failure.
55428
55429 2001-07-02  Jim Meyering  <meyering@lucent.com>
55430
55431         The following changes were prompted by suggestions from Bruno Haible.
55432
55433         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
55434         is now generated.
55435         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
55436         definition of EXTRA_DIST.
55437         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
55438         ensure that the generated file is created/updated whenever the list
55439         of $(unlocked_functions) is changed.
55440         (jm-glibc-io.m4): New rule.
55441         (unlocked-io.h): New rule -- currently unused.
55442
55443 2001-06-24  Jim Meyering  <meyering@lucent.com>
55444
55445         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
55446         unmatched right bracket, rather than kludging it with an extra,
55447         falsely-matching quote in a comment.  Patch by Akim Demaille.
55448
55449 2001-06-11  Jim Meyering  <meyering@lucent.com>
55450
55451         * lib/regex.c: Update from GNU libc.
55452
55453 2001-05-27  Jim Meyering  <meyering@lucent.com>
55454
55455         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
55456         Check for ut_type in struct utmp.
55457
55458 2001-05-27  Jim Meyering  <meyering@lucent.com>
55459
55460         * lib/readutmp.h (UT_TYPE): Define.
55461
55462 2001-05-24  Jim Meyering  <meyering@lucent.com>
55463
55464         * lib/argmatch.c: Include "quote.h".
55465         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
55466         quote function.  Reported by Göran Uddeborg.
55467
55468 2001-05-22  Jim Meyering  <meyering@lucent.com>
55469
55470         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
55471         now that we use the package-supplied version unconditionally.
55472         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
55473
55474 2001-05-21  Jim Meyering  <meyering@lucent.com>
55475
55476         * m4/regex.m4: Change a couple backticks to single quotes to avoid
55477         shell syntax errors.
55478
55479 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
55480
55481         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
55482
55483 2001-05-20  Paul Eggert  <eggert@twinsun.com>
55484
55485         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
55486         Don't bother to check library strftime, since
55487         we'll be using our own my_strftime function anyway.
55488         Define my_strftime instead of strftime.
55489
55490 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
55491
55492         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
55493         which is not yet declared.
55494
55495 2001-05-15  Jim Meyering  <meyering@lucent.com>
55496
55497         * m4/regex.m4: Use proper quoting so brackets appear in the test
55498         program.
55499         Reported by, and with help from, Bruno Haible.
55500
55501 2001-05-13  Jim Meyering  <meyering@lucent.com>
55502
55503         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
55504         undefined.
55505
55506 2001-05-11  Paul Eggert  <eggert@twinsun.com>
55507
55508         dirname code cleanup.  base_name now behaves more compatibly
55509         with POSIX basename when given file names that have trailing
55510         slashes, and similarly for dir_name.  Add new primitives
55511         base_len and dir_len.  Put the directory-name-related decls
55512         into dirname.h.
55513
55514         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
55515         * lib/backupfile.c (base_name): Likewise.
55516         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
55517         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
55518         * lib/makepath.c (strip_trailing_slashes): Likewise.
55519         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
55520         ISSLASH): Likewise.
55521         * lib/rename.c (strip_trailing_slashes): Likewise.
55522         * lib/same.c (base_name): Likewise.
55523         * lib/stripslash.c (ISSLASH): Likewise.
55524
55525         * lib/addext.c: Include <dirname.h> after size_t is defined.
55526         * lib/backupfile.c: Likewise.
55527
55528         * lib/addext.c (addext): Use base_len to trim redundant
55529         trailing slashes instead of doing it ourselves.
55530         But do not trim the last slash if it is not redundant.
55531
55532         * lib/backupfile.c (find_backup_file_name,
55533         max_backup_version): Use base_len instead of rolling it ourselves.
55534         Handle the case of "" and (on DOS) "C:" correctly.
55535
55536         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
55537         needed. Include <string.h>, <dirname.h>.
55538         (base_name): Allow file names ending in slashes, other than names
55539         that are all slashes.  In this case, return the basename followed
55540         by the slashes.  This is more general, and can be used in places
55541         where the original base_name purposely had an assertion failure.
55542         (base_len): New function.
55543
55544         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
55545         Do not include <assert.h>; no longer needed.
55546         Include xalloc.h.
55547         (memrchr): Remove decl.
55548         (dir_name_r): Remove.
55549         (dir_len): Renamed from dirlen.  All callers changed.
55550         Rewrite in terms of base_name, for simplicity and consistency.
55551         (dir_name): Never return NULL.  All callers changed.
55552         Do not include <stdlib.h> in test program; no longer needed.
55553         return 0; is fine for test program.
55554
55555         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
55556         New macros.
55557         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
55558
55559         * lib/path-concat.c (path_concat): Use base_len to compute
55560         base length, not strlen; this means we cannot rely on memcpy
55561         to null-terminate.
55562
55563         * lib/same.c (STREQ): Remove.
55564         (same_name): Handle the case where the basename ends in trailing '/'.
55565
55566         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
55567         a slash was stripped.  Do not strip the last slash after a
55568         file system prefix.
55569
55570 2001-05-11  Paul Eggert  <eggert@twinsun.com>
55571
55572         * lib/Makefile.am (libfetish_a_SOURCES):
55573         Add strftime.c, since we now compile it on all hosts.
55574
55575         * lib/strftime.c (my_strftime):
55576         Define to nstrftime if emacs, but only if my_strftime is not defined.
55577         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
55578         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
55579         Add one more extra argument: a nanoseconds value.
55580         All uses changed.
55581         (ns): New macro.
55582         (my_strftime function): Add %N format.
55583         (emacs_strftimeu): Renamed from emacs_strftime,
55584         with extra ut argument.
55585
55586 2001-05-09  Paul Eggert  <eggert@twinsun.com>
55587
55588         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
55589
55590 2001-04-21  Jim Meyering  <meyering@lucent.com>
55591
55592         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
55593         doesn't interfere.
55594
55595 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
55596
55597         * m4/ftruncate.m4: Check for chsize.
55598         Link with ftruncate.o unconditionally if ftruncate is missing.
55599         This was required when cross-compiling to i586-mingw32msvc.
55600
55601 2001-04-08  Jim Meyering  <meyering@lucent.com>
55602
55603         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
55604         recomputed; that's necessary when the offset spans a DST transition.
55605         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
55606
55607 2001-04-02  Jim Meyering  <meyering@lucent.com>
55608
55609         * lib/regex.h, regex.c: Update from GNU libc.
55610
55611 2001-03-24  Jim Meyering  <meyering@lucent.com>
55612
55613         * m4/jm-macros.m4: Require autoconf-2.49d.
55614
55615 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
55616
55617         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
55618
55619 2001-03-19  Paul Eggert  <eggert@twinsun.com>
55620
55621         * lib/version-etc.c (version_etc_copyright): Update to 2001.
55622
55623 2001-03-17  Jim Meyering  <meyering@lucent.com>
55624
55625         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
55626         now that the version in autoconf is equivalent.
55627         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
55628
55629         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
55630         Suggestion from Akim Demaille.
55631
55632         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
55633         (jm_PREREQ_TEMPNAME): New function.
55634
55635 2001-03-16  Paul Eggert  <eggert@twinsun.com>
55636
55637         * lib/tempname.c (uint64_t): Define to uintmax_t if
55638         not defined, and if UINT64_MAX is not defined.
55639         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
55640         Reported by John David Anglin.
55641
55642 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
55643
55644         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
55645         resolve alias if codeset is empty.
55646         * lib/config.charset (BeOS): Use wildcard syntax.
55647
55648 2001-03-13  Jim Meyering  <meyering@lucent.com>
55649
55650         * lib/path-concat.c (path_concat)
55651         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
55652         concatenating e.g., `C:' and `foo'.
55653         From Bruno Haible.
55654
55655 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
55656
55657         * lib/localcharset.c (locale_charset): Don't use
55658         setlocale(LC_CTYPE,NULL). Don't return NULL.
55659         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
55660
55661 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
55662
55663         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
55664         support for DOS/DJGPP.
55665
55666 2001-03-01  Paul Eggert  <eggert@twinsun.com>
55667
55668         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
55669         lacks mkstemp.  Compile our own tempname.c if we compile our own
55670         mkstemp.c, as mkstemp relies on tempname.
55671
55672 2001-03-01  Jim Meyering  <meyering@lucent.com>
55673
55674         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
55675         AH_VERBATIM really does output its argument verbatim.
55676
55677 2001-02-28  Paul Eggert  <eggert@twinsun.com>
55678
55679         * lib/Makefile.am (libfetish_a_SOURCES):
55680         Add dup-safer.c, fopen-safer.c.
55681         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
55682
55683         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
55684         * lib/unistd-safer.h: New files.
55685
55686 2001-02-25  Paul Eggert  <eggert@twinsun.com>
55687
55688         The mkstemp replacement is taken from glibc 2.2.2, with some
55689         portability fixes for use outside glibc, as follows:
55690
55691         * lib/tempname.c (struct_stat64): New macro.
55692         (direxists, __gen_tempname): Use it.
55693         This avoids a portability problem with Solaris 8.
55694
55695         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
55696         (<stddef.h>, <stdint.h>, <string.h>):
55697         Include only if STDC_HEADERS || _LIBC.
55698         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
55699         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
55700         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
55701         (__set_errno): Define this macro if <errno.h> doesn't.
55702         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
55703         Define these macros if <stdio.h> doesn't.
55704         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
55705         Define these macros if <sys/stat.h>
55706         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
55707         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
55708         __xstat64): Define if not _LIBC.
55709         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
55710         (__gen_tempname): Invoke gettimeofday only if
55711         HAVE_GETTIMEOFDAY || _LIBC;
55712         otherwise, fall back on plain "time".
55713         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
55714
55715         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
55716
55717         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
55718
55719 2001-02-18  Paul Eggert  <eggert@twinsun.com>
55720
55721         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
55722
55723 2001-02-17  Paul Eggert  <eggert@twinsun.com>
55724
55725         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
55726         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
55727         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
55728         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
55729
55730 2001-02-17  Paul Eggert  <eggert@twinsun.com>
55731
55732         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
55733         Remove workaround macros for hosts that have mbrtowc but not
55734         mbstate_t, as we now insist on proper declarations for both
55735         before using mbrtowc.
55736
55737 2001-02-17  Jim Meyering  <meyering@lucent.com>
55738
55739         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
55740         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
55741         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
55742         UnixWare 7.1.1.
55743
55744         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
55745         rather than AC_CACHE_VAL.
55746
55747 2001-02-17  Jim Meyering  <meyering@lucent.com>
55748
55749         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
55750         around included file name.
55751
55752         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
55753
55754         * lib/strftime.c: Update from GNU libc (the only changes were to
55755         comments).
55756
55757 2001-02-17  Jim Meyering  <meyering@lucent.com>
55758
55759         * lib/regex.c: Update from libc.
55760
55761 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
55762
55763         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
55764         clash.
55765
55766 2001-02-16  Paul Eggert  <eggert@twinsun.com>
55767
55768         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
55769         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
55770         Reported by Mark Hounschell via Paul Eggert.
55771
55772 2001-02-07  Jim Meyering  <meyering@lucent.com>
55773
55774         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
55775
55776 2001-02-05  Jim Meyering  <meyering@lucent.com>
55777
55778         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
55779         it includes the patch required for `large file' support with at least
55780         HP-UX's 10.20 /bin/cc.
55781
55782 2001-02-03  Jim Meyering  <meyering@lucent.com>
55783
55784         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
55785         AS_IF, now that it works once again (mysteriously).
55786         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
55787
55788 2001-01-30  Jim Meyering  <meyering@lucent.com>
55789
55790         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
55791         * m4/chown.m4: Rename conftestchown to conftest.chown.
55792         * m4/rename.m4: s/conftestdir/conftest.d1/ and
55793         s/conftestdir2/conftest.d2/.
55794         * m4/utimes.m4: s/conftestdata/conftest.data/
55795         Inspired by Pavel Roskin's change in autoconf.
55796
55797 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
55798
55799         * lib/config.charset: Update for FreeBSD 4.2.
55800
55801 2001-01-27  Jim Meyering  <meyering@lucent.com>
55802
55803         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
55804         a use of AS_IF.
55805         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
55806
55807 2001-01-26  Jim Meyering  <meyering@lucent.com>
55808
55809         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
55810         quotearg.c includes it.
55811
55812 2001-01-26  Jim Meyering  <meyering@lucent.com>
55813
55814         * lib/quotearg.c: Include stddef.h.
55815         * lib/quote.c: Include stddef.h.
55816         Reported by Axel Kittenberger.
55817
55818         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
55819         line in double quotes so that it evokes a better diagnostic.
55820         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
55821         Reported by Axel Kittenberger.
55822
55823 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
55824
55825         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
55826         as if it was a `charset'.
55827
55828 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
55829
55830         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
55831         has const.
55832
55833 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
55834
55835         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
55836         to avoid a warning.  Add back 'const' to inptr.
55837
55838 2001-01-20  Jim Meyering  <meyering@lucent.com>
55839
55840         Be sure that headers are checked before used in code compiled
55841         for the type checks.
55842         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
55843         In place of that, invoke jm_CHECK_ALL_TYPES.
55844         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
55845         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
55846         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
55847         The check for ssize_t was mistakenly run before the test for unistd.h.
55848
55849         The configure-time check for stdbool.h was missing.
55850         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
55851         (jm_PREREQ_HASH): New function.
55852
55853 2001-01-17  Jim Meyering  <meyering@lucent.com>
55854
55855         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
55856         for autoconf-2.49c.
55857         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
55858
55859 2001-01-16  Jim Meyering  <meyering@lucent.com>
55860
55861         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
55862         From Bruno Haible.
55863
55864 2001-01-14  Jim Meyering  <meyering@lucent.com>
55865
55866         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
55867         foo and bar.  Create conftestdir/ in the script, not in the C code.
55868         Remove directories in the script, not in the C code.
55869         Remove conftestdir{,2} before trying to create the directory.
55870         Make the entire configure script fail if the mkdir fails.
55871
55872 2001-01-14  Jim Meyering  <meyering@lucent.com>
55873
55874         * lib/rename.c: New file.  From Volker Borchert.
55875         Include stdlib.h, string.h or strings.h, and xalloc.h.
55876         Use strip_trailing_slashes rather than open-coding it.
55877
55878 2001-01-03  Paul Eggert  <eggert@twinsun.com>
55879
55880         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
55881
55882 2001-01-03  Jim Meyering  <meyering@lucent.com>
55883
55884         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
55885         of local `inptr' to avoid warning with some system declarations of
55886         iconv.
55887
55888 2001-01-02  Volker Borchert  <bt@teknon.de>
55889
55890         * m4/rename.m4: New file.
55891         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
55892
55893 2001-01-01  Jim Meyering  <meyering@lucent.com>
55894
55895         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
55896         even on systems with utmpx.h.  It's necessary for the declaration of
55897         utmp's ut_user member.  Reported by Andreas Jaeger.
55898
55899         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
55900         available. They are required for the declarations of getgrgid and
55901         getpwuid resp.
55902         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
55903         Reported by Andreas Jaeger.
55904
55905 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
55906
55907         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
55908         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
55909         so `make install' also works in VPATH builds.
55910
55911 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
55912
55913         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
55914         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
55915         can be used in subdirectories.
55916
55917 2000-12-29  Paul Eggert  <eggert@twinsun.com>
55918
55919         * lib/modechange.c: Do not assume that mode_t uses the
55920         traditional octal encoding.  E.g. "chmod 1 FOO" should set
55921         the other-execute bit of FOO even if S_IXOTH != 1.
55922
55923         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
55924         WOTH, XOTH, ALLM): New macros.
55925         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
55926          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
55927         Use them.
55928         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
55929         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
55930         (mode_compile):
55931         No need to use uintmax_t; unsigned long is long enough.
55932         Don't bother to get suffix since we don't use it.
55933
55934 2000-12-26  Jim Meyering  <meyering@lucent.com>
55935
55936         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
55937         better with autoheader.
55938
55939 2000-12-24  Jim Meyering  <meyering@lucent.com>
55940
55941         * lib/hash.c (is_prime): Return explicit boolean values.
55942         (hash_get_first): Return NULL to appease Irix5.6's 89.
55943         Reported by Nelson Beebe.
55944
55945 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
55946
55947         * lib/localcharset.c (locale_charset): Add support for Win32.
55948
55949 2000-12-18  Paul Eggert  <eggert@twinsun.com>
55950
55951         * lib/physmem.h, lib/physmem.c: New files.
55952
55953         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
55954         (noinst_HEADERS): Add physmem.h.
55955
55956         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
55957         't' for compatibility with Solaris 8 sort.
55958
55959 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
55960
55961         * lib/config.charset: Add support for BeOS.
55962
55963 2000-12-17  Jim Meyering  <meyering@lucent.com>
55964
55965         * m4/dos.m4 (jm_AC_DOS): New file and macro.
55966         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
55967
55968 2000-12-16  Jim Meyering  <meyering@lucent.com>
55969
55970         This bug had a serious impact on chown: `chown N:M FILE' (for integer
55971         N and M) would have treated it like `chown N:N FILE'.
55972
55973         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
55974
55975 2000-12-16  Jim Meyering  <meyering@lucent.com>
55976
55977         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
55978         SHELLS_FILE to a file name that's useful on djgpp systems.
55979         Include stdlib.h.
55980         (ADDITIONAL_DEFAULT_SHELLS): Define.
55981         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
55982         Based mostly on a patch from Prashant TR.
55983
55984 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
55985
55986         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
55987         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
55988         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
55989
55990 2000-12-08  Andreas Schwab  <schwab@suse.de>
55991
55992         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
55993         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
55994
55995 2000-12-07  Jim Meyering  <meyering@lucent.com>
55996
55997         * lib/stripslash.c (ISSLASH): Define.
55998         (strip_trailing_slashes): Use ISSLASH rather than comparing against
55999         `/'.
56000         From Prashant TR.
56001
56002         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
56003         (dir_name_r): Declare this function as static.
56004         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
56005         manifest itself on a name containing a mix of slashes and
56006         backslashes.
56007         Make this function work with names starting with a DOS-style
56008         drive letter and colon prefix.
56009         (dir_name): Append `.' if necessary.
56010         Based mostly on patches from Prashant TR and Eli Zaretskii.
56011
56012         * lib/dirname.h (dir_name_r): Remove prototype.
56013
56014 2000-12-06  Paul Eggert  <eggert@twinsun.com>
56015
56016         * m4/off_t-format.m4: Remove this file.
56017         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
56018
56019 2000-12-06  Jim Meyering  <meyering@lucent.com>
56020
56021         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
56022         replacement strtoull, we may well need the replacement strtoul, too.
56023         Check for declarations of strtoul and strtoull.
56024         Check for strtol.  Mainly as a cue to cause automake to include
56025         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
56026         Check for limits.h -- strtol.c needs it.
56027
56028 2000-12-05  Jim Meyering  <meyering@lucent.com>
56029
56030         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
56031
56032 2000-12-04  Jim Meyering  <meyering@lucent.com>
56033
56034         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
56035         Also include memory.h, stdlib.h, unistd.h if appropriate.
56036         Reported by Andreas Jaeger (conflicting declaration of malloc).
56037
56038 2000-12-02  Jim Meyering  <meyering@lucent.com>
56039
56040         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
56041         * m4/jm-macros.m4 (jm_MACROS): require it.
56042
56043 2000-12-02  Jim Meyering  <meyering@lucent.com>
56044
56045         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
56046
56047 2000-12-01  Paul Eggert  <eggert@twinsun.com>
56048
56049         * lib/memrchr.c: Include <config.h> before any system include file.
56050
56051 2000-11-30  Jim Meyering  <meyering@lucent.com>
56052
56053         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
56054
56055 2000-11-30  Jim Meyering  <meyering@lucent.com>
56056
56057         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
56058
56059 2000-11-29  Paul Eggert  <eggert@twinsun.com>
56060
56061         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
56062
56063 2000-11-26  Jim Meyering  <meyering@lucent.com>
56064
56065         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
56066
56067 2000-11-22  Paul Eggert  <eggert@twinsun.com>
56068
56069         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
56070         size of (size_t) -1; it's not portable.
56071
56072 2000-11-17  Jim Meyering  <meyering@lucent.com>
56073
56074         * lib/strstr.c: Update from GNU libc.
56075
56076 2000-11-17  Akim Demaille  <akim@epita.fr>
56077
56078         * lib/obstack.h: Formatting changes.
56079         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
56080         prevent type checking.
56081         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
56082         cast the value to (void *): assigning a `foo *' to a `void *'
56083         variable is valid.
56084         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
56085
56086 2000-11-16  Jim Meyering  <meyering@lucent.com>
56087
56088         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
56089
56090 2000-11-11  Jim Meyering  <meyering@lucent.com>
56091
56092         * lib/error.c: Add a couple #includes, merging from GNU libc version.
56093
56094 2000-11-10  Jim Meyering  <meyering@lucent.com>
56095
56096         * lib/obstack.h: Update from GNU libc.
56097         * lib/obstack.c: Likewise.
56098
56099 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
56100
56101         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
56102
56103 2000-11-06  Paul Eggert  <eggert@twinsun.com>
56104
56105         * lib/getusershell.c (setusershell): Use rewind rather than
56106         fseek/fseeko, to avoid configuration hassles with fseeko.
56107         Don't bother opening SHELLS_FILE if shellstream is NULL;
56108         it's not necessary.
56109
56110 2000-11-05  Jim Meyering  <meyering@lucent.com>
56111
56112         * lib/makepath.h (make_dir): Declare.
56113         * lib/makepath.c (make_dir): Remove `static' attribute.
56114         Tweak a comment.
56115
56116 2000-11-04  Jim Meyering  <meyering@lucent.com>
56117
56118         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
56119
56120 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
56121
56122         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
56123         last one in a bucket, advance to the next bucket.
56124
56125 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
56126
56127         * lib/fnmatch.c: Do not comment out all the code if we are using
56128         the GNU C library, because in some cases we are replacing buggy
56129         code in the GNU C library itself.
56130
56131 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
56132
56133         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
56134         (regex_compile): Catch bogus \(\1\).
56135
56136 2000-10-30  Paul Eggert  <eggert@twinsun.com>
56137
56138         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
56139         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
56140         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
56141
56142 2000-10-30  Paul Eggert  <eggert@twinsun.com>
56143
56144         * lib/error.h, getline.h, modechange.h:
56145         Remove "2000" from Copyright line, as the file hasn't been
56146         changed this year other than in the copyright notice.
56147
56148         * lib/xalloc.h: Add "2000" to Copyright line, as this file
56149         was changed this year.
56150
56151 2000-10-29  Jim Meyering  <meyering@lucent.com>
56152
56153         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
56154         renaming.
56155         * m4/ls-mntd-fs.m4: Likewise
56156
56157 2000-10-29  Jim Meyering  <meyering@lucent.com>
56158
56159         * lib/xstat.in: Fix grammar in comment.
56160
56161 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
56162
56163         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
56164         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
56165         doesn't define __restrict_arr.
56166
56167 2000-10-28  Jim Meyering  <meyering@lucent.com>
56168
56169         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
56170         (jm_PREREQ_MEMCHR): New function.
56171
56172 2000-10-28  Jim Meyering  <meyering@lucent.com>
56173
56174         * lib/memchr.c: Update from libc.
56175         Adjust for portability:
56176         [HAVE_STDLIB_H]: Include stdlib.h.
56177         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
56178         Undef __memchr, too.
56179         [!weak_alias]: Define __memchr to memchr.
56180
56181         * lib/regex.c: Update from libc.
56182         * lib/regex.h: Likewise.
56183         * lib/getopt1.c: Likewise.
56184         * lib/memcmp.c: Likewise.
56185
56186         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
56187         Avoid using fseek, when possible -- it's broken by design.
56188         Patch by Ulrich Drepper.
56189
56190 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
56191
56192         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
56193         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
56194         Giving in to popular pressure to shut up the compiler with casts.
56195
56196 2000-10-26  Jim Meyering  <meyering@lucent.com>
56197
56198         * lib/strftime.c: Update from libc.
56199
56200 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
56201
56202         * regex.c: More `unsigned char' -> `re_char' changes.
56203         Also change several `int' into `re_wchar_t'.
56204         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
56205         (PUSH_FAILURE_POINTER): Don't cast any more.
56206         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
56207         We want GCC to complain, since this piece of code makes
56208         re_match non-reentrant, which *should* be fixed.
56209         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
56210         (EXTEND_BUFFER): Use RETALLOC.
56211         (SET_LIST_BIT): Don't cast.
56212         (re_wchar_t): New type.
56213         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
56214         that those two functions will always properly return.
56215         (IMMEDIATE_QUIT_CHECK): Cast to void.
56216         (analyse_first): Use recursion rather than an explicit stack.
56217         (re_compile_fastmap): Can't fail anymore.
56218         (re_search_2): Don't check re_compile_fastmap for failure.
56219         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
56220         Now also sets the new value (passed in a new argument).
56221         (re_match_2_internal): Use it.
56222         Also, use a new var `reg' of type size_t when looping through regs
56223         rather than reuse the inappropriate `mcnt'.
56224
56225 2000-10-25  Jim Meyering  <meyering@lucent.com>
56226
56227         * lib/obstack.c: Update from libc.
56228
56229 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
56230
56231         * regex.c (regex_compile): Change the way of handling a range from
56232         a char less than 256 to a char not less than 256.
56233
56234 2000-10-24  Andrew Innes  <andrewi@gnu.org>
56235
56236         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
56237         NT-Emacs only.
56238         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
56239         so that re_search functions only quit when callers expect them to.
56240
56241 2000-10-23  Jim Meyering  <meyering@lucent.com>
56242
56243         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
56244         wrong.  That set_locale call must not have any side effects.
56245         From Paul Eggert.
56246
56247 2000-10-22  Jim Meyering  <meyering@lucent.com>
56248
56249         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
56250         [CYCLIC]: Remove now-unused definition.
56251
56252         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
56253         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
56254         Suggestion from Ulrich Drepper.
56255
56256 2000-10-21  Jim Meyering  <meyering@lucent.com>
56257
56258         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
56259         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
56260         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
56261
56262 2000-10-21  Jim Meyering  <meyering@lucent.com>
56263
56264         * lib/dirname.c (memrchr): Declare if necessary.
56265         (dir_name): Remove the restriction that there be no
56266         trailing slashes.  Now, this code skips past them, effectively
56267         ignoring them.
56268         [TEST_DIRNAME] (main): New unit tests.
56269
56270         * lib/memrchr.c: New file from GNU libc.
56271         Undef __memrchr, too.
56272         [!weak_alias]: Define __memrchr to memrchr.
56273         Guard weak_alias use with `#ifdef weak_alias'.
56274
56275 2000-10-21  Jim Meyering  <meyering@lucent.com>
56276
56277         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
56278         (dir_name): Use dir_name_r.
56279         * lib/dirname.h (dir_name_r): Declare it.
56280
56281 2000-10-17  Jim Meyering  <meyering@lucent.com>
56282
56283         * lib/quote.h (PARAMS): Define and use.
56284         Reported by Akim Demaille.
56285
56286         * lib/getopt.c: Update from libc.
56287
56288 2000-10-16  Jim Meyering  <meyering@lucent.com>
56289
56290         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
56291         setlocale.
56292         From Jan Fedak.
56293
56294 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
56295
56296         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
56297
56298 2000-09-25  Jim Meyering  <meyering@lucent.com>
56299
56300         * lib/md5.h (rol): Define (from GnuPG).
56301
56302         * lib/sha.c: Give credit (GnuPG) where due.
56303         (M): Use rol rather than open-coding it.
56304         Add a FIXME comment.
56305
56306 2000-09-21  Jim Meyering  <meyering@lucent.com>
56307
56308         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
56309         Reported by Michael Stone.
56310
56311 2000-09-20  Jim Meyering  <meyering@lucent.com>
56312
56313         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
56314         (noinst_HEADERS): Add sha.h.
56315         Based on code from Scott G. Miller and from GnuPG.
56316
56317 2000-09-18  Jim Meyering  <meyering@lucent.com>
56318
56319         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
56320         LIBS. Otherwise, everyone ends up linking with -lelf for some
56321         configurations.
56322         Reported by Mike Stone.
56323
56324 2000-09-15  Jim Meyering  <meyering@lucent.com>
56325
56326         * lib/regex.c: Update from libc.
56327
56328 2000-09-10  Jim Meyering  <meyering@lucent.com>
56329
56330         * lib/getopt.c (_getopt_internal): Update from glibc.
56331
56332 2000-09-09  Jim Meyering  <meyering@lucent.com>
56333
56334         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
56335         think it should be used as a general replacement for isascii.
56336         * lib/fnmatch.c: Likewise.
56337         * lib/mbswidth.c: Likewise
56338         * lib/regex.c: Likewise.
56339
56340         Don't use atoi.
56341         * lib/userspec.c: Include sys/param.h and limits.h.
56342         Include xstrtol.h.
56343         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
56344         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
56345         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
56346         UID, GID.  Check range.
56347
56348 2000-09-06  Jim Meyering  <meyering@lucent.com>
56349
56350         * lib/getopt.c (_getopt_internal): Update from glibc.
56351
56352 2000-08-30  Jim Meyering  <meyering@lucent.com>
56353
56354         * lib/strftime.c: Merge in changes from GNU libc.
56355
56356 2000-08-26  Jim Meyering  <meyering@lucent.com>
56357
56358         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
56359         * m4/fpending.m4: New file.
56360
56361 2000-08-26  Jim Meyering  <meyering@lucent.com>
56362
56363         * lib/closeout.c: Include "__fpending.h".
56364         (close_stdout_status): Return right away if there's nothing to flush.
56365
56366         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
56367         * lib/__fpending.c: New file.
56368         * lib/__fpending.h: New file.
56369
56370 2000-08-20  Jim Meyering  <meyering@lucent.com>
56371
56372         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
56373         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
56374         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
56375
56376 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
56377
56378         Improve fileutils installation on systems where running
56379         programs (like install) can't be unlinked.
56380         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
56381         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
56382
56383 2000-08-07  Paul Eggert  <eggert@twinsun.com>
56384
56385         Standardize on "memory exhausted" instead of "Memory exhausted"
56386         or "virtual memory exhausted".
56387         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
56388         "virtual memory exhausted".
56389         * lib/same.c (same_name): Invoke xalloc_die instead of printing
56390         our own message.
56391         * lib/userspec.c (parse_user_spec): Likewise.
56392         * lib/bumpalloc.h: comment fix
56393         * lib/same.c, userspec.c: Include xalloc.h.
56394
56395         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
56396         not char *const and pointing to a constant array.
56397         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
56398         (xrealloc): Comment fix.
56399
56400         * lib/userspec.c (parse_user_spec):
56401         Don't translate a message until just before returning,
56402         to avoid unnecessary translation.
56403
56404 2000-08-07  Jim Meyering  <meyering@lucent.com>
56405
56406         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
56407         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
56408         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
56409         getgroups.c, gethostname.c, getopt.h, group-member.c,
56410         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
56411         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
56412         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
56413         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
56414         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
56415         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
56416         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
56417         yesno.c: Back out Copyright date changes for each file with no change
56418         this year.  This eases coordination with other programs using the same
56419         source code modules.  From Paul Eggert.
56420
56421 2000-08-06  Paul Eggert  <eggert@twinsun.com>
56422
56423         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
56424         not char, for compatibility with glibc 2.1.3 strftime.c.
56425
56426 2000-08-03  Greg McGary  <greg@mcgary.org>
56427
56428         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
56429         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
56430         (EXTEND_BUFFER): Use them.
56431
56432 2000-08-01  Jim Meyering  <meyering@lucent.com>
56433
56434         * lib/dirname.c (ISSLASH): Define.
56435         (BACKSLASH_IS_PATH_SEPARATOR): Define.
56436         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
56437         both `\' and `/' may be use as path separators.
56438         Based on a patch from Prashant TR.
56439
56440 2000-07-31  Paul Eggert  <eggert@twinsun.com>
56441
56442         * lib/quotearg.c (quotearg_n_options): Don't make the initial
56443         slot vector a constant, since it might get modified.
56444
56445 2000-07-31  Jim Meyering  <meyering@lucent.com>
56446
56447         * lib/xmalloc.c: Use `virtual memory exhausted', not
56448         `Memory exhausted'.
56449         * lib/obstack.c (print_and_abort): Likewise.
56450
56451 2000-07-30  Paul Eggert  <eggert@twinsun.com>
56452
56453         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
56454         buffer, so that the caller can always quote one small
56455         component of a "memory exhausted" message in slot 0.
56456         From a suggestion by Jim Meyering.
56457
56458 2000-07-30  Jim Meyering  <meyering@lucent.com>
56459
56460         * lib/makepath.c (make_path): Quote the other instance, too.
56461
56462         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
56463         (STATIC_BUF_SIZE): Define.
56464         (quotearg_n_options): Use only statically allocated storage when
56465         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
56466         than STATIC_BUF_SIZE.
56467
56468 2000-07-29  Jim Meyering  <meyering@lucent.com>
56469
56470         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
56471         * lib/dirname.c (dir_name): Likewise.
56472
56473         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
56474         `/'.
56475
56476         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
56477         (dir_name): Assert that there are no trailing slashes.
56478
56479 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
56480
56481         * lib/mbswidth.h (mbswidth): Add a flags argument.
56482         (mbswidth): New declaration.
56483         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
56484         * lib/mbswidth.c (mbswidth): Add a flags argument.
56485         (mbsnwidth): New function.
56486
56487 2000-07-24  Jim Meyering  <meyering@lucent.com>
56488
56489         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
56490
56491 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56492
56493         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
56494
56495 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56496
56497         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
56498         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
56499         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
56500         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
56501         invoke multibyte primitives.
56502
56503 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56504
56505         * lib/quotearg.c:
56506         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
56507         so that mbstate_t is always defined.
56508
56509         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
56510         be 1 in at least one GCC installation, and this configuration
56511         error is likely to be common.  Ignoring MB_LEN_MAX hurts
56512         performance on hosts that have mbrtowc but have only unibyte
56513         locales, but I assume these hosts are rare.
56514
56515 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56516
56517         * lib/mbswidth.c (_XOPEN_SOURCE):
56518         Don't define; this causes problems on Solaris 7.
56519         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
56520
56521 2000-07-23  Jim Meyering  <meyering@lucent.com>
56522
56523         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
56524         too: getgrgid, getpwuid, getuid.
56525
56526 2000-07-23  Jim Meyering  <meyering@lucent.com>
56527
56528         * lib/basename.c (base_name): Add an assertion.
56529
56530 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
56531
56532         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
56533         shadow its mbsinit function.
56534
56535 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
56536
56537         * lib/mbswidth.h: New file.
56538         * lib/mbswidth.c: New file.
56539         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
56540         (noinst_HEADERS): Add mbswidth.h.
56541
56542 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
56543
56544         * lib/config.charset: Add support for FreeBSD. Improve support for
56545         HP-UX and IRIX 6.
56546
56547 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
56548
56549         * m4/mbswidth.m4: New file.
56550         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
56551
56552 2000-07-15  Jim Meyering  <meyering@lucent.com>
56553
56554         * lib/makepath.c: Include quote.h.
56555         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
56556         corresponding argument in a `quote (...)' call.
56557         Give better diagnostics.
56558
56559         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
56560         (noinst_HEADERS): Add quote.h.
56561
56562         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
56563         from tar's src/misc.c.
56564         * lib/quote.h: New file.  Prototypes for same.
56565
56566 2000-07-14  Paul Eggert  <eggert@twinsun.com>
56567
56568         From a suggestion by Bruno Haible.
56569         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
56570         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
56571         to decide whether to define the BeOS workaround macro;
56572         this adjusts to the change to AC_MBSTATE_T.
56573
56574 2000-07-14  Jim Meyering  <meyering@lucent.com>
56575
56576         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
56577         jm_AC_TYPE_UINTMAX_T.
56578
56579 2000-07-13  Paul Eggert  <eggert@twinsun.com>
56580
56581         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
56582
56583         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
56584         quotearg_buffer_restyled): Add support for
56585         clocale_quoting_style.  Undo previous change to
56586         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
56587         and "{RIGHT QUOTATION MARK}" msgids.
56588
56589 2000-07-10  Paul Eggert  <eggert@twinsun.com>
56590
56591         From a suggestion by Bruno Haible.
56592         * m4/mbstate_t.m4 (AC_MBSTATE_T):
56593         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
56594         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
56595         and mbstate_t, to a single-part test that simply defines mbstate_t.
56596         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
56597         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
56598
56599 2000-07-10  Jim Meyering  <meyering@lucent.com>
56600
56601         * m4/strerror_r.m4: Mirror the correction made in autoconf.
56602
56603         * m4/gnu-source.m4: Output to confdefs.h directly.
56604         Suggestion from Akim Demaille.
56605
56606 2000-07-09  Paul Eggert  <eggert@twinsun.com>
56607
56608         The old behavior of quoting `like this' doesn't look good with
56609         newer, ISO-style fonts.  See:
56610         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
56611
56612         Instead, quote "like this" by default.  Let the translator
56613         tailor the locale-specific quoting behavior by providing
56614         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
56615
56616         * lib/quotearg.c (N_): New macro.
56617         (gettext_default): New function.
56618         (quotearg_buffer_restyled): Use
56619         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
56620         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
56621
56622 2000-07-09  Jim Meyering  <meyering@lucent.com>
56623
56624         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
56625         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
56626
56627         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
56628         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
56629
56630 2000-07-09  Jim Meyering  <meyering@lucent.com>
56631
56632         * lib/Most files: Update copyright dates to include 2000.
56633
56634 2000-07-08  Jim Meyering  <meyering@lucent.com>
56635
56636         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
56637         if not defined.
56638         (xgethostname): Remove now-unnecessary #ifdef.
56639         Move declaration of `err' into loop where it's used.
56640
56641 2000-07-05  Paul Eggert  <eggert@twinsun.com>
56642         and Bruno Haible  <haible@clisp.cons.org>
56643
56644         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
56645         only if the test for an object-type mbstate_t fails.  This
56646         prevents us from mistakenly reporting that mbstate_t is a
56647         system object type after we "#define mbstate_t int" to work
56648         around its lack.
56649
56650 2000-07-05  Paul Eggert  <eggert@twinsun.com>
56651         and Bruno Haible  <haible@clisp.cons.org>
56652
56653         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
56654
56655 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56656
56657         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
56658         to strerror_r.
56659         Include <ctype.h> for use of isalpha.
56660
56661 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56662
56663         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
56664         by allocating a larger buffer. Test the gethostname return value for
56665         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
56666         returns an error and ENAMETOOLONG isn't defined.
56667
56668 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56669
56670         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
56671         dimension.
56672
56673 2000-07-04  Jim Meyering  <meyering@lucent.com>
56674
56675         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
56676         of the deprecated AC_CHECKING.
56677
56678 2000-07-04  Jim Meyering  <meyering@lucent.com>
56679
56680         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
56681         Reported by Bruno Haible.
56682
56683 2000-07-04  Jim Meyering  <meyering@lucent.com>
56684
56685         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
56686         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
56687         lacks mbrtowc.
56688
56689 2000-07-03  Paul Eggert  <eggert@twinsun.com>
56690
56691         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
56692         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
56693
56694 2000-07-03  Paul Eggert  <eggert@twinsun.com>
56695         and Bruno Haible  <haible@clisp.cons.org>
56696
56697         * lib/quotearg.c (mbrtowc):
56698         Assign to *pwc, and return 1 only if result is nonzero.
56699         (iswprint): Use ISPRINT when substituting our own mbrtowc.
56700
56701 2000-07-03  Jim Meyering  <meyering@lucent.com>
56702
56703         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
56704
56705 2000-07-03  Jim Meyering  <meyering@lucent.com>
56706
56707         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
56708         This is necessary to get a definition of e.g., UTMP_FILE on
56709         HP-UX 10.20.
56710         From Bob Proulx.
56711
56712 2000-07-02  Jim Meyering  <meyering@lucent.com>
56713
56714         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
56715
56716         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
56717         AC_LIBOBJ(function_name).
56718         * m4/chown.m4: Likewise.
56719         * m4/fnmatch.m4: Likewise.
56720         * m4/ftruncate.m4: Likewise.
56721         * m4/getgroups.m4: Likewise.
56722         * m4/getline.m4: Likewise.
56723         * m4/group-member.m4: Likewise.
56724         * m4/jm-macros.m4: Likewise.
56725         * m4/lstat.m4: Likewise.
56726         * m4/malloc.m4: Likewise.
56727         * m4/memcmp.m4: Likewise.
56728         * m4/nanosleep.m4: Likewise.
56729         * m4/putenv.m4: Likewise.
56730         * m4/realloc.m4: Likewise.
56731         * m4/regex.m4: Likewise.
56732         * m4/stat.m4: Likewise.
56733         * m4/strftime.m4: Likewise.
56734
56735 2000-07-02  Jim Meyering  <meyering@lucent.com>
56736
56737         * lib/quotearg.c (mbstate_t): Don't define here.
56738
56739 2000-07-02  Jim Meyering  <meyering@lucent.com>
56740
56741         * lib/nanosleep.c (SIGCONT): Define if not already defined.
56742
56743 2000-07-01  Jim Meyering  <meyering@lucent.com>
56744
56745         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
56746
56747 2000-07-01  Jim Meyering  <meyering@lucent.com>
56748
56749         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
56750         problem.
56751
56752 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
56753
56754         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
56755         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
56756
56757 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
56758
56759         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
56760         per change in ../m4/ls-mntd-fs.m4.
56761         (read_filesystem_list): Ignore symbolic links.
56762
56763 2000-06-29  Jim Meyering  <meyering@lucent.com>
56764
56765         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
56766         for declaration of strcmp.
56767
56768         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
56769
56770         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
56771         Avoid warning by casting result to `char *' to remove `const'.
56772
56773 2000-06-28  Jim Meyering  <meyering@lucent.com>
56774
56775         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
56776         included by quotearg.c, for which we perform this test.  From
56777         Bruno Haible.
56778
56779 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
56780
56781         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
56782         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
56783         <utmpx.h> exists, put readutmp.o into LIBOBJS.
56784
56785 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
56786
56787         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
56788
56789 2000-06-26  Paul Eggert  <eggert@twinsun.com>
56790
56791         savedir now sets errno on failure and invokes xmalloc to get memory.
56792         Fix a couple of other minor bugs while we're at it.
56793
56794         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
56795         (NAMLEN): Remove macro.
56796         (malloc, realloc): Remove decls.
56797         (stpcpy): Likewise.
56798         ("xalloc.h"): Include.
56799         (NAME_SIZE_DEFAULT): New macro.
56800         (savedir): Use xmalloc / xrealloc to allocate memory.
56801         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
56802         Skip "" directory entries.
56803         Use strlen to calculate directory entry length, since the old method
56804         is rarely used these days and isn't worth supporting.
56805         Don't use a pointer after freeing it.
56806         Check for integer overflow when calculating allocation size.
56807         Use memcpy to copy entries, instead of stpcpy.
56808         Set errno properly when returning NULL.
56809         Check for readdir error.
56810
56811 2000-06-26  Jim Meyering  <meyering@lucent.com>
56812
56813         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
56814
56815 2000-06-25  Jim Meyering  <meyering@lucent.com>
56816
56817         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
56818         Linux header bug when _XOPEN_SOURCE is defined to 500.
56819
56820 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
56821
56822         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
56823         deficiency.
56824
56825 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
56826
56827         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
56828         Include xalloc.h.
56829         Don't include <stdlib.h>.  Don't declare malloc, realloc.
56830
56831 2000-06-24  Jim Meyering  <meyering@lucent.com>
56832
56833         * m4/strerror_r.m4: Revive this file -- to try out an experimental
56834         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
56835         for which strerror does return char*, but which lacks a conveniently
56836         accessible declaration of the function.  If the compile-test says
56837         strerror_r doesn't work, then resort to a `run'-test that works on
56838         BeOS and segfaults on DEC Unix.
56839
56840 2000-06-24  Jim Meyering  <meyering@lucent.com>
56841
56842         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
56843
56844 2000-06-23  Paul Eggert  <eggert@twinsun.com>
56845
56846         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
56847         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
56848
56849 2000-06-23  Paul Eggert  <eggert@twinsun.com>
56850
56851         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
56852         (mbrtowc, mbstate_t): Define substitutes if
56853         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
56854         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
56855         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
56856
56857 2000-06-23  Jim Meyering  <meyering@lucent.com>
56858
56859         * m4/afs.m4: Add missing AC_MSG_RESULT.
56860         Reported by Bruno Haible.
56861
56862         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
56863         Suggestion from Bruno Haible.
56864
56865 2000-06-23  Jim Meyering  <meyering@lucent.com>
56866
56867         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
56868
56869 2000-06-21  Jim Meyering  <meyering@lucent.com>
56870
56871         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
56872
56873 2000-06-21  Jim Meyering  <meyering@lucent.com>
56874
56875         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
56876         (noinst_HEADERS): Add getstr.h.
56877
56878         * lib/getline.c (getstr): Move into a separate file.
56879         * lib/getstr.c (getstr): New file, extracted from getline.c, with
56880         the following changes: new parameter, delim2; both delim[12]
56881         parameters have type `int', not `char'.  The latter would lose
56882         with 8-bit delimiters.
56883         * lib/getstr.h: New file.
56884
56885 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
56886
56887         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
56888         than 1024, return a memory chunk of least possible size, instead
56889         of size PATH_MAX + 2. In the loop, increment the size proportionally.
56890         Use free/xmalloc instead of xrealloc to avoid copying for very long
56891         paths.
56892
56893 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
56894
56895         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
56896         the empty string.
56897
56898 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
56899
56900         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
56901         address, not strdup.  Include <stdlib.h> and don't declare free().
56902
56903 2000-06-19  Jim Meyering  <meyering@lucent.com>
56904
56905         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
56906
56907 2000-06-18  Jim Meyering  <meyering@lucent.com>
56908
56909         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
56910
56911         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
56912         `checking whether...' message to be consistent with that of the
56913         lstat test.
56914
56915 2000-06-18  Jim Meyering  <meyering@lucent.com>
56916
56917         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
56918         Besides, these days every porting target provides a mkdir function.
56919
56920         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
56921         needed. (this snippet comes from src/system.h).
56922
56923 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
56924
56925         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
56926
56927 2000-06-15  Paul Eggert  <eggert@twinsun.com>
56928
56929         * lib/human.c (adjust_value): New function.
56930         (human_readable_inexact): Apply rounding style even when
56931         printing approximate values.
56932
56933 2000-06-14  Paul Eggert  <eggert@twinsun.com>
56934
56935         * lib/human.c (human_readable_inexact): Allow an input block
56936         size that is not a multiple of the output block size, and vice versa.
56937         Reported by Piergiorgio Sartor.
56938
56939 2000-06-14  Paul Eggert  <eggert@twinsun.com>
56940
56941         * lib/getdate.y (get_date): Apply relative times after time
56942         zone indicator, not before.  Reported by Todd A. Jacobs.
56943
56944 2000-06-13  Jim Meyering  <meyering@lucent.com>
56945
56946         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
56947
56948         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
56949
56950 2000-06-12  Paul Eggert  <eggert@twinsun.com>
56951
56952         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
56953
56954 2000-06-12  Jim Meyering  <meyering@lucent.com>
56955
56956         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
56957         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
56958         optional argument.
56959         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
56960         the optional argument, `lib'.
56961
56962 2000-06-08  Jim Meyering  <meyering@lucent.com>
56963
56964         * m4/largefile.m4: Remove file (now that it's part of autoconf).
56965
56966 2000-06-04  Paul Eggert  <eggert@twinsun.com>
56967
56968         Rewrite largefile configuration so that we don't need to run
56969         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
56970         AC_CANONICAL_HOST in configure.in -- jmm]
56971
56972         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
56973         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
56974         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
56975         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
56976         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
56977         All uses changed.
56978         Instead of inspecting the output of getconf, try to compile the
56979         test program without and with the macro definition.
56980         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
56981         for getconf.  Instead, check for the needed flags by compiling
56982         test programs.
56983
56984 2000-06-04  Paul Eggert  <eggert@twinsun.com>
56985
56986         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
56987
56988 2000-06-04  Jim Meyering  <meyering@lucent.com>
56989
56990         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
56991         SunOS 4.1.4 for which gid_t is an unsigned type.
56992
56993 2000-06-03  Jim Meyering  <meyering@lucent.com>
56994
56995         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
56996         now that autoconf requires that.
56997
56998         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
56999         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
57000         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
57001
57002 2000-06-03  Jim Meyering  <meyering@lucent.com>
57003
57004         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
57005
57006 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
57007
57008         * m4/glibc21.m4: New file.
57009         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
57010
57011 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
57012
57013         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
57014         newer, don't install charset.alias.
57015         * lib/config.charset: Change the Linux/glibc rules so they become empty
57016         on glibc-2.1 or newer.
57017
57018 2000-06-02  Jim Meyering  <meyering@lucent.com>
57019
57020         * lib/mountlist.c: Back out last change.  Instead, do this...
57021         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
57022         me_dummy member using the same `ignore'-testing code.
57023         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
57024         fs_type strings.
57025         From Mark D. Roth.
57026
57027 2000-05-29  Jim Meyering  <meyering@lucent.com>
57028
57029         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
57030         mounts with the `ignore' attribute.  Based on a patch from
57031         Mark D. Roth.
57032
57033 2000-05-28  Jim Meyering  <meyering@lucent.com>
57034
57035         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
57036         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57037         * m4/stat.m4: Likewise.
57038         * m4/lstat.m4: Likewise.
57039         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
57040
57041         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
57042         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
57043
57044 2000-05-26  Jim Meyering  <meyering@lucent.com>
57045
57046         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
57047
57048 2000-05-24  Jim Meyering  <meyering@lucent.com>
57049
57050         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
57051         autoconf requires that.
57052         * m4/lib-check.m4: Likewise.
57053         * m4/jm-macros.m4: Likewise.
57054         * m4/strftime.m4: Likewise.
57055
57056         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
57057         AC_CHECK_DECLS, now that autoconf requires that.
57058
57059 2000-05-22  Jim Meyering  <meyering@lucent.com>
57060
57061         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57062         * m4/lstat.m4: Likewise.
57063
57064 2000-05-22  Jim Meyering  <meyering@lucent.com>
57065
57066         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
57067
57068 2000-05-20  Jim Meyering  <meyering@lucent.com>
57069
57070         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
57071         (jm_PREREQ): Use it.
57072
57073 2000-05-18  Jim Meyering  <meyering@lucent.com>
57074
57075         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
57076         back, too, since it may have been modified by allocate_entry.
57077         (hash_delete): Rewrite to use neither the assignment operator
57078         nor the comma operator in an if-expression.
57079
57080 2000-05-15  Paul Eggert  <eggert@twinsun.com>
57081
57082         * lib/closeout.c:
57083         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
57084         Remove; no longer needed.
57085         "quotearg.h": Add include.
57086         (file_name): Do not bother to explicitly initialize to NULL; it's less
57087         efficient on some hosts.
57088         (close_stdout_status): Remove test as to whether stdout was already
57089         closed; it breaks for the case "echo x | sort >&-".
57090         Quote file name colons.
57091         Do not assume that _("write error") lacks format strings.
57092
57093 2000-05-15  Jim Meyering  <meyering@lucent.com>
57094
57095         * lib/version-etc.c (version_etc_copyright): Update the copyright
57096         string used in all --version output.
57097
57098 2000-05-14  Jim Meyering  <meyering@lucent.com>
57099
57100         * lib/closeout.c (close_stdout_set_file_name): New function.
57101         (close_stdout_status): Use new file-scoped global.
57102         Return right away if fstat says the stdout file descriptor is invalid.
57103         * lib/closeout.h (close_stdout_set_file_name): Declare.
57104
57105 2000-05-10  Jim Meyering  <meyering@lucent.com>
57106
57107         * lib/closeout.c [default_exit_status]: New file-scoped variable.
57108         (close_stdout_set_status): New function.
57109         * lib/closeout.h (close_stdout_set_status): Declare.
57110
57111 2000-05-09  Jim Meyering  <meyering@lucent.com>
57112
57113         * m4/gettext.m4: Rename this...
57114         * m4/libintl.m4: ...to this.
57115
57116 2000-05-08  Jim Meyering  <meyering@lucent.com>
57117
57118         * lib/long-options.c: Don't include closeout.h.
57119         (parse_long_options): Don't call close_stdout for --version.
57120
57121 2000-05-06  Paul Eggert  <eggert@twinsun.com>
57122
57123         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
57124         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
57125         2.1.3 bug.  This avoids a clash when files like regex.c define
57126         _GNU_SOURCE.
57127
57128 2000-05-06  Jim Meyering  <meyering@lucent.com>
57129
57130         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
57131         (AC_REPLACE_FUNCS): Add strnlen.
57132
57133         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
57134         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
57135
57136         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
57137         AC_SEARCH_LIBS call for nanosleep.
57138         (LIB_NANOSLEEP): Set and AC_SUBST.
57139
57140 2000-05-06  Jim Meyering  <meyering@lucent.com>
57141
57142         * lib/strnlen.c: Undefine __strnlen and strnlen.
57143         [!weak_alias]: Define __strnlen to strnlen.
57144
57145         * lib/atexit.c: New file, from libiberty.
57146
57147 2000-05-06  Jim Meyering  <meyering@lucent.com>
57148
57149         * lib/closeout.c (close_stdout_status): Also check for errors on the
57150         stderr stream.
57151
57152 2000-05-05  Jim Meyering  <meyering@lucent.com>
57153
57154         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
57155         AC_SEARCH_LIBS call for clock_gettime.
57156         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
57157
57158         * m4/search-libs.m4: Update from autoconf.
57159
57160         su doesn't work on Solaris 2.6.
57161         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
57162         <shadow.h>.  Reported by Dragos Harabor.
57163
57164 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
57165
57166         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
57167         memcpy instead of xmalloc, xrealloc, path_concat.
57168         (locale_charset): Treat empty environment variables as absent.
57169         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
57170
57171 2000-05-04  Jim Meyering  <meyering@lucent.com>
57172
57173         * lib/getopt.c: Update from glibc.
57174         * lib/obstack.c: Likewise.
57175         * lib/obstack.h: Likewise.
57176         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
57177         file
57178
57179         * lib/regex.h: Likewise.
57180         * lib/strndup.c: Likewise.
57181         * lib/strnlen.c: New file, from glibc.
57182
57183 2000-05-03  Jim Meyering  <meyering@lucent.com>
57184
57185         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
57186
57187 2000-05-02  Paul Eggert  <eggert@twinsun.com>
57188
57189         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
57190         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
57191         compile-time test, rather than inspecting host and OS, to
57192         decide whether to define _LARGEFILE_SOURCE.
57193
57194 2000-05-01  Jim Meyering  <meyering@lucent.com>
57195
57196         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
57197
57198         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
57199         Based on a patch from Bruno Haible.
57200
57201 2000-05-01  Jim Meyering  <meyering@lucent.com>
57202
57203         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
57204
57205 2000-04-29  Jim Meyering  <meyering@lucent.com>
57206
57207         * lib/path-concat.c: Declare strdup only if it's not defined.
57208         * lib/canon-host.c: Likewise.
57209
57210 2000-04-28  Jim Meyering  <meyering@lucent.com>
57211
57212         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
57213         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
57214         is included first, then limits.h is included by locale.h by libintl.h.
57215         From John David Anglin.
57216
57217 2000-04-25  Jim Meyering  <meyering@lucent.com>
57218
57219         * lib/makepath.c (S_IRWXUGO): Define.
57220         (make_path): Always perform explicit chmod if MODE specifies any
57221         of the `special' permission bits.  Prompted by a bug report against
57222         install from Mate Wierdl and Joost van Baal.
57223
57224 2000-04-18  Jim Meyering  <meyering@lucent.com>
57225
57226         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
57227         (jm_PREREQ): Use it.
57228
57229 2000-04-18  Jim Meyering  <meyering@lucent.com>
57230
57231         * lib/README: New file.
57232
57233         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
57234         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
57235
57236 2000-04-17  Jim Meyering  <meyering@lucent.com>
57237
57238         Get it right :-)
57239         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
57240         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
57241         Suggestion from Akim Demaille.
57242
57243 2000-04-17  Jim Meyering  <meyering@lucent.com>
57244
57245         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
57246         the definition of it to rpl_strftime also defined-away the system's
57247         declaration.
57248
57249 2000-04-15  Jim Meyering  <meyering@lucent.com>
57250
57251         Use `C' to denote so-called `contiguous' files, the same way
57252         that tar does.
57253         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
57254         (ftypelet): Use S_ISCTG.
57255         From Michael Deutschmann.
57256
57257 2000-04-14  Jim Meyering  <meyering@lucent.com>
57258
57259         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
57260         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
57261         clobbered.
57262
57263 2000-04-14  Jim Meyering  <meyering@lucent.com>
57264
57265         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
57266
57267 2000-04-13  Jim Meyering  <meyering@lucent.com>
57268
57269         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
57270         AH_VERBATIM to insert required #ifndef into config.h.in.
57271         Suggestion from Akim Demaille.
57272
57273 2000-04-12  Jim Meyering  <meyering@lucent.com>
57274
57275         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
57276         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
57277         Christian Krackowizer.
57278
57279         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
57280         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
57281         (AC_SYS_LARGEFILE): Require.
57282         (AM_C_PROTOTYPES): Require.
57283
57284 2000-04-08  Jim Meyering  <meyering@lucent.com>
57285
57286         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
57287         names don't conflict.  Reported by Eli Zaretskii.
57288
57289 2000-04-07  Jim Meyering  <meyering@lucent.com>
57290
57291         * lib/putenv.c: Move inclusion of errno.h so it follows that of
57292         sys/types.h, to work around system header problems on AIX 3.2.5.
57293         From Bruno Haible.
57294
57295 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
57296
57297         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
57298         bug.  Deal with the different error behavior of Irix iconv.
57299
57300 2000-04-05  Paul Eggert  <eggert@twinsun.com>
57301
57302         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
57303         IRIX if the installer said otherwise.
57304
57305 2000-04-05  Jim Meyering  <meyering@lucent.com>
57306
57307         Portability tweaks required for ultrix4.3.
57308         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
57309         (jm_CHECK_DECLS): Add getutent to the list of functions.
57310         (_jm_DECL_HEADERS): Add utmpx.h.
57311         From John David Anglin.
57312
57313         * m4/strftime.m4: Back out the 2000-04-02 change.
57314         Instead of that change, simply undefine putenv in the test program.
57315
57316 2000-04-05  Jim Meyering  <meyering@lucent.com>
57317
57318         Portability tweaks required for ultrix4.3.
57319         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
57320         getutent.
57321         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
57322         * lib/canon-host.c: Declare strdup.
57323         * lib/path-concat.c: Likewise.
57324         From John David Anglin.
57325
57326 2000-04-04  Jim Meyering  <meyering@lucent.com>
57327
57328         Be more DOS 8.3-friendly.
57329         * lib/ref-add.sin: Renamed from ref-add.sed.in.
57330         * lib/ref-del.sin: Renamed from ref-del.sed.in.
57331         * lib/Makefile.am: Reflect renaming.
57332         Reported by Eli Zaretskii.
57333
57334         Use a temporary file name that won't clash with `charset.alias'
57335         in the DOS 8.3 name space.
57336         * lib/Makefile.am (charset_tmp): Define.
57337         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
57338         (uninstall-local): Likewise.
57339         Reported by Eli Zaretskii.
57340
57341 2000-04-03  Jim Meyering  <meyering@lucent.com>
57342
57343         * m4/gettext.m4: Fix typo in comment.
57344
57345         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
57346         textutils/configure.in).  Suggestion from Paul Eggert.
57347         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
57348
57349 2000-04-02  Paul Eggert  <eggert@twinsun.com>
57350
57351         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
57352         variable in the shell rather than using putenv, which isn't
57353         portable.  This avoids the configure-time inter-test dependency
57354         on the potentially-renamed putenv function.
57355
57356 2000-03-30  Paul Eggert  <eggert@twinsun.com>
57357
57358         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
57359         before checking struct stat.st_blksize, so that
57360         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
57361
57362 2000-03-29  Paul Eggert  <eggert@twinsun.com>
57363
57364         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
57365         since strftime.c uses HAVE_STRFTIME to decide whether to use
57366         the underlying strftime.
57367
57368 2000-03-29  Paul Eggert  <eggert@twinsun.com>
57369
57370         * lib/time/strftime.c (my_strftime): Make sure we call the system
57371         strftime, not ourselves, when invoking the underlying strftime.
57372
57373 2000-03-24  Jim Meyering  <meyering@lucent.com>
57374
57375         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
57376         (charset_alias): Define.
57377         (install-exec-local): Factor out common code.
57378         (uninstall-local): Split lines longer than 80.
57379         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
57380         (SUFFIXES): Define.
57381         (.sed.in.sed): New rule.  Don't redirect directly to $@.
57382         (CLEANFILES): Add ref-add.sed and ref-del.sed.
57383
57384 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
57385
57386         * lib/config.charset: Output a line containing "Packages using this
57387         file".
57388         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
57389         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
57390         ref-del.sed): New rules.
57391
57392 2000-03-17  Jim Meyering  <meyering@lucent.com>
57393
57394         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
57395         Otherwise, include <strings.h>
57396
57397 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
57398
57399         * lib/unicodeio.c (utf8_wctomb): New function.
57400         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
57401         format instead of in UCS-4 with platform dependent endianness.
57402
57403 2000-03-10  Jim Meyering  <meyering@lucent.com>
57404
57405         * m4/lib-check.m4: Look for getspnam in -lgen, too.
57406         From Marco Franzen.
57407
57408 2000-03-07  Paul Eggert  <eggert@twinsun.com>
57409
57410         * lib/savedir.c (savedir): Work even if directory size is
57411         negative; this can happen with some screwy NFS configurations.
57412
57413 2000-03-06  Jim Meyering  <meyering@lucent.com>
57414
57415         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
57416         if it's NULL (because we ran out of memory).  From Bruno Haible.
57417
57418 2000-03-05  Jim Meyering  <meyering@lucent.com>
57419
57420         * lib/localcharset.c ("path-concat.h"): Include.
57421         (get_charset_aliases): Use path_concat instead of ANSI string
57422         concatenation.
57423
57424         * lib/unicodeio.h (PARAMS): Define.
57425         Use it to guard prototype.
57426
57427 2000-03-04  Jim Meyering  <meyering@lucent.com>
57428
57429         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
57430         for lib/localcharset.c.
57431
57432 2000-03-04  Jim Meyering  <meyering@lucent.com>
57433
57434         * lib/Makefile.am (install-exec-local): Create $(libdir) before
57435         installing into it.
57436         (uninstall-local): Uncomment this rule so `make distcheck' works
57437         once again.
57438
57439         * lib/unicodeio.c (<errno.h>): Include it.
57440         (errno): Declare if not defined.
57441
57442         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
57443
57444         * lib/config.charset: New version, incorporating remarks from a linux
57445         i18n mailing list.  From Bruno Haible.
57446
57447 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
57448
57449         * m4/codeset.m4: New file.
57450         * m4/iconv.m4: New file.
57451         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
57452
57453 2000-03-03  Jim Meyering  <meyering@lucent.com>
57454
57455         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
57456
57457 2000-03-02  Jim Meyering  <meyering@lucent.com>
57458
57459         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
57460         the messages come out on separate lines.
57461
57462         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
57463         rather than jm_CHECK_DECLARATIONS.
57464         * m4/decl.m4: Remove now-unused file.
57465
57466         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
57467         geteuid.
57468
57469 2000-03-02  Jim Meyering  <meyering@lucent.com>
57470
57471         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
57472
57473 2000-03-01  Jim Meyering  <meyering@lucent.com>
57474
57475         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
57476         * lib/unicodeio.c: Likewise.
57477
57478 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
57479
57480         * lib/config.charset: New file.
57481         * lib/localcharset.c: New file.
57482         * lib/unicodeio.h, lib/unicodeio.c: New files.
57483         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
57484         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
57485         (noinst_HEADERS): Add unicodeio.h.
57486         (all-local, install-exec-local, charset.alias): New targets.
57487
57488 2000-02-28  Paul Eggert  <eggert@twinsun.com>
57489
57490         * lib/quotearg.c (ALERT_CHAR): New macro.
57491         (quotearg_buffer_restyled): Use it.
57492
57493 2000-02-27  Jim Meyering  <meyering@lucent.com>
57494
57495         * m4/check-decl.m4: Add getenv to the list.
57496
57497 2000-02-27  Jim Meyering  <meyering@lucent.com>
57498
57499         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
57500         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
57501
57502         * lib/backupfile.c: Guard inclusion of stdlib.h with
57503         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
57504         Declare malloc if needed.
57505
57506         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
57507         `#ifndef HAVE_DECL..'
57508         now that autoconf always defines the HAVE_DECL_ symbols.
57509         * lib/human.c: Likewise.
57510         * lib/same.c: Likewise.
57511         * lib/strtoumax.c: Likewise.
57512
57513         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
57514         declaration check was not run.
57515         * lib/hash.c: Likewise.
57516         * lib/human.c: Likewise.
57517         * lib/same.c: Likewise.
57518         * lib/strtoumax.c: Likewise.
57519
57520         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
57521         `.', then first look up the entire `.'-containing string as a login
57522         name.
57523
57524 2000-02-23  Jim Meyering  <meyering@lucent.com>
57525
57526         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
57527         in place of my hack.
57528
57529 2000-02-18  Paul Eggert  <eggert@twinsun.com>
57530
57531         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
57532         (textint): New typedef.
57533         (parser_control): Member year changed from int to textint.
57534         All uses changed.
57535         (YYSTYPE): Removed; replaced by %union with int and textint members.
57536         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
57537         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
57538         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
57539         (tSNUMBER, tUNUMBER): Now of type <textintval>.
57540         (date, number, to_year): Use width of number in digits, not its value,
57541         to determine whether it's a 2-digit year, or a 2-digit time.
57542         (yylex): Store number of digits of numeric tokens.
57543         Reported by John Kendall.
57544
57545         (parser_control): Changed from struct parser_control to typedef (for
57546         consistency).  All uses changed.
57547
57548         (tID): Removed; not used.
57549         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
57550
57551 2000-02-14  Paul Eggert  <eggert@twinsun.com>
57552
57553         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
57554         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
57555
57556 2000-02-12  Jim Meyering  <meyering@lucent.com>
57557
57558         * lib/userspec.c (ISDIGIT): Define it.
57559         (isdigit): Remove definition.
57560         (is_number): Use ISDIGIT, not isdigit.
57561         <libintl.h>: Include.
57562         (_ and N_): Define.
57563         (parse_user_spec): Mark translatable strings.
57564
57565 2000-02-10  Jim Meyering  <meyering@lucent.com>
57566
57567         With these changes, nanosleep.[ch] are finally enough like the other
57568         lib/* replacement files to compile on a few more losing systems.
57569
57570         * lib/nanosleep.h: Don't include config.h.
57571         Remove prototype from declaration of nanosleep.
57572         (PARAMS): Remove now-unneeded definition.
57573         * lib/nanosleep.c: #undef nanosleep.
57574         (rpl_nanosleep): Rename from nanosleep.
57575
57576 2000-02-10  Jim Meyering  <meyering@lucent.com>
57577
57578         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
57579         gnu_nanosleep to rpl_nanosleep.
57580
57581 2000-02-09  Jim Meyering  <meyering@lucent.com>
57582
57583         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
57584         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
57585
57586 2000-02-08  Akim Demaille  <akim@epita.fr>
57587
57588         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
57589         `[' and `]' and remove uses of `changequote'.
57590         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
57591         (AC_SYS_LARGEFILE): Likewise.
57592         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
57593         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
57594         of changequote.
57595         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
57596         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
57597         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
57598         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
57599
57600 2000-02-05  Jim Meyering  <meyering@lucent.com>
57601
57602         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
57603         Remove explicit use of AC_HEADER_TIME.  It is required by
57604         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
57605         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
57606         in autoconf whereby the expansion of the latter ended up preceding
57607         the expansion of its prerequisite, AC_HEADER_TIME.
57608         Reported by Volker Borchert.
57609
57610 2000-02-03  Jim Meyering  <meyering@lucent.com>
57611
57612         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
57613
57614 2000-02-03  Jim Meyering  <meyering@lucent.com>
57615
57616         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
57617         rather than with `#if HAVE_UTMPNAME'.
57618
57619 2000-02-02  Jim Meyering  <meyering@lucent.com>
57620
57621         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
57622         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
57623         Reported by Eli Zaretskii.
57624
57625 2000-02-01  Jim Meyering  <meyering@lucent.com>
57626
57627         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
57628
57629 2000-01-31  Jim Meyering  <meyering@lucent.com>
57630
57631         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
57632         functions.  Add the time.h and sys/time.h headers along with the
57633         AC_REQUIRE'ment of AC_HEADER_TIME.
57634
57635 2000-01-31  Jim Meyering  <meyering@lucent.com>
57636
57637         * lib/nanosleep.h (nanosleep): Guard declaration with
57638         `#if ! HAVE_DECL_NANOSLEEP'.
57639         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
57640         the declaration in that vendor's sys/timers.h.
57641         Reported by Christian Krackowizer.
57642
57643         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
57644         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
57645         (ISPRINT): Likewise.
57646         Reported by Tom Tromey.
57647
57648 2000-01-30  Jim Meyering  <meyering@lucent.com>
57649
57650         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
57651
57652         * m4/prereq.m4 (utmp_includes): Define.
57653         Check for ut_user and ut_name members in both struct utmpx
57654         and struct utmp.
57655
57656 2000-01-30  Jim Meyering  <meyering@lucent.com>
57657
57658         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
57659         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
57660         header files where only utmpx.ut_user is declared.
57661
57662         * lib/readutmp.h (UT_USER): Define.
57663
57664 2000-01-29  Jim Meyering  <meyering@lucent.com>
57665
57666         * m4/lib-check.m4: New file containing library-related checks from
57667         fileutils and sh-utils (textutils had none).
57668
57669 2000-01-28  Jim Meyering  <meyering@lucent.com>
57670
57671         * m4/perl.m4: Change format of warning message to look more like that
57672         from the missing script.  Suggestion from François Pinard.
57673
57674 2000-01-25  Jim Meyering  <meyering@lucent.com>
57675
57676         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
57677         well as time.h in the compile check.
57678         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
57679         Fix typo in cross-compiling case: s/yes/no/.
57680
57681 2000-01-23  Jim Meyering  <meyering@lucent.com>
57682
57683         * m4/jm-macros.m4: Move df-related tests here from
57684         fileutils/configure.in
57685
57686         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
57687         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
57688
57689         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
57690         s/space/ac_fsusage_space/.
57691         (jm_FILE_SYSTEM_USAGE): Take two parameters.
57692
57693         * m4/ftruncate.m4: New file (derived from part of
57694         fileutils/configure.in).
57695         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
57696         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
57697
57698         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
57699         AC_SUBST these here, rather than just in sh-util/configure.in, so
57700         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
57701         all the same.
57702         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
57703         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
57704         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
57705         (AC_SUBST(POW_LIBM)): Likewise.
57706         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
57707
57708 2000-01-23  Jim Meyering  <meyering@lucent.com>
57709
57710         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
57711         obstack.c.
57712
57713 2000-01-22  Jim Meyering  <meyering@lucent.com>
57714
57715         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
57716
57717         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
57718
57719         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
57720         configure.in
57721         (AC_CHECK_HEADERS): Likewise for sh-utils.
57722         (AC_CHECK_HEADERS): Likewise for textutils.
57723         Merge the three lists of headers.
57724
57725         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
57726         from fileutils' configure.in.
57727
57728         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
57729         code. Moved tests into their own function (_jm_DECL_HEADERS) in
57730         check-decl.m4.
57731
57732         * m4/check-decl.m4: Use #if rather than #ifdef.
57733         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
57734         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
57735         (_jm_DECL_HEADERS): Define new function.
57736         (jm_CHECK_DECLARATIONS): Require it.
57737
57738 2000-01-22  Jim Meyering  <meyering@lucent.com>
57739
57740         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
57741         [! HAVE_DECL_STRTOULL]: Declare strtoull.
57742         Required for some AIX systems.  Reported by Christian Krackowizer.
57743         [TESTING] (main): New function.
57744
57745         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
57746         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
57747         letters.
57748
57749         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
57750         iswprint.
57751
57752         * lib/strverscmp.c (ISDIGIT): Define.
57753         (strverscmp): Use ISDIGIT, not isdigit.
57754
57755 2000-01-19  Jim Meyering  <meyering@lucent.com>
57756
57757         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
57758         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
57759         defines `struct timespec' in <sys/time.h>
57760
57761         * m4/c-bs-a.m4: Remove uses of changequote altogether.
57762         Thanks to Akim for explaining.
57763
57764 2000-01-17  Paul Eggert  <eggert@twinsun.com>
57765
57766         * lib/nanosleep.c (nanosleep):
57767         Don't use SA_INTERRUPT to decide whether to call sigaction, as
57768         POSIX.1 doesn't require SA_INTERRUPT and some systems
57769         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
57770         it's been part of POSIX.1 since day 1 (in 1988).
57771
57772 2000-01-17  Jim Meyering  <meyering@lucent.com>
57773
57774         * lib/interlock: Remove unused file.  Reported by François Pinard.
57775
57776 2000-01-16  Paul Eggert  <eggert@twinsun.com>
57777
57778         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
57779         alert, backslash, formfeed, and vertical tab unnecessarily in
57780         shell quoting style.
57781
57782 2000-01-16  Jim Meyering  <meyering@lucent.com>
57783
57784         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
57785         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
57786         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
57787         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
57788
57789 2000-01-16  Jim Meyering  <meyering@lucent.com>
57790
57791         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
57792         because the latter didn't work.
57793
57794 2000-01-15  Jim Meyering  <meyering@lucent.com>
57795
57796         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
57797         (AC_REPLACE_FUNCS): Add memcpy and memset.
57798         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
57799         Add strpbrk.
57800         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
57801
57802 2000-01-12  Jim Meyering  <meyering@lucent.com>
57803
57804         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
57805         (jm_PREREQ): Use it.
57806         (jm_PREREQ_READUTMP): New macro.
57807         (jm_PREREQ): Use it.
57808
57809 2000-01-11  Paul Eggert  <eggert@twinsun.com>
57810
57811         Quote multibyte characters correctly.
57812         * m4/c-bs-a.m4: New file.
57813         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
57814         (jm_PREREQ): Use it.
57815
57816 2000-01-11  Paul Eggert  <eggert@twinsun.com>
57817
57818         * m4/uintmax_t.m4: Port to autoconf 2.13.
57819
57820 2000-01-08  Jim Meyering  <meyering@ascend.com>
57821
57822         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
57823         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
57824
57825 2000-01-04  Jim Meyering  <meyering@ascend.com>
57826
57827         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
57828         jm_STRUCT_DIRENT_D_TYPE.
57829         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
57830         jm_STRUCT_DIRENT_D_INO.
57831         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
57832         jm_STRUCT_UTIMBUF.
57833         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
57834         renamings.
57835         * m4/utime.m4: Likewise.
57836
57837         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
57838         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
57839
57840 2000-01-03  Paul Eggert  <eggert@twinsun.com>
57841
57842         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
57843         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
57844
57845 2000-01-02  Jim Meyering  <meyering@ascend.com>
57846
57847         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
57848         remember if this is necessary.
57849
57850 1999-12-26  Jim Meyering  <meyering@ascend.com>
57851
57852         * m4/jm-macros.m4: Use it here.
57853         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
57854
57855 1999-12-23  Jim Meyering  <meyering@ascend.com>
57856
57857         * m4/jm-macros.m4: Check for clock_gettime (moved from
57858         fileutils/configure.in)
57859         Check for gettimeofday.
57860
57861 1999-12-20  Jim Meyering  <meyering@ascend.com>
57862
57863         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
57864         autoconf-2.14a-1999-12-20.
57865
57866 1999-12-19  Jim Meyering  <meyering@ascend.com>
57867
57868         * m4/lstat-slash.m4: New file.
57869         * m4/jm-macros.m4: Use the new macro:
57870         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57871
57872 1999-12-07  Jim Meyering  <meyering@ascend.com>
57873
57874         * m4/perl.m4: Require that File::Compare be available, too.
57875         Too many systems seem to lack it.
57876
57877         * m4/strftime.m4: Add checks for most of the cpp macros tested in
57878         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
57879
57880 1999-11-18  Paul Eggert  <eggert@twinsun.com>
57881
57882         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
57883         problem with the QNX 4.25 shell, which doesn't propagate exit
57884         status of failed commands inside shell assignments.
57885
57886 1999-11-17  Jim Meyering  <meyering@ascend.com>
57887
57888         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
57889
57890 1999-11-07  Jim Meyering  <meyering@ascend.com>
57891
57892         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
57893
57894 1999-11-06  Jim Meyering  <meyering@ascend.com>
57895
57896         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
57897         * m4/jm-macros.m4 (jm_MACROS): Use it here.
57898
57899 1999-11-05  Jim Meyering  <meyering@ascend.com>
57900
57901         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
57902         configure.in of textutils, fileutils, and sh-utils into this one
57903         (shared between those packages) file.
57904         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
57905         AC_STRUCT_ST_BLKSIZE.
57906
57907 1999-11-03  Jim Meyering  <meyering@ascend.com>
57908
57909         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
57910         of AC_CHECK_TYPE checks includes unistd.h.
57911         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
57912         Suggestion from Akim Demaille.
57913
57914 1999-10-30  Jim Meyering  <meyering@ascend.com>
57915
57916         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
57917         m4-quoted string.
57918         * m4/ls-mntd-fs.m4: Likewise.
57919         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
57920         * m4/jm-winsz1.m4: Likewise.
57921
57922         * m4/const.m4: Remove file, since the fix made it into the experimental
57923         version of autoconf.
57924         * m4/mktime.m4: Likewise.
57925
57926         * m4/check-type.m4: Remove file, now that the latest version of
57927         AC_CHECK_TYPE takes a third arg to specify additional #includes.
57928
57929         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
57930         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
57931         AC_CHECK_TYPE.
57932
57933 1999-10-04  Jim Meyering  <meyering@ascend.com>
57934
57935         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
57936
57937 1999-09-22  Paul Eggert  <eggert@twinsun.com>
57938
57939         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
57940         2.95.1 bug with HP-UX 10.20.
57941
57942 1999-09-17  Jim Meyering  <meyering@ascend.com>
57943
57944         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
57945         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
57946         due to missing strdup (against sh-utils-2.0).
57947
57948 1999-08-29  Jim Meyering  <meyering@ascend.com>
57949
57950         * m4/jm-macros.m4: Require jm_BISON.
57951         * m4/bison.m4: New file.
57952
57953 1999-08-17  Paul Eggert  <eggert@twinsun.com>
57954
57955         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
57956         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
57957
57958 1999-08-05  Jim Meyering  <meyering@ascend.com>
57959
57960         * m4/getline.m4: Rename test file from conftestdata to conftest.data
57961         to avoid conflicts with `conftest' on 8+3 filesystems.
57962         Suggestion from Eli Zaretskii.
57963
57964 1999-08-04  Jim Meyering  <meyering@ascend.com>
57965
57966         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
57967         fileutils and sh-utils (textutils's getline test was inadequate).
57968         (AM_FUNC_GETLINE): Run this test.
57969         (AC_CHECK_FUNCS): Check for getdelim.
57970         Reported by Bob Proulx.
57971
57972 1999-08-02  Jim Meyering  <meyering@ascend.com>
57973
57974         * m4/jm-macros.m4: Add a comment.
57975
57976 1999-08-01  Paul Eggert  <eggert@twinsun.com>
57977
57978         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
57979         <inttypes.h> defines strtoumax as a macro (and not as a
57980         function).
57981
57982 1999-08-01  Paul Eggert  <eggert@twinsun.com>
57983
57984         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
57985         that we can shift, multiply and divide unsigned long long
57986         values; Ultrix cc can't do it.
57987
57988 1999-08-01  Paul Eggert  <eggert@twinsun.com>
57989
57990         * m4/mktime.m4: New file, which is a preview of what should appear
57991         in the next public autoconf release.
57992
57993 1999-08-01  Paul Eggert  <eggert@twinsun.com>
57994
57995         * m4/lfs.m4: Remove this file.
57996         * m4/largefile.m4: New file.  It contains the old contents of
57997         lfs.m4, except that all names with prefix AC_LFS have been
57998         changed to use the prefix AC_SYS_LARGEFILE instead, to be
57999         compatible with future autoconf versions.  Also, some minor m4
58000         quoting problems have been fixed.
58001
58002 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58003
58004         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
58005         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
58006         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
58007         and simplify the shell code.
58008
58009 1999-08-01  Jim Meyering  <meyering@ascend.com>
58010
58011         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
58012         m4.
58013
58014 1999-07-20  Jim Meyering  <meyering@ascend.com>
58015
58016         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
58017
58018 1999-07-15  Jim Meyering  <meyering@ascend.com>
58019
58020         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
58021
58022 1999-05-22  Jim Meyering  <meyering@ascend.com>
58023
58024         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
58025
58026 1999-05-20  Jim Meyering  <meyering@ascend.com>
58027
58028         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
58029         Add a colon after each `then' in case $4 is empty.
58030
58031 1999-05-16  Jim Meyering  <meyering@ascend.com>
58032
58033         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
58034
58035 1999-05-10  Jim Meyering  <meyering@ascend.com>
58036
58037         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
58038
58039         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
58040         AC_FUNC_MKTIME.
58041
58042 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
58043
58044         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
58045
58046 1999-05-04  Paul Eggert  <eggert@twinsun.com>
58047
58048         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
58049         not CPPFLAGS, so that linking works correctly in IRIX.
58050
58051 1999-04-30  Paul Eggert  <eggert@twinsun.com>
58052
58053         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
58054
58055 1999-04-20  Paul Eggert  <eggert@twinsun.com>
58056
58057         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
58058         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
58059         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
58060         jm_AC_TYPE_UNSIGNED_LONG_LONG.
58061         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
58062
58063         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
58064
58065 1999-04-20  Jim Meyering  <meyering@ascend.com>
58066
58067         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
58068         AC_REPLACE xstroull if necessary.  From Paul Eggert.
58069         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
58070
58071 1999-04-18  Jim Meyering  <meyering@ascend.com>
58072
58073         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
58074         * m4/jm-macros.m4: Use it.
58075
58076 1999-04-06  Jim Meyering  <meyering@ascend.com>
58077
58078         * m4/strftime.m4: Remove test for %f.
58079
58080 1999-03-29  Jim Meyering  <meyering@ascend.com>
58081
58082         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
58083         superset of the AC_TYPE_* checks in the textutils, fileutils,
58084         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
58085         AC_TYPE_PID_T.
58086
58087 1999-03-28  Jim Meyering  <meyering@ascend.com>
58088
58089         * m4/jm-macros.m4: Define GNU_PACKAGE here.
58090         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
58091         replaced e.g., in the *.sh files of the sh-utils.
58092
58093 1999-03-20  Jim Meyering  <meyering@ascend.com>
58094
58095         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
58096         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
58097         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
58098
58099 1999-03-19  Jim Meyering  <meyering@ascend.com>
58100
58101         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
58102
58103 1999-03-12  Jim Meyering  <meyering@ascend.com>
58104
58105         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
58106
58107 1999-03-07  Jim Meyering  <meyering@ascend.com>
58108
58109         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
58110         declared.
58111
58112 1999-02-17  Jim Meyering  <meyering@ascend.com>
58113
58114         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
58115         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
58116
58117 1999-02-07  Jim Meyering  <meyering@ascend.com>
58118
58119         * m4/group-member.m4: New file -- extracted from sh-utils'
58120         configure.in.
58121
58122         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
58123         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
58124
58125 1999-02-06  Jim Meyering  <meyering@ascend.com>
58126
58127         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
58128         * m4/fnmatch.m4: Likewise.
58129         * m4/getgroups.m4: Likewise.
58130         * m4/lstat.m4: Likewise.
58131         * m4/malloc.m4: Likewise.
58132         * m4/putenv.m4: Likewise.
58133         * m4/realloc.m4: Likewise.
58134         * m4/regex.m4: Likewise.
58135         * m4/stat.m4: Likewise.
58136         * m4/strftime.m4: Likewise.
58137         Suggestion from Alain Magloire.
58138
58139         * m4/chown.m4: Use `.$ac_objext', not `.o'.
58140         * m4/fnmatch.m4: Likewise.
58141         * m4/getgroups.m4: Likewise.
58142         * m4/getline.m4: Likewise.
58143         * m4/lstat.m4: Likewise.
58144         * m4/malloc.m4: Likewise.
58145         * m4/memcmp.m4: Likewise.
58146         * m4/putenv.m4: Likewise.
58147         * m4/realloc.m4: Likewise.
58148         * m4/regex.m4: Likewise.
58149         * m4/stat.m4: Likewise.
58150         * m4/strftime.m4: Likewise.
58151         Suggestion from Alain Magloire.
58152
58153         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
58154         an argument.
58155
58156         * m4/regex.m4: Add a run-time Test for proper operation of
58157         re_compile_pattern.
58158
58159 1999-01-31  Jim Meyering  <meyering@ascend.com>
58160
58161         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
58162
58163 1999-01-30  Jim Meyering  <meyering@ascend.com>
58164
58165         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
58166
58167         * m4/jm-mktime.m4: Make this a wrapper around the official
58168         AM_FUNC_MKTIME rather than my private copy, now that the official one
58169         is up to date.
58170         * m4/mktime.m4: Remove file.
58171
58172         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
58173         * m4/uptime.m4: Likewise.
58174         * m4/uintmax_t.m4: Likewise.
58175
58176 1999-01-28  Jim Meyering  <meyering@ascend.com>
58177
58178         * m4/jm-macros.m4: Use jm_AFS.
58179         * m4/afs.m4: New file (from fileutils' configure.in).
58180
58181         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
58182         * m4/chown.m4: Likewise.
58183         * m4/d-ino.m4: Likewise.
58184         * m4/d-type.m4: Likewise.
58185         * m4/fnmatch.m4: Likewise.
58186         * m4/getgroups.m4: Likewise.
58187         * m4/gettext.m4: Likewise.
58188         * m4/jm-mktime.m4: Likewise.
58189         * m4/jm-winsz2.m4: Likewise.
58190         * m4/lcmessage.m4: Likewise.
58191         * m4/ls-mntd-fs.m4: Likewise.
58192         * m4/malloc.m4: Likewise.
58193         * m4/memcmp.m4: Likewise.
58194         * m4/putenv.m4: Likewise.
58195         * m4/realloc.m4: Likewise.
58196         * m4/st_mtim.m4: Likewise.
58197         * m4/strftime.m4: Likewise.
58198
58199 1999-01-16  Jim Meyering  <meyering@ascend.com>
58200
58201         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
58202         (ARGMATCH_DIE_DECL): Define.
58203
58204 1999-01-12  Jim Meyering  <meyering@ascend.com>
58205
58206         * m4/Makefile.am.in: Rewrite to avoid using fmt.
58207         Reported by Lars Hecking.
58208
58209 1999-01-10  Jim Meyering  <meyering@ascend.com>
58210
58211         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
58212         gross kludge.
58213         * m4/inttypes_h.m4: Likewise.
58214         * m4/lstat.m4: Likewise.
58215         * m4/malloc.m4: Likewise.
58216         * m4/readdir.m4: Likewise.
58217         * m4/realloc.m4: Likewise.
58218         * m4/st_dm_mode.m4: Likewise.
58219         * m4/stat.m4: Likewise.
58220         * m4/utimbuf.m4: Likewise.
58221         * m4/utimes.m4: Likewise.
58222
58223         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
58224         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
58225         comments in config.h.in are meaningful.
58226
58227         * m4/jm-macros.m4: Require autoconf-2.13 here.
58228
58229         * m4/regex.m4: By default, don't use the included regex.c on systems
58230         with glibc 2.  Suggestion from Uli Drepper.
58231
58232 1999-01-02  Jim Meyering  <meyering@ascend.com>
58233
58234         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
58235
58236 1998-12-18  Jim Meyering  <meyering@ascend.com>
58237
58238         * m4/Makefile.am.in (Makefile.am): Simplify rule.
58239         Based on a suggestion from Lars Hecking.
58240
58241 1998-11-16  Paul Eggert  <eggert@twinsun.com>
58242
58243         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
58244
58245 1998-11-16  Jim Meyering  <meyering@ascend.com>
58246
58247         * m4/lfs.m4: Double-quote the `uname...` expression.
58248
58249 1998-11-14  Jim Meyering  <meyering@ascend.com>
58250
58251         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
58252         * m4/stat.m4: Likewise.
58253
58254 1998-11-03  Jim Meyering  <meyering@ascend.com>
58255
58256         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
58257         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
58258
58259 1998-10-18  Jim Meyering  <meyering@ascend.com>
58260
58261         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
58262
58263 1998-10-17  Jim Meyering  <meyering@ascend.com>
58264
58265         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
58266         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
58267         calls for those previously hard-coded headers.  Instead, take a new
58268         parameter.
58269         (jm_CHECK_DECLARATIONS): Reflect interface change.
58270         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
58271         (jm_CHECK_DECL_LOCALTIME_R): New macro.
58272
58273         * m4/mktime.m4: Test for spring-forward gap before long-running test.
58274
58275 1998-10-14  Jim Meyering  <meyering@ascend.com>
58276
58277         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
58278         instead of "TZ=America/Vancouver".  From Paul Eggert.
58279
58280 1998-10-11  Jim Meyering  <meyering@ascend.com>
58281
58282         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
58283         This adds a test for a recently added compatibility fix for mktime.c.
58284         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
58285
58286 1998-09-27  Jim Meyering  <meyering@ascend.com>
58287
58288         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
58289
58290         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
58291         ../configure.in, including a change from Gordon Matzigkeit to allow
58292         cross-compiling for the Hurd.
58293
58294         * m4/glibc.m4: New file/macro to test for the GNU C Library
58295         versions 1 and 2.  From Gordon Matzigkeit.
58296         Indent.
58297
58298 1998-09-21  Jim Meyering  <meyering@ascend.com>
58299
58300         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
58301
58302 1998-08-18  Paul Eggert  <eggert@twinsun.com>
58303
58304         Port nanosecond-resolution times to UnixWare 2.1.2 and
58305         pedantic Solaris 2.6.
58306
58307         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
58308         AC_STRUCT_ST_MTIM.
58309         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
58310         Generate name of ns member, instead of just 1 or undef.
58311         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
58312
58313 1998-08-15  Jim Meyering  <meyering@ascend.com>
58314
58315         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
58316         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
58317         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
58318         instead of jm_TYPE_SSIZE_T.
58319
58320 1998-08-12  Jim Meyering  <meyering@ascend.com>
58321
58322         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
58323
58324 1998-08-02  Jim Meyering  <meyering@ascend.com>
58325
58326         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
58327         in acconfig.h manually.
58328
58329 1998-07-31  Paul Eggert  <eggert@twinsun.com>
58330
58331         * m4/st_mtim.m4: New file.
58332
58333 1998-07-28  Jim Meyering  <meyering@ascend.com>
58334
58335         * m4/utimes.m4: Undef stat.
58336
58337 1998-07-25  Jim Meyering  <meyering@ascend.com>
58338
58339         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
58340         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
58341
58342 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
58343
58344         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
58345         uid and gid actually remain unchanged.
58346
58347 1998-07-07  Jim Meyering  <meyering@ascend.com>
58348
58349         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
58350
58351 1998-07-04  Jim Meyering  <meyering@ascend.com>
58352
58353         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
58354         to prove that this macro can be used in packages without regex.c.
58355
58356 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
58357
58358         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
58359         is to be used.
58360
58361 1998-07-03  Jim Meyering  <meyering@ascend.com>
58362
58363         * m4/gettext.m4: Add -lintl if it's found to be necessary.
58364
58365         * m4/gettext.m4: New file -- from gettext-0.10.35.
58366         * m4/lcmessage.m4: Likewise.
58367         * m4/progtest.m4: Likewise.
58368
58369         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
58370         * m4/jm-macros.m4: Require the new macro.
58371
58372 1998-06-29  Jim Meyering  <meyering@ascend.com>
58373
58374         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
58375         for the definition of NGROUPS (used in a system header included
58376         by sys/mount.h).
58377
58378 1998-06-28  Jim Meyering  <meyering@ascend.com>
58379
58380         * m4/ls-mntd-fs.m4: New file.
58381         * m4/fstypename.m4: New file.
58382
58383         * m4/jm-macros.m4: Require the new macro.
58384         * m4/jm-glibc-io.m4: New file.
58385
58386 1998-05-19  Jim Meyering  <meyering@ascend.com>
58387
58388         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
58389         * m4/lchown.m4: New file.
58390
58391         * m4/Makefile.am.in: New file.
58392         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
58393
58394 1998-05-14  Jim Meyering  <meyering@ascend.com>
58395
58396         * m4/Makefile.am (EXTRA_DIST): Add them.
58397         * m4/jm-macros.m4: New file.
58398         * m4/utimbuf.m4: New file.
58399
58400 1998-05-12  Jim Meyering  <meyering@ascend.com>
58401
58402         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
58403
58404 1998-05-11  Jim Meyering  <meyering@ascend.com>
58405
58406         * m4/isc-posix.m4: New file.
58407
58408 1998-05-10  Jim Meyering  <meyering@ascend.com>
58409
58410         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
58411
58412 1998-05-09  Jim Meyering  <meyering@ascend.com>
58413
58414         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
58415         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
58416         with automake.
58417
58418         * m4/ssize_t.m4: New file.
58419         * m4/mktime.m4: Remove file -- the new automake has this now.
58420
58421 1998-04-26  Jim Meyering  <meyering@ascend.com>
58422
58423         * m4/assert.m4: New file.
58424         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
58425
58426 1998-04-05  Jim Meyering  <meyering@ascend.com>
58427
58428         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
58429         (jm_PREREQ): Use it here.
58430
58431 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
58432
58433         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
58434         in acconfig.h.
58435
58436 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
58437
58438         * m4/prereq.m4: New file.
58439         * m4/error.m4: New file.
58440         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
58441
58442 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
58443
58444         * m4/getline.m4: Don't set am_cv_func_working_getline before the
58445         cache-check for the same variable -- that defeated the purpose of
58446         the test; the test program was never run.  This was a problem only
58447         on systems with losing getline functions -- HP-UX 10.20 is one.
58448         Reported by Bjorn Helgaas.
58449
58450 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
58451
58452         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
58453
58454 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
58455
58456         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
58457
58458         * m4/const.m4: New file.  Use an initializer in this declaration
58459         typedef int charset[2]; const charset x;
58460         Reported by Bob Glickstein.
58461
58462 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
58463
58464         * m4/chown.m4: Fix reversed types on -1 args to chown.
58465         From Kaveh Ghazi.
58466
58467 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
58468
58469         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
58470         Add lseek and memchr.
58471
58472         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
58473         T.E.Dickey <dickey@clark.net> said that some older preprocessors
58474         have a 20-character limit on names.
58475
58476 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
58477
58478         * m4/inttypes_h.m4: New file.
58479         * m4/uintmax_t.m4: New file.
58480         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
58481
58482
58483         -----
58484
58485         Local Variables:
58486         coding: utf-8
58487         End:
58488
58489         Copyright (C) 1997-2009 Free Software Foundation, Inc.
58490
58491         Copying and distribution of this file, with or without
58492         modification, are permitted provided the copyright notice
58493         and this notice are preserved.